CompilerType.CodeDomProviderType Property

Definition

Gets a Type for the configured CodeDomProvider implementation.

public:
 property Type ^ CodeDomProviderType { Type ^ get(); };
public Type CodeDomProviderType { get; }
member this.CodeDomProviderType : Type
Public ReadOnly Property CodeDomProviderType As Type

Property Value

A read-only Type that represents the configured code provider type.

Remarks

The CodeDomProviderType property specifies the CodeDomProvider implementation used to generate and compile source code for a build provider.

For example, if the build provider is configured to use the Visual Basic code provider in the .NET Framework, CodeDomProviderType returns a Type for the VBCodeProvider class.

Applies to

See also