Walter.Web.FireWall
IsSpoofing Method
Example 
Walter.Web.FireWall Assembly > Walter.Web.FireWall Namespace > IUserIdentity Interface : IsSpoofing Method
Finds-out if the user is using a fake user-agent
Syntax
bool IsSpoofing()

Return Value

True if impersonating
Example
The bellow sample makes use of the IsSpofing() method to alter the duration of blocking for the firewall blocking rules.
private void FireWall_OnGuardAction(object sender, GuardActionEventArgs e)
{
   if (e.Page.User.IsSpoofing())
   {
       foreach (var item in e.Page.Incidents())
       {
           item.Expires = Inverse.Clock().UtcNow.AddDays(300);
       }
    }
}
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

IUserIdentity Interface
IUserIdentity Members