Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
AsnReaderOptions.cs
Go to the documentation of this file.
1
namespace
System.Formats.Asn1
;
2
3
public
struct
AsnReaderOptions
4
{
5
private
ushort
_twoDigitYearMax
;
6
7
public
int
UtcTimeTwoDigitYearMax
8
{
9
get
10
{
11
if
(
_twoDigitYearMax
== 0)
12
{
13
return
2049;
14
}
15
return
_twoDigitYearMax
;
16
}
17
set
18
{
19
if
(value < 1 || value > 9999)
20
{
21
throw
new
ArgumentOutOfRangeException
(
"value"
);
22
}
23
_twoDigitYearMax
= (ushort)
value
;
24
}
25
}
26
27
public
bool
SkipSetSortOrderVerification
{
get
;
set
; }
28
}
System.ArgumentOutOfRangeException
Definition
ArgumentOutOfRangeException.cs:9
System.Formats.Asn1
Definition
Asn1Tag.cs:3
System.ExceptionArgument.value
@ value
System.Formats.Asn1.AsnReaderOptions.SkipSetSortOrderVerification
bool SkipSetSortOrderVerification
Definition
AsnReaderOptions.cs:27
System.Formats.Asn1.AsnReaderOptions.UtcTimeTwoDigitYearMax
int UtcTimeTwoDigitYearMax
Definition
AsnReaderOptions.cs:8
System.Formats.Asn1.AsnReaderOptions._twoDigitYearMax
ushort _twoDigitYearMax
Definition
AsnReaderOptions.cs:5
System.Formats.Asn1.AsnReaderOptions
Definition
AsnReaderOptions.cs:4
source
System.Formats.Asn1
System.Formats.Asn1
AsnReaderOptions.cs
Generated by
1.10.0