/// <inheritdoc/> protected override void CopyTo(ProxyMessage target) { base.CopyTo(target); }
/// <summary> /// Implemented by derived classes to copy message properties to another /// message instance during a <see cref="Clone()"/> operation. /// </summary> /// <param name="target">The target message.</param> /// <remarks> /// <note> /// The method implementation can safely assume that the <paramref name="target"/> /// message can be cast into the implementation's message type. /// </note> /// </remarks> protected virtual void CopyTo(ProxyMessage target) { target.ClientId = this.ClientId; }