22 references to LengthDecodeStatus
System.Formats.Asn1 (22)
System\Formats\Asn1\AsnDecoder.cs (22)
295return DecodeLength(source, ruleSet, out length, out bytesRead) == LengthDecodeStatus.Success; 300LengthDecodeStatus status = DecodeLength(source, ruleSet, out int? length, out bytesConsumed); 304case LengthDecodeStatus.Success: 306case LengthDecodeStatus.LengthTooBig: 308case LengthDecodeStatus.LaxEncodingProhibited: 309case LengthDecodeStatus.DerIndefinite: 311case LengthDecodeStatus.NeedMoreData: 312case LengthDecodeStatus.ReservedValue: 316goto case LengthDecodeStatus.NeedMoreData; 320private static LengthDecodeStatus DecodeLength( 333return LengthDecodeStatus.NeedMoreData; 352return LengthDecodeStatus.DerIndefinite; 356return LengthDecodeStatus.Success; 362return LengthDecodeStatus.Success; 368return LengthDecodeStatus.ReservedValue; 377return LengthDecodeStatus.NeedMoreData; 391return LengthDecodeStatus.LengthTooBig; 406return LengthDecodeStatus.LaxEncodingProhibited; 418return LengthDecodeStatus.LengthTooBig; 431return LengthDecodeStatus.LengthTooBig; 437return LengthDecodeStatus.LaxEncodingProhibited; 442return LengthDecodeStatus.Success;