DotNetWorkQueue.Configuration.BaseConnectionInformation.CalculateHashCode C# (CSharp) Method

CalculateHashCode() protected method

Calculates the hash code.
protected CalculateHashCode ( ) : int
return int
        protected int CalculateHashCode()
        {
            return string.Concat(_connectionString, _queueName).GetHashCode();
        }
    }