SoapIncludeAttribute(Type) 构造函数

定义

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

public:
 SoapIncludeAttribute(Type ^ type);
public SoapIncludeAttribute (Type type);
new System.Xml.Serialization.SoapIncludeAttribute : Type -> System.Xml.Serialization.SoapIncludeAttribute
Public Sub New (type As Type)

参数

type
Type

要包含的对象的类型。

示例

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

注解

将 的 SoapIncludeAttribute 多个实例应用于返回对象数组、 ArrayList 包含对象集合的 或可返回多个类型的对象的字段或属性。 Type为希望字段或属性包含的每个类型设置 属性。

适用于