UnityTools.IO.UnityAgent.SingleGet C# (CSharp) Method

SingleGet() public static method

The GET method means retrieve whatever information (in the form of an entity) is identified by the Request-URI. This is the static version of the method that will not retain state between different actions.
public static SingleGet ( string url ) : UnityAgentRequest
url string The request URL.
return UnityAgentRequest
        public static UnityAgentRequest SingleGet(string url)
        {
            return new UnityAgent().Get(url);
        }