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 классе.

Применяется к