Walter.Web.FireWall
UserAgent Property (IFireWallConfig)
Example 
Walter.Web.FireWall Assembly > Walter.Web.FireWall Namespace > IFireWallConfig Interface : UserAgent Property
The user agent configuration
Syntax
UserAgentConfig UserAgent {get;}
Remarks
This configuration allows you to specify storage related settings for persisting user agent data transmitted by the browser, crawlers and bots
Example
Set storage location during configuration
services.AddFireWall( FireWallTrial.License
                    , FireWallTrial.DomainKey 
                    , domainName: new Uri("https://www.your-domain.dll", UriKind.Absolute), options =>
                    {
                       //set your options
                       ...
                       //always store user agent reputation in a database
                       options.UserAgent.ConnectionString = Configuration.GetConnectionString("UserAgent");
                       options.UserAgent.SchemaName = Configuration.GetConnectionString("dbo");
            
                    });
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

IFireWallConfig Interface
IFireWallConfig Members