SslStream.IsAuthenticated プロパティ

定義

認証が成功したかどうかを示す Boolean 値を取得します。

public override bool IsAuthenticated { get; }

プロパティ値

認証が成功した場合は true。それ以外の場合は false

次のコード例は、このプロパティの値を表示する方法を示しています。

static void DisplaySecurityServices(SslStream stream)
{
   Console.WriteLine("Is authenticated: {0} as server? {1}", stream.IsAuthenticated, stream.IsServer);
   Console.WriteLine("IsSigned: {0}", stream.IsSigned);
   Console.WriteLine("Is Encrypted: {0}", stream.IsEncrypted);
   Console.WriteLine("Is mutually authenticated: {0}", stream.IsMutuallyAuthenticated);
}

注釈

クライアントは、 メソッドまたは BeginAuthenticateAsClient メソッドをAuthenticateAsClient呼び出して認証します。 サーバーは、 メソッドまたは BeginAuthenticateAsServer メソッドをAuthenticateAsServer呼び出して認証します。

適用対象

製品 バージョン
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1