Condividi tramite


HttpRuntimeSection.RequireRootedSaveAsPath Proprietà

Definizione

Ottiene o imposta un valore che indica se il nome file deve essere un percorso di file fisico completo.

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

Valore della proprietà

Boolean

true se il nome file deve essere un percorso file fisico completo; in caso contrario, false. Il valore predefinito è true.

Attributi

Esempio

Nell'esempio seguente viene illustrato come utilizzare la proprietà 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

Commenti

La RequireRootedSaveAsPath proprietà specifica se l'argomento nome file per i SaveAs metodi deve essere un percorso rooted. Il processo di ASP.NET deve disporre dell'autorizzazione per creare file nel percorso specificato.

Per altre informazioni, vedere i metodi di salvataggio definiti nella Configuration classe .

Si applica a