Udostępnij za pośrednictwem


WebProcessInformation.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

W poniższym przykładzie pokazano, jak sformatować informacje niestandardowe.

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

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

    // Display the process information.
    formatter.AppendLine(GetAccountName());
    formatter.AppendLine(GetProcessId());
    formatter.AppendLine(GetProcessName());
    formatter.IndentationLevel -= 1;
    formatter.AppendLine(eventInfo.ToString());
}
 'Formats Web request event information.
 Public Overrides Sub FormatCustomEventDetails( _
 ByVal formatter _
 As System.Web.Management.WebEventFormatter)
     MyBase.FormatCustomEventDetails(formatter)

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

     ' Display the process information.
     formatter.AppendLine(GetAccountName())
     formatter.AppendLine(GetProcessId())
     formatter.AppendLine(GetProcessName())
     formatter.IndentationLevel -= 1
     formatter.AppendLine(eventInfo.ToString())
 End Sub

Uwagi

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

Dotyczy