Bearbeiten

CompilationSection.UrlLinePragmas Property

Definition

Gets or sets a value indicating whether instructions to the compiler use physical paths or URLs.

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

Property Value

true if instructions to the compiler use URLs rather than physical paths; otherwise, false. The default is false.

Attributes

Examples

The following code example demonstrates how to use the UrlLinePragmas property. This code example is part of a larger example provided for the CompilationSection class.

// 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

Remarks

If this property is specified as true in the configuration, URLs will be used for the compiler instructions instead of physical paths.

Applies to