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