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