Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
AsnReaderOptions.cs
Go to the documentation of this file.
1namespace System.Formats.Asn1;
2
3public struct AsnReaderOptions
4{
5 private ushort _twoDigitYearMax;
6
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}