SyndicationFeed.TryParseAttribute Method

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Attempts to parse an attribute extension.

Namespace:  System.ServiceModel.Syndication
Assembly:  System.ServiceModel.Syndication (in System.ServiceModel.Syndication.dll)

Syntax

'Declaration
Protected Friend Overridable Function TryParseAttribute ( _
    name As String, _
    ns As String, _
    value As String, _
    version As String _
) As Boolean
protected internal virtual bool TryParseAttribute(
    string name,
    string ns,
    string value,
    string version
)

Parameters

  • version
    Type: System.String
    The syndication version to use when parsing.

Return Value

Type: System.Boolean
A value that specifies whether the attribute extension was parsed successfully.

Exceptions

Exception Condition
XmlException

Invalid XML Encountered during read.

Remarks

Attribute extensions are custom attributes that are not defined by the Atom 1.0 or RSS 2.0 specifications. They are serialized as an attribute of the <feed> (for Atom 1.0) or <rss> (for RSS 2.0) element, which depends upon the syndication version being used. This method is an extension point that allows you to handle the deserialization of a custom attribute extension. To do this, you must derive a class from SyndicationFeed and override this method. This method is called for all unrecognized attribute extensions.

Version Information

Silverlight

Supported in: 5, 4, 3

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.