XmlMappingAccess Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- Attributes
Fields
Name | Value | Description |
---|---|---|
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.