10 references to Culture
System.Web (10)
Hosting\HostingEnvironment.cs (3)
1783if (gs.Culture != null && gs.Culture.Length > 0) { 1785culture = HttpServerUtility.CreateReadOnlyCultureInfo(gs.Culture);
HttpApplication.cs (2)
2635string culture = globConfig.Culture; 2647_appLevelCulture = HttpServerUtility.CreateReadOnlyCultureInfo(globConfig.Culture);
HttpRuntime.cs (3)
1329if (!String.IsNullOrEmpty(globConfig.Culture) && 1330!StringUtil.StringStartsWithIgnoreCase(globConfig.Culture, "auto")) 1331SetCurrentThreadCultureWithAssert(HttpServerUtility.CreateReadOnlyCultureInfo(globConfig.Culture));
ThreadContext.cs (2)
299if (!String.IsNullOrEmpty(globConfig.Culture)) 300culture = HttpContext.CultureFromConfig(globConfig.Culture, true);