6 instantiations of SerStack
System.Runtime.Serialization.Formatters (6)
System\Runtime\Serialization\Formatters\Binary\BinaryObjectInfo.cs (1)
748internal SerStack _oiPool = new SerStack("SerObjectInfo Pool");
System\Runtime\Serialization\Formatters\Binary\BinaryObjectReader.cs (2)
44private SerStack ValueFixupStack => _valueFixupStack ??= new SerStack("ValueType Fixup Stack"); 149_stack = new SerStack("ObjectReader Object Stack");
System\Runtime\Serialization\Formatters\Binary\BinaryObjectWriter.cs (1)
1007private readonly SerStack _niPool = new SerStack("NameInfo Pool");
System\Runtime\Serialization\Formatters\Binary\BinaryParser.cs (2)
27internal SerStack _stack = new SerStack("ObjectProgressStack"); 1052_opPool ??= new SerStack("opPool");
7 references to SerStack
System.Runtime.Serialization.Formatters (7)
System\Runtime\Serialization\Formatters\Binary\BinaryObjectInfo.cs (1)
748internal SerStack _oiPool = new SerStack("SerObjectInfo Pool");
System\Runtime\Serialization\Formatters\Binary\BinaryObjectReader.cs (3)
33internal SerStack? _stack; 36private SerStack? _valueFixupStack; 44private SerStack ValueFixupStack => _valueFixupStack ??= new SerStack("ValueType Fixup Stack");
System\Runtime\Serialization\Formatters\Binary\BinaryObjectWriter.cs (1)
1007private readonly SerStack _niPool = new SerStack("NameInfo Pool");
System\Runtime\Serialization\Formatters\Binary\BinaryParser.cs (2)
27internal SerStack _stack = new SerStack("ObjectProgressStack"); 35private SerStack? _opPool;