XmlMappingAccess Enum

Definition

Specifies whether a mapping is read, write, or both.

This enumeration supports a bitwise combination of its member values.

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

public enum class XmlMappingAccess
[System.Flags]
public enum XmlMappingAccess
[<System.Flags>]
type XmlMappingAccess = 
Public Enum XmlMappingAccess
Inheritance
XmlMappingAccess
Attributes

Fields

None 0

Both read and write methods are generated.

Read 1

Read methods are generated.

Write 2

Write methods are generated.

Remarks

This enumeration is used by the ImportMembersMapping when generating code for serialization and deserialization methods. The value specifies whether the schema importer generates write methods for mappings with write access, and read methods for mappings with read access. This minimizes the generation of serialization code.

Applies to