NDB.RemoteDB.DoRequest C# (CSharp) Метод

DoRequest() приватный Метод

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"
Результат 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