/// <inheritdoc />
 public IUnregisterPercolateResponse UnregisterPercolator(IUnregisterPercolatorRequest unregisterPercolatorRequest)
 {
     return(this.Dispatch <IUnregisterPercolatorRequest, DeleteRequestParameters, UnregisterPercolateResponse>(
                unregisterPercolatorRequest,
                (p, d) => this.RawDispatch.DeleteDispatch <UnregisterPercolateResponse>(p)
                ));
 }
 /// <inheritdoc />
 public Task <IUnregisterPercolateResponse> UnregisterPercolatorAsync(IUnregisterPercolatorRequest unregisterPercolatorRequest)
 {
     return(this.DispatchAsync <IUnregisterPercolatorRequest, DeleteRequestParameters, UnregisterPercolateResponse, IUnregisterPercolateResponse>(
                unregisterPercolatorRequest,
                (p, d) => this.RawDispatch.DeleteDispatchAsync <UnregisterPercolateResponse>(p)
                ));
 }
 /// <inheritdoc/>
 public Task <IUnregisterPercolateResponse> UnregisterPercolatorAsync(IUnregisterPercolatorRequest request) =>
 this.Dispatcher.DispatchAsync <IUnregisterPercolatorRequest, DeleteRequestParameters, UnregisterPercolateResponse, IUnregisterPercolateResponse>(
     request,
     (p, d) => this.LowLevelDispatch.DeleteDispatchAsync <UnregisterPercolateResponse>(p)
     );
 /// <inheritdoc/>
 public IUnregisterPercolateResponse UnregisterPercolator(IUnregisterPercolatorRequest request) =>
 this.Dispatcher.Dispatch <IUnregisterPercolatorRequest, DeleteRequestParameters, UnregisterPercolateResponse>(
     request,
     (p, d) => this.LowLevelDispatch.DeleteDispatch <UnregisterPercolateResponse>(p)
     );
Beispiel #5
0
 public Task <IUnregisterPercolatorResponse> UnregisterPercolatorAsync(IUnregisterPercolatorRequest request, CancellationToken cancellationToken = default(CancellationToken)) =>
 this.Dispatcher.DispatchAsync <IUnregisterPercolatorRequest, DeleteRequestParameters, UnregisterPercolatorResponse, IUnregisterPercolatorResponse>(
     request,
     cancellationToken,
     (p, d, c) => this.LowLevelDispatch.DeleteDispatchAsync <UnregisterPercolatorResponse>(p, c)
     );