메소드 | 설명 | |
---|---|---|
Delete ( ) : System.Net.Response |
Sends this request using the DELETE verb and returns the response.
|
|
Do ( string verb ) : System.Net.Response | ||
Get ( ) : System.Net.Response |
Sends this request using the GET verb and returns the response.
|
|
Post ( ) : System.Net.Response |
Sends this request using the POST verb and returns the response.
|
|
Put ( ) : System.Net.Response |
Sends this request using the PUT verb and returns the response.
|
|
SetData ( Stream data, bool buffer = true ) : System.Net.Request |
Sets the request body for this request, and returns itself.
|
|
SetData ( Stream data, string contentType, bool buffer = true ) : System.Net.Request |
Sets the request body for this request, and returns itself.
|
|
SetData ( string data, bool buffer = true ) : System.Net.Request |
Sets the request body for this request, and returns itself.
|
|
SetData ( string data, string contentType, bool buffer = true ) : System.Net.Request |
Sets the request body for this request, and returns itself.
|
메소드 | 설명 | |
---|---|---|
GetResponse ( |
||
Initialize ( string resource, string args ) : void | ||
Request ( |
||
WriteRequestBody ( ) : void |
public SetData ( Stream data, bool buffer = true ) : System.Net.Request | ||
data | Stream | |
buffer | bool | |
리턴 | System.Net.Request |
public SetData ( Stream data, string contentType, bool buffer = true ) : System.Net.Request | ||
data | Stream | |
contentType | string | |
buffer | bool | Specifies whether the request should buffer the data. |
리턴 | System.Net.Request |
public SetData ( string data, bool buffer = true ) : System.Net.Request | ||
data | string | |
buffer | bool | |
리턴 | System.Net.Request |
public SetData ( string data, string contentType, bool buffer = true ) : System.Net.Request | ||
data | string | |
contentType | string | |
buffer | bool | Specifies whether the request should buffer the data. |
리턴 | System.Net.Request |