DAVHTTPRequest Constructor |
Namespace: ARPDev.DAVLIBAssembly: ARPDev.DAVLIB (in ARPDev.DAVLIB.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic DAVHTTPRequest(
ref DAVConnection _DAVConnection,
string _Verb,
DAVURI _URI,
ref WebHeaderCollection _Headers,
string _Body
)
Public Sub New (
ByRef _DAVConnection As DAVConnection,
_Verb As String,
_URI As DAVURI,
ByRef _Headers As WebHeaderCollection,
_Body As String
)
public:
DAVHTTPRequest(
DAVConnection^% _DAVConnection,
String^ _Verb,
DAVURI^ _URI,
WebHeaderCollection^% _Headers,
String^ _Body
)
new :
_DAVConnection : DAVConnection byref *
_Verb : string *
_URI : DAVURI *
_Headers : WebHeaderCollection byref *
_Body : string -> DAVHTTPRequest
Parameters
- _DAVConnection
- Type: ARPDev.DAVLIBDAVConnection
DAVConnection associated with the request - _Verb
- Type: SystemString
HTTP Verb - _URI
- Type: ARPDev.DAVLIBDAVURI
HTTP URL to issue the request to - _Headers
- Type: System.NetWebHeaderCollection
Any additional headers associated with the request - _Body
- Type: SystemString
HTTP Body assocatiated with the request
Remarks
See Also