Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
CertificateRevocationCheckMode
X509RevocationMode
System.Net.Security.SslServerAuthenticationOptions.CertificateRevocationCheckMode
get
set
Definition at line
53
of file
SslServerAuthenticationOptions.cs
.
54
{
55
get
56
{
57
return
_checkCertificateRevocation
;
58
}
59
set
60
{
61
if
(
value
!= 0 &&
value
!=
X509RevocationMode
.Offline &&
value
!=
X509RevocationMode
.Online)
62
{
63
throw
new
ArgumentException
(
System
.
SR
.
Format
(
System
.
SR
.
net_invalid_enum
,
"X509RevocationMode"
),
"value"
);
64
}
65
_checkCertificateRevocation
=
value
;
66
}
67
}
System.Net.Security.SslServerAuthenticationOptions._checkCertificateRevocation
X509RevocationMode _checkCertificateRevocation
Definition
SslServerAuthenticationOptions.cs:9
System.SR.net_invalid_enum
static string net_invalid_enum
Definition
SR.cs:40
System.SR.Format
static string Format(string resourceFormat, object p1)
Definition
SR.cs:118
System.SR
Definition
SR.cs:7
System.Security.Cryptography.X509Certificates.X509RevocationMode
X509RevocationMode
Definition
X509RevocationMode.cs:4
System.Xml.ExceptionType.ArgumentException
@ ArgumentException
System.ExceptionArgument.value
@ value
System
Definition
BlockingCollection.cs:8
System
Net
Security
SslServerAuthenticationOptions
Generated by
1.10.0