Opc.Ua.TranslationInfo.TranslationInfo C# (CSharp) Method

TranslationInfo() public method

Stores the arguments for uses with a SymbolicId that is used to look up default text.
public TranslationInfo ( System symbolicId ) : System
symbolicId System
return System
        public TranslationInfo(System.Xml.XmlQualifiedName symbolicId, params object[] args)
        {
            m_key = symbolicId.ToString();
            m_locale = String.Empty;
            m_text = String.Empty;
            m_args = args;
        }
        

Same methods

TranslationInfo::TranslationInfo ( ) : System
TranslationInfo::TranslationInfo ( string key, Opc.Ua.LocalizedText text ) : System
TranslationInfo::TranslationInfo ( string key, string locale, string text ) : System
TranslationInfo