1 write to _objectsInUse
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationWriter.cs (1)
1465
_objectsInUse
= new Hashtable();
6 references to _objectsInUse
dotnet-svcutil-lib (6)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationWriter.cs (6)
466
if (o != null &&
_objectsInUse
!= null)
468
if (
_objectsInUse
.ContainsKey(o)) throw new InvalidOperationException(string.Format(ResXml.XmlCircularReference, o.GetType().FullName));
469
_objectsInUse
.Add(o, o);
638
if (o != null &&
_objectsInUse
!= null)
642
if (!
_objectsInUse
.ContainsKey(o)) throw new InvalidOperationException(string.Format(ResXml.XmlInternalErrorDetails, "missing stack object of type " + o.GetType().FullName));
645
_objectsInUse
.Remove(o);