Opc.Ua.Com.UserIdentity.GetHashCode C# (CSharp) Méthode

GetHashCode() public méthode

Returns a suitable hash code for the result.
public GetHashCode ( ) : int
Résultat int
		public override int GetHashCode()
		{
            if (!String.IsNullOrEmpty(m_username))
            {
                return m_username.GetHashCode();
            }

			return 0;
		}