Freigeben über


HttpPostClientProtocol-Konstruktor

Initialisiert eine neue Instanz der HttpPostClientProtocol-Klasse.

Namespace: System.Web.Services.Protocols
Assembly: System.Web.Services (in system.web.services.dll)

Syntax

'Declaration
Public Sub New
'Usage
Dim instance As New HttpPostClientProtocol
public HttpPostClientProtocol ()
public:
HttpPostClientProtocol ()
public HttpPostClientProtocol ()
public function HttpPostClientProtocol ()

Beispiel

' Math is a proxy class derived from HttpPostClientProtocol.
Dim myHttpPostClientProtocol As New Math()

' Obtain password from a secure store.
Dim SecurelyStoredPassword As String = String.Empty

' Set the client-side credentials using the Credentials property.
myHttpPostClientProtocol.Credentials = System.Net.CredentialCache.DefaultCredentials

' Allow the server to redirect the request.
myHttpPostClientProtocol.AllowAutoRedirect = True
Console.WriteLine("Auto redirect is: " & _
    myHttpPostClientProtocol.AllowAutoRedirect)
// Math is a proxy class derived from HttpPostClientProtocol.
HttpPostClientProtocol myHttpPostClientProtocol = new Math();

// Obtain password from a secure store.
String SecurelyStoredPassword = String.Empty;

// Set the client-side credentials using the Credentials property.
myHttpPostClientProtocol.Credentials = System.Net.CredentialCache.DefaultCredentials;

// Allow the server to redirect the request.
myHttpPostClientProtocol.AllowAutoRedirect = true;
Console.WriteLine("Auto redirect is: " + 
    myHttpPostClientProtocol.AllowAutoRedirect);
// Math is a proxy class derived from HttpPostClientProtocol.
HttpPostClientProtocol^ myHttpPostClientProtocol = gcnew ::Math;

// Obtain password from a secure store.
String^ SecurelyStoredPassword = String::Empty;

// Set the client-side credentials using the Credentials property.
myHttpPostClientProtocol->Credentials = System::Net::CredentialCache::DefaultCredentials;

// Allow the server to redirect the request.
myHttpPostClientProtocol->AllowAutoRedirect = true;
Console::WriteLine( "Auto redirect is: {0}", myHttpPostClientProtocol->AllowAutoRedirect );
// Math is a proxy class derived from HttpPostClientProtocol.
HttpPostClientProtocol myHttpPostClientProtocol = new Math();
  
// Obtain password from a secure store.
String securelyStoredPassword = String.Empty;
  
// Set the client-side credentials using the Credentials property.
myHttpPostClientProtocol.set_Credentials(
    System.Net.CredentialCache.get_DefaultCredentials());
 
// Allow the server to redirect the request.
myHttpPostClientProtocol.set_AllowAutoRedirect(true);
Console.WriteLine("Auto redirect is: " + 
    myHttpPostClientProtocol.get_AllowAutoRedirect());

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

HttpPostClientProtocol-Klasse
HttpPostClientProtocol-Member
System.Web.Services.Protocols-Namespace