2 implementations of CreateChannel
System.ServiceModel.Primitives (2)
netstandard.cs (2)
461public TChannel CreateChannel(System.ServiceModel.EndpointAddress address) { return default; } 1344public TChannel CreateChannel(System.ServiceModel.EndpointAddress address) { return default; }
11 references to CreateChannel
Client.ChannelLayer.IntegrationTests (9)
DuplexChannelShapeTests.4.0.0.cs (2)
41channel = factory.CreateChannel(new EndpointAddress(Endpoints.Tcp_NoSecurity_Address)); 96channel = factory.CreateChannel(new EndpointAddress(Endpoints.Tcp_NoSecurity_Address));
DuplexChannelShapeTests.4.1.0.cs (2)
38channel = factory.CreateChannel(new EndpointAddress(Endpoints.HttpBaseAddress_NetHttpsWebSockets)); 98channel = factory.CreateChannel(new EndpointAddress(Endpoints.HttpBaseAddress_NetHttpWebSockets));
RequestReplyChannelShapeTests.4.0.0.cs (4)
40channel = factory.CreateChannel(new EndpointAddress(Endpoints.HttpBaseAddress_Basic_Text)); 94channel = factory.CreateChannel(new EndpointAddress(Endpoints.DefaultCustomHttp_Address)); 146channel = factory.CreateChannel(new EndpointAddress(Endpoints.HttpBaseAddress_Basic_Text)); 202channel = factory.CreateChannel(new EndpointAddress(Endpoints.DefaultCustomHttp_Address));
RequestReplyChannelShapeTests.4.1.0.cs (1)
39channel = factory.CreateChannel(new EndpointAddress(Endpoints.HttpBaseAddress_NetHttps_Binary));
Contract.Message.IntegrationTests (1)
MessageTests.4.0.0.cs (1)
29IRequestChannel channel = factory.CreateChannel(new EndpointAddress(Endpoints.HttpBaseAddress_Basic_Text));
System.ServiceModel.Primitives.Tests (1)
Channels\CustomBindingTest.cs (1)
30IRequestChannel channel = factory.CreateChannel(new EndpointAddress("http://localhost/WcfProjectNService.svc"));