Aracılığıyla paylaş


HttpListenerRequest.IsAuthenticated Özellik

Tanım

Bu isteği gönderen istemcinin kimliğinin doğrulanıp doğrulanmamış olduğunu belirten bir Boolean değer alır.

public:
 property bool IsAuthenticated { bool get(); };
public bool IsAuthenticated { get; }
member this.IsAuthenticated : bool
Public ReadOnly Property IsAuthenticated As Boolean

Özellik Değeri

true istemcinin kimliği doğrulandıysa; aksi takdirde , false.

Örnekler

Aşağıdaki kod örneği özelliğinin IsAuthenticated değerini görüntüler.

public static void ShowRequestProperties2 (HttpListenerRequest request)
{
    Console.WriteLine("KeepAlive: {0}", request.KeepAlive);
    Console.WriteLine("Local end point: {0}", request.LocalEndPoint.ToString());
    Console.WriteLine("Remote end point: {0}", request.RemoteEndPoint.ToString());
    Console.WriteLine("Is local? {0}", request.IsLocal);
    Console.WriteLine("HTTP method: {0}", request.HttpMethod);
    Console.WriteLine("Protocol version: {0}", request.ProtocolVersion);
    Console.WriteLine("Is authenticated: {0}", request.IsAuthenticated);
    Console.WriteLine("Is secure: {0}", request.IsSecureConnection);
}
Public Shared Sub ShowRequestProperties2(ByVal request As HttpListenerRequest)
    Console.WriteLine("KeepAlive: {0}", request.KeepAlive)
    Console.WriteLine("Local end point: {0}", request.LocalEndPoint.ToString())
    Console.WriteLine("Remote end point: {0}", request.RemoteEndPoint.ToString())
    Console.WriteLine("Is local? {0}", request.IsLocal)
    Console.WriteLine("HTTP method: {0}", request.HttpMethod)
    Console.WriteLine("Protocol version: {0}", request.ProtocolVersion)
    Console.WriteLine("Is authenticated: {0}", request.IsAuthenticated)
    Console.WriteLine("Is secure: {0}", request.IsSecureConnection)
End Sub

Açıklamalar

Uygulamanız veya AuthenticationSchemeSelectorDelegate özelliğini kullanarak AuthenticationSchemes istemci kimlik doğrulaması ister.

Uygulamanız, kimliği başarıyla doğrulanmamış istemcilerden gelen istekler için bir HttpListenerContext almaz.

Şunlara uygulanır

Ayrıca bkz.