HttpContext.GetConfig(String) Metodo

Definizione

Attenzione

The recommended alternative is System.Web.HttpContext.GetSection in System.Web.dll. http://go.microsoft.com/fwlink/?linkid=14202

Restituisce le informazioni sulla configurazione relative alla richiesta HTTP corrente.

public:
 System::Object ^ GetConfig(System::String ^ name);
public object GetConfig (string name);
[System.Obsolete("The recommended alternative is System.Web.HttpContext.GetSection in System.Web.dll. http://go.microsoft.com/fwlink/?linkid=14202")]
public object GetConfig (string name);
member this.GetConfig : string -> obj
[<System.Obsolete("The recommended alternative is System.Web.HttpContext.GetSection in System.Web.dll. http://go.microsoft.com/fwlink/?linkid=14202")>]
member this.GetConfig : string -> obj
Public Function GetConfig (name As String) As Object

Parametri

name
String

Tag di configurazione per cui sono state richieste informazioni.

Restituisce

Object

Oggetto ConfigurationSection specificato, null se la sezione non esiste o oggetto interno se la sezione non risulta accessibile in fase di esecuzione. Eseguire il cast dell'oggetto restituito al tipo di configurazione appropriato prima dell'uso.

Attributi

Commenti

Il metodo GetConfig è stato deprecato. Usare il GetSection metodo per ottenere informazioni di configurazione per la richiesta HTTP corrente.

Si applica a

Vedi anche