HttpRuntimeSection.RequireRootedSaveAsPath プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ファイル名に物理的な絶対ファイル パスを指定する必要があるかどうかを示す値を取得または設定します。
public:
property bool RequireRootedSaveAsPath { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("requireRootedSaveAsPath", DefaultValue=true)]
public bool RequireRootedSaveAsPath { get; set; }
[<System.Configuration.ConfigurationProperty("requireRootedSaveAsPath", DefaultValue=true)>]
member this.RequireRootedSaveAsPath : bool with get, set
Public Property RequireRootedSaveAsPath As Boolean
プロパティ値
ファイル名に物理的な絶対ファイル パスを指定する必要がある場合は true
。それ以外の場合は false
。 既定値は true
です。
- 属性
例
RequireRootedSaveAsPath プロパティを使用する方法を次の例に示します。
// Get the RequireRootedSaveAsPath property value.
Response.Write("RequireRootedSaveAsPath: " +
configSection.RequireRootedSaveAsPath + "<br>");
// Set the RequireRootedSaveAsPath property value to true.
configSection.RequireRootedSaveAsPath = true;
' Get the RequireRootedSaveAsPath property value.
Response.Write("RequireRootedSaveAsPath: " & _
configSection.RequireRootedSaveAsPath & "<br>")
' Set the RequireRootedSaveAsPath property value to true.
configSection.RequireRootedSaveAsPath = True
注釈
このプロパティは RequireRootedSaveAsPath 、メソッドのファイル名引数を SaveAs
ルートパスにする必要があるかどうかを指定します。 ASP.NET プロセスには、指定した場所にファイルを作成するためのアクセス許可が必要です。
詳細については、クラスで定義されている保存メソッドを Configuration 参照してください。