다음을 통해 공유


WebEventFormatter.AppendLine(String) 메서드

정의

지정된 문자열과 캐리지 리턴을 이벤트 정보에 추가합니다.

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

매개 변수

s
String

이벤트 정보에 추가할 문자열입니다.

예제

다음 코드 예제에서는 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)

설명

AppendLine 메서드를 사용 하면 사용자 고유의 이벤트 관련 데이터를 추가 하 여 이벤트 정보를 사용자 지정할 수 있습니다.

적용 대상