FileWebRequest::Method Property
.NET Framework (current version)
Gets or sets the protocol method used for the request. This property is reserved for future use.
Assembly: System (in System.dll)
public: property String^ Method { virtual String^ get() override; virtual void set(String^ value) override; }
| Exception | Condition |
|---|---|
| ArgumentException | The method is invalid. - or - The method is not supported. - or - Multiple methods were specified. |
The Method property is currently not used by the FileWebRequest class.
The following code example sets the protocol method used for the request. Refer to the complete example in the FileWebRequest class.
// Create a Uri object. Uri^ myUrl = gcnew Uri( String::Format( "file://{0}", fileName ) ); // Create a FileWebRequest object. myFileWebRequest = dynamic_cast<FileWebRequest^>(WebRequest::CreateDefault( myUrl )); // Set the timeout to the value selected by the user. myFileWebRequest->Timeout = timeout; // Set the Method property to POST myFileWebRequest->Method = "POST";
.NET Framework
Available since 1.1
Available since 1.1
Show: