Compartilhar via


ClientCredentials.Windows Propriedade

Definição

Obtém um objeto usado para controlar a credencial do Windows que o cliente usa para se autenticar no serviço.

public:
 property System::ServiceModel::Security::WindowsClientCredential ^ Windows { System::ServiceModel::Security::WindowsClientCredential ^ get(); };
public System.ServiceModel.Security.WindowsClientCredential Windows { get; }
member this.Windows : System.ServiceModel.Security.WindowsClientCredential
Public ReadOnly Property Windows As WindowsClientCredential

Valor da propriedade

WindowsClientCredential

Um WindowsClientCredential que representa a credencial atual do Windows.

Exemplos

O código a seguir mostra como usar o objeto retornado por essa propriedade para configurar o nível de representação.

  // Create a client object with the given client endpoint configuration.
 CalculatorClient client = new CalculatorClient();
try
  {
      client.ClientCredentials.Windows.AllowedImpersonationLevel
          = TokenImpersonationLevel.Impersonation;
  }
  catch (TimeoutException timeProblem)
  {
    Console.WriteLine("The service operation timed out. " + timeProblem.Message);
    Console.ReadLine();
    client.Abort();
  }
  catch (CommunicationException commProblem)
  {
    Console.WriteLine("There was a communication problem. " + commProblem.Message + commProblem.StackTrace);
    Console.ReadLine();
    client.Abort();
  }
  ' Create a client object with the given client endpoint configuration.
 Dim client As New CalculatorClient()
Try
      client.ClientCredentials.Windows.AllowedImpersonationLevel = TokenImpersonationLevel.Impersonation
  Catch timeProblem As TimeoutException
    Console.WriteLine("The service operation timed out. " & timeProblem.Message)
    Console.ReadLine()
    client.Abort()
  Catch commProblem As CommunicationException
    Console.WriteLine("There was a communication problem. " & commProblem.Message + commProblem.StackTrace)
    Console.ReadLine()
    client.Abort()
  End Try

Comentários

Você pode usar o objeto retornado por essa propriedade para configurar a credencial Windows chamando seus membros, como AllowNtlm e AllowedImpersonationLevel.

Essas configurações controlam a credencial Windows usada durante a negociação SPNEGO no nível de mensagem ou transporte ou nas propriedades dos tokens Kerberos usados para autenticação no nível da mensagem.

Aplica-se a