Compartilhar via


HttpRuntimeSection.RequireRootedSaveAsPath Propriedade

Definição

Obtém ou define um valor que indica se o nome do arquivo deve ser um caminho de arquivo físico totalmente qualificado.

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

Valor da propriedade

Boolean

true se o nome do arquivo precisar ser um caminho de arquivo físico totalmente qualificado; caso contrário, false. O valor padrão é true.

Atributos

Exemplos

O exemplo a seguir mostra como usar a RequireRootedSaveAsPath propriedade.

// 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

Comentários

A RequireRootedSaveAsPath propriedade especifica se o argumento de nome de arquivo para SaveAs métodos deve ser um caminho raiz. O processo ASP.NET deve ter permissão para criar arquivos no local especificado.

Para obter mais informações, consulte os métodos de salvamento definidos na Configuration classe.

Aplica-se a