ResXResourceManagerGetMetaString Method

Returns the value of the string metadata for the specified culture.

Definition

Namespace: KGySoft.Resources
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 8.1.0
C#
public string? GetMetaString(
	string name,
	CultureInfo? culture = null
)

Parameters

name  String
The name of the metadata to retrieve.
culture  CultureInfo  (Optional)
An object that represents the culture for which the metadata should be returned. If this value is , the CultureInfo object is obtained by using the CultureInfo.InvariantCulture property. Unlike in case of GetString method, no fallback is used if the metadata is not found in the specified culture. This parameter is optional.
Default value: .

Return Value

String
The value of the metadata of the specified culture, or if name cannot be found in a resource set.

Implements

IExpandoResourceManagerGetMetaString(String, CultureInfo)

Remarks

If SafeMode is and name is a non-string metadata, then instead of throwing an InvalidOperationException the method returns the underlying raw XML content of the metadata.

Exceptions

ArgumentNullExceptionname is .
ObjectDisposedExceptionThe ResXResourceManager is already disposed.
InvalidOperationExceptionSafeMode is and the type of the metadata is not String.
MissingManifestResourceExceptionNo usable set of localized resources has been found, and there are no default culture resources. For information about how to handle this exception, see the notes under Instantiating a ResXResourceManager object section of the description of the ResXResourceManager class.

See Also