ClientBuildManager.GetCompilerParameters Method

Definition

Returns the compiler type and parameters that are used to build a file represented by a virtual path.

public:
 void GetCompilerParameters(System::String ^ virtualPath, [Runtime::InteropServices::Out] Type ^ % codeDomProviderType, [Runtime::InteropServices::Out] System::CodeDom::Compiler::CompilerParameters ^ % compilerParameters);
public void GetCompilerParameters (string virtualPath, out Type codeDomProviderType, out System.CodeDom.Compiler.CompilerParameters compilerParameters);
member this.GetCompilerParameters : string * Type * CompilerParameters -> unit
Public Sub GetCompilerParameters (virtualPath As String, ByRef codeDomProviderType As Type, ByRef compilerParameters As CompilerParameters)

Parameters

virtualPath
String

The virtual path to the file.

codeDomProviderType
Type

When this method returns, contains the provider type used for code generation and compilation.

compilerParameters
CompilerParameters

When this method returns, contains the properties that define how the file will be compiled.

Exceptions

virtualPath is null.

Applies to

See also