16 references to ParseNonNegativeIntAndSlice
System.Formats.Asn1 (16)
System\Formats\Asn1\AsnDecoder.GeneralizedTime.cs (8)
130
int year =
ParseNonNegativeIntAndSlice
(ref contents, 4);
131
int month =
ParseNonNegativeIntAndSlice
(ref contents, 2);
132
int day =
ParseNonNegativeIntAndSlice
(ref contents, 2);
133
int hour =
ParseNonNegativeIntAndSlice
(ref contents, 2);
173
minute =
ParseNonNegativeIntAndSlice
(ref contents, 2);
177
second =
ParseNonNegativeIntAndSlice
(ref contents, 2);
300
int offsetHour =
ParseNonNegativeIntAndSlice
(ref contents, 2);
305
offsetMinute =
ParseNonNegativeIntAndSlice
(ref contents, 2);
System\Formats\Asn1\AsnDecoder.UtcTime.cs (8)
151
int year =
ParseNonNegativeIntAndSlice
(ref contents, 2);
152
int month =
ParseNonNegativeIntAndSlice
(ref contents, 2);
153
int day =
ParseNonNegativeIntAndSlice
(ref contents, 2);
154
int hour =
ParseNonNegativeIntAndSlice
(ref contents, 2);
155
int minute =
ParseNonNegativeIntAndSlice
(ref contents, 2);
164
second =
ParseNonNegativeIntAndSlice
(ref contents, 2);
191
offsetHour =
ParseNonNegativeIntAndSlice
(ref contents, 2);
192
offsetMinute =
ParseNonNegativeIntAndSlice
(ref contents, 2);