Flags that specify actions that can be taken when deserializing XML.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: Microsoft.ConfigurationManagement.Messaging.Framework
Assembly: Microsoft.ConfigurationManagement.Messaging (in Microsoft.ConfigurationManagement.Messaging.dll)
Syntax
[SerializableAttribute]
[FlagsAttribute]
public enum DeserializationArguments
[SerializableAttribute]
[FlagsAttribute]
public enum class DeserializationArguments
<SerializableAttribute>
<FlagsAttribute>
Public Enumeration DeserializationArguments
Members
| Member name | Description | |
|---|---|---|
| AddXmlHeader | Add an XML header. |
|
| AllowNullInput | When set, a null input returns a null object. If this is not set, this is a failure. |
|
| DoNotThrowOnException | A serialization exception returns a null reply. The default behavior is to throw an exception to the caller when a serialization error occurs. |
|
| None | Do nothing. |
|
| StripTrailingNulls | Trailing nulls are removed, if present. |
|
| StripUnicodeBom | The Unicode byte order mark (BOM) is stripped from the input XML. |
|
| UnicodeBomExpected | When set, a Unicode byte order mark (BOM) is expected. This option implies StripUnicodeBom. |
See Also
Microsoft.ConfigurationManagement.Messaging.Framework Namespace
Return to top