
'Declaration
<DataContractAttribute("http://opcfoundation.org/UA/2008/02/Types.xsd")> Public Class LocalizedText
'Usage
Dim instance As LocalizedText
[DataContract("http://opcfoundation.org/UA/2008/02/Types.xsd")] public class LocalizedText
[DataContract("http://opcfoundation.org/UA/2008/02/Types.xsd")] public ref class LocalizedText
The LocalizedText is defined in Part 3 - Address Space Model, Section 7.5, titled LocalizedText.
This class provides a wrapper for posting text that is qualified with the locale that it is intended for.
The following example shows a very simple use of this class to localize a welcome message
This produces the following output:
[EN-US]:Hi Everyone
[EN-GB]:Hello Everyone
Welcome
LocalizedText welcomeUS = new LocalizedText( "Hi Everyone", "EN-US" ); LocalizedText welcomeGB = new LocalizedText( "Hello Everyone", "EN-GB" ); LocalizedText welcomeNoLocale = new LocalizedText( "Welcome" ); Utils.LogInfo( welcomeUS.ToString() ); Utils.LogInfo( welcomeGB.ToString() ); Utils.LogInfo( welcomeNoLocale.ToString() );
Dim welcomeUS As LocalizedText = New LocalizedText( "Hi Everyone", "EN-GB" ) Dim welcomeGB As LocalizedText = New LocalizedText( "Hello Everyone", "EN-GB" ) Dim welcomeNoLocale As LocalizedText = New LocalizedText( "Welcome" ) Utils.LogInfo( welcomeUS.ToString() ) Utils.LogInfo( welcomeGB.ToString() ) Utils.LogInfo( welcomeNoLocale.ToString() )
System.Object
Opc.Ua.LocalizedText
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2