System.ServiceModel.EndpointAddress.GetHashCode C# (CSharp) Метод

GetHashCode() публичный Метод

public GetHashCode ( ) : int
Результат int
		public override int GetHashCode ()
		{
			return address.GetHashCode ();
		}

Usage Example

Пример #1
0
        public override int GetHashCode()
        {
            int hashCode = 0;

            if (_callbackInstance != null)
            {
                hashCode ^= _callbackInstance.GetHashCode();
            }

            Fx.Assert(_remoteAddress != null, "remoteAddress should not be null.");
            hashCode ^= _remoteAddress.GetHashCode();


            Fx.Assert(_binding != null, "binding should not be null.");
            hashCode ^= _binding.GetHashCode();

            return(hashCode);
        }
All Usage Examples Of System.ServiceModel.EndpointAddress::GetHashCode