本文整理汇总了C#中System.Runtime.Serialization.XmlReaderDelegator.MoveToContent方法的典型用法代码示例。如果您正苦于以下问题:C# XmlReaderDelegator.MoveToContent方法的具体用法?C# XmlReaderDelegator.MoveToContent怎么用?C# XmlReaderDelegator.MoveToContent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Runtime.Serialization.XmlReaderDelegator
的用法示例。
在下文中一共展示了XmlReaderDelegator.MoveToContent方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ParseReaderString
/*
* The reason this function exists is to provide compatibility for ExceptionDataContract to utilize ClassDataContract for deserialization.
* In order for ExceptionDataContract to deserialize using ClassDataContract the xml elements corresponding to private fields need
* to have their name replaced with the name of the private field they map to.
* Example: Message ---replaced to--> _message
*
* Currently this method utilizes a custom created class entitled ExceptionXmlParser that sits alongside the ExceptionDataContract
* The ExceptionXmlParser reads the xml string passed to it exchanges any element names that are presented in the name map
* in its constructor.
*
* The ExceptionXmlParser also gives each nested element the proper namespace for the given exception being deserialized.
* The ClassDataContract needs an exact match on the element name and the namespace in order to deserialize the value, because not all serialization
* explicitly inserts the xmlnamespace of nested objects, the exception xml parser handles this.
*/
private XmlReaderDelegator ParseReaderString(XmlReaderDelegator xmlReader)
{
//The reference to the xmlReader passed into this method should not be modified.
//The call to ReadOuterXml advances the xmlReader to the next object if the exception being parsed is a nested object of another class.
//When the call to ReadXmlValue that called this method returns, it is possible that the 'xmlReader' will still be used by the calling datacontract.
string EntryXmlString = xmlReader.UnderlyingReader.ReadOuterXml();
string result = ExceptionXmlParser.ParseExceptionXmlForClassDataContract(ReverseDictionary(EssentialExceptionFields), this.Namespace.ToString(), EntryXmlString);
byte[] byteBuffer = Encoding.UTF8.GetBytes(result);
XmlReaderDelegator xmlDelegator = new XmlReaderDelegator(XmlDictionaryReader.CreateTextReader(byteBuffer, XmlDictionaryReaderQuotas.Max));
xmlDelegator.MoveToContent();
return xmlDelegator;
}