DOTNETIDS.IDSPageSettings.IDSPageSettings C# (CSharp) Method

IDSPageSettings() public method

public IDSPageSettings ( IDSGlobalSettings GlobalSettings ) : System
GlobalSettings IDSGlobalSettings
return System
        public IDSPageSettings(IDSGlobalSettings GlobalSettings)
        {
            this.CookieExclusions.AddRange(GlobalSettings.CookieExclusions);
            this.DecodeJS = GlobalSettings.DecodeJS;
            this.DecodeUTF7 = GlobalSettings.DecodeUTF7;
            this.ScanCookies = GlobalSettings.ScanCookies;
            this.ScanGet = GlobalSettings.ScanGet;
            this.ScanHeaders = GlobalSettings.ScanHeaders;
            this.ScanKeys = GlobalSettings.ScanKeys;
            this.ScanOutput = GlobalSettings.ScanOutput;
            this.ScanPost = GlobalSettings.ScanPost;
        }
    }
IDSPageSettings