Create()

WebRequest::Create(String) method

Creates a new instance of the WebRequest class using the specified URI.

static System::SharedPtr<WebRequest> System::Net::WebRequest::Create(String requestUriString)

Arguments

ParameterTypeDescription
requestUriStringStringThe URI that is used to create a new instance of the WebRequest class.

Return Value

A newly created WebRequest-class instance.

WebRequest::Create(System::SharedPtr<Uri>) method

Creates a new instance of the WebRequest class using the specified URI.

static System::SharedPtr<WebRequest> System::Net::WebRequest::Create(System::SharedPtr<Uri> requestUri)

Arguments

ParameterTypeDescription
requestUriSystem::SharedPtr<Uri>The URI that is used to create a new instance of the WebRequest class.

Return Value

A newly created WebRequest-class instance.

See Also