SoapIncludeAttribute 类

定义

允许 XmlSerializer 在将对象序列化或反序列化为编码的 SOAP XML 时识别类型。

public ref class SoapIncludeAttribute : Attribute
[System.AttributeUsage(System.AttributeTargets.Class | System.AttributeTargets.Interface | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=true)]
public class SoapIncludeAttribute : Attribute
[System.AttributeUsage(System.AttributeTargets.Class | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=true)]
public class SoapIncludeAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.Class | System.AttributeTargets.Interface | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=true)>]
type SoapIncludeAttribute = class
    inherit Attribute
[<System.AttributeUsage(System.AttributeTargets.Class | System.AttributeTargets.Method | System.AttributeTargets.Struct, AllowMultiple=true)>]
type SoapIncludeAttribute = class
    inherit Attribute
Public Class SoapIncludeAttribute
Inherits Attribute
继承
SoapIncludeAttribute
属性

示例

以下示例将 SoapIncludeAttribute 两次应用于 XML Web 服务方法。 该方法返回 (基类) 类型的 Vehicle 对象。 该 SoapIncludeAttribute 方法允许该方法返回派生自 Vehicle 该类的类的实例。

注解

SoapIncludeAttribute 类属于一系列属性,用于控制序列化或反序列化对象作为 XmlSerializer 编码的 SOAP XML 的方式。 生成的 XML 符合万维网联盟文档“ 简单对象访问协议” (SOAP) 1.1 的第 5 节。 有关类似属性的完整列表,请参阅 控制编码的 SOAP 序列化的属性

若要将对象序列化为编码的 SoapReflectionImporter SOAP 消息,必须构造XmlSerializer使用XmlTypeMapping类方法创建的对象ImportTypeMapping

应用 SoapIncludeAttribute时,请指定 Type 派生类。 XmlSerializer当序列化同时包含基类和派生类的对象时,它可以识别这两种对象类型。

You can use the SoapIncludeAttribute to include derived classes in service description documents that are written in the Web Services Description Language (WSDL). 例如,如果某个方法返回一个 Object,则 SoapIncludeAttribute 应用该方法并指定应返回的实际类型。

有关 WSDL 的详细信息,请参阅万维网联盟规范、 Web 服务说明语言 (WSDL) 1.1

有关使用属性的详细信息,请参阅 “属性”。

构造函数

SoapIncludeAttribute(Type)

使用指定的类型初始化 SoapIncludeAttribute 类的新实例。

属性

Type

获取或设置在序列化或反序列化对象时应使用的对象的类型。

TypeId

在派生类中实现时,获取此 Attribute 的唯一标识符。

(继承自 Attribute)

方法

Equals(Object)

返回一个值,该值指示此实例是否与指定的对象相等。

(继承自 Attribute)
GetHashCode()

返回此实例的哈希代码。

(继承自 Attribute)
GetType()

获取当前实例的 Type

(继承自 Object)
IsDefaultAttribute()

在派生类中重写时,指示此实例的值是否是派生类的默认值。

(继承自 Attribute)
Match(Object)

当在派生类中重写时,返回一个指示此实例是否等于指定对象的值。

(继承自 Attribute)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
ToString()

返回表示当前对象的字符串。

(继承自 Object)

显式接口实现

_Attribute.GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr)

将一组名称映射为对应的一组调度标识符。

(继承自 Attribute)
_Attribute.GetTypeInfo(UInt32, UInt32, IntPtr)

检索对象的类型信息,然后可以使用该信息获取接口的类型信息。

(继承自 Attribute)
_Attribute.GetTypeInfoCount(UInt32)

检索对象提供的类型信息接口的数量(0 或 1)。

(继承自 Attribute)
_Attribute.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr)

提供对某一对象公开的属性和方法的访问。

(继承自 Attribute)

适用于