コード例 #1
0
 public ConfigurationIconFileProvider(IFeatureFlagService featureFlagService, IIconUrlTemplateProcessor iconUrlTemplateProcessor)
 {
     _featureFlagService       = featureFlagService ?? throw new ArgumentNullException(nameof(featureFlagService));
     _iconUrlTemplateProcessor = iconUrlTemplateProcessor ?? throw new ArgumentNullException(nameof(iconUrlTemplateProcessor));
 }
コード例 #2
0
 public ConfigurationIconFileProvider(IAppConfiguration configuration, IIconUrlTemplateProcessor iconUrlTemplateProcessor)
 {
     _configuration            = configuration ?? throw new ArgumentNullException(nameof(configuration));
     _iconUrlTemplateProcessor = iconUrlTemplateProcessor ?? throw new ArgumentNullException(nameof(iconUrlTemplateProcessor));
 }