SyndicationItem.TryParseContent 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
试图分析内容。
protected public:
virtual bool TryParseContent(System::Xml::XmlReader ^ reader, System::String ^ contentType, System::String ^ version, [Runtime::InteropServices::Out] System::ServiceModel::Syndication::SyndicationContent ^ % content);
protected internal virtual bool TryParseContent (System.Xml.XmlReader reader, string contentType, string version, out System.ServiceModel.Syndication.SyndicationContent content);
abstract member TryParseContent : System.Xml.XmlReader * string * string * SyndicationContent -> bool
override this.TryParseContent : System.Xml.XmlReader * string * string * SyndicationContent -> bool
Protected Friend Overridable Function TryParseContent (reader As XmlReader, contentType As String, version As String, ByRef content As SyndicationContent) As Boolean
参数
- contentType
- String
内容的内容类型。
- version
- String
要在分析时使用的联合版本。
- content
- SyndicationContent
要向其中加载分析内容的 SyndicationContent 实例。
返回
一个指定是否已成功分析内容的值。
注解
此方法是一个扩展点,您可以利用它来处理自定义内容的反序列化。 为此,必须从 SyndicationItem 中派生一个类,并重写此方法。 将为所有无法识别的内容调用此方法。