示例#1
0
        /// <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);
        }
示例#2
0
        /// <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);
        }
示例#3
0
        /// <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);
        }