Ejemplo n.º 1
0
 internal WikiQueryPageResult(
     QueryPageProcessor queryProcessor, PageQueryParameters parameters, Func <PageData, TResult> selector,
     Dictionary <string, QueryTypeProperties> pageProperties)
 {
     m_selector       = selector;
     m_pageProperties = pageProperties;
     m_queryProcessor = queryProcessor;
     m_parameters     = parameters;
 }
Ejemplo n.º 2
0
 public GeneratorPagesSource(
     Func <int, IEnumerable <HttpQueryParameterBase> > baseParametersSelector, QueryPageProcessor queryPageProcessor)
     : base(queryPageProcessor)
 {
     m_baseParametersSelector = baseParametersSelector;
 }
Ejemplo n.º 3
0
 protected PagesSource(QueryPageProcessor queryPageProcessor)
 {
     m_queryPageProcessor = queryPageProcessor;
 }