ILocalizationServiceGetString(Guid, String, CultureInfo, Object) Method |
Gets the string corresponding to the specified key.
Namespace: Dundas.BIAssembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
Syntaxstring GetString(
Guid moduleId,
string key,
CultureInfo culture,
params Object?[] formatArgs
)
Function GetString (
moduleId As Guid,
key As String,
culture As CultureInfo,
ParamArray formatArgs As Object()
) As String
String^ GetString(
Guid moduleId,
String^ key,
CultureInfo^ culture,
... array<Object^>^ formatArgs
)
abstract GetString :
moduleId : Guid *
key : string *
culture : CultureInfo *
formatArgs : Object[] -> string Parameters
- moduleId Guid
- The ID of the module for which the string is registered.
- key String
- The key of the string to look up.
- culture CultureInfo
- The culture for which to retrieve the strings.
- formatArgs Object
- An object array that contains zero or more objects to format.
Return Value
String
The string corresponding to
key for the specified culture;
or
key if there was no corresponding string defined for
that culture (or any of its parent cultures).
Exceptions
See Also