12 implementations of EndSend
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\OutputChannel.cs (1)
45
public void
EndSend
(IAsyncResult result)
System.ServiceModel.Primitives (9)
System\ServiceModel\Channels\DuplexChannel.cs (1)
51
public void
EndSend
(IAsyncResult result)
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
346
public void
EndSend
(IAsyncResult result)
System\ServiceModel\Channels\OutputChannel.cs (1)
45
public void
EndSend
(IAsyncResult result)
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
352
public void
EndSend
(IAsyncResult result)
System\ServiceModel\Channels\ServiceChannel.cs (1)
1223
public void
EndSend
(IAsyncResult result)
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
755
void IOutputChannel.
EndSend
(IAsyncResult result)
System\ServiceModel\ClientBase.cs (1)
1188
void IOutputChannel.
EndSend
(IAsyncResult result)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1521
public void
EndSend
(IAsyncResult result)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
1647
public void
EndSend
(IAsyncResult result) => result.ToApmEnd();
System.ServiceModel.Primitives.Tests (2)
ServiceModel\ThrowingOnCloseBindingElement.cs (2)
196
public void
EndSend
(IAsyncResult result) => InnerChannel.EndSend(result);
279
public void
EndSend
(IAsyncResult result) => InnerChannel.EndSend(result);
13 references to EndSend
Client.ChannelLayer.IntegrationTests (1)
DuplexChannelShapeTests.4.0.0.cs (1)
109
channel.
EndSend
,
System.ServiceModel.Primitives (10)
System\ServiceModel\Channels\ClientReliableChannelBinder.cs (1)
281
return Task.Factory.FromAsync(channel.BeginSend, channel.
EndSend
, message, timeout, null);
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
322
return Task.Factory.FromAsync(_innerOutputChannel.BeginSend, _innerOutputChannel.
EndSend
, message, timeout, null);
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
374
await Task.Factory.FromAsync(InnerChannel.BeginSend, InnerChannel.
EndSend
, message, timeoutHelper.RemainingTime(), null);
System\ServiceModel\ClientBase.cs (1)
1190
((IOutputChannel)_channel).
EndSend
(result);
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (5)
347
_channel.
EndSend
(result);
688
context._channel.
EndSend
(result);
710
thisPtr._context._channel.
EndSend
(result);
940
_parent._channel.
EndSend
(sendResult);
1523
_innerChannel.
EndSend
(result);
System\ServiceModel\Dispatcher\OutputChannelBinder.cs (1)
86
_channel.
EndSend
(result);
System.ServiceModel.Primitives.Tests (2)
ServiceModel\ThrowingOnCloseBindingElement.cs (2)
196
public void EndSend(IAsyncResult result) => InnerChannel.
EndSend
(result);
279
public void EndSend(IAsyncResult result) => InnerChannel.
EndSend
(result);