コード例 #1
0
 public ResponseCollector(HttpResponse response, string name, IgnorePropertiesInfoConfig ignoreConfig)
 {
     this.response      = response;
     this.name          = name;
     this.ignoreHeaders = IgnorePropertiesInfo.FromString(ignoreConfig.IgnoreHeaders);
     //this.ignoreCookies = IgnorePropertiesInfo.FromString(ignoreConfig.IgnoreCookies);
 }
コード例 #2
0
 public RequestCollector(HttpRequest request, string name, IgnorePropertiesInfoConfig ignoreConfig)
 {
     this.request               = request;
     this.name                  = name;
     this.ignoreFormFields      = IgnorePropertiesInfo.FromString(ignoreConfig.IgnoreFormFields);
     this.ignoreHeaders         = IgnorePropertiesInfo.FromString(ignoreConfig.IgnoreHeaders);
     this.ignoreCookies         = IgnorePropertiesInfo.FromString(ignoreConfig.IgnoreCookies);
     this.ignoreServerVariables = IgnorePropertiesInfo.FromString(ignoreConfig.IgnoreServerVariables);
     this.ignoreRequestBody     = ignoreConfig.IgnoreRequestBody;
 }