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)
498if (o != null && _objectsInUse != null) 500if (_objectsInUse.ContainsKey(o)) throw new InvalidOperationException(SR.Format(SR.XmlCircularReference, o.GetType().FullName)); 501_objectsInUse.Add(o, o); 654if (o != null && _objectsInUse != null) 658if (!_objectsInUse.ContainsKey(o)) throw new InvalidOperationException(SR.Format(SR.XmlInternalErrorDetails, "missing stack object of type " + o.GetType().FullName)); 661_objectsInUse.Remove(o);