Udostępnij za pośrednictwem


HttpRuntimeSection.EnableVersionHeader Właściwość

Definicja

Pobiera lub ustawia wartość wskazującą, czy ASP.NET powinny wyświetlić nagłówek wersji.

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

Wartość właściwości

Boolean

true jeśli dane wyjściowe nagłówka wersji są włączone; w przeciwnym razie , false. Wartość domyślna to true.

Atrybuty

Przykłady

W poniższym przykładzie pokazano, jak używać EnableVersionHeader właściwości.

// Get the EnableVersionHeader property value.
Response.Write("EnableVersionHeader: " +
  configSection.EnableVersionHeader + "<br>");

// Set the EnableVersionHeader property value to false
configSection.EnableVersionHeader = false;
' Get the EnableVersionHeader property value.
Response.Write("EnableVersionHeader: " & _
  configSection.EnableVersionHeader & "<br>")

' Set the EnableVersionHeader property value to false
configSection.EnableVersionHeader = False

Uwagi

Ten atrybut jest używany przez Visual Studio w celu określenia, która wersja ASP.NET jest używana. Nie jest to konieczne w przypadku lokacji produkcyjnych i można je wyłączyć.

Dotyczy

Zobacz też