共用方式為


CompilationSection.UrlLinePragmas 屬性

定義

取得或設定值,表示對編譯器的指令使用實體路徑或 URL。

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

屬性值

如果對編譯器的指令使用 URL 而非實體路徑,則為 true,否則為 false。 預設為 false

屬性

範例

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

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

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

' Set UrlLinePragmas property.
configSection.UrlLinePragmas = False

備註

如果在組態中指定 true 這個屬性,URL 將會用於編譯器指令,而不是實體路徑。

適用於