Example #1
0
        public SGDBMetadataProvider(MetadataRequestOptions options, SGDBMetadata plugin, string apiKey, string dimension, string style)
        {
            this.options = options;
            this.plugin  = plugin;
            services     = new SgdbServiceClient(apiKey, dimension, style);
            var logger = LogManager.GetLogger();

            logger.Info("SGDB Initialized");
        }
        public SGDBMetadataProvider(MetadataRequestOptions options, SGDBMetadata plugin, string apiKey, string dimension, string style, string nsfw, string humor, string iconAssetSelection)
        {
            this.options            = options;
            this.plugin             = plugin;
            this.iconAssetSelection = iconAssetSelection;
            services = new SgdbServiceClient(apiKey, dimension, style, nsfw, humor);
            var logger = LogManager.GetLogger();

            logger.Info("SGDB Initialized");
        }
 public SGDBMetadataProvider(MetadataRequestOptions options, SGDBMetadata plugin, string apiKey, string dimension, string style)
 {
     this.options = options;
     this.plugin  = plugin;
     services     = new SgdbServiceClient(apiKey, dimension, style);
 }