NetworkCredential.GetCredential Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Restituisce un'istanza della classe NetworkCredential per il tipo di autenticazione specificato.
Overload
GetCredential(String, Int32, String) |
Restituisce un'istanza della classe NetworkCredential per l'host, la porta e il tipo di autenticazione specificati. |
GetCredential(Uri, String) |
Restituisce un'istanza della classe NetworkCredential per l'URI (Uniform Resource Identifier) e il tipo di autenticazione specificati. |
GetCredential(String, Int32, String)
- Origine:
- NetworkCredential.cs
- Origine:
- NetworkCredential.cs
- Origine:
- NetworkCredential.cs
Restituisce un'istanza della classe NetworkCredential per l'host, la porta e il tipo di autenticazione specificati.
public:
virtual System::Net::NetworkCredential ^ GetCredential(System::String ^ host, int port, System::String ^ authenticationType);
public System.Net.NetworkCredential GetCredential (string host, int port, string authenticationType);
public System.Net.NetworkCredential GetCredential (string? host, int port, string? authenticationType);
abstract member GetCredential : string * int * string -> System.Net.NetworkCredential
override this.GetCredential : string * int * string -> System.Net.NetworkCredential
Public Function GetCredential (host As String, port As Integer, authenticationType As String) As NetworkCredential
Parametri
- host
- String
Computer host che autentica il client.
- port
- Int32
Porta dell'host
tramite la quale comunica il client.
- authenticationType
- String
Il tipo di autenticazione richiesto così come è definito nella proprietà AuthenticationType.
Restituisce
Classe NetworkCredential per l'host, la porta e il protocollo di autenticazione specificati oppure null
se non sono disponibili le credenziali per l'host, la porta e il protocollo di autenticazione specificati.
Implementazioni
Commenti
Il valore di authType
corrisponde alla IAuthenticationModule.AuthenticationType proprietà .
Si applica a
GetCredential(Uri, String)
- Origine:
- NetworkCredential.cs
- Origine:
- NetworkCredential.cs
- Origine:
- NetworkCredential.cs
Restituisce un'istanza della classe NetworkCredential per l'URI (Uniform Resource Identifier) e il tipo di autenticazione specificati.
public:
virtual System::Net::NetworkCredential ^ GetCredential(Uri ^ uri, System::String ^ authType);
public:
virtual System::Net::NetworkCredential ^ GetCredential(Uri ^ uri, System::String ^ authenticationType);
public System.Net.NetworkCredential GetCredential (Uri uri, string authType);
public System.Net.NetworkCredential GetCredential (Uri? uri, string? authenticationType);
abstract member GetCredential : Uri * string -> System.Net.NetworkCredential
override this.GetCredential : Uri * string -> System.Net.NetworkCredential
abstract member GetCredential : Uri * string -> System.Net.NetworkCredential
override this.GetCredential : Uri * string -> System.Net.NetworkCredential
Public Function GetCredential (uri As Uri, authType As String) As NetworkCredential
Public Function GetCredential (uri As Uri, authenticationType As String) As NetworkCredential
Parametri
- uri
- Uri
L'URI per il quale il client fornisce l'autenticazione.
- authTypeauthenticationType
- String
Il tipo di autenticazione richiesto così come è definito nella proprietà AuthenticationType.
Restituisce
Un oggetto NetworkCredential.
Implementazioni
Esempio
Nell'esempio di codice seguente viene utilizzato il GetCredential metodo per recuperare un NetworkCredential oggetto per l'URI specificato.
// 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 successfully" );
// 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),"");
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 successfully");
// Release the resources of the response object.
myWebResponse.Close();
' Create an empty instance of the NetworkCredential class.
Dim myCredentials As New NetworkCredential(userName, password)
' Create a WebRequest with the specified URL.
Dim myWebRequest As WebRequest = WebRequest.Create(url)
' GetCredential returns the same NetworkCredential instance that invoked it,
' irrespective of what parameters were provided to it.
myWebRequest.Credentials = myCredentials.GetCredential(New Uri(url), "")
Console.WriteLine(ControlChars.Cr + ControlChars.Cr + "User Credentials:- UserName : {0} , Password : {1}", myCredentials.UserName, myCredentials.Password)
' Send the request and wait for a response.
Console.WriteLine(ControlChars.Cr + ControlChars.Cr + "Request to Url is sent.Waiting for response...Please wait ...")
Dim myWebResponse As WebResponse = myWebRequest.GetResponse()
' Process the response.
Console.WriteLine(ControlChars.Cr + "Response received successfully")
' Release the resources of the response object.
myWebResponse.Close()