HttpListener.AuthenticationSchemes Propriedade

Definição

Obtém ou define o esquema usado para autenticar clientes.

public:
 property System::Net::AuthenticationSchemes AuthenticationSchemes { System::Net::AuthenticationSchemes get(); void set(System::Net::AuthenticationSchemes value); };
public System.Net.AuthenticationSchemes AuthenticationSchemes { get; set; }
member this.AuthenticationSchemes : System.Net.AuthenticationSchemes with get, set
Public Property AuthenticationSchemes As AuthenticationSchemes

Valor da propriedade

AuthenticationSchemes

Uma combinação bit a bit de valores de AuthenticationSchemes enumeração que indica como os clientes devem ser autenticados. O valor padrão é Anonymous.

Exceções

Este objeto foi fechado.

Exemplos

O exemplo de código a seguir demonstra o uso da AuthenticationSchemes propriedade para especificar um esquema de autenticação.

public static void SimpleListenerWithUnsafeAuthentication(string[] prefixes)
{
    // URI prefixes are required,
    // for example "http://contoso.com:8080/index/".
    if (prefixes == null || prefixes.Length == 0)
      throw new ArgumentException("prefixes");
    // Set up a listener.
    HttpListener listener = new HttpListener();
    foreach (string s in prefixes)
    {
        listener.Prefixes.Add(s);
    }
    listener.Start();
    // Specify Negotiate as the authentication scheme.
    listener.AuthenticationSchemes = AuthenticationSchemes.Negotiate;
    // If NTLM is used, we will allow multiple requests on the same
    // connection to use the authentication information of first request.
    // This improves performance but does reduce the security of your
    // application.
    listener.UnsafeConnectionNtlmAuthentication = true;
    // This listener does not want to receive exceptions
    // that occur when sending the response to the client.
    listener.IgnoreWriteExceptions = true;
    Console.WriteLine("Listening...");
    // ... process requests here.

    listener.Close();
}
Public Shared Sub SimpleListenerWithUnsafeAuthentication(ByVal prefixes As String())
    ' URI prefixes are required,
    ' for example "http://contoso.com:8080/index/".
    If prefixes Is Nothing OrElse prefixes.Length = 0 Then Throw New ArgumentException("prefixes")
    ' Set up a listener.
    Dim listener As HttpListener = New HttpListener()

    For Each s As String In prefixes
        listener.Prefixes.Add(s)
    Next

    listener.Start()
    ' Specify Negotiate as the authentication scheme.
    listener.AuthenticationSchemes = AuthenticationSchemes.Negotiate
    ' If NTLM Is used, we will allow multiple requests on the same
    ' connection to use the authentication information of first request.
    ' This improves performance but does reduce the security of your 
    ' application. 
    listener.UnsafeConnectionNtlmAuthentication = True
    ' This listener does Not want to receive exceptions 
    ' that occur when sending the response to the client.
    listener.IgnoreWriteExceptions = True
    Console.WriteLine("Listening...")
    ' ... process requests here.

    listener.Close()
End Sub

Comentários

O HttpListener usa o esquema especificado para autenticar todas as solicitações de entrada. Os GetContext métodos e EndGetContext retornarão uma solicitação de cliente de entrada somente se a HttpListener solicitação for autenticada com êxito.

Você pode interrogar a identidade de um cliente autenticado com êxito usando a HttpListenerContext.User propriedade.

Se você quiser que um HttpListener objeto use diferentes mecanismos de autenticação com base nas características das solicitações recebidas (por exemplo, a Url solicitação ou UserHostName propriedade), você deve implementar um método que escolha o esquema de autenticação. Para obter instruções sobre como fazer isso, consulte a documentação da AuthenticationSchemeSelectorDelegate propriedade.

Observação

Para definir essa propriedade para habilitar Digest, NTLM ou Negotiate requer o SecurityPermission, ControlPrincipal.

Aplica-se a