DeviceHive.DeviceCommand.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            return ObjectHelpers.GetHashCode(id)
                ^ ObjectHelpers.GetHashCode(timestamp)
                ^ ObjectHelpers.GetHashCode(userId)
                ^ ObjectHelpers.GetHashCode(command)
                ^ ObjectHelpers.GetHashCode(parameters)
                ^ ObjectHelpers.GetHashCode(lifetime)
                ^ ObjectHelpers.GetHashCode(flags)
                ^ ObjectHelpers.GetHashCode(status)
                ^ ObjectHelpers.GetHashCode(result);
        }
    }
DeviceCommand