PRELIMINARY INFORMATION - SUBJECT TO CHANGE
This document is provided on an "AS IS" basis without warranties of any kind. Smartsite iXperion class libraries may change in future releases.
Delegate to localize a value, if applicable.

Namespace: Smartsite.Data
Assembly:  Smartsite.Data (in Smartsite.Data.dll)

Syntax

C#Copy imageCopy Code
public delegate string Localize(
	string value
)
Visual Basic (Declaration)Copy imageCopy Code
Public Delegate Function Localize ( _
	value As  _
) As 

Parameters

value
String
I: Value to localize.

Return Value

Localized value or original value.

Remarks

If the value is in the syntax of a resource identifier the delegate should localize the value by obtaining the localized string resource given the current culture. It should return the value unchanged if it is not in the syntax of a resource identifier.

See Also

Smartsite.Data Namespace
Advanced