IEngineExtensionsLocalize(IEngine, String, Object) Method

Gets a localized Web string.

Namespace: Dundas.BI.Web
Assembly: Dundas.BI.Web.Core (in Dundas.BI.Web.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
Syntax
public static string Localize(
	this IEngine engine,
	string key,
	params Object[] formatArgs
)

Parameters

engine  IEngine
The engine context.
key  String
The key of the string.
formatArgs  Object
An object array that contains zero or more objects to format.

Return Value

String
The string corresponding to key for the culture associated with the currently in-context Session; or key if there was no corresponding string defined for that culture (or any of its parent cultures).

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEngine. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also