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

Should Blob be written as a CDATA or raw XML. If null, state is automatically determined (if CDATA header is used, it is written as CDATA, else it is written as/is). If true, CDATA writer is always used and data is written as a CDATA blob. This can cause serialization exceptions if used incorrectly. If false, CDATA writer is never used and data is written as-is

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

Syntax

                 
  C#     Visual Basic     Visual C++  
public 
Nullable<
bool> 
WriteAsCdata { 
get; 
set; }
Public 
Property 
WriteAsCdata 
As 
Nullable(
Of 
Boolean)
	
Get
	
Set
public:
property 
Nullable<
bool> 
WriteAsCdata {
	
Nullable<
bool> 
get ();
	
void 
set (
Nullable<
bool> 
value);
}

See Also