CredentialCache.GetCredential Método

Definição

Devolve uma NetworkCredential instância associada a um Identificador Uniforme de Recursos (URI) ou host especificado, e a um tipo de autenticação.

Sobrecargas

Name Description
GetCredential(Uri, String)

Devolve a NetworkCredential instância associada ao Identificador Uniforme de Recursos (URI) especificado e ao tipo de autenticação.

GetCredential(String, Int32, String)

Devolve a NetworkCredential instância associada ao host, porta e protocolo de autenticação especificados.

GetCredential(Uri, String)

Devolve a NetworkCredential instância associada ao Identificador Uniforme de Recursos (URI) especificado e ao tipo de autenticação.

public:
 virtual System::Net::NetworkCredential ^ GetCredential(Uri ^ uriPrefix, System::String ^ authType);
public System.Net.NetworkCredential GetCredential(Uri uriPrefix, string authType);
abstract member GetCredential : Uri * string -> System.Net.NetworkCredential
override this.GetCredential : Uri * string -> System.Net.NetworkCredential
Public Function GetCredential (uriPrefix As Uri, authType As String) As NetworkCredential

Parâmetros

uriPrefix
Uri

A que especifica o prefixo URI dos recursos a que a credencial concede Uri acesso.

authType
String

O esquema de autenticação usado pelo recurso nomeado em uriPrefix.

Devoluções

A NetworkCredential ou, se não houver credencial correspondente na cache, null.

Implementações

Exceções

uriPrefix ou authType é null.

Exemplos

O exemplo de código seguinte utiliza o GetCredential(Uri, String) método para devolver a NetworkCredential instância associada ao URI especificado e ao tipo de autenticação.

  public static void GetPage(string url,string userName,string password,string domainName)
  {
      try
      {
          CredentialCache myCredentialCache = new CredentialCache();
          // Dummy names used as credentials.
          myCredentialCache.Add(new Uri("http://microsoft.com/"),"Basic", new NetworkCredential("user1","passwd1","domain1"));
          myCredentialCache.Add(new Uri("http://msdn.com/"),"Basic", new NetworkCredential("user2","passwd2","domain2"));
          myCredentialCache.Add(new Uri(url),"Basic", new NetworkCredential(userName,password,domainName));
          // Create a webrequest with the specified url.
       WebRequest myWebRequest = WebRequest.Create(url);
          // Call 'GetCredential' to obtain the credentials specific to our Uri.
          NetworkCredential myCredential = myCredentialCache.GetCredential(new Uri(url),"Basic");
          Display(myCredential);
       // Associating only our credentials.
          myWebRequest.Credentials = myCredential;
          // Sends the request and waits for response.
       WebResponse myWebResponse = myWebRequest.GetResponse();

          // Process response here.

       Console.WriteLine("\nResponse Received.");
          myWebResponse.Close();
      }
      catch(WebException e)
      {
          if (e.Response != null)
              Console.WriteLine("\r\nFailed to obtain a response. The following error occurred : {0}",((HttpWebResponse)(e.Response)).StatusDescription);
          else
              Console.WriteLine("\r\nFailed to obtain a response. The following error occurred : {0}",e.Status);
      }
      catch(Exception e)
      {
          Console.WriteLine("\nThe following exception was raised : {0}",e.Message);
      }
}
public static void Display(NetworkCredential credential)
{
  Console.WriteLine("\nThe credentials are:");
  Console.WriteLine("\nUsername : {0} ,Password : {1} ,Domain : {2}",credential.UserName,credential.Password,credential.Domain);
}
Public Shared Sub GetPage(url As String, userName As String, password As String, domainName As String)
    Try
        Dim myCredentialCache As New CredentialCache()
        ' Dummy names used as credentials    
        myCredentialCache.Add(New Uri("http://microsoft.com/"), "Basic", New NetworkCredential("user1", "passwd1", "domain1"))
        myCredentialCache.Add(New Uri("http://msdn.com/"), "Basic", New NetworkCredential("user2", "passwd2", "domain2"))
        myCredentialCache.Add(New Uri(url), "Basic", New NetworkCredential(userName, password, domainName))
        ' Creates a webrequest with the specified url. 
        Dim myWebRequest As WebRequest = WebRequest.Create(url)
        ' Call 'GetCredential' to obtain the credentials specific to our Uri.
        Dim myCredential As NetworkCredential = myCredentialCache.GetCredential(New Uri(url), "Basic")
        Display(myCredential)
        myWebRequest.Credentials = myCredential 'Associating only our credentials            
        ' Sends the request and waits for response.
        Dim myWebResponse As WebResponse = myWebRequest.GetResponse()
        ' Process response here.
        Console.WriteLine(ControlChars.Cr + "Response Received.")
        myWebResponse.Close()

    Catch e As WebException
        If Not (e.Response Is Nothing) Then
            Console.WriteLine(ControlChars.Lf + ControlChars.Cr + "Failed to obtain a response. The following error occurred : {0}", CType(e.Response, HttpWebResponse).StatusDescription)
        Else
            Console.WriteLine(ControlChars.Lf + ControlChars.Cr + "Failed to obtain a response. The following error occurred : {0}", e.Status)
        End If
    Catch e As Exception
        Console.WriteLine(ControlChars.Cr + "The following exception was raised : {0}", e.Message)
    End Try
End Sub

Public Shared Sub Display(ByVal credential As NetworkCredential)
    Console.WriteLine("The credentials are: ")
    Console.WriteLine(ControlChars.Cr + "Username : {0} ,Password : {1} ,Domain : {2}", credential.UserName, credential.Password, credential.Domain)
End Sub

Observações

O GetCredential(Uri, String) método pesquisa o CredentialCache e devolve a NetworkCredential instância para o URI especificado e o tipo de autorização. Se o CredentialCache não contiver nenhuma instância correspondente NetworkCredential , null é devolvido.

GetCredential utiliza o prefixo de URI correspondente mais longo na cache para determinar qual o conjunto de credenciais a devolver para um tipo de autorização. A tabela a seguir mostra exemplos.

Prefixo URI Resultados correspondentes
http://www.contoso.com/portal/news.htm Pedidos para a página news.htmespecífica.
http://www.contoso.com/portal/ Pedidos para todo o conteúdo no portal caminho, exceto para a página news.htm.
http://www.contoso.com/ Pedidos para todos os recursos em www.contoso.com, exceto aqueles no portal caminho.

Aplica-se a

GetCredential(String, Int32, String)

Devolve a NetworkCredential instância associada ao host, porta e protocolo de autenticação especificados.

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);
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

Parâmetros

host
String

A String que identifica o computador anfitrião.

port
Int32

A Int32 que especifica a porta a ligar em host.

authenticationType
String

A String que identifica o esquema de autenticação usado ao ligar a host.

Devoluções

A NetworkCredential ou, se não houver credencial correspondente na cache, null.

Implementações

Exceções

host é null.

-ou-

authenticationType é null.

authenticationType Não é um valor aceite.

-ou-

host é igual à cadeia vazia ("").

port é inferior a zero.

Observações

Este método pesquisa e CredentialCache devolve a NetworkCredential instância para o host, porta e tipo de autorização especificados. Os hostvalores , port, e authenticationType passados a este método são indiferentes a maiúsculas e minúsculas comparados com os valores especificados quando a credencial foi adicionada ao CredentialCache usando os Add métodos.

Os valores suportados para authenticationType são "NTLM", "Digest", "Kerberos" e "Negotiate".

Aplica-se a