SslStream.CheckCertRevocationStatus 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
인증서 유효성 검사 프로세스를 진행하는 동안 인증서 해지 목록을 확인하는지 여부를 나타내는 Boolean 값을 가져옵니다.
public:
virtual property bool CheckCertRevocationStatus { bool get(); };
public virtual bool CheckCertRevocationStatus { get; }
member this.CheckCertRevocationStatus : bool
Public Overridable ReadOnly Property CheckCertRevocationStatus As Boolean
속성 값
인증서 해지 목록을 검사하면 true
이고, 검사하지 않으면 false
입니다.
예제
다음 코드 예제에서는이 속성의 값을 표시 합니다.
static void DisplayStreamProperties( SslStream^ stream )
{
Console::WriteLine( L"Can read: {0}, write {1}", stream->CanRead, stream->CanWrite );
Console::WriteLine( L"Can timeout: {0}", stream->CanTimeout );
}
static void DisplayStreamProperties(SslStream stream)
{
Console.WriteLine("Can read: {0}, write {1}", stream.CanRead, stream.CanWrite);
Console.WriteLine("Can timeout: {0}", stream.CanTimeout);
}
Private Shared Sub DisplayStreamProperties(stream As SslStream)
Console.WriteLine("Can read: {0}, write {1}", stream.CanRead, stream.CanWrite)
Console.WriteLine("Can timeout: {0}", stream.CanTimeout)
End Sub
설명
인증서 해지 목록에는 발급자에서 해지한 인증서가 포함되어 있습니다. 이 목록을 확인 성능에 영향을 줍니다 하지만 애플리케이션 보안을 향상 시킵니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET