コード例 #1
0
 /// <summary>
 /// Adds a header transform action.
 /// </summary>
 /// <param name="action"> The TransformAction type.</param>
 public void AddHeaderTransformAction(TransformAction action)
 {
     _actions.Add(action);
 }
 public CookieListItemArgs(Cookie ck, TransformAction ta)
 {
     Cookie = ck;
     TransformAction = ta;
 }
コード例 #3
0
 /// <summary>
 /// Adds a cookie transform action.
 /// </summary>
 /// <param name="action"> The TransformAction type.</param>
 public void AddCookieTransformAction(TransformAction action)
 {
     _actions.Add(action);
 }