HttpRuntimeSection.RequireRootedSaveAsPath Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
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à
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 .