NDB.RemoteDB.DoRequest C# (CSharp) Method

DoRequest() private method

Internal helper to make an HTTP request and return the response. Throws an exception in the event of any kind of failure. Overloaded - use the other version if you need to post data with the request.
private DoRequest ( string url, string method ) : string
url string The URL
method string The method, e.g. "GET"
return string
        private string DoRequest(string url, string method)
        {
            return DoRequest(url, method, null, null);
        }

Same methods

RemoteDB::DoRequest ( string url, string method, string postdata, string contenttype ) : string