XmlWriter.WriteCommentAsync(String) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 텍스트를 포함하는 주석 <!--...-->을 비동기적으로 작성합니다.
public:
virtual System::Threading::Tasks::Task ^ WriteCommentAsync(System::String ^ text);
public virtual System.Threading.Tasks.Task WriteCommentAsync (string text);
public virtual System.Threading.Tasks.Task WriteCommentAsync (string? text);
abstract member WriteCommentAsync : string -> System.Threading.Tasks.Task
override this.WriteCommentAsync : string -> System.Threading.Tasks.Task
Public Overridable Function WriteCommentAsync (text As String) As Task
매개 변수
- text
- String
주석 내에 배치할 텍스트입니다.
반환
비동기 WriteComment
작업(operation)을 나타내는 작업(task)입니다.
예외
이전 비동기 작업이 완료되기 전에 XmlWriter 메서드가 호출되었습니다. 이 경우 “비동기 작업이 이미 진행 중입니다.” 메시지를 나타내며 InvalidOperationException이 throw됩니다.
또는
Async 플래그를 true
로 설정하지 않고 XmlWriter 비동기 메서드가 호출되었습니다. 이 경우 InvalidOperationException은 “비동기 메서드를 사용하려면 XmlWriterSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다.
설명
동일한 기능을 갖춘 비동기 버전 WriteComment입니다. 이 메서드를 사용하려면 플래그true
를 .로 Async 설정해야 합니다.