AuthenticatedStream.IsAuthenticated プロパティ
アセンブリ: System (system.dll 内)
構文認証が成功した場合は true。それ以外の場合は false。
解説
使用例
// 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);
}
}
プラットフォーム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
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。
バージョン情報
参照Weblioに収録されているすべての辞書からAuthenticatedStream.IsAuthenticated プロパティを検索する場合は、下記のリンクをクリックしてください。
全ての辞書からAuthenticatedStream.IsAuthenticated プロパティ
を検索
- AuthenticatedStream.IsAuthenticated プロパティのページへのリンク