FileWebRequest.Method-Eigenschaft
Ruft die für die Anforderung verwendete Protokollmethode ab oder legt diese fest. Diese Eigenschaft ist für eine spätere Verwendung vorgesehen.
Namespace: System.Net
Assembly: System (in system.dll)
Syntax
'Declaration
Public Overrides Property Method As String
'Usage
Dim instance As FileWebRequest
Dim value As String
value = instance.Method
instance.Method = value
public override string Method { get; set; }
public:
virtual property String^ Method {
String^ get () override;
void set (String^ value) override;
}
/** @property */
public String get_Method ()
/** @property */
public void set_Method (String value)
public override function get Method () : String
public override function set Method (value : String)
Eigenschaftenwert
Die in dieser Anforderung zu verwendende Protokollmethode.
Hinweise
Die Method-Eigenschaft wird von der FileWebRequest-Klasse momentan nicht verwendet.
Beispiel
Im folgenden Codebeispiel wird die Protokollmethode für die Anforderung festgelegt. Ein vollständiges Beispiel finden Sie in der FileWebRequest-Klasse.
' Create a Uri object.to access the file requested by the user.
Dim myUrl As New Uri("file://" + fileName)
' Create a FileWebRequest object.for the requeste file.
myFileWebRequest = CType(WebRequest.CreateDefault(myUrl), FileWebRequest)
' Set the time-out to the value selected by the user.
myFileWebRequest.Timeout = timeout
' Set the Method property to POST
myFileWebRequest.Method = "POST"
// Create a Uri object.
Uri myUrl = new Uri ("file://" + fileName);
// Create a FileWebRequest object.
myFileWebRequest = (FileWebRequest)WebRequest.CreateDefault (myUrl);
// Set the time-out to the value selected by the user.
myFileWebRequest.Timeout = timeout;
// Set the Method property to POST
myFileWebRequest.Method = "POST";
// 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";
// Create a Uri object.
Uri myUrl = new Uri("file://" + fileName);
// Create a FileWebRequest object.
myFileWebRequest =
((FileWebRequest)(WebRequest.CreateDefault(myUrl)));
// Set the time-out to the value selected by the user.
myFileWebRequest.set_Timeout(timeout);
// Set the Method property to POST
myFileWebRequest.set_Method("POST");
Plattformen
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
Siehe auch
Referenz
FileWebRequest-Klasse
FileWebRequest-Member
System.Net-Namespace