Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
CertificateRevocationCheckMode
X509RevocationMode
System.Net.Security.SslClientAuthenticationOptions.CertificateRevocationCheckMode
get
set
Definition at line
39
of file
SslClientAuthenticationOptions.cs
.
40
{
41
get
42
{
43
return
_checkCertificateRevocation
;
44
}
45
set
46
{
47
if
(
value
!= 0 &&
value
!=
X509RevocationMode
.Offline &&
value
!=
X509RevocationMode
.Online)
48
{
49
throw
new
ArgumentException
(
System
.
SR
.
Format
(
System
.
SR
.
net_invalid_enum
,
"X509RevocationMode"
),
"value"
);
50
}
51
_checkCertificateRevocation
=
value
;
52
}
53
}
System.Net.Security.SslClientAuthenticationOptions._checkCertificateRevocation
X509RevocationMode _checkCertificateRevocation
Definition
SslClientAuthenticationOptions.cs:11
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
SslClientAuthenticationOptions
Generated by
1.10.0