WebEventFormatter.AppendLine(String) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 문자열과 캐리지 리턴을 이벤트 정보에 추가합니다.
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 메서드를 사용 하면 사용자 고유의 이벤트 관련 데이터를 추가 하 여 이벤트 정보를 사용자 지정할 수 있습니다.