Sdílet prostřednictvím


WebEventFormatter.AppendLine(String) Metoda

Definice

Připojí zadaný řetězec a začátek řádku se vrátí k informacím o události.

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

Řetězec, který chcete přidat k informacím o události.

Příklady

Následující příklad kódu ukazuje, jak použít metodu AppendLine .

  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)

Poznámky

Tato AppendLine metoda umožňuje přizpůsobit informace o události přidáním vlastních dat specifických pro události.

Platí pro