Sdílet prostřednictvím


WebApplicationInformation.FormatToString(WebEventFormatter) Metoda

Definice

Naformátuje informace o aplikaci.

public:
 void FormatToString(System::Web::Management::WebEventFormatter ^ formatter);
public void FormatToString (System.Web.Management.WebEventFormatter formatter);
member this.FormatToString : System.Web.Management.WebEventFormatter -> unit
Public Sub FormatToString (formatter As WebEventFormatter)

Parametry

formatter
WebEventFormatter

Obsahuje WebEventFormatter nastavení tabulátoru a odsazení použité k formátování informací o události stavu webu.

Příklady

Následující příklad kódu ukazuje, jak formátovat vlastní informace.

//Formats Web request event information.
public override void FormatCustomEventDetails(
    WebEventFormatter formatter)
{
    base.FormatCustomEventDetails(formatter);

    // Add custom data.
    formatter.AppendLine("");
    formatter.AppendLine(
    "Custom Application Information:");
    formatter.IndentationLevel += 1;

    // Display the application information.
    formatter.AppendLine(GetApplicationDomain());
    formatter.AppendLine(GetApplicationPath());
    formatter.AppendLine(GetApplicationVirtualPath());
    formatter.AppendLine(GetApplicationMachineName());
    formatter.AppendLine(GetApplicationTrustLevel());
    formatter.IndentationLevel -= 1;
    formatter.AppendLine(eventInfo.ToString());
}
    'Formats Web request event information.
    Public Overrides Sub FormatCustomEventDetails( _
 _
     ByVal formatter As WebEventFormatter)
        MyBase.FormatCustomEventDetails(formatter)

        ' Add custom data.
        formatter.AppendLine( _
        "Custom Application Information:")
        formatter.IndentationLevel += 1

        ' Display the application information.
        formatter.AppendLine(GetApplicationDomain())
        formatter.AppendLine(GetApplicationPath())
        formatter.AppendLine(GetApplicationVirtualPath())
        formatter.AppendLine(GetApplicationMachineName())
        formatter.AppendLine(GetApplicationTrustLevel())
        formatter.IndentationLevel -= 1
        formatter.AppendLine(eventInfo.ToString())
    End Sub
End Class

Poznámky

Metoda FormatToString poskytuje jednotný formát informací o událostech, což je užitečné, pokud se data událostí musí protokolovat a později prezentovat uživateli. Volá se interně, když poskytovatel vyvolá jednu z ToString metod.

Poznámka

Při formátování vlastních informací o událostech pro zobrazení přepište metodu FormatToString ToString místo metody. Tím se zabrání přepsání nebo manipulaci s citlivými systémovými informacemi.

Platí pro