Org.IdentityConnectors.Framework.Api.ResultsHandlerConfiguration.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            unchecked
            {
                int hash = 3;
                hash = 79 * hash + (EnableNormalizingResultsHandler ? 1 : 0);
                hash = 79 * hash + (EnableFilteredResultsHandler ? 1 : 0);
                hash = 79 * hash + (FilteredResultsHandlerInValidationMode ? 1 : 0);
                hash = 79 * hash + (EnableCaseInsensitiveFilter ? 1 : 0);
                hash = 79 * hash + (EnableAttributesToGetSearchResultsHandler ? 1 : 0);
                return hash;
            }
        }