This document is provided on an "AS IS" basis without warranties of any kind. Smartsite iXperion class libraries may change in future releases.
Specifies the options for encoding and decoding XML.

Namespace: Smartsite.Core
Assembly:  Smartsite.Base (in Smartsite.Base.dll)

Syntax

C#Copy imageCopy Code
[]
public enum XmlCodingOptions
Visual Basic (Declaration)Copy imageCopy Code
<> _
Public Enumeration XmlCodingOptions

Members

Member nameDescription
None
No encoding or decoding
LessThan
Includes the < character (encoded: &lt;)
GreaterThan
Includes the > character (encoded: &gt;)
Ampersand
Includes the & character (encoded: &amp;)
Apostrophe
Includes the ' character (encoded: &apos;)
QuotationMark
Includes the " character (encoded: &quot;)
ViperDirective
Includes the { character (encoded: &#123;)
NumericEntities
Includes numeric entities decoding. This option is only useful when decoding XML.
CharacterEntities
Includes character entities decoding. This option is only useful when decoding XML and when a character reference dictionary is provided.
SkipCDATA
Skip CDATA sections.
SkipComments
Skip comments.
DoubleAmpersand
Ampersands are encoded and decoded twice.
Xml
Provides the default xml encoding and decoding of the five builtin entity reference (<, >, &, ', ") and the decoding of the numeric entities.
Sxml
Provides the default sxml encoding and decoding consisting of the default xml coding plus the viper directive ({)
Html
Provides the default html encoding and decoding consisting of the default xml coding plus decoding of character entity references

See Also

Smartsite.Core Namespace
Advanced