Opc.Ua.Server.RequestHandle.GetHashCode C# (CSharp) Method

GetHashCode() public method

Returns the hash code for this instance.
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            if (this.Handle != null)
            {
                return this.Handle.GetHashCode();
            }

            return 0;
        }