Udostępnij za pośrednictwem


WebEventFormatter.AppendLine(String) Metoda

Definicja

Dołącza określony ciąg i powrót karetki do informacji o zdarzeniu.

public:
 void AppendLine(System::String ^ s);
public void AppendLine (string s);
member this.AppendLine : string -> unit
Public Sub AppendLine (s As String)

Parametry

s
String

Ciąg do dodania do informacji o zdarzeniu.

Przykłady

W poniższym przykładzie kodu pokazano, jak używać AppendLine metody .

  formatter.AppendLine(
       "*SampleWebBaseEvent Start *");

  // Display custom event information.
  formatter.AppendLine(customCreatedMsg);
  formatter.AppendLine(customRaisedMsg);
  formatter.AppendLine(firingRecordInfo);

  formatter.AppendLine(
"* SampleWebBaseEvent End *");
formatter.AppendLine("*SampleWebBaseEvent Start *")
formatter.AppendLine("Custom information goes here")
formatter.AppendLine("* SampleWebBaseEvent End *")
' Display custom event timing.
formatter.AppendLine(customCreatedMsg)
formatter.AppendLine(customRaisedMsg)

Uwagi

Metoda AppendLine umożliwia dostosowanie informacji o zdarzeniu przez dodanie własnych danych specyficznych dla zdarzenia.

Dotyczy