HttpRuntimeSection.RequireRootedSaveAsPath プロパティ

定義

ファイル名に物理的な絶対ファイル パスを指定する必要があるかどうかを示す値を取得または設定します。

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

プロパティ値

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 参照してください。

適用対象