System.Security.Policy.PolicyStatement.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
        public override int GetHashCode() => base.GetHashCode();
        public SecurityElement ToXml() { return default(SecurityElement); }

Usage Example

Example #1
0
        public override int GetHashCode()
        {
            int hashCode = m_membershipCondition.GetHashCode();

            if (m_policy != null)
            {
                hashCode += m_policy.GetHashCode();
            }
            return(hashCode);
        }
All Usage Examples Of System.Security.Policy.PolicyStatement::GetHashCode