Exemplo n.º 1
0
 public PostParameter(string name, string filename, object value, PostParameterType type)
 {
     this.Name = name;
     this.Value = value;
     this.Type = type;
     this.Filename = filename;
 }
Exemplo n.º 2
0
 public PostParameter(string name, object value)
 {
     this.Name = name;
     this.Value = value;
     this.Type = PostParameterType.Parameter;
 }