ShouldSerializeResult 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.
Defines serialization behavior as reported by a XamlMemberInvoker.
public enum class ShouldSerializeResult
public enum ShouldSerializeResult
type ShouldSerializeResult =
Public Enum ShouldSerializeResult
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Default | 0 | Unknown, defer to the type of the member. |
True | 1 | Serialize the result. |
False | 2 | Do not serialize the result. |
Remarks
This is for specialized serialization support by invokers. More general serialization support should not require this enumeration. ShouldSerialize
information is otherwise available to XAML writers as part of the default XAML schema context and CLR reflection.