We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c837e6d commit 1bc633fCopy full SHA for 1bc633f
src/Sample1.Client/Program.cs
@@ -28,13 +28,12 @@ static async Task Main(string[] args)
28
encoding.MessageVersion = MessageVersion.Soap12WSAddressing10;
29
30
var factory = new ChannelFactory<IEchoServiceContract>(binding, new EndpointAddress("http://localhost:5000/echo"));
31
- var channel = factory.CreateChannel();
32
-
33
34
for (var i = 0; i < 1_000_000; i++)
35
{
+ var channel = factory.CreateChannel();
36
Console.WriteLine($"Performing echo request: {i}");
37
- _ = channel.Echo("poop");
+ _ = channel.Echo("echo");
38
//Thread.Sleep(50);
39
}
40
0 commit comments