6 references to FromAsync
Client.ChannelLayer.IntegrationTests (3)
DuplexChannelShapeTests.4.0.0.cs (1)
111replyMessage = Task.Factory.FromAsync(channel.BeginReceive, channel.EndReceive, TaskCreationOptions.None).GetAwaiter().GetResult();
RequestReplyChannelShapeTests.4.0.0.cs (2)
157replyMessage = Task.Factory.FromAsync((asyncCallback, o) => channel.BeginRequest(requestMessage, asyncCallback, o), 213replyMessage = Task.Factory.FromAsync((asyncCallback, o) => channel.BeginRequest(requestMessage, asyncCallback, o),
System.Net.HttpListener (2)
System\Net\HttpListener.cs (1)
292return Task.Factory.FromAsync(
System\Net\HttpListenerRequest.cs (1)
256return Task.Factory.FromAsync(
System.ServiceModel.Primitives (1)
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
145message = await Task.Factory.FromAsync(InnerChannel.BeginReceive, InnerChannel.EndReceive, null);