共用方式為


Compiler(String, String, String, String, Int32) 建構函式

定義

建立 Compiler 的執行個體,並依提供之值進行初始化 。

public:
 Compiler(System::String ^ compilerOptions, System::String ^ extension, System::String ^ language, System::String ^ type, int warningLevel);
public Compiler (string compilerOptions, string extension, string language, string type, int warningLevel);
new System.Web.Configuration.Compiler : string * string * string * string * int -> System.Web.Configuration.Compiler
Public Sub New (compilerOptions As String, extension As String, language As String, type As String, warningLevel As Integer)

參數

compilerOptions
String

列出要在編譯期間傳遞之其他編譯器特定的選項。

extension
String

提供用於動態程式碼後置 (Code-Behind) 檔案之副檔名的以分號分隔清單。 例如,".cs"。

language
String

提供用於動態編譯檔案中之語言的以分號分隔清單。 例如,"C#;cs;csharp"。

type
String

指定以逗號分隔類別/組件 (assembly) 組合,表示 .NET Framework 類別。

warningLevel
Int32

指定編譯器警告層級。

適用於