13 references to ToApm
dotnet-svcutil-lib (13)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CommunicationObject.cs (4)
123return CloseAsyncInternal(timeout).ToApm(callback, state); 133return OpenAsyncInternal(timeout).ToApm(callback, state); 810return communicationObject.OnCloseAsync(timeout).ToApm(callback, state); 825return communicationObject.OnOpenAsync(timeout).ToApm(callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\FramingChannels.cs (1)
221return OnOpenAsync(timeout).ToApm(callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpChannelFactory.cs (1)
482return OnOpenAsync(timeout).ToApm(callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Message.cs (1)
411return OnWriteBodyContentsAsync(writer).ToApm(callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageEncoder.cs (1)
107return this.WriteMessageAsync(message, stream).ToApm(callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\OutputChannel.cs (1)
41return OnSendAsync(message, timeout).ToApm(callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\RequestChannel.cs (1)
78return WaitForPendingRequestsAsync(timeout).ToApm(callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TextMessageEncoder.cs (1)
564return this.WriteMessageAsync(message, stream).ToApm(callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (2)
430return OnCloseAsync(timeout).ToApm(callback, state); 782return _channel.CloseOutputSessionAsync(timeout).ToApm(callback, state);