AK.F1.Timing.Server.Proxy.ProxySessionTest.TestContext.TestContext C# (CSharp) 메소드

TestContext() 공개 메소드

public TestContext ( ) : System
리턴 System
            public TestContext()
            {
                using(var server = CreateSocket(TestEndpoint.AddressFamily))
                {
                    server.Bind(TestEndpoint);
                    server.Listen(1);
                    Output = CreateSocket(TestEndpoint.AddressFamily);
                    Output.BeginConnect(TestEndpoint, delegate { }, null);
                    Input = server.Accept();
                }
            }
ProxySessionTest.TestContext