TemplateParser.ParseFile(String, String) Method

Definition

Parses the content of the file that is specified by either its virtual or physical path.

This API supports the product infrastructure and is not intended to be used directly from your code.

protected:
 void ParseFile(System::String ^ physicalPath, System::String ^ virtualPath);
protected void ParseFile (string physicalPath, string virtualPath);
member this.ParseFile : string * string -> unit
Protected Sub ParseFile (physicalPath As String, virtualPath As String)

Parameters

physicalPath
String

The physical path of the file to parse. physicalPath has precedence over virtualPath.

virtualPath
String

The virtual path of the file to parse.

Exceptions

physicalPath or virtualPath refers to the file currently being parsed.

Remarks

If a physical path is specified, it is used over the virtual path for locating the file to parse.

If the path to the file to parse is a circular reference; that is, it refers to the same file that the parser is currently parsing, an HttpException exception is thrown.

Applies to

See also