public InnerContentReader(IInnerContentActivator activator, IInnerContentHandler content,
                           IInnerContentResult result)
 {
     _activator = activator;
     _content   = content;
     _result    = result;
 }
示例#2
0
 public InnerContentServices(IListContentsSpecification specification, IInnerContentActivation activation,
                             IAlteration <IInnerContentHandler> handler, IInnerContentResult results, IMemberHandler member,
                             ICollectionContentsHandler collection, IReaderFormatter formatter)
 {
     _specification = specification;
     _activation    = activation;
     _handler       = handler;
     _results       = results;
     _member        = member;
     _collection    = collection;
     _formatter     = formatter;
 }
 public ParameterizedResultHandler(IInnerContentResult result)
 {
     _result = result;
 }
 public InnerContentResult(ICommand <IInnerContent> command, IInnerContentResult results)
 {
     _command = command;
     _results = results;
 }
 public InnerContentResult(IInnerContentResult results) : this(ExecuteDeferredCommandsCommand.Default, results)
 {
 }