/// <summary> /// Copy the message into the <paramref name="destination" />. /// </summary> /// <param name="destination">The object, to which copied information.</param> /// <returns>The object, to which copied information.</returns> protected UserLookupMessage CopyTo(UserLookupMessage destination) { base.CopyTo(destination); destination.Like = Like; return(destination); }
/// <summary> /// Copy the message into the <paramref name="destination" />. /// </summary> /// <param name="destination">The object, to which copied information.</param> /// <returns>The object, to which copied information.</returns> protected UserLookupMessage CopyTo(UserLookupMessage destination) { destination.Like = Like; destination.TransactionId = TransactionId; this.CopyExtensionInfo(destination); return(destination); }
/// <summary> /// Copy the message into the <paramref name="destination" />. /// </summary> /// <param name="destination">The object, to which copied information.</param> /// <returns>The object, to which copied information.</returns> protected UserLookupMessage CopyTo(UserLookupMessage destination) { base.CopyTo(destination); destination.Like = Like; destination.Own = Own; destination.UserId = UserId; return(destination); }