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; 83factory = new System.ServiceModel.ChannelFactory<IEchoService>(binding, 119var factory = new System.ServiceModel.ChannelFactory<IEchoService>(binding, 130var channel = factory.CreateChannel(); 155System.ServiceModel.ChannelFactory<IEchoService> factory = null; 156IEchoService channel = null; 163factory = new System.ServiceModel.ChannelFactory<IEchoService>(binding, 187System.ServiceModel.ChannelFactory<IEchoService> factory = null; 188IEchoService serviceProxy = null; 198factory = new System.ServiceModel.ChannelFactory<IEchoService>(binding, 236builder.AddServiceEndpoint<EchoService, IEchoService>(serverBinding, "net.uds://" + GetUDSFilePath()); 265builder.AddServiceEndpoint<EchoService, IEchoService>(udsBinding, "net.uds://" + GetUDSFilePath()); 294builder.AddServiceEndpoint<EchoService, IEchoService>(udsBinding, "net.uds://" + GetUDSFilePath()); 333builder.AddServiceEndpoint<EchoService, IEchoService>(udsBinding, "net.uds://" + GetUDSFilePath());