| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- // Licensed to the .NET Foundation under one or more agreements.
- // The .NET Foundation licenses this file to you under the MIT License.
- // See the LICENSE file in the project root for more information.
- #nullable disable
- namespace System.Reactive.Disposables
- {
- /// <summary>
- /// Represents a disposable resource whose underlying disposable resource can be swapped for another disposable resource.
- /// </summary>
- public sealed class MultipleAssignmentDisposable : ICancelable
- {
- private IDisposable _current;
- /// <summary>
- /// Initializes a new instance of the <see cref="MultipleAssignmentDisposable"/> class with no current underlying disposable.
- /// </summary>
- public MultipleAssignmentDisposable()
- {
- }
- /// <summary>
- /// Gets a value that indicates whether the object is disposed.
- /// </summary>
- public bool IsDisposed => Disposables.Disposable.GetIsDisposed(ref _current);
- /// <summary>
- /// Gets or sets the underlying disposable. After disposal, the result of getting this property is undefined.
- /// </summary>
- /// <remarks>If the <see cref="MultipleAssignmentDisposable"/> has already been disposed, assignment to this property causes immediate disposal of the given disposable object.</remarks>
- public IDisposable Disposable
- {
- get => Disposables.Disposable.GetValueOrDefault(ref _current);
- set => Disposables.Disposable.TrySetMultiple(ref _current, value);
- }
- /// <summary>
- /// Disposes the underlying disposable as well as all future replacements.
- /// </summary>
- public void Dispose()
- {
- Disposables.Disposable.TryDispose(ref _current);
- }
- }
- }
|