ClientBuildManager.CompileFile Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Compiles the file represented by the virtual path.
Overloads
CompileFile(String) |
Compiles the file represented by the virtual path. |
CompileFile(String, ClientBuildManagerCallback) |
Compiles the file represented by the virtual path and provides a callback class to receive status information about the build. |
CompileFile(String)
Compiles the file represented by the virtual path.
public:
void CompileFile(System::String ^ virtualPath);
public void CompileFile (string virtualPath);
member this.CompileFile : string -> unit
Public Sub CompileFile (virtualPath As String)
Parameters
- virtualPath
- String
The path to the file to be compiled.
See also
Applies to
CompileFile(String, ClientBuildManagerCallback)
Compiles the file represented by the virtual path and provides a callback class to receive status information about the build.
public:
void CompileFile(System::String ^ virtualPath, System::Web::Compilation::ClientBuildManagerCallback ^ callback);
public void CompileFile (string virtualPath, System.Web.Compilation.ClientBuildManagerCallback callback);
member this.CompileFile : string * System.Web.Compilation.ClientBuildManagerCallback -> unit
Public Sub CompileFile (virtualPath As String, callback As ClientBuildManagerCallback)
Parameters
- virtualPath
- String
The path to the file to be compiled.
- callback
- ClientBuildManagerCallback
The object to receive status information from compilation.
Exceptions
virtualPath
is null.