当前位置: 首页>>代码示例>>C#>>正文


C# JobHostConfiguration.UseDevelopmentSettings方法代码示例

本文整理汇总了C#中JobHostConfiguration.UseDevelopmentSettings方法的典型用法代码示例。如果您正苦于以下问题:C# JobHostConfiguration.UseDevelopmentSettings方法的具体用法?C# JobHostConfiguration.UseDevelopmentSettings怎么用?C# JobHostConfiguration.UseDevelopmentSettings使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在JobHostConfiguration的用法示例。


在下文中一共展示了JobHostConfiguration.UseDevelopmentSettings方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Main

        // Please set the following connection strings in app.config for this WebJob to run:
        // AzureWebJobsDashboard and AzureWebJobsStorage
        static void Main()
        {
            var config = new JobHostConfiguration();
            var slackConfig = new SlackConfiguration();
            WebHooksConfiguration webhookConfig;

            if(config.IsDevelopment)
            {
                config.UseDevelopmentSettings();
                webhookConfig = new WebHooksConfiguration(3000);
            }
            else
            {
                webhookConfig = new WebHooksConfiguration();
            }

            // These are optional and will be applied if no other value is specified.
            /*
            slackConfig.WebHookUrl = "";
            // IT IS A BAD THING TO HARDCODE YOUR WEBHOOKURL, USE THE APP SETTING "AzureWebJobsSlackWebHookKeyName"
            slackConfig.IconEmoji = "";
            slackConfig.Username = "";
            slackConfig.Channel = "";
            */

            config.UseSlack(slackConfig);
            config.UseWebHooks(webhookConfig);

            var host = new JobHost(config);
            // The following code ensures that the WebJob will be running continuously
            host.RunAndBlock();
        }
开发者ID:christopheranderson,项目名称:azure-webjobs-sdk-extensions-slack,代码行数:34,代码来源:Program.cs

示例2: Main

        public static void Main(string[] args)
        {
            JobHostConfiguration config = new JobHostConfiguration();
            FilesConfiguration filesConfig = new FilesConfiguration();

            // See https://github.com/Azure/azure-webjobs-sdk/wiki/Running-Locally for details
            // on how to set up your local environment
            if (config.IsDevelopment)
            {
                config.UseDevelopmentSettings();
                filesConfig.RootPath = @"c:\temp\files";
            }

            config.UseFiles(filesConfig);
            config.UseTimers();
            config.UseSample();
            config.UseCore();
            var sendGridConfiguration = new SendGridConfiguration()
            {
                ToAddress = "[email protected]",
                FromAddress = new MailAddress("[email protected]", "WebJobs Extensions Samples")
            };
            config.UseSendGrid(sendGridConfiguration);

            ConfigureTraceMonitor(config, sendGridConfiguration);
            
            EnsureSampleDirectoriesExist(filesConfig.RootPath);

            WebHooksConfiguration webHooksConfig = new WebHooksConfiguration();
            webHooksConfig.UseReceiver<GitHubWebHookReceiver>();
            config.UseWebHooks(webHooksConfig);

            JobHost host = new JobHost(config);

            host.Call(typeof(MiscellaneousSamples).GetMethod("ExecutionContext"));
            host.Call(typeof(FileSamples).GetMethod("ReadWrite"));
            host.Call(typeof(SampleSamples).GetMethod("Sample_BindToStream"));
            host.Call(typeof(SampleSamples).GetMethod("Sample_BindToString"));
            host.Call(typeof(TableSamples).GetMethod("CustomBinding"));

            host.RunAndBlock();
        }
开发者ID:paulbatum,项目名称:azure-webjobs-sdk-extensions,代码行数:42,代码来源:Program.cs

示例3: UseDevelopmentSettings_ConfiguresCorrectValues

        public void UseDevelopmentSettings_ConfiguresCorrectValues()
        {
            string prev = Environment.GetEnvironmentVariable(Constants.EnvironmentSettingName);
            Environment.SetEnvironmentVariable(Constants.EnvironmentSettingName, "Development");

            JobHostConfiguration config = new JobHostConfiguration();
            Assert.False(config.UsingDevelopmentSettings);

            if (config.IsDevelopment)
            {
                config.UseDevelopmentSettings();
            }

            Assert.True(config.UsingDevelopmentSettings);
            Assert.Equal(TraceLevel.Verbose, config.Tracing.ConsoleLevel);
            Assert.Equal(TimeSpan.FromSeconds(2), config.Queues.MaxPollingInterval);
            Assert.Equal(TimeSpan.FromSeconds(15), config.Singleton.ListenerLockPeriod);

            Environment.SetEnvironmentVariable(Constants.EnvironmentSettingName, prev);
        }
开发者ID:mehtavipul,项目名称:azure-webjobs-sdk,代码行数:20,代码来源:JobHostConfigurationTests.cs


注:本文中的JobHostConfiguration.UseDevelopmentSettings方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。