CompilationSection.UrlLinePragmas Property

Definition

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

[System.Configuration.ConfigurationProperty("urlLinePragmas", DefaultValue=false)]
public bool UrlLinePragmas { get; set; }

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;

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

Producto Versiones
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1