XmlWriter.WriteAttributesAsync(XmlReader, Boolean) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在 XmlReader 中的当前位置异步写出找到的所有属性。
public:
virtual System::Threading::Tasks::Task ^ WriteAttributesAsync(System::Xml::XmlReader ^ reader, bool defattr);
public virtual System.Threading.Tasks.Task WriteAttributesAsync (System.Xml.XmlReader reader, bool defattr);
abstract member WriteAttributesAsync : System.Xml.XmlReader * bool -> System.Threading.Tasks.Task
override this.WriteAttributesAsync : System.Xml.XmlReader * bool -> System.Threading.Tasks.Task
Public Overridable Function WriteAttributesAsync (reader As XmlReader, defattr As Boolean) As Task
参数
- reader
- XmlReader
从其中复制属性的 XmlReader
。
- defattr
- Boolean
如果为 true
,则从 XmlReader
中复制默认属性;否则为 false
。
返回
表示 WriteAttributes
异步操作的任务。
例外
在上一次异步操作完成之前调用了 XmlWriter 方法。 在此情况下,会引发 InvalidOperationException 并显示消息“异步操作已在进行中。”
- 或 -
调用了 XmlWriter 异步方法,但未将 Async 标志设置为 true
。 在这种情况下,将引发 InvalidOperationException 并显示消息“如果要使用异步方法,请将 XmlWriterSettings.Async 设置为 true”。
注解
这是具有相同功能的 的异步版本 WriteAttributes。 若要使用此方法,必须将 标志设置为 Asynctrue
。