Walter.Web.FireWall
AllowAddhockAccess Property
Example 
Walter.Web.FireWall Assembly > Walter.Web.FireWall.Configurations Namespace > RulesConfig Class : AllowAddhockAccess Property
If true allow the download of protected resources without having been used on a page, normally indicates a developer loading the resource
Syntax
public bool AllowAddhockAccess {get; set;}
Remarks
This value is assigned to all files found on disk by default, to change default behavior use the OnEndpointsCreated event
Example
The bellow sample shows how block search engines from showing embedded images.
options.OnEndpointsCreated+=(links)=>  {
   foreach (var item in links.EndpointsInPath(
            ,"*.jpg"
            , "*.png" ))
   {
       item.AllowAddhockAccess = false;
   }
};
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

RulesConfig Class
RulesConfig Members
OnEndpointsCreated Event