HttpRuntimeSection.RequestPathInvalidCharacters Property

Definition

Gets or sets a list of characters that are specified as invalid in a path that is part of an HTTP request.

public:
 property System::String ^ RequestPathInvalidCharacters { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("requestPathInvalidCharacters", DefaultValue="<,>,*,%,&,:,\,?")]
public string RequestPathInvalidCharacters { get; set; }
[<System.Configuration.ConfigurationProperty("requestPathInvalidCharacters", DefaultValue="<,>,*,%,&,:,\,?")>]
member this.RequestPathInvalidCharacters : string with get, set
Public Property RequestPathInvalidCharacters As String

Property Value

A comma-separated list of invalid characters. The following list contains the default set of invalid characters:

<,>,*,%,&,:,\

Attributes

Remarks

To set this value in a configuration file, you can assign a comma-separated string of characters to the requestPathInvalidCharacters attribute of the httpRuntime element. For more information, see httpRuntime Element (ASP.NET Settings Schema).

Applies to