ResourceManager::GetResourceSet Method
Gets the ResourceSet for a particular culture.
Assembly: mscorlib (in mscorlib.dll)
public: virtual ResourceSet^ GetResourceSet( CultureInfo^ culture, bool createIfNotExists, bool tryParents )
Parameters
- culture
- Type: System.Globalization::CultureInfo
The culture whose resources are to be retrieved.
- createIfNotExists
- Type: System::Boolean
true to load the resource set, if it has not been loaded yet; otherwise, false.
- tryParents
- Type: System::Boolean
true to use resource fallback to load an appropriate resource if the resource set cannot be found; false to bypass the resource fallback process. (See the Remarks section.)
| Exception | Condition |
|---|---|
| ArgumentNullException | The culture parameter is nullptr. |
| MissingManifestResourceException | tryParents is true, no usable set of resources has been found, and there are no default culture resources. |
The resource set that is returned represents the resources localized for the specified culture. If the resources have not been localized for that culture and tryParents is true, GetResourceSet uses resource fallback rules to load an appropriate resource. If tryParents is false and a culture-specific resource set cannot be found, the method returns nullptr. For more information about resource fallback, see "The Resource Fallback Process" section in the Packaging and Deploying Resources article.
- ReflectionPermission
when invoked late-bound through mechanisms such as Type::InvokeMember. Associated enumeration: ReflectionPermissionFlag::MemberAccess.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.