1 implementation of BeginEcho
ScenarioTests.Common.Tests (1)
ScenarioTestTypes.cs (1)
818public IAsyncResult BeginEcho(string message, AsyncCallback callback, object asyncState)
6 references to BeginEcho
Client.ClientBase.IntegrationTests (4)
ChannelBaseTests.4.0.0.cs (4)
37IAsyncResult ar = serviceProxy.BeginEcho(echoText, callback: null, asyncState: null); 80IAsyncResult ar = serviceProxy.BeginEcho("Hello", callback: null, asyncState: null); 132IAsyncResult ar = serviceProxy.BeginEcho("Hello", callback: null, asyncState: null); 187IAsyncResult ar = serviceProxy.BeginEcho("Hello", callback: null, asyncState: null);
Client.TypedClient.IntegrationTests (2)
TypedProxyTests.4.0.0.cs (2)
474IAsyncResult ar = serviceProxy.BeginEcho("Hello", callback, null); 511IAsyncResult ar = serviceProxy.BeginEcho("Hello", null, null);