NetworkCredential::GetCredential Method (Uri, String)
Returns an instance of the NetworkCredential class for the specified Uniform Resource Identifier (URI) and authentication type.
Assembly: System (in System.dll)
public: virtual NetworkCredential^ GetCredential( Uri^ uri, String^ authType ) sealed
Parameters
- uri
- Type: System::Uri
The URI that the client provides authentication for.
- authType
- Type: System::String
The type of authentication requested, as defined in the IAuthenticationModule::AuthenticationType property.
Implements
ICredentials::GetCredential(Uri, String)The following code example uses the GetCredential method to retrieve a NetworkCredential object for the specified URI.
// Create an empty instance of the NetworkCredential class. NetworkCredential^ myCredentials = gcnew NetworkCredential( userName,password ); // Create a webrequest with the specified URL. WebRequest^ myWebRequest = WebRequest::Create( url ); myWebRequest->Credentials = myCredentials->GetCredential( gcnew Uri( url ), "" ); Console::WriteLine( "\n\nUser Credentials:- UserName : {0} , Password : {1}", myCredentials->UserName, myCredentials->Password ); // Send the request and wait for a response. Console::WriteLine( "\n\nRequest to Url is sent.Waiting for response...Please wait ..." ); WebResponse^ myWebResponse = myWebRequest->GetResponse(); // Process the response. Console::WriteLine( "\nResponse received sucessfully" ); // Release the resources of the response object. myWebResponse->Close();
// Create an empty instance of the NetworkCredential class.
NetworkCredential* myCredentials =
new NetworkCredential(userName, password);
// Create a webrequest with the specified URL.
WebRequest* myWebRequest = WebRequest::Create(url);
myWebRequest->Credentials =
myCredentials->GetCredential(new Uri(url), S"");
Console::WriteLine(S"\n\nUser Credentials:- UserName : {0} , Password : {1}",
myCredentials->UserName, myCredentials->Password);
// Send the request and wait for a response.
Console::WriteLine(S"\n\nRequest to Url is sent.Waiting for response...Please wait ...");
WebResponse* myWebResponse =
myWebRequest->GetResponse();
// Process the response.
Console::WriteLine(S"\nResponse received sucessfully");
// Release the resources of the response object.
myWebResponse->Close();
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.