1 write to _objectsInUse
System.Private.Xml (1)
System\Xml\Serialization\XmlSerializationWriter.cs (1)
1478
_objectsInUse
= new Hashtable();
6 references to _objectsInUse
System.Private.Xml (6)
System\Xml\Serialization\XmlSerializationWriter.cs (6)
545
if (o != null &&
_objectsInUse
!= null)
547
if (
_objectsInUse
.ContainsKey(o)) throw new InvalidOperationException(SR.Format(SR.XmlCircularReference, o.GetType().FullName));
548
_objectsInUse
.Add(o, o);
701
if (o != null &&
_objectsInUse
!= null)
705
if (!
_objectsInUse
.ContainsKey(o)) throw new InvalidOperationException(SR.Format(SR.XmlInternalErrorDetails, "missing stack object of type " + o.GetType().FullName));
708
_objectsInUse
.Remove(o);