2 writes to MaxDepth
System.Formats.Cbor (2)
System\Formats\Cbor\Reader\CborReader.cs (2)
77
MaxDepth
= maxDepth < 0 ? DefaultMaxDepth : maxDepth;
94
MaxDepth
= DefaultMaxDepth;
3 references to MaxDepth
System.Formats.Cbor (3)
System\Formats\Cbor\Reader\CborReader.cs (3)
208
if (CurrentDepth >=
MaxDepth
)
210
throw new CborContentException(SR.Format(SR.Cbor_Reader_MaximumDepthExceeded,
MaxDepth
));
216
Debug.Assert(CurrentDepth <
MaxDepth
);