public NamedPipeServer(string pipeName, NamedPipeServerOptions options) { _pool = new ServerStreamPool(pipeName, options, HandleConnection); ServiceBinder = new ServiceBinderImpl(this); }
public NamedPipeServer(Func <INamedPipeServerStream> factory) { _pool = new ServerStreamPool(factory, HandleConnection); ServiceBinder = new ServiceBinderImpl(this); }