Share via


HttpHandlerAction.Path Eigenschaft

Definition

Ruft den HttpHandlerAction-Pfad ab oder legt diesen fest.

public:
 property System::String ^ Path { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("path", IsKey=true, IsRequired=true)]
public string Path { get; set; }
[<System.Configuration.ConfigurationProperty("path", IsKey=true, IsRequired=true)>]
member this.Path : string with get, set
Public Property Path As String

Eigenschaftswert

String

Der URL-Pfad von HttpHandlerAction.

Attribute

Beispiele

Im folgenden Codebeispiel wird der Zugriff auf die Path-Eigenschaft veranschaulicht.

// Change the Path for the HttpHandlerAction.
httpHandler.Path = "Calculator.custom";
' Change the Path for the HttpHandlerAction.
httpHandler.Path = "Calculator.custom"

Hinweise

Die Path Eigenschaft kann entweder eine einzelne URL oder eine Wildcardzeichenfolge enthalten.

Gilt für