共用方式為


CompilationSection.Batch 屬性

定義

取得或設定值,指出是否嘗試批次編譯。

public:
 property bool Batch { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("batch", DefaultValue=true)]
public bool Batch { get; set; }
[<System.Configuration.ConfigurationProperty("batch", DefaultValue=true)>]
member this.Batch : bool with get, set
Public Property Batch As Boolean

屬性值

如果嘗試批次編譯,則為 true,否則為 false。 預設為 true

屬性

範例

下列程式碼範例示範如何使用 Batch 屬性。 此程式碼範例是提供給 類別之較大範例的 CompilationSection 一部分。

// Display Batch property.
Console.WriteLine("Batch: {0}", configSection.Batch);

// Set Batch property.
configSection.Batch = true;
' Display Batch property.
Console.WriteLine("Batch: {0}", _
 configSection.Batch)

' Set Batch property.
configSection.Batch = True

備註

將此屬性設定為 , true 以變更存取未編譯檔案時所需編譯所造成的延遲。 將此屬性設定為 , true 指示 ASP.NET 在批次模式中預先編譯所有未編譯的檔案。 第一次編譯檔案時會發生延遲;不過,一旦編譯檔案,就會消除延遲。

適用於