HttpGetClientProtocol Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the HttpGetClientProtocol class.
public:
HttpGetClientProtocol();
public HttpGetClientProtocol ();
Public Sub New ()
Examples
// Math is a proxy class derived from HttpGetClientProtocol.
HttpGetClientProtocol^ myHttpGetClientProtocol = gcnew ::Math;
// Obtain password from a secure store.
String^ SecurelyStoredPassword = String::Empty;
// Set the client-side credentials using the Credentials property.
ICredentials^ credentials = gcnew NetworkCredential( "Joe","mydomain",SecurelyStoredPassword );
myHttpGetClientProtocol->Credentials = credentials;
Console::WriteLine( "Auto redirect is: {0}", myHttpGetClientProtocol->AllowAutoRedirect );
}
// Math is a proxy class derived from HttpGetClientProtocol.
HttpGetClientProtocol myHttpGetClientProtocol = new Math();
// Obtain password from a secure store.
String SecurelyStoredPassword = String.Empty;
// Set the client-side credentials using the Credentials property.
ICredentials credentials =
new NetworkCredential("Joe", "mydomain", SecurelyStoredPassword);
myHttpGetClientProtocol.Credentials = credentials;
Console.WriteLine("Auto redirect is: "
+ myHttpGetClientProtocol.AllowAutoRedirect);
}
}
' Math is a proxy class derived from HttpGetClientProtocol.
Dim myHttpGetClientProtocol As New Math()
' Obtain password from a secure store.
Dim SecurelyStoredPassword As String = String.Empty
' Set the client-side credentials using the Credentials property.
Dim credentials = _
New NetworkCredential("Joe", "mydomain", SecurelyStoredPassword)
myHttpGetClientProtocol.Credentials = credentials
' Allow the server to redirect the request.
myHttpGetClientProtocol.AllowAutoRedirect = True
Console.WriteLine("Auto redirect is: " _
& myHttpGetClientProtocol.AllowAutoRedirect)
Applies to
Συνεργαστείτε μαζί μας στο GitHub
Μπορείτε να βρείτε την πηγή για αυτό το περιεχόμενο στο GitHub, όπου μπορείτε επίσης να δημιουργήσετε και να εξετάσετε ζητήματα και αιτήματα έλξης. Για περισσότερες πληροφορίες, ανατρέξτε στον οδηγό συνεργατών.