Udostępnij za pośrednictwem


WebApplicationInformation.FormatToString(WebEventFormatter) Metoda

Definicja

Formatuje informacje o aplikacji.

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

Element WebEventFormatter zawierający ustawienia tabulatora i wcięcia używane do formatowania informacji o zdarzeniu kondycji sieci Web.

Przykłady

Poniższy przykład kodu przedstawia sposób formatowania informacji niestandardowych.

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

Uwagi

Metoda FormatToString zapewnia jednolity format informacji o zdarzeniach, co jest przydatne, jeśli dane zdarzenia muszą być rejestrowane, a później prezentowane użytkownikowi. Jest ona wywoływana wewnętrznie, gdy dostawca wywołuje jedną z ToString metod.

Uwaga

Podczas formatowania niestandardowych informacji o zdarzeniach do wyświetlania przesłoń metodę FormatToString , a nie metodę ToString . Pozwoli to uniknąć zastępowania lub manipulowania poufnymi informacjami systemowymi.

Dotyczy