public BotController(
     IBot bot,
     BotSettingsBase botSettings,
     IBotFrameworkHttpAdapter botFrameworkHttpAdapter,
     SkillWebSocketAdapter skillWebSocketAdapter)
     : base(bot, botSettings, botFrameworkHttpAdapter, skillWebSocketAdapter)
 {
 }
Exemplo n.º 2
0
 public BotController(
     IBot bot,
     BotSettingsBase botSettings,
     IBotFrameworkHttpAdapter botFrameworkHttpAdapter,
     SkillWebSocketAdapter skillWebSocketAdapter,
     IWhitelistAuthenticationProvider whitelistAuthenticationProvider)
     : base(bot, botSettings, botFrameworkHttpAdapter, skillWebSocketAdapter, whitelistAuthenticationProvider)
 {
 }
        public MockSkillController(
            IBot bot,
            BotSettingsBase botSettings,
            IBotFrameworkHttpAdapter botFrameworkHttpAdapter,
            SkillWebSocketAdapter skillWebSocketAdapter,
            HttpClient httpClient,
            string manifestFileOverride = null)
            : base(bot, botSettings, botFrameworkHttpAdapter, skillWebSocketAdapter)
        {
            HttpClient = httpClient;

            if (manifestFileOverride != null)
            {
                ManifestTemplateFilename = manifestFileOverride;
            }
        }