XmlReflectionMember Class

Definition

Provides mappings between code entities in .NET Web service methods and the content of Web Services Description Language (WSDL) messages that are defined for SOAP Web services.

This API supports the product infrastructure and is not intended to be used directly from your code.

public ref class XmlReflectionMember
public class XmlReflectionMember
type XmlReflectionMember = class
Public Class XmlReflectionMember
Inheritance
XmlReflectionMember

Remarks

The XmlReflectionMember class is not used directly. Instead, it is used:

During reflection of a SOAP Web service method, arrays of XmlReflectionMember objects are produced that represent the contents of WSDL message definitions. An array is produced for each of the following items that belong to a SOAP Web service method:

  • Input parameters.

  • Output parameters and return values.

  • Request SOAP headers via attributes.

  • Response SOAP headers via attributes.

The SoapReflectionImporter and XmlReflectionImporter classes translate an XmlReflectionMember array into an XmlMembersMapping that contains an XmlMemberMapping collection, for further processing.

Constructors

XmlReflectionMember()

This API supports the product infrastructure and is not intended to be used directly from your code.

Initializes a new instance of the XmlReflectionMember class.

Properties

IsReturnValue

This API supports the product infrastructure and is not intended to be used directly from your code.

Gets or sets a value that indicates whether the XmlReflectionMember represents a Web service method return value, as opposed to an output parameter.

MemberName

This API supports the product infrastructure and is not intended to be used directly from your code.

Gets or sets the name of the Web service method member for this mapping.

MemberType

This API supports the product infrastructure and is not intended to be used directly from your code.

Gets or sets the type of the Web service method member code entity that is represented by this mapping.

OverrideIsNullable

This API supports the product infrastructure and is not intended to be used directly from your code.

Gets or sets a value that indicates that the value of the corresponding XML element definition's isNullable attribute is false.

SoapAttributes

This API supports the product infrastructure and is not intended to be used directly from your code.

Gets or sets a SoapAttributes with the collection of SOAP-related attributes that have been applied to the member code entity.

XmlAttributes

This API supports the product infrastructure and is not intended to be used directly from your code.

Gets or sets an XmlAttributes with the collection of XmlSerializer-related attributes that have been applied to the member code entity.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

See also