HttpHandlerAction.Path プロパティ

定義

HttpHandlerAction パスを取得または設定します。

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

プロパティ値

HttpHandlerAction URL パス。

属性

次のコード例は、 Path プロパティにアクセスする方法を示しています。

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

注釈

Path プロパティには、単一の URL またはワイルドカード文字列を含めることができます。

適用対象