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); }
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; }