1 write to IsDisposed
System.Xaml (1)
System\Xaml\XamlWriter.cs (1)
77IsDisposed = true; // must call the base class to get IsDisposed == true;
8 references to IsDisposed
System.Xaml (7)
System\Xaml\InfosetObjects\DeferredWriter.cs (1)
255if (disposing && !IsDisposed)
System\Xaml\InfosetObjects\XamlObjectWriter.cs (2)
958if (disposing && !IsDisposed) 996ObjectDisposedException.ThrowIf(IsDisposed, typeof(XamlObjectWriter));
System\Xaml\WriterDelegate.cs (2)
73if (disposing && !IsDisposed) 118ObjectDisposedException.ThrowIf(IsDisposed, typeof(XamlWriter)); // Can't say ReaderMultiIndexDelegate because its internal.
System\Xaml\XamlXmlWriter.cs (2)
117if (disposing && !IsDisposed) 261ObjectDisposedException.ThrowIf(IsDisposed, typeof(XamlXmlWriter));
System.Xaml.Tests (1)
System\Xaml\XamlWriterTests.cs (1)
165public bool IsDisposedEntry => IsDisposed;