Service property

ExchangeService Service
override
Begins an asynchronous request to unsubscribe from the streaming subscription. The AsyncCallback delegate. An object that contains state information for this request. Ends an asynchronous request to unsubscribe from the streaming subscription. An IAsyncResult that references the asynchronous request. Gets the service used to create this subscription.

Implementation

// IAsyncResult BeginUnsubscribe(AsyncCallback callback, object state)
//        {
//            return this.Service.BeginUnsubscribe(callback, state, this.Id);
//        }

/// <summary>
/// Ends an asynchronous request to unsubscribe from the streaming subscription.
/// </summary>
/// <param name="asyncResult">An IAsyncResult that references the asynchronous request.</param>
// void EndUnsubscribe(IAsyncResult asyncResult)
//        {
//            this.Service.EndUnsubscribe(asyncResult);
//        }

/// <summary>
/// Gets the service used to create this subscription.
/// </summary>
ExchangeService get Service => super.Service;