[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Flags that specify things to do when serializing XML

Namespace:  Microsoft.ConfigurationManagement.Messaging.Framework
Assembly:  Microsoft.ConfigurationManagement.Messaging(in Microsoft.ConfigurationManagement.Messaging.dll)

Syntax

                 
  C#     Visual Basic     Visual C++  
[
SerializableAttribute]
[
FlagsAttribute]
public 
enum 
SerializationArguments
<
SerializableAttribute> _
<
FlagsAttribute> _
Public 
Enumeration 
SerializationArguments
[
SerializableAttribute]
[
FlagsAttribute]
public 
enum class 
SerializationArguments

Members

Member Description
None
Don't do anything
ThrowOnException
Throw an exception if formatting fails
StripFormatting
Strip any pretty formatting (spaces, CRs, etc)
StripXmlGarbage
Strip any XML garbage (xmlns:foo type stuff)
StripAll
Strip all formatting (XML garbage, spaces, CRs, etc)
StripAllAndThrow
Strip all formatting and throw an exception if there's a serialization exception

See Also