Implemented interface member:
method
RequestAsync
System.ServiceModel.Channels.IAsyncRequestChannel.RequestAsync(System.ServiceModel.Channels.Message, System.TimeSpan)
3 references to RequestAsync
System.ServiceModel.Primitives (3)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (3)
1464return RequestAsync(message, DefaultSendTimeout); 1469Message IRequestChannel.Request(Message message, TimeSpan timeout) => RequestAsync(message, timeout).WaitForCompletionNoSpin(); 1473IAsyncResult IRequestChannel.BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state) => RequestAsync(message, timeout).ToApm(callback, state);