HttpRuntimeSection.RequireRootedSaveAsPath Property

Definition

Gets or sets a value that indicates whether the file name must be a fully qualified physical file path.

[System.Configuration.ConfigurationProperty("requireRootedSaveAsPath", DefaultValue=true)]
public bool RequireRootedSaveAsPath { get; set; }

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;

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.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1