本文整理汇总了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();
}
示例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();
}
示例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);
}