DeviceHive.Device.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            return ObjectHelpers.GetHashCode(id)
                ^ ObjectHelpers.GetHashCode(key)
                ^ ObjectHelpers.GetHashCode(name)
                ^ ObjectHelpers.GetHashCode(status)
                ^ ObjectHelpers.GetHashCode(data)
                ^ ObjectHelpers.GetHashCode(network)
                ^ ObjectHelpers.GetHashCode(deviceClass)
                ^ ObjectHelpers.GetHashCode(equipment);
        }
    }