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