forked from Azure/azure-webjobs-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConstants.cs
13 lines (12 loc) · 833 Bytes
/
Constants.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
namespace Microsoft.Azure.WebJobs.Host
{
internal static class Constants
{
public const string EnvironmentSettingName = "AzureWebJobsEnv";
public const string DevelopmentEnvironmentValue = "Development";
public const string ExtensionInitializationMessage = "If you're using binding extensions (e.g. ServiceBus, Timers, etc.) make sure you've called the registration method for the extension(s) in your startup code (e.g. config.UseServiceBus(), config.UseTimers(), etc.).";
public const string UnableToBindParameterFormat = "Cannot bind parameter '{0}' to type {1}. Make sure the parameter Type is supported by the binding. {2}";
}
}