コード例 #1
0
        static AzureAlertConfirmTimerFunction()
        {
            string ServiceManagementHost = System.Environment.GetEnvironmentVariable("ServiceManagementType");

            if (ServiceManagementHost.ToUpper() == "SNOW")
            {
                alertUtils = new AlertUtilities(new ServiceManagementSNOW());
            }
            else
            {
                alertUtils = new AlertUtilities(new ServiceManagementTEST());
            }
        }