Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ UtcTimeTwoDigitYearMax

int System.Formats.Asn1.AsnReaderOptions.UtcTimeTwoDigitYearMax
getset

Definition at line 7 of file AsnReaderOptions.cs.

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 }

Referenced by System.Formats.Asn1.AsnReader.ReadUtcTime().