Compartir a través de


SystemWebSectionGroup.Trace Propiedad

Definición

Obtiene la sección trace.

public:
 property System::Web::Configuration::TraceSection ^ Trace { System::Web::Configuration::TraceSection ^ get(); };
[System.Configuration.ConfigurationProperty("trace")]
public System.Web.Configuration.TraceSection Trace { get; }
[<System.Configuration.ConfigurationProperty("trace")>]
member this.Trace : System.Web.Configuration.TraceSection
Public ReadOnly Property Trace As TraceSection

Valor de propiedad

TraceSection

Objeto TraceSection.

Atributos

Ejemplos

En el ejemplo de código siguiente se muestra cómo obtener el TraceSection objeto del archivo de configuración de una aplicación web existente.

// Get the trace section.
TraceSection trace =
    systemWeb.Trace;
// Read section information.
info =
    trace.SectionInformation;
name = info.SectionName;
type = info.Type;
declared = info.IsDeclared.ToString();
msg = String.Format(
    "Name:     {0}\nDeclared: {1}\nType:     {2}\n",
    name, declared, type);
' Get the trace section.
Dim trace As TraceSection = _
systemWeb.Trace
' Read section information.
info = trace.SectionInformation
name = info.SectionName
type = info.Type
declared = info.IsDeclared.ToString()
msg = String.Format("Name:     {0}" + _
ControlChars.Lf + "Declared: {1}" + _
ControlChars.Lf + "Type:     {2}" + _
ControlChars.Lf, name, declared, type)

Comentarios

El objeto TraceSection hace referencia a la sección trace del archivo de configuración.

Se aplica a

Consulte también