1 write to _objectsInUse
System.Private.Xml (1)
System\Xml\Serialization\XmlSerializationWriter.cs (1)
1431
_objectsInUse
= new Hashtable();
6 references to _objectsInUse
System.Private.Xml (6)
System\Xml\Serialization\XmlSerializationWriter.cs (6)
498
if (o != null &&
_objectsInUse
!= null)
500
if (
_objectsInUse
.ContainsKey(o)) throw new InvalidOperationException(SR.Format(SR.XmlCircularReference, o.GetType().FullName));
501
_objectsInUse
.Add(o, o);
654
if (o != null &&
_objectsInUse
!= null)
658
if (!
_objectsInUse
.ContainsKey(o)) throw new InvalidOperationException(SR.Format(SR.XmlInternalErrorDetails, "missing stack object of type " + o.GetType().FullName));
661
_objectsInUse
.Remove(o);