HtmlContentInjectorPathAndFile Property |
Gets and sets the path and file of the HTML file to inject content into. A null string injects into every HTML
file served by the site. Case insensitive.
Namespace: VirtualRadar.Interface.WebSiteAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public string PathAndFile { get; set; }
Public Property PathAndFile As String
Get
Set
public:
property String^ PathAndFile {
String^ get ();
void set (String^ value);
}
member PathAndFile : string with get, set
Property Value
Type:
StringRemarks
The path must start from the root of the site - so for http://127.0.0.1/VirtualRadar/index.html the PathAndFile
would be "/index.html". Content injectors cannot add new pages to the site - if the page you specify
is not served by the site then requests for it will still fail, a new page will not be added to satisfy the
content injector.
See Also