XmlMembersMapping.Item[Int32] 属性

定义

获取一项,该项包含 .NET 代码实体的内部类型映射信息,而 .NET Framework 代码实体属于映射到 SOAP 消息的 Web 服务方法。Gets an item that contains internal type mapping information for a .NET code entity that belongs to a Web service method being mapped to a SOAP message.

此 API 支持产品基础结构,不能在代码中直接使用。

public:
 property System::Xml::Serialization::XmlMemberMapping ^ default[int] { System::Xml::Serialization::XmlMemberMapping ^ get(int index); };
public System.Xml.Serialization.XmlMemberMapping this[int index] { get; }
member this.Item(int) : System.Xml.Serialization.XmlMemberMapping
Default Public ReadOnly Property Item(index As Integer) As XmlMemberMapping

参数

index
Int32

要返回的映射的索引。The index of the mapping to return.

属性值

XmlMemberMapping

请求的 XmlMemberMappingThe requested XmlMemberMapping.

注解

类的索引数组访问运算符 XmlMembersMapping 从以下任意项的数组中获取指定的项:The indexed array access operator for the XmlMembersMapping class gets a specified entry from an array of any of the following:

  • Web 服务方法输入参数。Web service method input parameters.

  • Web 服务方法输出参数,加上索引0处的返回类型(如果不是 void)。Web service method output parameters, plus the return type, if not void, at index 0.

  • SOAP 输入标头。SOAP input headers.

  • SOAP 输出标头。SOAP output headers.

XmlMembersMapping有关这些实体转换为 part Web 服务描述语言 (WSDL) 文档中的元素的条件,请参阅类。See the XmlMembersMapping class for the conditions under which these entities translate to part elements in a Web Services Description Language (WSDL) document.

适用于