ClientBuildManager.GetCodeDirectoryInformation Method

Gets information about the compiler type, compiler parameters, and the directory in which to store code files generated from non-code files such as .wsdl files.

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

public:
void GetCodeDirectoryInformation (
	String^ virtualCodeDir, 
	[OutAttribute] Type^% codeDomProviderType, 
	[OutAttribute] CompilerParameters^% compilerParameters, 
	[OutAttribute] String^% generatedFilesDir
)
public void GetCodeDirectoryInformation (
	String virtualCodeDir, 
	/** @attribute OutAttribute() */ /** @ref */ Type codeDomProviderType, 
	/** @attribute OutAttribute() */ /** @ref */ CompilerParameters compilerParameters, 
	/** @attribute OutAttribute() */ /** @ref */ String generatedFilesDir
)
Not applicable.

Parameters

virtualCodeDir

The directory about which to retrieve information.

codeDomProviderType

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

compilerParameters

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

generatedFilesDir

When this method returns, contains the directory for files generated from non-code files.

Exception typeCondition

ArgumentNullException

virtualCodeDir is null.

The GetCodeDirectoryInformation method retrieves information needed to build a code directory. It returns this information through three out parameters. The codeDomProviderType parameter returns the provider type for generating and compiling the files in the code directory. The compilerParameters parameter contains properties that determine compilation behavior. The generatedFilesDir parameter stores the directory path containing all the code files generated from non-code files in the code directory, such as .wsdl files.

Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: