Opc.Ua.Core
LocalizedText Class
Members  Example 



Opc.Ua Namespace : LocalizedText Class
Human readable qualified with a locale.
Object Model
LocalizedText ClassLocalizedText ClassTranslationInfo Class
Syntax
'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 
Remarks

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.

Example

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() )
Inheritance Hierarchy

System.Object
   Opc.Ua.LocalizedText

Requirements

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

See Also

Reference

LocalizedText Members
Opc.Ua Namespace