コード例 #1
0
 /// <summary>Copies the locally defined parameters to the argument parameters.</summary>
 /// <remarks>
 /// Copies the locally defined parameters to the argument parameters.
 /// This method is called from
 /// <see cref="Clone()">Clone()</see>
 /// .
 /// </remarks>
 /// <param name="target">the parameters to which to copy</param>
 /// <since>4.2</since>
 public virtual void CopyParams(HttpParams target)
 {
     foreach (KeyValuePair <string, object> me in this.parameters.EntrySet())
     {
         target.SetParameter(me.Key, me.Value);
     }
 }