Method | Description | |
---|---|---|
Connect ( string url ) : |
This specification reserves the method name CONNECT for use with a proxy that can dynamically switch to being a tunnel (e.g. SSL tunneling [44]).
|
|
Delete ( string url ) : |
The DELETE method requests that the origin server delete the resource identified by the Request-URI.
|
|
Get ( string url ) : |
The GET method means retrieve whatever information (in the form of an entity) is identified by the Request-URI.
|
|
Head ( string url ) : |
The HEAD method is identical to GET except that the server MUST NOT return a message-body in the response.
|
|
Options ( string url ) : |
The OPTIONS method represents a request for information about the communication options available on the request/response chain identified by the Request-URI.
|
|
Patch ( string url ) : |
The PATCH method is used to apply partial modifications to a resource.
|
|
Post ( string url ) : |
The actual function performed by the POST method is determined by the server and is usually dependent on the Request-URI.
|
|
Put ( string url ) : |
The PUT method requests that the enclosed entity be stored under the supplied Request-URI.
|
|
SingleConnect ( string url ) : |
This specification reserves the method name CONNECT for use with a proxy that can dynamically switch to being a tunnel (e.g. SSL tunneling [44]). This is the static version of the method that will not retain state between different actions.
|
|
SingleDelete ( string url ) : |
The DELETE method requests that the origin server delete the resource identified by the Request-URI. This is the static version of the method that will not retain state between different actions.
|
|
SingleGet ( string url ) : |
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.
|
|
SingleHead ( string url ) : |
The HEAD method is identical to GET except that the server MUST NOT return a message-body in the response. This is the static version of the method that will not retain state between different actions.
|
|
SingleOptions ( string url ) : |
The OPTIONS method represents a request for information about the communication options available on the request/response chain identified by the Request-URI. This is the static version of the method that will not retain state between different actions.
|
|
SinglePatch ( string url ) : |
The PATCH method is used to apply partial modifications to a resource.
|
|
SinglePost ( string url ) : |
The actual function performed by the POST method is determined by the server and is usually dependent on the Request-URI. This is the static version of the method that will not retain state between different actions.
|
|
SinglePut ( string url ) : |
The PUT method requests that the enclosed entity be stored under the supplied Request-URI. This is the static version of the method that will not retain state between different actions.
|
|
SingleTrace ( string url ) : |
The TRACE method is used to invoke a remote, application-layer loop-back of the request message. The final recipient of the request SHOULD reflect the message received back to the client as the entity-body of a 200 (OK) response. This is the static version of the method that will not retain state between different actions.
|
|
Trace ( string url ) : |
The TRACE method is used to invoke a remote, application-layer loop-back of the request message. The final recipient of the request SHOULD reflect the message received back to the client as the entity-body of a 200 (OK) response.
|
Method | Description | |
---|---|---|
CreateRequest ( string verb, string url ) : |
public Connect ( string url ) : |
||
url | string | The request URL. |
return |
protected CreateRequest ( string verb, string url ) : |
||
verb | string | |
url | string | |
return |
public Delete ( string url ) : |
||
url | string | The request URL. |
return |
public Get ( string url ) : |
||
url | string | The request URL. |
return |
public Head ( string url ) : |
||
url | string | The request URL. |
return |
public Options ( string url ) : |
||
url | string | The request URL. |
return |
public Patch ( string url ) : |
||
url | string | The request URL. |
return |
public Post ( string url ) : |
||
url | string | The request URL. |
return |
public Put ( string url ) : |
||
url | string | The request URL. |
return |
public static SingleConnect ( string url ) : |
||
url | string | The request URL. |
return |
public static SingleDelete ( string url ) : |
||
url | string | The request URL. |
return |
public static SingleGet ( string url ) : |
||
url | string | The request URL. |
return |
public static SingleHead ( string url ) : |
||
url | string | The request URL. |
return |
public static SingleOptions ( string url ) : |
||
url | string | The request URL. |
return |
public static SinglePatch ( string url ) : |
||
url | string | The request URL. |
return |
public static SinglePost ( string url ) : |
||
url | string | The request URL. |
return |
public static SinglePut ( string url ) : |
||
url | string | The request URL. |
return |
public static SingleTrace ( string url ) : |
||
url | string | The request URL. |
return |
public Trace ( string url ) : |
||
url | string | The request URL. |
return |