System::Net::WebRequest::CreateHttp method
Contents
[
Hide
]WebRequest::CreateHttp(String) method
Creates a new instance of the WebRequest class using the specified URI.
static System::SharedPtr<HttpWebRequest> System::Net::WebRequest::CreateHttp(String requestUriString)
Parameter | Type | Description |
---|---|---|
requestUriString | String | The URI that is used to create a new instance of the WebRequest class. |
ReturnValue
A newly created WebRequest-class instance.
Remarks
NotSupportedException will be thrown when the specified URI begins with any scheme except for http:// or https://.
See Also
- Typedef SharedPtr
- Class HttpWebRequest
- Class String
- Class WebRequest
- Namespace System::Net
- Library Aspose.PUB for C++
WebRequest::CreateHttp(System::SharedPtr<Uri>) method
Creates a new instance of the WebRequest class using the specified URI.
static System::SharedPtr<HttpWebRequest> System::Net::WebRequest::CreateHttp(System::SharedPtr<Uri> requestUri)
Parameter | Type | Description |
---|---|---|
requestUri | System::SharedPtr<Uri> | The URI that is used to create a new instance of the WebRequest class. |
ReturnValue
A newly created WebRequest-class instance.
Remarks
NotSupportedException will be thrown when the specified URI begins with any scheme except for http:// or https://.
See Also
- Typedef SharedPtr
- Class HttpWebRequest
- Class Uri
- Class WebRequest
- Namespace System::Net
- Library Aspose.PUB for C++