C# 클래스 AllegroGraphCSharpClient.Request

Class to handle the actual communication to the server WCF compatible, so if you use WCF, then you will always need to pass the url to every function Otherwise, you can set it using the constructor
상속: IRESTInterface
파일 보기 프로젝트 열기: franzinc/agraph-csharp-client 1 사용 예제들

공개 메소드들

메소드 설명
JSONRequest ( string method, string url, List options, string contentType ) : List

Performs a JSON based REST request

StandardRequest ( string method, string url, List options, string contentType ) : List

Most common way to talk to the server

makeHttpRequest ( string method, string url, List options ) : HttpWebRequest

Generate a HTTP Request object with the specified options

makeRequest ( string method, string url, List options, string ContentType, string accept ) : List

Performs a basic REST operation

메소드 상세

JSONRequest() 공개 메소드

Performs a JSON based REST request
public JSONRequest ( string method, string url, List options, string contentType ) : List
method string
url string
options List
contentType string
리턴 List

StandardRequest() 공개 메소드

Most common way to talk to the server
public StandardRequest ( string method, string url, List options, string contentType ) : List
method string
url string
options List
contentType string
리턴 List

makeHttpRequest() 공개 메소드

Generate a HTTP Request object with the specified options
public makeHttpRequest ( string method, string url, List options ) : HttpWebRequest
method string
url string
options List
리턴 System.Net.HttpWebRequest

makeRequest() 공개 메소드

Performs a basic REST operation
public makeRequest ( string method, string url, List options, string ContentType, string accept ) : List
method string
url string
options List
ContentType string
accept string
리턴 List