UltimateResourceFallbackLocation Enumeration
Specifies the assembly for the ResourceManager class to use to retrieve neutral resources by using the Packaging and Deploying Resources.
Assembly: mscorlib (in mscorlib.dll)
Use the UltimateResourceFallbackLocation enumeration with the NeutralResourcesLanguageAttribute constructor to specify whether the ResourceManager class is to retrieve neutral fallback resources from the main application assembly (the default), or from a satellite assembly.
The following code example displays the neutral language, fallback location, and fallback culture for a resource manager that is created for the current user interface culture or a culture specified on the command line.
using System; using System.Resources; using System.Globalization; using System.Threading; [assembly: NeutralResourcesLanguageAttribute("de" , UltimateResourceFallbackLocation.Satellite)] public class Demo { public static void Main(string[] args) { // If a specific culture is passed in through the command line, use that -- otherwise // just use the current ui culture String strCulture = ""; if (args.Length == 1) { strCulture = args[0]; } if (strCulture != "") { try { Thread.CurrentThread.CurrentUICulture = new CultureInfo(strCulture); } catch (ArgumentException e){ Console.WriteLine(e.Message, "Bad command-line argument"); } } else Console.WriteLine("Current culture is: {0}", CultureInfo.CurrentUICulture.ToString()); ResourceManager rm; try { rm = new ResourceManager("MyStrings", typeof(Demo).Assembly); NeutralResourcesLanguageAttribute attr = new NeutralResourcesLanguageAttribute("de", UltimateResourceFallbackLocation.Satellite); Console.WriteLine("Neutral language = " + rm.GetString("Language") + ", Fallback location = " + attr.Location.ToString() + ", Fallback culture = " + attr.CultureName.ToString()); Console.WriteLine(rm.GetString("MSG")); } catch (MissingSatelliteAssemblyException e){ Console.WriteLine(e.Message, "Unable to locate satellite Assembly"); } } }
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.