AllegroGraphCSharpClient.Repository.StandardRequest C# (CSharp) Method

StandardRequest() public method

StandardRequest allows you to submit a basic request to the server
public StandardRequest ( string method, string url, List options, string contentType ) : List
method string Needs to be the standard REST methods: PUT, GET, etc.
url string URL of the server
options List Options to be passed in the HTTP Request
contentType string ContentType parameter
return List
        public List<Results> StandardRequest(string method, string url, List<NameValuePairs> options, string contentType)
        {
            Request rq = new Request();
            return rq.StandardRequest(method, url, options, contentType);
        }