HttpRuntimeSection.RequireRootedSaveAsPath Property
Definition
Gets or sets a value that indicates whether the file name must be a fully qualified physical file path.
public:
property bool RequireRootedSaveAsPath { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("requireRootedSaveAsPath", DefaultValue=Mono.Cecil.CustomAttributeArgument)]
public bool RequireRootedSaveAsPath { get; set; }
[<System.Configuration.ConfigurationProperty("requireRootedSaveAsPath", DefaultValue=Mono.Cecil.CustomAttributeArgument)>]
member this.RequireRootedSaveAsPath : bool with get, set
Public Property RequireRootedSaveAsPath As Boolean
Property Value
true
if the file name must be a fully qualified physical file path; otherwise, false
. The default value is true
.
- Attributes
Examples
The following example shows how to use the RequireRootedSaveAsPath property.
// 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
Remarks
The RequireRootedSaveAsPath property specifies whether the file name argument to SaveAs
methods must be a rooted path. The ASP.NET process must have permission to create files in the specified location.
For more information, see the save methods defined in the Configuration class.