12 references to UICulture
System.Web (12)
Hosting\HostingEnvironment.cs (3)
1791
if (gs.
UICulture
!= null && gs.
UICulture
.Length > 0) {
1793
uiCulture = HttpServerUtility.CreateReadOnlyCultureInfo(gs.
UICulture
);
HttpApplication.cs (2)
2636
string uiCulture = globConfig.
UICulture
;
2661
_appLevelUICulture = HttpServerUtility.CreateReadOnlyCultureInfo(globConfig.
UICulture
);
HttpResponse.cs (2)
1173
if ((globConfig != null) && (!String.IsNullOrEmpty(globConfig.
UICulture
))) {
1175
uiculture = HttpServerUtility.CreateReadOnlyCultureInfo(globConfig.
UICulture
);
HttpRuntime.cs (3)
1333
if (!String.IsNullOrEmpty(globConfig.
UICulture
) &&
1334
!StringUtil.StringStartsWithIgnoreCase(globConfig.
UICulture
, "auto"))
1335
Thread.CurrentThread.CurrentUICulture = HttpServerUtility.CreateReadOnlyCultureInfo(globConfig.
UICulture
);
ThreadContext.cs (2)
302
if (!String.IsNullOrEmpty(globConfig.
UICulture
))
303
uiculture = HttpContext.CultureFromConfig(globConfig.
UICulture
, false);