コード例 #1
0
 public TagGeneratorFactory(ActiveProfile profile, HtmlConventionLibrary library, ITagRequestBuilder tagRequestBuilder)
 {
     _profile           = profile;
     _library           = library;
     _tagRequestBuilder = tagRequestBuilder;
 }
 public ShowEditEndpoints(FubuHtmlDocument<ShowModel> document, ActiveProfile profile)
 {
     _document = document;
     _profile = profile;
 }
コード例 #3
0
ファイル: TagGenerator.cs プロジェクト: jv9/htmltags
 public TagGenerator(ITagLibrary library, ActiveProfile profile, Func<Type, object> serviceLocator)
 {
     _library = library;
     _profile = profile;
     _serviceLocator = serviceLocator;
 }
コード例 #4
0
ファイル: TagGenerator.cs プロジェクト: strvmarv/htmltags
 public TagGenerator(ITagLibrary <T> library, ITagRequestBuilder tagRequestBuilder, ActiveProfile profile)
 {
     _library           = library;
     _tagRequestBuilder = tagRequestBuilder;
     _profile           = profile;
 }
コード例 #5
0
ファイル: TagGenerator.cs プロジェクト: chrisortman/htmltags
 public TagGenerator(ITagLibrary <T> library, IEnumerable <ITagRequestActivator> activators, ActiveProfile profile)
 {
     _library    = library;
     _profile    = profile;
     _activators = activators.Where(x => x.Matches(typeof(T))).ToList();
 }
コード例 #6
0
ファイル: TagGenerator.cs プロジェクト: trigrass2/myreport
 public TagGenerator(ITagLibrary library, ActiveProfile profile, Func <Type, object> serviceLocator)
 {
     _library        = library;
     _profile        = profile;
     _serviceLocator = serviceLocator;
 }
コード例 #7
0
 public TagGeneratorFactory(ActiveProfile profile, HtmlConventionLibrary library, IEnumerable <ITagRequestActivator> activators)
 {
     _profile    = profile;
     _library    = library;
     _activators = activators;
 }