//-----------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------
namespace Microsoft
{
using System;
///
/// A disposable object that also provides a safe way to query its disposed status.
///
public interface IDisposableObservable : IDisposable
{
///
/// Gets a value indicating whether this instance has been disposed.
///
bool IsDisposed { get; }
}
}