BuildProvider::CodeCompilerType Property

 

Represents the compiler type used by a build provider to generate source code for a custom file type.

Namespace:   System.Web.Compilation
Assembly:  System.Web (in System.Web.dll)

public:
property CompilerType^ CodeCompilerType {
	virtual CompilerType^ get();
}

Property Value

Type: System.Web.Compilation::CompilerType^

A read-only System.Web.Compilation::CompilerType representing the code generator, code compiler, and compiler settings used to build source code for the virtual path. The base class returns null.

Use the CodeCompilerType property to provide the settings for compiling source code for an implementation of BuildProvider. The CodeCompilerType property is null if the build provider does not require a specific code language for generating and compiling source code.

To set the value for a CompilerType object within a build provider implementation, use the GetDefaultCompilerType or GetDefaultCompilerTypeForLanguage method.

The CodeDomProviderType property specifies the CodeDomProvider implementation that is used to generate and compile source code for a build provider. The CompilerParameters property defines the settings that are used to compile the source code into an assembly.

The following code example illustrates a simple build provider implementation, inheriting from the abstract BuildProvider base class. The build provider overrides the CodeCompilerType, GetGeneratedType, and GenerateCode members of the base class.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: