你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

DeserializationPolicyOptions interface

用于配置 API 响应反序列化的选项。

属性

expectedContentTypes

为 JSON 和 XML 响应正文的反序列化配置预期的内容类型。

parseXML

能够分析 XML 的函数。 XML 支持所必需的。

serializerOptions

配置 xml 分析器和生成器的行为。

属性详细信息

expectedContentTypes

为 JSON 和 XML 响应正文的反序列化配置预期的内容类型。

expectedContentTypes?: DeserializationContentTypes

属性值

parseXML

能够分析 XML 的函数。 XML 支持所必需的。

parseXML?: (str: string, opts?: XmlOptions) => Promise<any>

属性值

(str: string, opts?: XmlOptions) => Promise<any>

serializerOptions

配置 xml 分析器和生成器的行为。

serializerOptions?: SerializerOptions

属性值