PRELIMINARY INFORMATION - SUBJECT TO CHANGE
This document is provided on an "AS IS" basis without warranties of any kind. Smartsite iXperion class libraries may change in future releases.
Returns an xml-decoded representation of the specified string. The decoding rules are defined using given options.

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

Syntax

C#Copy imageCopy Code
public static string XmlDecode(
	string data,
	 options,
	<string, char> charEntityReferences
)
Visual Basic (Declaration)Copy imageCopy Code
Public Shared Function XmlDecode ( _
	data As , _
	options As , _
	charEntityReferences As (Of , ) _
) As 

Parameters

data
String
The data.
options
XmlCodingOptions
The options.
charEntityReferences
IDictionary<(Of <String, Char>)>
The character entities references to replace.

Return Value

Remarks

Not well-formed numeric entity references causes an ArgumentException. Please note that the XmlDecode does not check for any xml wellformedness on other elements.

The keys of the character entity references dictionary should not contain the prefix & and trailing ; character.

See Also

XmlUtil Class
Smartsite.Core Namespace
Advanced