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