ClientBuildManager.GenerateCodeCompileUnit Method (String, String, Type, CompilerParameters, IDictionary)
Returns the contents, codeDOM tree, compiler type, and compiler parameters for a file represented by a virtual path.
Assembly: System.Web (in System.Web.dll)
member GenerateCodeCompileUnit : virtualPath:string * virtualFileString:string * codeDomProviderType:Type byref * compilerParameters:CompilerParameters byref * linePragmasTable:IDictionary byref -> CodeCompileUnit
Parameters
- virtualPath
-
Type:
System.String
The virtual path to the file.
- virtualFileString
-
Type:
System.String
The contents of the file represented by the virtualPath parameter.
- codeDomProviderType
-
Type:
System.Type
When this method returns, contains the codeDOM provider type used for code generation and compilation.
- compilerParameters
-
Type:
System.CodeDom.Compiler.CompilerParameters
When this method returns, contains the properties that define how the file represented by the virtualPath parameter will be compiled.
- linePragmasTable
-
Type:
System.Collections.IDictionary
When this method returns, contains a dictionary of line pragmas.
| Exception | Condition |
|---|---|
| ArgumentNullException | virtualPath is null. |
The GenerateCodeCompileUnit method retrieves information needed to compile a file. In addition to a CodeCompileUnit object as a return value, it returns three out parameters. The codeDomProviderType parameter returns the provider type for generating and compiling the file. The compilerParameters parameter contains properties that determine compilation behavior. The linePragmasTable parameter contains a dictionary of line pragmas.
Available since 2.0