Condividi tramite


WebProcessInformation.FormatToString(WebEventFormatter) Metodo

Definizione

Formatta le informazioni dell'applicazione.

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)

Parametri

formatter
WebEventFormatter

Oggetto WebEventFormatter che contiene le impostazioni di tabulazione e rientro usate per formattare le informazioni relative a eventi di integrità Web.

Esempio

Nell'esempio seguente viene illustrato come formattare informazioni personalizzate.

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

Commenti

Il FormatToString metodo fornisce un formato uniforme per le informazioni sugli eventi, che è utile se i dati dell'evento devono essere registrati e presentati successivamente all'utente. Il metodo viene chiamato internamente quando il provider richiama uno dei ToString metodi.

Si applica a