1 write to IsDisposed
System.Xaml (1)
System\Xaml\XamlWriter.cs (1)
78IsDisposed = true; // must call the base class to get IsDisposed == true;
8 references to IsDisposed
System.Xaml (7)
System\Xaml\InfosetObjects\DeferredWriter.cs (1)
256if (disposing && !IsDisposed)
System\Xaml\InfosetObjects\XamlObjectWriter.cs (2)
959if (disposing && !IsDisposed) 997ObjectDisposedException.ThrowIf(IsDisposed, typeof(XamlObjectWriter));
System\Xaml\WriterDelegate.cs (2)
74if (disposing && !IsDisposed) 119ObjectDisposedException.ThrowIf(IsDisposed, typeof(XamlWriter)); // Can't say ReaderMultiIndexDelegate because its internal.
System\Xaml\XamlXmlWriter.cs (2)
119if (disposing && !IsDisposed) 263ObjectDisposedException.ThrowIf(IsDisposed, typeof(XamlXmlWriter));
System.Xaml.Tests (1)
System\Xaml\XamlWriterTests.cs (1)
165public bool IsDisposedEntry => IsDisposed;