AsyncSubject<T>
Represents the result of an asynchronous operation.
The last value before the OnCompleted notification, or the error received through OnError, is sent to all subscribed observers.
Gets whether the AsyncSubject has completed.
public AsyncSubject()
Creates a subject that can only receive one value and that value is cached for all future observations.
Gets an awaitable object for the current AsyncSubject.
Gets the last element of the subject, potentially blocking until the subject completes successfully or exceptionally.
Specifies a callback action that will be invoked when the subject completes.