1 implementation of IEchoService
Binding.UDS.IntegrationTests (1)
ServiceContract\EchoService.cs (1)
9public class EchoService : IEchoService
19 references to IEchoService
Binding.UDS.IntegrationTests (19)
ServiceContract\IEchoService.cs (1)
11public const string TESTSERVICE_NAME = nameof(IEchoService);
UDSBindingTests.cs (18)
33System.ServiceModel.ChannelFactory<IEchoService> factory = null; 34IEchoService serviceProxy = null; 44factory = new System.ServiceModel.ChannelFactory<IEchoService>(binding, 70System.ServiceModel.ChannelFactory<IEchoService> factory = null; 71IEchoService channel = null; 79factory = new System.ServiceModel.ChannelFactory<IEchoService>(binding, 115var factory = new System.ServiceModel.ChannelFactory<IEchoService>(binding, 126var channel = factory.CreateChannel(); 151System.ServiceModel.ChannelFactory<IEchoService> factory = null; 152IEchoService channel = null; 159factory = new System.ServiceModel.ChannelFactory<IEchoService>(binding, 183System.ServiceModel.ChannelFactory<IEchoService> factory = null; 184IEchoService serviceProxy = null; 194factory = new System.ServiceModel.ChannelFactory<IEchoService>(binding, 232builder.AddServiceEndpoint<EchoService, IEchoService>(serverBinding, "net.uds://" + GetUDSFilePath()); 261builder.AddServiceEndpoint<EchoService, IEchoService>(udsBinding, "net.uds://" + GetUDSFilePath()); 290builder.AddServiceEndpoint<EchoService, IEchoService>(udsBinding, "net.uds://" + GetUDSFilePath()); 329builder.AddServiceEndpoint<EchoService, IEchoService>(udsBinding, "net.uds://" + GetUDSFilePath());