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)
466if (o != null && _objectsInUse != null) 468if (_objectsInUse.ContainsKey(o)) throw new InvalidOperationException(string.Format(ResXml.XmlCircularReference, o.GetType().FullName)); 469_objectsInUse.Add(o, o); 638if (o != null && _objectsInUse != null) 642if (!_objectsInUse.ContainsKey(o)) throw new InvalidOperationException(string.Format(ResXml.XmlInternalErrorDetails, "missing stack object of type " + o.GetType().FullName)); 645_objectsInUse.Remove(o);