2 writes to MaxDepth
System.Formats.Cbor (2)
System\Formats\Cbor\Writer\CborWriter.cs (2)
89MaxDepth = maxDepth < 0 ? DefaultMaxDepth : maxDepth; 129MaxDepth = DefaultMaxDepth;
4 references to MaxDepth
System.Formats.Cbor (4)
System\Formats\Cbor\Writer\CborWriter.cs (4)
171ValidateEncoding(encodedValue, ConformanceMode, MaxDepth - CurrentDepth); 302if (CurrentDepth >= MaxDepth) 304throw new InvalidOperationException(SR.Format(SR.Cbor_Writer_MaximumDepthExceeded, MaxDepth)); 310Debug.Assert(CurrentDepth < MaxDepth);