public ClassParser(IParserCollection parserCollection, ILog logger)
 {
     this.parserCollection = parserCollection;
     this.logger           = logger;
 }
 public EndpointDeclarationFactoryOptions(string routePatern, IEnumerable <IEndpointMetaDataDeclaration> endpointMetaDeclarations, IParserCollection parsers)
 {
     RoutePattern             = routePatern;
     EndpointMetaDeclarations = endpointMetaDeclarations.ToArray();
     Parsers = parsers;
 }
Beispiel #3
0
 public EnumerableParser(IParserCollection parserCollection)
 {
     this.parserCollection = parserCollection;
 }