Opc.Ua.Com.UserIdentity.ToString C# (CSharp) Method

ToString() public method

Converts the object to a string used for display.
public ToString ( ) : string
return string
		public override string ToString()
		{
            if (!String.IsNullOrEmpty(m_domain))
            {
                return Utils.Format("{0}\\{1}", m_domain, m_username);
            }

			return m_username;
		}