1 instantiation of StackFrame
System.Formats.Asn1 (1)
System\Formats\Asn1\AsnWriter.cs (1)
607
_nestingStack.Push(new
StackFrame
(tag, _offset, tagType));
10 references to StackFrame
System.Formats.Asn1 (10)
System\Formats\Asn1\AsnWriter.cs (10)
22
private Stack<
StackFrame
>? _nestingStack;
603
_nestingStack ??= new Stack<
StackFrame
>();
825
private readonly struct StackFrame : IEquatable<
StackFrame
>
845
public bool Equals(
StackFrame
other)
850
public override bool Equals([NotNullWhen(true)] object? obj) => obj is
StackFrame
other && Equals(other);
857
public static bool operator ==(
StackFrame
left,
StackFrame
right) => left.Equals(right);
859
public static bool operator !=(
StackFrame
left,
StackFrame
right) => !left.Equals(right);
873
private readonly
StackFrame
_frame;