ClientBuildManager Constructors

Definition

Initializes a new instance of the ClientBuildManager class.

Overloads

ClientBuildManager(String, String)

Initializes a new instance of the ClientBuildManager class without a specified target directory or precompilation flags.

ClientBuildManager(String, String, String)

Initializes a new instance of the ClientBuildManager class with the specified target directory.

ClientBuildManager(String, String, String, ClientBuildManagerParameter)

Initializes a new instance of the ClientBuildManager class with the specified target directory and compilation parameter.

ClientBuildManager(String, String, String, ClientBuildManagerParameter, TypeDescriptionProvider)

Initializes a new instance of the ClientBuildManager class by using the specified virtual directory, source directory, target directory, compilation parameter, and type-description provider.

ClientBuildManager(String, String)

Initializes a new instance of the ClientBuildManager class without a specified target directory or precompilation flags.

public:
 ClientBuildManager(System::String ^ appVirtualDir, System::String ^ appPhysicalSourceDir);
public ClientBuildManager (string appVirtualDir, string appPhysicalSourceDir);
new System.Web.Compilation.ClientBuildManager : string * string -> System.Web.Compilation.ClientBuildManager
Public Sub New (appVirtualDir As String, appPhysicalSourceDir As String)

Parameters

appVirtualDir
String

The virtual path to the application root.

appPhysicalSourceDir
String

The physical path to the application root.

See also

Applies to

ClientBuildManager(String, String, String)

Initializes a new instance of the ClientBuildManager class with the specified target directory.

public:
 ClientBuildManager(System::String ^ appVirtualDir, System::String ^ appPhysicalSourceDir, System::String ^ appPhysicalTargetDir);
public ClientBuildManager (string appVirtualDir, string appPhysicalSourceDir, string appPhysicalTargetDir);
new System.Web.Compilation.ClientBuildManager : string * string * string -> System.Web.Compilation.ClientBuildManager
Public Sub New (appVirtualDir As String, appPhysicalSourceDir As String, appPhysicalTargetDir As String)

Parameters

appVirtualDir
String

The virtual path to the application root.

appPhysicalSourceDir
String

The physical path to the application root.

appPhysicalTargetDir
String

The target directory for precompilation.

Remarks

This form of the constructor is typically used with precompilation, as it specifies a precompilation target directory.

See also

Applies to

ClientBuildManager(String, String, String, ClientBuildManagerParameter)

Initializes a new instance of the ClientBuildManager class with the specified target directory and compilation parameter.

public:
 ClientBuildManager(System::String ^ appVirtualDir, System::String ^ appPhysicalSourceDir, System::String ^ appPhysicalTargetDir, System::Web::Compilation::ClientBuildManagerParameter ^ parameter);
public ClientBuildManager (string appVirtualDir, string appPhysicalSourceDir, string appPhysicalTargetDir, System.Web.Compilation.ClientBuildManagerParameter parameter);
new System.Web.Compilation.ClientBuildManager : string * string * string * System.Web.Compilation.ClientBuildManagerParameter -> System.Web.Compilation.ClientBuildManager
Public Sub New (appVirtualDir As String, appPhysicalSourceDir As String, appPhysicalTargetDir As String, parameter As ClientBuildManagerParameter)

Parameters

appVirtualDir
String

The virtual path to the application root.

appPhysicalSourceDir
String

The physical path to the application root.

appPhysicalTargetDir
String

The target directory for precompilation.

parameter
ClientBuildManagerParameter

Values that determine the precompilation behavior.

Remarks

This form of the constructor is typically used with precompilation, as it specifies a precompilation target directory and precompilation flags.

See also

Applies to

ClientBuildManager(String, String, String, ClientBuildManagerParameter, TypeDescriptionProvider)

Initializes a new instance of the ClientBuildManager class by using the specified virtual directory, source directory, target directory, compilation parameter, and type-description provider.

public:
 ClientBuildManager(System::String ^ appVirtualDir, System::String ^ appPhysicalSourceDir, System::String ^ appPhysicalTargetDir, System::Web::Compilation::ClientBuildManagerParameter ^ parameter, System::ComponentModel::TypeDescriptionProvider ^ typeDescriptionProvider);
public ClientBuildManager (string appVirtualDir, string appPhysicalSourceDir, string appPhysicalTargetDir, System.Web.Compilation.ClientBuildManagerParameter parameter, System.ComponentModel.TypeDescriptionProvider typeDescriptionProvider);
new System.Web.Compilation.ClientBuildManager : string * string * string * System.Web.Compilation.ClientBuildManagerParameter * System.ComponentModel.TypeDescriptionProvider -> System.Web.Compilation.ClientBuildManager
Public Sub New (appVirtualDir As String, appPhysicalSourceDir As String, appPhysicalTargetDir As String, parameter As ClientBuildManagerParameter, typeDescriptionProvider As TypeDescriptionProvider)

Parameters

appVirtualDir
String

The virtual path of the application root.

appPhysicalSourceDir
String

The physical path of the application root.

appPhysicalTargetDir
String

The target directory for precompilation.

parameter
ClientBuildManagerParameter

Values that determine the precompilation behavior.

typeDescriptionProvider
TypeDescriptionProvider

The type-description provider to use. This parameter is primarily used to support the multi-targeting infrastructure in Visual Studio. It is used to retrieve metadata about types that is filtered for specific versions of the .NET Framework.

See also

Applies to