2 implementations of EndReceive
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (1)
116
public Message
EndReceive
(IAsyncResult result)
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
257
public Message
EndReceive
(IAsyncResult result) => InnerChannel.EndReceive(result);
2 references to EndReceive
Client.ChannelLayer.IntegrationTests (1)
DuplexChannelShapeTests.4.0.0.cs (1)
111
replyMessage = Task.Factory.FromAsync(channel.BeginReceive, channel.
EndReceive
, TaskCreationOptions.None).GetAwaiter().GetResult();
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
257
public Message EndReceive(IAsyncResult result) => InnerChannel.
EndReceive
(result);