AuthenticatedStream.IsMutuallyAuthenticated Propriedade

Definição

Obtém um valor Boolean que indica se o servidor e o cliente foram autenticados.

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

Valor da propriedade

Boolean

true se o cliente e o servidor tiverem sido autenticados; caso contrário, false.

Exemplos

O exemplo a seguir demonstra a exibição do valor dessa propriedade.

// The following class displays the properties of an authenticatedStream.
public ref class AuthenticatedStreamReporter
{
public:
   static void DisplayProperties( AuthenticatedStream^ stream )
   {
      Console::WriteLine( L"IsAuthenticated: {0}", stream->IsAuthenticated );
      Console::WriteLine( L"IsMutuallyAuthenticated: {0}", stream->IsMutuallyAuthenticated );
      Console::WriteLine( L"IsEncrypted: {0}", stream->IsEncrypted );
      Console::WriteLine( L"IsSigned: {0}", stream->IsSigned );
      Console::WriteLine( L"IsServer: {0}", stream->IsServer );
   }

};
// The following class displays the properties of an authenticatedStream.
public class AuthenticatedStreamReporter
{
    public static void DisplayProperties(AuthenticatedStream stream)
    {
        Console.WriteLine("IsAuthenticated: {0}", stream.IsAuthenticated);
        Console.WriteLine("IsMutuallyAuthenticated: {0}", stream.IsMutuallyAuthenticated);
        Console.WriteLine("IsEncrypted: {0}", stream.IsEncrypted);
        Console.WriteLine("IsSigned: {0}", stream.IsSigned);
        Console.WriteLine("IsServer: {0}", stream.IsServer);
    }
}
' The following class displays the properties of an AuthenticatedStream.
Public Class AuthenticatedStreamReporter
    Public Shared Sub DisplayProperties(stream As AuthenticatedStream)
        Console.WriteLine("IsAuthenticated: {0}", stream.IsAuthenticated)
        Console.WriteLine("IsMutuallyAuthenticated: {0}", stream.IsMutuallyAuthenticated)
        Console.WriteLine("IsEncrypted: {0}", stream.IsEncrypted)
        Console.WriteLine("IsSigned: {0}", stream.IsSigned)
        Console.WriteLine("IsServer: {0}", stream.IsServer)
    End Sub
End Class

Comentários

Nem todos os protocolos de segurança dão suporte à autenticação mútua. Para determinar se a autenticação mútua tem suporte pelo protocolo de segurança implementado em uma classe que herda, verifique a documentação da AuthenticatedStreamclasse.

Aplica-se a