示例#1
0
 public Handler(ITranslatorProtocolHandlerSimple handler)
 {
     this.handler = handler;
 }
 public static INodeEndpointProtocolFactory With(this INodeEndpointProtocolFactory factory, ITranslatorProtocolHandlerSimple handler)
 {
     return(factory.With(new TranslatorProtocolHandlerFactorySimple(handler)));
 }
示例#3
0
 public TranslatorProtocolHandlerFactorySimple(ITranslatorProtocolHandlerSimple handler)
 {
     this.handler = handler;
 }