Table of Contents

Enum TimeCheatingDetector.RequestMethod

Namespace
CodeStage.AntiCheat.Detectors
Assembly
Build.dll

Method of the request to the server. Please consider Head by default and fall back to Get in case of problems.

public enum TimeCheatingDetector.RequestMethod

Fields

Get = 1

More compatible method which loads whole content at the given URL.

Head = 0

Preferable method as it requests only headers thus it runs faster and has minimal possible traffic.

Remarks

Some servers do not like HEAD requests and sometimes treat it as a malicious bot activity and may temporary block the caller.
For such servers use GET method as a more compatible yet slower and loading all page data.