SslStream.IsSigned Property
.NET Framework 2.0
Note: This property is new in the .NET Framework version 2.0.
Gets a Boolean value that indicates whether the data sent using this stream is signed.
Namespace: System.Net.Security
Assembly: System (in system.dll)
Assembly: System (in system.dll)
The following code example demonstrates displaying the value of this property.
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); }
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.