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 定义的保存方法。

适用于