<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Argotic.Extensions</name>
    </assembly>
    <members>
        <member name="T:Argotic.Extensions.Core.YahooMediaExpression">
            <summary>
            Represents the expressed version of a media object.
            </summary>
            <seealso cref="T:Argotic.Extensions.Core.YahooMediaTextConstruct"/>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaExpression.None">
            <summary>
            No media expression specified.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaExpression.Full">
            <summary>
            The media object represents the full version.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaExpression.Nonstop">
            <summary>
            he media object represents a continuous stream.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaExpression.Sample">
            <summary>
            The media object represents a sample version.
            </summary>
        </member>
        <member name="T:Argotic.Extensions.Core.TrackbackSyndicationExtensionContext">
            <summary>
            Encapsulates specific information about an individual <see cref="T:Argotic.Extensions.Core.TrackbackSyndicationExtension"/>.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.TrackbackSyndicationExtensionContext.extensionPing">
            <summary>
            Private member to hold the item's TrackBack URL.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.TrackbackSyndicationExtensionContext.extensionAbouts">
            <summary>
            Private member to hold the TRackbackURLs that were pinged in reference.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.TrackbackSyndicationExtensionContext.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.TrackbackSyndicationExtensionContext"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.TrackbackSyndicationExtensionContext.Load(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.TrackbackSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.TrackbackSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.TrackbackSyndicationExtensionContext.WriteTo(System.Xml.XmlWriter,System.String)">
            <summary>
            Writes the current context to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the current context.</param>
            <param name="xmlNamespace">The XML namespace used to qualify prefixed syndication extension elements and attributes.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.TrackbackSyndicationExtensionContext.Abouts">
            <summary>
            Gets the trackbacks that were pinged in reference.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:System.Uri"/> objects that represent trackbacks that were pinged in reference. 
                The default value is an <i>empty</i> collection.
            </value>
        </member>
        <member name="P:Argotic.Extensions.Core.TrackbackSyndicationExtensionContext.Ping">
            <summary>
            Gets or sets the TrackBack URL.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents the item's TrackBack URL.</value>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension">
            <summary>
            Extends syndication specifications to provide a means of describing Slash-based site meta-data.
            </summary>
            <remarks>
                <para>
                    The <see cref="T:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension"/> extends syndicated content to specify meta-data specific to Slash-based sites. This syndication extension conforms to the 
                    <b>RDF Site Summary 1.0 Modules: Slash</b> 1.0 specification, which can be found at <a href="http://web.resource.org/rss/1.0/modules/slash/">http://web.resource.org/rss/1.0/modules/slash/</a>.
                </para>
            </remarks>
            <example>
                <code lang="cs" title="The following code example demonstrates the usage of the SiteSummarySlashSyndicationExtension class.">
                    <code source="..\..\Documentation\Microsoft .NET 2.0\CodeExamplesLibrary\Extensions\Core\SiteSummarySlashSyndicationExtensionExample.cs" region="SiteSummarySlashSyndicationExtension"/>
                </code>
            </example>
        </member>
        <member name="T:Argotic.Extensions.SyndicationExtension">
            <summary>
            Provides the set of methods, properties and events that web content syndication extensions should inherit from.
            </summary>
            <remarks>
                <para>
                    The <see cref="T:Argotic.Extensions.SyndicationExtension"/> abstract class is provided to reduce the difficulty of implementing custom syndication extensions. 
                    While implementers are free to implement their custom syndication extensions by implementing the <see cref="T:Argotic.Extensions.ISyndicationExtension"/> interface, 
                    it is <i>recommended</i> that custom syndication extensions inherit from the <see cref="T:Argotic.Extensions.SyndicationExtension"/> base class.
                </para>
                <para>
                    If you choose to not inherit from the <see cref="T:Argotic.Extensions.SyndicationExtension"/> abstract base class, please be aware that the <see cref="T:Argotic.Extensions.SyndicationExtensionAdapter"/> class 
                    internally calls the <see cref="M:System.Activator.CreateInstance(System.Type)"/> method, and so any custom syndication extension will need to have the 
                    appropriate <see cref="T:System.Security.Permissions.SecurityPermissionAttribute"/> and <see cref="T:System.Security.Permissions.ReflectionPermissionAttribute"/> attributes applied as necessary.
                </para>
            </remarks>
            <example>
                <code lang="cs" title="The following code example demonstrates the usage of the SyndicationExtension abstract base class.">
                    <code source="..\..\Documentation\Microsoft .NET 2.0\CodeExamplesLibrary\Extensions\SyndicationExtensionExample.cs"/>
                </code>
            </example>
        </member>
        <member name="T:Argotic.Extensions.ISyndicationExtension">
            <summary>
            Allows an object to implement a syndication extension by representing a set of properties, methods, indexers and events common to web content syndication extensions.
            </summary>
            <seealso cref="T:Argotic.Extensions.SyndicationExtension"/>
        </member>
        <member name="M:Argotic.Extensions.ISyndicationExtension.ExistsInSource(System.Xml.XPath.XPathNavigator)">
            <summary>
            Determines if the <see cref="T:Argotic.Extensions.ISyndicationExtension"/> exists in the XML data in the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to parse.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.ISyndicationExtension"/>  elements or attributes are present in the <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <remarks>
                <para>
                    <b>Notes to Implementers:</b>
                    <list type="bullet">
                        <item>
                            <description>
                                This method should be as lightweight as possible when determining if the <see cref="T:Argotic.Extensions.ISyndicationExtension"/> or its related entities are present in the <paramref name="source"/>. 
                                It is recommended that implementers utilize the <see cref="M:System.Xml.XPath.XPathNavigator.GetNamespacesInScope(System.Xml.XmlNamespaceScope)"/> method to determine if the <paramref name="source"/> contains 
                                the expected namespace(s) for the <see cref="T:Argotic.Extensions.ISyndicationExtension"/>.
                            </description>
                        </item>
                    </list>
                </para>
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.ISyndicationExtension.CreateNamespaceManager(System.Xml.XPath.XPathNavigator)">
            <summary>
            Initializes a <see cref="T:System.Xml.XmlNamespaceManager"/> object for resolving prefixed XML namespaces utilized by this <see cref="T:Argotic.Extensions.SyndicationExtension"/>.
            </summary>
            <param name="navigator">Provides a cursor model for navigating syndication extension data.</param>
            <returns>A <see cref="T:System.Xml.XmlNamespaceManager"/> that resolves prefixed XML namespaces and provides scope management for these namespaces.</returns>
            <remarks>
                This method will return a <see cref="T:System.Xml.XmlNamespaceManager"/> that has a namespace added to it using the <see cref="P:Argotic.Extensions.ISyndicationExtension.XmlPrefix"/> and <see cref="P:Argotic.Extensions.ISyndicationExtension.XmlNamespace"/> 
                of the extension unless the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/> already has an XML namespace associated to the <see cref="P:Argotic.Extensions.ISyndicationExtension.XmlPrefix"/>, in which case 
                the associated XML namespace is used instead. This is to prevent collisions and is an attempt to gracefully handle the case where a XML namespace that 
                is not per the extension's specification has been declared on the syndication resource.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="navigator"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.ISyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XPath.IXPathNavigable"/>.
            </summary>
            <param name="source">The <b>IXPathNavigable</b> used to load the syndication extension.</param>
            <returns><b>true</b> if the syndication extension was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <remarks>
                <para>
                    <b>Notes to Implementers:</b>
                    <list type="bullet">
                        <item>
                            <description>
                                After the load operation has successfully completed, the <see cref="E:Argotic.Extensions.ISyndicationExtension.Loaded"/> event <b>must</b> be raised.
                            </description>
                        </item>
                    </list>
                </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.ISyndicationExtension.Load(System.Xml.XmlReader)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XmlReader"/>.
            </summary>
            <param name="reader">The <b>XmlReader</b> used to load the syndication extension.</param>
            <returns><b>true</b> if the syndication extension was able to be initialized using the supplied <paramref name="reader"/>; otherwise <b>false</b>.</returns>
            <remarks>
                <para>
                    <b>Notes to Implementers:</b>
                    <list type="bullet">
                        <item>
                            <description>
                                When implementing this method, the <see cref="T:System.Xml.XmlReader"/> should be used to create a <see cref="T:System.Xml.XPath.IXPathNavigable"/> 
                                that is then passed to the <see cref="M:Argotic.Extensions.ISyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)"/> method.
                            </description>
                        </item>
                        <item>
                            <description>
                                After the load operation has successfully completed, the <see cref="E:Argotic.Extensions.ISyndicationExtension.Loaded"/> event <b>must</b> be raised.
                            </description>
                        </item>
                    </list>
                </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="reader"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.ISyndicationExtension.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Writes the syndication extension to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the syndication extension.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.ISyndicationExtension.WriteXmlNamespaceDeclaration(System.Xml.XmlWriter)">
            <summary>
            Writes the prefixed XML namespace for the current syndication extension to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the prefixed XML namespace declaration to.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="P:Argotic.Extensions.ISyndicationExtension.Description">
            <summary>
            Gets a human-readable description of the syndication extension.
            </summary>
            <value>A human-readable description for the syndication extension.</value>
        </member>
        <member name="P:Argotic.Extensions.ISyndicationExtension.Documentation">
            <summary>
            Gets a <see cref="T:System.Uri"/> that points to documentation for the syndication extension.
            </summary>
            <value>A <see cref="T:System.Uri"/> that points to the documentation or implementation details for the syndication extension.</value>
        </member>
        <member name="P:Argotic.Extensions.ISyndicationExtension.Name">
            <summary>
            Gets the human-readable name of the syndication extension.
            </summary>
            <value>A human-readable name for the syndication extension.</value>
        </member>
        <member name="P:Argotic.Extensions.ISyndicationExtension.Version">
            <summary>
            Gets the <see cref="P:Argotic.Extensions.ISyndicationExtension.Version"/> of the specification that the syndication extension conforms to.
            </summary>
            <value>The <see cref="P:Argotic.Extensions.ISyndicationExtension.Version"/> of the specification that the syndication extension conforms to.</value>
        </member>
        <member name="P:Argotic.Extensions.ISyndicationExtension.XmlNamespace">
            <summary>
            Gets the XML namespace that is used when qualifying the syndication extension's element and attribute names.
            </summary>
            <value>The XML namespace that is used when qualifying the syndication extension's element and attribute names.</value>
        </member>
        <member name="P:Argotic.Extensions.ISyndicationExtension.XmlPrefix">
            <summary>
            Gets the prefix used to associate the syndication extension's element and attribute names with the syndication extension's XML namespace.
            </summary>
            <value>The prefix used to associate the syndication extension's element and attribute names with the syndication extension's <see cref="P:Argotic.Extensions.ISyndicationExtension.XmlNamespace">XML namespace</see>.</value>
        </member>
        <member name="E:Argotic.Extensions.ISyndicationExtension.Loaded">
            <summary>
            Occurs when the syndication extension state has been changed by a load operation.
            </summary>
            <seealso cref="M:Argotic.Extensions.ISyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)"/>
            <seealso cref="M:Argotic.Extensions.ISyndicationExtension.Load(System.Xml.XmlReader)"/>
        </member>
        <member name="F:Argotic.Extensions.SyndicationExtension.extensionDescription">
            <summary>
            Private member to hold the human-readable description of the syndication extension.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.SyndicationExtension.extensionDocumentation">
            <summary>
            Private member to hold a URL that points to documentation for the syndication extension.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.SyndicationExtension.extensionName">
            <summary>
            Private member to hold the human-readable name of the syndication extension.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.SyndicationExtension.extensionVersion">
            <summary>
            Private member to hold the version of the specification that the syndication extension conforms to.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.SyndicationExtension.extensionXmlNamespace">
            <summary>
            Private member to hold the XML namespace that is used when qualifying the syndication extension's element and attribute names.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.SyndicationExtension.extensionXmlPrefix">
            <summary>
            Private member to hold the prefix used to associate the syndication extension's element and attribute names with the syndication extension's XML namespace.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtension.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.SyndicationExtension"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtension.#ctor(System.String,System.String,System.Version)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.SyndicationExtension"/> class using the supplied parameters.
            </summary>
            <param name="xmlPrefix">The prefix used to associate this syndication extension's element and attribute names with this syndication extension's XML namespace.</param>
            <param name="xmlNamespace">The XML namespace that is used when qualifying this syndication extension's element and attribute names.</param>
            <param name="version">The <see cref="P:Argotic.Extensions.SyndicationExtension.Version"/> of the specification that this syndication extension conforms to.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlPrefix"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlPrefix"/> is an empty string.</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="version"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtension.#ctor(System.String,System.String,System.Version,System.Uri,System.String,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.SyndicationExtension"/> class using the supplied parameters.
            </summary>
            <param name="xmlPrefix">The prefix used to associate this syndication extension's element and attribute names with this syndication extension's XML namespace.</param>
            <param name="xmlNamespace">The XML namespace that is used when qualifying this syndication extension's element and attribute names.</param>
            <param name="version">The <see cref="P:Argotic.Extensions.SyndicationExtension.Version"/> of the specification that this syndication extension conforms to.</param>
            <param name="documentation">A <see cref="T:System.Uri"/> that points to the documentation for this syndication extension.</param>
            <param name="name">A human-readable name for this syndication extension.</param>
            <param name="description">A human-readable description for this syndication extension.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlPrefix"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlPrefix"/> is an empty string.</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="version"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="documentation"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtension.OnExtensionLoaded(Argotic.Extensions.SyndicationExtensionLoadedEventArgs)">
            <summary>
            Raises the <see cref="E:Argotic.Extensions.SyndicationExtension.Loaded"/> event.
            </summary>
            <param name="e">A <see cref="T:Argotic.Extensions.SyndicationExtensionLoadedEventArgs"/> that contains the event data.</param>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtension.CreateNamespaceManager(System.Xml.XPath.XPathNavigator)">
            <summary>
            Initializes a <see cref="T:System.Xml.XmlNamespaceManager"/> object for resolving prefixed XML namespaces utilized by this <see cref="T:Argotic.Extensions.SyndicationExtension"/>.
            </summary>
            <param name="navigator">Provides a cursor model for navigating syndication extension data.</param>
            <returns>A <see cref="T:System.Xml.XmlNamespaceManager"/> that resolves prefixed XML namespaces and provides scope management for these namespaces.</returns>
            <remarks>
                This method will return a <see cref="T:System.Xml.XmlNamespaceManager"/> that has a namespace added to it using the <see cref="P:Argotic.Extensions.SyndicationExtension.XmlPrefix"/> and <see cref="P:Argotic.Extensions.SyndicationExtension.XmlNamespace"/> 
                of the extension unless the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/> already has an XML namespace associated to the <see cref="P:Argotic.Extensions.SyndicationExtension.XmlPrefix"/>, in which case 
                the associated XML namespace is used instead. This is to prevent collisions and is an attempt to gracefully handle the case where a XML namespace that 
                is not per the extension's specification has been declared on the syndication resource.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="navigator"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtension.ExistsInSource(System.Xml.XPath.XPathNavigator)">
            <summary>
            Determines if the <see cref="T:Argotic.Extensions.SyndicationExtension"/> exists in the XML data in the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to parse.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.SyndicationExtension"/> elements or attributes are present in the <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <remarks>
                <para>
                    This method should be as lightweight as possible when determining if the <see cref="T:Argotic.Extensions.SyndicationExtension"/> or its related entities are present in the <paramref name="source"/>. 
                    The default implementation utilizes the <see cref="M:System.Xml.XPath.XPathNavigator.GetNamespacesInScope(System.Xml.XmlNamespaceScope)"/> method to determine if the <paramref name="source"/> contains 
                    the expected namespace(s) for this <see cref="T:Argotic.Extensions.SyndicationExtension"/>.
                </para>
                <para>It is recommended that you call this method prior to executing a possibly costly load operation using the <see cref="M:Argotic.Extensions.SyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)"/> method.</para>
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtension.WriteXmlNamespaceDeclaration(System.Xml.XmlWriter)">
            <summary>
            Writes the prefixed XML namespace for the current syndication extension to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the prefixed XML namespace declaration to.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtension.GetSchema">
            <summary>
            This method is reserved and <u>should not be used</u>. When implementing the <see cref="T:System.Xml.Serialization.IXmlSerializable"/> interface, it is recommended 
            that a <b>null</b> reference (Nothing in Visual Basic) is returned from this method, and instead, if 
            specifying a custom schema is required, to apply the <see cref="T:System.Xml.Serialization.XmlSchemaProviderAttribute"/> to the class.
            </summary>
            <returns>
                A <see cref="T:System.Xml.Schema.XmlSchema"/> object that represents an in-memory representation of an XML Schema as specified 
                in the <b>World Wide Web Consortium (W3C)</b> XML Schema <i>Structures</i> and <i>Datatypes</i> specifications. 
                The default return value for this method is a <b>null</b> reference (Nothing in Visual Basic).
            </returns>
            <remarks>
                <para>
                    When serializing or deserializing an object, the <see cref="T:System.Xml.Serialization.XmlSerializer"/> class does not perform XML validation. 
                    For this reason, it is often safe to omit schema information by providing a trivial implementation of this method, 
                    for example by returning a <b>null</b> reference (Nothing in Visual Basic).
                </para>
                <para>
                    Some .NET Framework types as well as legacy custom types implementing the <see cref="T:System.Xml.Serialization.IXmlSerializable"/> interface may be using <see cref="M:System.Xml.Serialization.IXmlSerializable.GetSchema"/> 
                    instead of <see cref="T:System.Xml.Serialization.XmlSchemaProviderAttribute"/>. In this case, the method returns an accurate XML schema that describes the XML representation 
                    of the object generated by the <see cref="M:Argotic.Extensions.SyndicationExtension.WriteXml(System.Xml.XmlWriter)"/> method.
                </para>
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtension.ReadXml(System.Xml.XmlReader)">
            <summary>
            Generates an object from its XML representation.
            </summary>
            <param name="reader">The <see cref="T:System.Xml.XmlReader"/> stream from which the object is deserialized.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="reader"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtension.WriteXml(System.Xml.XmlWriter)">
            <summary>
            Converts an object into its XML representation.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> stream to which the object is serialized.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XPath.IXPathNavigable"/>.
            </summary>
            <param name="source">The <b>IXPathNavigable</b> used to load the syndication extension.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.SyndicationExtension"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <remarks>
                <para>
                    <b>Notes to Implementers:</b>
                    <list type="bullet">
                        <item>
                            <description>
                                After the load operation has successfully completed, the <see cref="E:Argotic.Extensions.SyndicationExtension.Loaded"/> event <b>must</b> be raised.
                            </description>
                        </item>
                    </list>
                </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtension.Load(System.Xml.XmlReader)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XmlReader"/>.
            </summary>
            <param name="reader">The <b>XmlReader</b> used to load the syndication extension.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.SyndicationExtension"/> was able to be initialized using the supplied <paramref name="reader"/>; otherwise <b>false</b>.</returns>
            <remarks>
                <para>
                    <b>Notes to Implementers:</b>
                    <list type="bullet">
                        <item>
                            <description>
                                When implementing this method, the <see cref="T:System.Xml.XmlReader"/> should be used to create a <see cref="T:System.Xml.XPath.IXPathNavigable"/> 
                                that is then passed to the <see cref="M:Argotic.Extensions.SyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)"/> method.
                            </description>
                        </item>
                        <item>
                            <description>
                                After the load operation has successfully completed, the <see cref="E:Argotic.Extensions.SyndicationExtension.Loaded"/> event <b>must</b> be raised.
                            </description>
                        </item>
                    </list>
                </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="reader"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtension.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Writes the syndication extension to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the syndication extension.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="P:Argotic.Extensions.SyndicationExtension.Description">
            <summary>
            Gets a human-readable description of this syndication extension.
            </summary>
            <value>A human-readable description for this syndication extension.</value>
        </member>
        <member name="P:Argotic.Extensions.SyndicationExtension.Documentation">
            <summary>
            Gets a <see cref="T:System.Uri"/> that points to documentation for this syndication extension.
            </summary>
            <value>A <see cref="T:System.Uri"/> that points to the documentation or implementation details for this syndication extension.</value>
        </member>
        <member name="P:Argotic.Extensions.SyndicationExtension.Name">
            <summary>
            Gets a human-readable name of this syndication extension.
            </summary>
            <value>A human-readable name for this syndication extension.</value>
        </member>
        <member name="P:Argotic.Extensions.SyndicationExtension.Version">
            <summary>
            Gets the <see cref="P:Argotic.Extensions.SyndicationExtension.Version"/> of the specification that this syndication extension conforms to.
            </summary>
            <value>The <see cref="P:Argotic.Extensions.SyndicationExtension.Version"/> of the specification that this syndication extension conforms to.</value>
        </member>
        <member name="P:Argotic.Extensions.SyndicationExtension.XmlNamespace">
            <summary>
            Gets the XML namespace that is used when qualifying this syndication extension's element and attribute names.
            </summary>
            <value>The XML namespace that is used when qualifying this syndication extension's element and attribute names.</value>
        </member>
        <member name="P:Argotic.Extensions.SyndicationExtension.XmlPrefix">
            <summary>
            Gets the prefix used to associate this syndication extension's element and attribute names with this syndication extension's XML namespace.
            </summary>
            <value>The prefix used to associate this syndication extension's element and attribute names with this syndication extension's <see cref="P:Argotic.Extensions.SyndicationExtension.XmlNamespace">XML namespace</see>.</value>
        </member>
        <member name="E:Argotic.Extensions.SyndicationExtension.Loaded">
            <summary>
            Occurs when the <see cref="T:Argotic.Extensions.SyndicationExtension"/> state has been changed by a load operation.
            </summary>
            <seealso cref="M:Argotic.Extensions.SyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)"/>
            <seealso cref="M:Argotic.Extensions.SyndicationExtension.Load(System.Xml.XmlReader)"/>
        </member>
        <member name="F:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension.extensionContext">
            <summary>
            Private member to hold specific information about the extension.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension.MatchByType(Argotic.Extensions.ISyndicationExtension)">
            <summary>
            Predicate delegate that returns a value indicating if the supplied <see cref="T:Argotic.Extensions.ISyndicationExtension"/> 
            represents the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>.
            </summary>
            <param name="extension">The <see cref="T:Argotic.Extensions.ISyndicationExtension"/> to be compared.</param>
            <returns><b>true</b> if the <paramref name="extension"/> is the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>; otherwise, <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="extension"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XPath.IXPathNavigable"/>.
            </summary>
            <param name="source">The <b>IXPathNavigable</b> used to load this <see cref="T:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension.Load(System.Xml.XmlReader)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XmlReader"/>.
            </summary>
            <param name="reader">The <b>XmlReader</b> used to load this <see cref="T:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension"/> was able to be initialized using the supplied <paramref name="reader"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="reader"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Writes the syndication extension to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the syndication extension.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension.op_Equality(Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension,Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension.op_Inequality(Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension,Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension.op_LessThan(Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension,Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension.op_GreaterThan(Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension,Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension.Context">
            <summary>
            Gets or sets the <see cref="T:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtensionContext"/> object associated with this extension.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtensionContext"/> object that contains information associated with the current syndication extension.</value>
            <remarks>
                The <b>Context</b> encapsulates all of the syndication extension information that can be retrieved or written to an extended syndication entity. 
                Its purpose is to prevent property naming collisions between the base <see cref="T:Argotic.Extensions.SyndicationExtension"/> class and any custom properties that 
                are defined for the custom syndication extension.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.FeedSynchronizationSharingInformation">
            <summary>
            Represents information from a specific feed publisher to the specific feed consumer that requested the feed.
            </summary>
            <remarks>
                Endpoints that consume the feed <b>must not</b> republish the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSharingInformation"/> or any of its sub-elements to other feed consumers.
            </remarks>
            <seealso cref="T:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtensionContext"/>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationSharingInformation.sharingInformationSince">
            <summary>
            Private member to hold a lower bound of items contained within the feed.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationSharingInformation.sharingInformationUntil">
            <summary>
            Private member to hold an upper bound of items contained within the feed.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationSharingInformation.sharingInformationExpires">
            <summary>
            Private member to hold the publisher suggested date-time before which subscribers should read the feed in order to avoid missing item updates.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationSharingInformation.sharingInformationRelations">
            <summary>
            Private member to hold 
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSharingInformation.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSharingInformation"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSharingInformation.#ctor(System.String,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSharingInformation"/> class using the supplied parameters.
            </summary>
            <param name="since">A lower bound of items contained within the feed.</param>
            <param name="until">An upper bound of items contained within the feed.</param>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSharingInformation.#ctor(System.String,System.String,System.DateTime)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSharingInformation"/> class using the supplied parameters.
            </summary>
            <param name="since">A lower bound of items contained within the feed.</param>
            <param name="until">An upper bound of items contained within the feed.</param>
            <param name="utcExpires">A <see cref="T:System.DateTime"/> that represents the publisher suggested date-time before which subscribers <i>should</i> read the feed in order to avoid missing item updates.</param>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSharingInformation.CompareSequence(System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.FeedSynchronizationRelatedInformation},System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.FeedSynchronizationRelatedInformation})">
            <summary>
            Compares two specified <see cref="T:System.Collections.ObjectModel.Collection`1"/> collections.
            </summary>
            <param name="source">The first collection.</param>
            <param name="target">The second collection.</param>
            <returns>A 32-bit signed integer indicating the lexical relationship between the two comparands.</returns>
            <remarks>
                <para>
                    If the collections contain the same number of elements, determines the lexical relationship between the two sequences of comparands.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>greater than</i> the <paramref name="target"/> element count, returns <b>1</b>.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>less than</i> the <paramref name="target"/> element count, returns <b>-1</b>.
                </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="target"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSharingInformation.Load(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads this <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSharingInformation"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSharingInformation"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSharingInformation"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSharingInformation.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSharingInformation"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSharingInformation.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSharingInformation"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSharingInformation"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSharingInformation.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSharingInformation.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSharingInformation.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSharingInformation.op_Equality(Argotic.Extensions.Core.FeedSynchronizationSharingInformation,Argotic.Extensions.Core.FeedSynchronizationSharingInformation)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSharingInformation.op_Inequality(Argotic.Extensions.Core.FeedSynchronizationSharingInformation,Argotic.Extensions.Core.FeedSynchronizationSharingInformation)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSharingInformation.op_LessThan(Argotic.Extensions.Core.FeedSynchronizationSharingInformation,Argotic.Extensions.Core.FeedSynchronizationSharingInformation)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSharingInformation.op_GreaterThan(Argotic.Extensions.Core.FeedSynchronizationSharingInformation,Argotic.Extensions.Core.FeedSynchronizationSharingInformation)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedSynchronizationSharingInformation.ExpiresOn">
            <summary>
            Gets or sets the publisher suggested date-time subscribers should read the feed in order to avoid missing item updates.
            </summary>
            <value>
                A <see cref="T:System.DateTime"/> that represents the publisher suggested date-time before which subscribers <i>should</i> read the feed in order to avoid missing item updates. 
                The default value is <see cref="F:System.DateTime.MinValue"/>, which indicates that no expiration date was specified.
            </value>
            <remarks>
                <para>The value for this attribute <i>should</i> be interpreted as a best effort, uncalibrated value.</para>
                <para>The <see cref="T:System.DateTime"/> value should be provided in Coordinated Universal Time (UTC).</para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedSynchronizationSharingInformation.Relations">
            <summary>
            Gets the related feeds or locations.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation"/> objects that represent the related feeds or locations. 
                The default value is an <i>empty</i> collection.
            </value>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedSynchronizationSharingInformation.Since">
            <summary>
            Gets or sets a lower bound of items contained within the feed.
            </summary>
            <value>A lower bound of items contained within the feed.</value>
            <remarks>
                <para>If this property is defined, the <see cref="P:Argotic.Extensions.Core.FeedSynchronizationSharingInformation.Until"/> property <b>must</b> also be specified.</para>
                <para>
                    Publishers will generally include, in a feed, only the most recent modifications, additions, and deletions within some reasonable time window. 
                    These feeds are referred to as <i>partial feeds</i>, whereas feeds containing the complete set of items are referred to as <i>complete feeds</i>.
                </para>
                <para>
                    In the feed sharing context new subscribers, or existing subscribers failing to subscribe within the published feed window, will need to initially 
                    copy a complete set of items from a publisher before being in a position to process incremental updates. As such, the specification provides for the 
                    ability for the latter feed to reference the complete feed.
                </para>
                <para>
                    Subscribers <i>may</i> optionally use the <b>since</b> and <b>until</b> properties of <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSharingInformation"/> to ensure 
                    that all item updates are synchronized, even if the publisher periodically purges items from its feed.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedSynchronizationSharingInformation.Until">
            <summary>
            Gets or sets an upper bound of items contained within the feed.
            </summary>
            <value>An upper bound of items contained within the feed.</value>
            <remarks>
                <para>If this property is defined, the <see cref="P:Argotic.Extensions.Core.FeedSynchronizationSharingInformation.Since"/> property <b>must</b> also be specified.</para>
                <para>
                    Publishers will generally include, in a feed, only the most recent modifications, additions, and deletions within some reasonable time window. 
                    These feeds are referred to as <i>partial feeds</i>, whereas feeds containing the complete set of items are referred to as <i>complete feeds</i>.
                </para>
                <para>
                    In the feed sharing context new subscribers, or existing subscribers failing to subscribe within the published feed window, will need to initially 
                    copy a complete set of items from a publisher before being in a position to process incremental updates. As such, the specification provides for the 
                    ability for the latter feed to reference the complete feed.
                </para>
                <para>
                    Subscribers <i>may</i> optionally use the <b>since</b> and <b>until</b> properties of <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSharingInformation"/> to ensure 
                    that all item updates are synchronized, even if the publisher periodically purges items from its feed.
                </para>
            </remarks>
        </member>
        <member name="T:Argotic.Extensions.Core.FeedSynchronizationRelatedInformationType">
            <summary>
            Represents the type of feed being related.
            </summary>
            <remarks>
                <para>
                    Publishers will generally include, in a feed, only the most recent modifications, additions, and deletions within some reasonable time window. 
                    These feeds are referred to as <i>partial feeds</i>, whereas feeds containing the complete set of items are referred to as <i>complete feeds</i>.
                </para>
            </remarks>
            <seealso cref="P:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation.RelationType"/>
            <seealso cref="T:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation"/>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationRelatedInformationType.None">
            <summary>
            No relation type specified.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationRelatedInformationType.Aggregated">
            <summary>
            The <see cref="P:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation.Link"/> points to a feed whose contents are being incorporated into this feed by the publisher.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationRelatedInformationType.Complete">
            <summary>
            The <see cref="P:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation.Link"/> points to a feed that contains the complete collection of items for this feed.
            </summary>
        </member>
        <member name="T:Argotic.Extensions.Core.BlogChannelSyndicationExtensionContext">
            <summary>
            Encapsulates specific information about an individual <see cref="T:Argotic.Extensions.Core.BlogChannelSyndicationExtension"/>.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.BlogChannelSyndicationExtensionContext.extensionBlogRoll">
            <summary>
            Private member to hold the URL of an OPML file containing the blogroll for the web site.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.BlogChannelSyndicationExtensionContext.extensionMySubscriptions">
            <summary>
            Private member to hold the URL of an OPML file containing the author's feed subscriptions.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.BlogChannelSyndicationExtensionContext.extensionBlink">
            <summary>
            Private member to hold the URL of a weblog that the author is promoting.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.BlogChannelSyndicationExtensionContext.extensionChanges">
            <summary>
            Private member to hold the URL of the site's changes file.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.BlogChannelSyndicationExtensionContext.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.BlogChannelSyndicationExtensionContext"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.BlogChannelSyndicationExtensionContext.Load(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.BlogChannelSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.BlogChannelSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.BlogChannelSyndicationExtensionContext.WriteTo(System.Xml.XmlWriter,System.String)">
            <summary>
            Writes the current context to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the current context.</param>
            <param name="xmlNamespace">The XML namespace used to qualify prefixed syndication extension elements and attributes.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.BlogChannelSyndicationExtensionContext.Blink">
            <summary>
            Gets or sets the URL of a weblog that the author is promoting.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents the URL of a weblog that the author is promoting.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.BlogChannelSyndicationExtensionContext.BlogRoll">
            <summary>
            Gets or sets the URL of an OPML file containing the blogroll for the web site.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents the URL of an OPML file containing the blogroll for the web site.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.BlogChannelSyndicationExtensionContext.Changes">
            <summary>
            Gets or sets the URL the web site's change tracking endpoint.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents the URL the web site's change tracking endpoint.</value>
            <remarks>
                When a feed that contains this element updates, it pings a server that updates this file. 
                The presence of this element indicates to aggregators that they only have to read the changes file to see if this feed has updated. 
                If several feeds point to the same changes file, aggregators have to do less polling, resulting in better use of server bandwidth and faster scans. 
                See <a href="http://www.xmlrpc.com/weblogsComForRss">http://www.xmlrpc.com/weblogsComForRss</a> for technical details.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.BlogChannelSyndicationExtensionContext.MySubscriptions">
            <summary>
            Gets or sets the URL of an OPML file containing the author's feed subscriptions.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents the URL of an OPML file containing the author's feed subscriptions.</value>
        </member>
        <member name="T:Argotic.Extensions.Core.YahooMediaTextConstruct">
            <summary>
            Represents human-readable text.
            </summary>
            <remarks>
                <para>
                    This class is a generic representation for the <i>media:title</i> and <i>media:description</i> elements in the Yahoo media specificaton.
                </para>
            </remarks>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaTextConstruct.textConstructType">
            <summary>
            Private member to hold the entity encoding utilized by the human-readable text.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaTextConstruct.textConstructContent">
            <summary>
            Private member to hold the content of the human-readable text.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaTextConstruct.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstruct"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaTextConstruct.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstruct"/> class using the supplied text.
            </summary>
            <param name="text">The content of this human-readable text.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="text"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="text"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaTextConstruct.#ctor(System.String,Argotic.Extensions.Core.YahooMediaTextConstructType)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstruct"/> class using the supplied text.
            </summary>
            <param name="text">The content of this human-readable text.</param>
            <param name="type">An <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstruct"/> enumeration value that represents the entity encoding utilized by this human-readable text.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="text"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="text"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaTextConstruct.TextTypeAsString(Argotic.Extensions.Core.YahooMediaTextConstructType)">
            <summary>
            Returns the entity encoding type identifier for the supplied <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstructType"/>.
            </summary>
            <param name="type">The <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstructType"/> to get the entity encoding type identifier for.</param>
            <returns>The entity encoding type identifier for the supplied <paramref name="type"/>, otherwise returns an empty string.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaTextConstruct.TextTypeByName(System.String)">
            <summary>
            Returns the <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstructType"/> enumeration value that corresponds to the specified entity encoding type name.
            </summary>
            <param name="name">The name of the entity encoding type.</param>
            <returns>A <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstructType"/> enumeration value that corresponds to the specified string, otherwise returns <b>YahooMediaTextConstructType.None</b>.</returns>
            <remarks>This method disregards case of specified entity encoding type name.</remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaTextConstruct.Load(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads this <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstruct"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstruct"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstruct"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaTextConstruct.WriteTo(System.Xml.XmlWriter,System.String)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstruct"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <param name="elementName">The local name of the text construct being written.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaTextConstruct.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstruct"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstruct"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance. A <i>generic</i> element name is used.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaTextConstruct.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaTextConstruct.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaTextConstruct.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaTextConstruct.op_Equality(Argotic.Extensions.Core.YahooMediaTextConstruct,Argotic.Extensions.Core.YahooMediaTextConstruct)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaTextConstruct.op_Inequality(Argotic.Extensions.Core.YahooMediaTextConstruct,Argotic.Extensions.Core.YahooMediaTextConstruct)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaTextConstruct.op_LessThan(Argotic.Extensions.Core.YahooMediaTextConstruct,Argotic.Extensions.Core.YahooMediaTextConstruct)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaTextConstruct.op_GreaterThan(Argotic.Extensions.Core.YahooMediaTextConstruct,Argotic.Extensions.Core.YahooMediaTextConstruct)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaTextConstruct.Content">
            <summary>
            Gets or sets the content of this human-readable text.
            </summary>
            <value>The content of this human-readable text.</value>
            <remarks>
                All HTML <b>must</b> be entity-encoded.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is an empty string.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaTextConstruct.TextType">
            <summary>
            Gets or sets the entity encoding utilized by this human-readable text.
            </summary>
            <value>
                An <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstruct"/> enumeration value that represents the entity encoding utilized by this human-readable text. 
                The default value is <see cref="F:Argotic.Extensions.Core.YahooMediaTextConstructType.None"/>.
            </value>
            <remarks>
                If no entity encoding is specified, a default value of <see cref="F:Argotic.Extensions.Core.YahooMediaTextConstructType.Plain"/> can be assumed.
            </remarks>
        </member>
        <member name="T:Argotic.Extensions.Core.PheedSyndicationExtensionContext">
            <summary>
            Encapsulates specific information about an individual <see cref="T:Argotic.Extensions.Core.PheedSyndicationExtension"/>.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.PheedSyndicationExtensionContext.extensionThumbnail">
            <summary>
            Private member to hold a thumbnail sized version of the photograph.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.PheedSyndicationExtensionContext.extensionImageSource">
            <summary>
            Private member to hold a larger or original version of the photograph.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.PheedSyndicationExtensionContext.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.PheedSyndicationExtensionContext"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.PheedSyndicationExtensionContext.#ctor(System.Uri,System.Uri)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.PheedSyndicationExtensionContext"/> class using the supplied parameters.
            </summary>
            <param name="source">&gt;A <see cref="T:System.Uri"/> that represents a URL to the original version of this photograph.</param>
            <param name="thumbnail">A <see cref="T:System.Uri"/> that represents a URL to a thumbnail sized version of this photograph.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="thumbnail"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.PheedSyndicationExtensionContext.Load(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.PheedSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.PheedSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.PheedSyndicationExtensionContext.WriteTo(System.Xml.XmlWriter,System.String)">
            <summary>
            Writes the current context to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the current context.</param>
            <param name="xmlNamespace">The XML namespace used to qualify prefixed syndication extension elements and attributes.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.PheedSyndicationExtensionContext.Source">
            <summary>
            Gets or sets the original version of this photograph.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents a URL to the original version of this photograph.</value>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.PheedSyndicationExtensionContext.Thumbnail">
            <summary>
            Gets or sets the thumbnail sized version of this photograph.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents a URL to a thumbnail sized version of this photograph.</value>
            <remarks>
                The maximum size of the longest dimension <b>must be</b> 120 pixels.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.ITunesSyndicationExtensionContext">
            <summary>
            Encapsulates specific information about an individual <see cref="T:Argotic.Extensions.Core.ITunesSyndicationExtension"/>.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.extensionAuthor">
            <summary>
            Private member to hold the name of the artist of the podcast.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.extensionIsBlocked">
            <summary>
            Private member to hold a value indicating if the podcast is blocked from appearing in the iTunes Podcast directory.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.extensionCategories">
            <summary>
            Private member to hold the categorization taxonomy applied to the podcast.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.extensionDuration">
            <summary>
            Private member to hold the total duration of the podcast.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.extensionExplicitMaterialDesignation">
            <summary>
            Private member to hold a value indicating if the podcast contains explicit material.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.extensionImage">
            <summary>
            Private member to hold a URL that points to the album artwork for the podcast.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.extensionKeywords">
            <summary>
             Private member to hold keywords that describe the podcast.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.extensionNewFeedUrl">
            <summary>
            Private member to hold the URL where the podcast feed is has been relocated to.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.extensionOwner">
            <summary>
            Private member to hold information that can be used to contact the owner of the podcast.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.extensionSubtitle">
            <summary>
            Private member to hold a brief synopsis of the podcast.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.extensionSummary">
            <summary>
            Private member to hold the full description of the podcast.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.ITunesSyndicationExtensionContext"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.Load(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.ITunesSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.ITunesSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.WriteTo(System.Xml.XmlWriter,System.String)">
            <summary>
            Writes the current context to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the current context.</param>
            <param name="xmlNamespace">The XML namespace used to qualify prefixed syndication extension elements and attributes.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.LoadCommon(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the common syndication extension information using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.ITunesSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.ITunesSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.LoadOptionals(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the optional syndication extension information using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.ITunesSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.ITunesSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.ParseDuration(System.String)">
            <summary>
            Returns the <see cref="T:System.TimeSpan"/> represented by the supplied duration value.
            </summary>
            <param name="value">The ITunes duration representation of the podcast duration.</param>
            <returns>A <see cref="T:System.TimeSpan"/> that represents the duration. If unable to determine duration, returns <see cref="F:System.TimeSpan.MinValue"/>.</returns>
            <remarks>Value can be formatted as an integer, HH:MM:SS, H:MM:SS, MM:SS, or M:SS.</remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.Author">
            <summary>
            Gets or sets the name of the artist of this podcast.
            </summary>
            <value>The name of the artist of this podcast.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.Categories">
            <summary>
            Gets the categories to which this podcast belongs.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.ITunesCategory"/> objects that represent the categories to which this podcast belongs. The default value is an <i>empty</i> collection.
            </value>
        </member>
        <member name="P:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.Duration">
            <summary>
            Gets or sets the total duration of this podcast.
            </summary>
            <value>A <see cref="T:System.TimeSpan"/> that represents total duration of this podcast. The default value is <see cref="F:System.TimeSpan.MinValue"/>, which indicates that no duration was specified.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.ExplicitMaterial">
            <summary>
            Gets or sets the explicit language or adult content advisory information for this podcast.
            </summary>
            <value>
                An <see cref="T:Argotic.Extensions.Core.ITunesExplicitMaterial"/> enumeration value that indicates whether the podcast contains explicit material. 
                The default value is <see cref="F:Argotic.Extensions.Core.ITunesExplicitMaterial.None"/>.
            </value>
        </member>
        <member name="P:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.Image">
            <summary>
            Gets or sets a URL that points to the album artwork for this podcast.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents a URL that points to the album artwork for this podcast.</value>
            <remarks>
                iTunes recommends the use of square images that are at least 600 by 600 pixels. 
                iTunes supports images in <i>JPEG</i> and <i>PNG</i> formats. 
                The URL <b>must</b> end in ".jpg" or ".png".
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.IsBlocked">
            <summary>
            Gets or sets a value indicating if this podcast is blocked from appearing in the iTunes Podcast directory.
            </summary>
            <value><b>true</b> if this podcast is blocked from appearing in the iTunes Podcast directory; otherwise <b>false</b>. The default value is <b>false</b>.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.Keywords">
            <summary>
            Gets the search keywords for this podcast.
            </summary>
            <value>A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of strings that allows users to search on a maximum of 12 text keywords.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.NewFeedUrl">
            <summary>
            Gets or sets the URL where this podcast feed has been relocated to.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents the URL where this podcast feed has been relocated to.</value>
            <remarks>
                It is recommended that you should maintain the old feed for 48 hours before retiring it. At that point, iTunes will have updated the directory with the new feed URL.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.Owner">
            <summary>
            Gets or sets information that can be used to contact the owner of this podcast.
            </summary>
            <value>
                A <see cref="T:Argotic.Extensions.Core.ITunesOwner"/> object that represents information that can be used to contact the owner of this podcast. 
                The default value is a <b>null</b> reference.
            </value>
        </member>
        <member name="P:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.Subtitle">
            <summary>
            Gets or sets a brief synopsis of this podcast.
            </summary>
            <value>A brief synopsis of this podcast.</value>
            <remarks>
                It is recommended that the subtitle is only a few words long.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.ITunesSyndicationExtensionContext.Summary">
            <summary>
            Gets or sets the full description of this podcast.
            </summary>
            <value>The full description of this podcast.</value>
        </member>
        <member name="T:Argotic.Extensions.Core.FeedSynchronizationTombstoneStatus">
            <summary>
            Represents whether an item has been deleted and represents a tombstone.
            </summary>
            <remarks>
                
            </remarks>
            <seealso cref="P:Argotic.Extensions.Core.FeedSynchronizationItem.TombstoneStatus"/>
            <seealso cref="T:Argotic.Extensions.Core.FeedSynchronizationItem"/>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationTombstoneStatus.None">
            <summary>
            No deletion status specified.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationTombstoneStatus.Deleted">
            <summary>
            The item has been deleted.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationTombstoneStatus.Present">
            <summary>
            The item has not been deleted.
            </summary>
        </member>
        <member name="T:Argotic.Extensions.Core.DublinCoreTypeVocabularies">
            <summary>
            Represents a general, cross-domain list of approved terms that may be used as values when identifying the nature or genre of a resource.
            </summary>
            <seealso cref="T:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension"/>
            <seealso cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension"/>
            <remarks>
                For more information about the DCMI Type Vocabulary, see <a href="http://dublincore.org/documents/dcmi-type-vocabulary/">http://dublincore.org/documents/dcmi-type-vocabulary/</a>.
            </remarks>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreTypeVocabularies.None">
            <summary>
            No type vocabulary specified.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreTypeVocabularies.Collection">
            <summary>
            The type represents an aggregation of resources.
            </summary>
            <remarks>
                A collection is described as a group; its parts may also be separately described.
            </remarks>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreTypeVocabularies.DataSet">
            <summary>
            The type represents data encoded in a defined structure.
            </summary>
            <remarks>
                Examples include lists, tables, and databases. A dataset may be useful for direct machine processing.
            </remarks>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreTypeVocabularies.Event">
            <summary>
            The type represents a non-persistent, time-based occurrence.
            </summary>
            <remarks>
                Metadata for an event provides descriptive information that is the basis for discovery of the purpose, location, duration, and responsible agents associated with an event. 
                Examples include an exhibition, webcast, conference, workshop, open day, performance, battle, trial, wedding, tea party, conflagration.
            </remarks>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreTypeVocabularies.Image">
            <summary>
            The type represents a visual representation other than text.
            </summary>
            <remarks>
                Examples include images and photographs of physical objects, paintings, prints, drawings, other images and graphics, animations and moving pictures, film, diagrams, maps, musical notation. 
                Note that <see cref="F:Argotic.Extensions.Core.DublinCoreTypeVocabularies.Image"/> may include both electronic and physical representations.
            </remarks>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreTypeVocabularies.InteractiveResource">
            <summary>
            The type represents a resource requiring interaction from the user to be understood, executed, or experienced.
            </summary>
            <remarks>
                Examples include forms on Web pages, applets, multimedia learning objects, chat services, or virtual reality environments.
            </remarks>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreTypeVocabularies.MovingImage">
            <summary>
            The type represents a series of visual representations imparting an impression of motion when shown in succession.
            </summary>
            <remarks>
                Examples include animations, movies, television programs, videos, zoetropes, or visual output from a simulation. 
                Instances of the type <see cref="F:Argotic.Extensions.Core.DublinCoreTypeVocabularies.MovingImage">Moving Image</see> must also be describable as instances of the broader type <see cref="F:Argotic.Extensions.Core.DublinCoreTypeVocabularies.Image"/>.
            </remarks>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreTypeVocabularies.PhysicalObject">
            <summary>
            The type represents an inanimate, three-dimensional object or substance.
            </summary>
            <remarks>
                Note that digital representations of, or surrogates for, these objects should use <see cref="F:Argotic.Extensions.Core.DublinCoreTypeVocabularies.Image"/>, <see cref="F:Argotic.Extensions.Core.DublinCoreTypeVocabularies.Text"/> or one of the other types.
            </remarks>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreTypeVocabularies.Service">
            <summary>
            The type represents a system that provides one or more functions.
            </summary>
            <remarks>
                Examples include a photocopying service, a banking service, an authentication service, interlibrary loans, a Z39.50 or Web server.
            </remarks>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreTypeVocabularies.Software">
            <summary>
            The type represents a computer program in source or compiled form.
            </summary>
            <remarks>
                Examples include a C source file, Microsoft Windows executable, or Perl script.
            </remarks>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreTypeVocabularies.Sound">
            <summary>
            The type represents a resource primarily intended to be heard.
            </summary>
            <remarks>
                Examples include a music playback file format, an audio compact disc, and recorded speech or sounds.
            </remarks>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreTypeVocabularies.StillImage">
            <summary>
            The type represents a static visual representation.
            </summary>
            <remarks>
                Examples include paintings, drawings, graphic designs, plans and maps. 
                Recommended best practice is to assign the type <see cref="F:Argotic.Extensions.Core.DublinCoreTypeVocabularies.Text"/> to images of textual materials. 
                Instances of the type <see cref="F:Argotic.Extensions.Core.DublinCoreTypeVocabularies.StillImage">Still Image</see> must also be describable as instances of the broader type <see cref="F:Argotic.Extensions.Core.DublinCoreTypeVocabularies.Image"/>.
            </remarks>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreTypeVocabularies.Text">
            <summary>
            The type represents a resource consisting primarily of words for reading.
            </summary>
            <remarks>
                Examples include books, letters, dissertations, poems, newspapers, articles, archives of mailing lists. 
                Note that facsimiles or images of texts are still of the genre <see cref="F:Argotic.Extensions.Core.DublinCoreTypeVocabularies.Text"/>.
            </remarks>
        </member>
        <member name="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension">
            <summary>
            Extends syndication specifications to provide a meta-data term resource description vocabulary.
            </summary>
            <remarks>
                <para>
                    The <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension"/> extends syndicated content to specify all metadata terms maintained by the Dublin Core Metadata Initiative. 
                    This syndication extension conforms to the <b>Dublin Core Metadata Initiative (DCMI) Metadata Terms</b> 1.0 specification, which can be found 
                    at <a href="http://dublincore.org/documents/dcmi-terms/">http://dublincore.org/documents/dcmi-terms/</a>.
                </para>
            </remarks>
            <example>
                <code lang="cs" title="The following code example demonstrates the usage of the DublinCoreMetadataTermsSyndicationExtension class.">
                    <code source="..\..\Documentation\Microsoft .NET 2.0\CodeExamplesLibrary\Extensions\Core\DublinCoreMetadataTermsSyndicationExtensionExample.cs" region="DublinCoreMetadataTermsSyndicationExtension"/>
                </code>
            </example>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension.extensionContext">
            <summary>
            Private member to hold specific information about the extension.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension.MatchByType(Argotic.Extensions.ISyndicationExtension)">
            <summary>
            Predicate delegate that returns a value indicating if the supplied <see cref="T:Argotic.Extensions.ISyndicationExtension"/> 
            represents the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>.
            </summary>
            <param name="extension">The <see cref="T:Argotic.Extensions.ISyndicationExtension"/> to be compared.</param>
            <returns><b>true</b> if the <paramref name="extension"/> is the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>; otherwise, <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="extension"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension.TypeVocabularyAsString(Argotic.Extensions.Core.DublinCoreTypeVocabularies)">
            <summary>
            Returns the type vocabulary identifier for the supplied <see cref="T:Argotic.Extensions.Core.DublinCoreTypeVocabularies"/>.
            </summary>
            <param name="vocabulary">The <see cref="T:Argotic.Extensions.Core.DublinCoreTypeVocabularies"/> to get the type vocabulary identifier for.</param>
            <returns>The type vocabulary identifier for the supplied <paramref name="vocabulary"/>, otherwise returns an empty string.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension.TypeVocabularyByName(System.String)">
            <summary>
            Returns the <see cref="T:Argotic.Extensions.Core.DublinCoreTypeVocabularies"/> enumeration value that corresponds to the specified type vocabulary name.
            </summary>
            <param name="name">The name of the type vocabulary.</param>
            <returns>A <see cref="T:Argotic.Extensions.Core.DublinCoreTypeVocabularies"/> enumeration value that corresponds to the specified string, otherwise returns <b>DublinCoreTypeVocabularies.None</b>.</returns>
            <remarks>This method disregards case of specified type vocabulary name.</remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XPath.IXPathNavigable"/>.
            </summary>
            <param name="source">The <b>IXPathNavigable</b> used to load this <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension.Load(System.Xml.XmlReader)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XmlReader"/>.
            </summary>
            <param name="reader">The <b>XmlReader</b> used to load this <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension"/> was able to be initialized using the supplied <paramref name="reader"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="reader"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Writes the syndication extension to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the syndication extension.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension.op_Equality(Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension,Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension.op_Inequality(Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension,Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension.op_LessThan(Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension,Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension.op_GreaterThan(Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension,Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension.Context">
            <summary>
            Gets or sets the <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext"/> object associated with this extension.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext"/> object that contains information associated with the current syndication extension.</value>
            <remarks>
                The <b>Context</b> encapsulates all of the syndication extension information that can be retrieved or written to an extended syndication entity. 
                Its purpose is to prevent property naming collisions between the base <see cref="T:Argotic.Extensions.SyndicationExtension"/> class and any custom properties that 
                are defined for the custom syndication extension.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.CreativeCommonsSyndicationExtensionContext">
            <summary>
            Encapsulates specific information about an individual <see cref="T:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension"/>.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.CreativeCommonsSyndicationExtensionContext.extensionLicenses">
            <summary>
            Private member to hold a collection of URI's that represent creative commons licenses that apply to published content.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.CreativeCommonsSyndicationExtensionContext.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.CreativeCommonsSyndicationExtensionContext"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.CreativeCommonsSyndicationExtensionContext.Load(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.CreativeCommonsSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.CreativeCommonsSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.CreativeCommonsSyndicationExtensionContext.WriteTo(System.Xml.XmlWriter,System.String)">
            <summary>
            Writes the current context to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the current context.</param>
            <param name="xmlNamespace">The XML namespace used to qualify prefixed syndication extension elements and attributes.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.CreativeCommonsSyndicationExtensionContext.Licenses">
            <summary>
            Gets or sets the creative commons licenses that apply to the published content.
            </summary>
            <value>A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:System.Uri"/> objects that represent the creative commons licenses that apply to the published content.</value>
            <remarks>
                See <a href="http://creativecommons.org/licenses/">http://creativecommons.org/licenses/</a> for a listing of the current Creative Commons licenses.
            </remarks>
        </member>
        <member name="T:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension">
            <summary>
            Extends syndication specifications to provide syndication hints to aggregators and other entities regarding how often a feed is updated.
            </summary>
            <remarks>
                <para>
                    The <see cref="T:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension"/> extends syndicated content to specify hints to aggregators and other entities regarding how often a feed is updated. 
                    This syndication extension conforms to the <b>RDF Site Summary 1.0 Modules: Syndication</b> 1.0 specification, which can be found 
                    at <a href="http://web.resource.org/rss/1.0/modules/syndication/">http://web.resource.org/rss/1.0/modules/syndication/</a>.
                </para>
            </remarks>
            <example>
                <code lang="cs" title="The following code example demonstrates the usage of the SiteSummaryUpdateSyndicationExtension class.">
                    <code source="..\..\Documentation\Microsoft .NET 2.0\CodeExamplesLibrary\Extensions\Core\SiteSummaryUpdateSyndicationExtensionExample.cs" region="SiteSummaryUpdateSyndicationExtension"/>
                </code>
            </example>
        </member>
        <member name="F:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension.extensionContext">
            <summary>
            Private member to hold specific information about the extension.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension.MatchByType(Argotic.Extensions.ISyndicationExtension)">
            <summary>
            Predicate delegate that returns a value indicating if the supplied <see cref="T:Argotic.Extensions.ISyndicationExtension"/> 
            represents the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>.
            </summary>
            <param name="extension">The <see cref="T:Argotic.Extensions.ISyndicationExtension"/> to be compared.</param>
            <returns><b>true</b> if the <paramref name="extension"/> is the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>; otherwise, <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="extension"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension.PeriodAsString(Argotic.Extensions.Core.SiteSummaryUpdatePeriod)">
            <summary>
            Returns the period identifier for the supplied <see cref="T:Argotic.Extensions.Core.SiteSummaryUpdatePeriod"/>.
            </summary>
            <param name="period">The <see cref="T:Argotic.Extensions.Core.SiteSummaryUpdatePeriod"/> to get the period identifier for.</param>
            <returns>The period identifier for the supplied <paramref name="vocabulary"/>, otherwise returns an empty string.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension.PeriodByName(System.String)">
            <summary>
            Returns the <see cref="T:Argotic.Extensions.Core.SiteSummaryUpdatePeriod"/> enumeration value that corresponds to the specified period name.
            </summary>
            <param name="name">The name of the period.</param>
            <returns>A <see cref="T:Argotic.Extensions.Core.SiteSummaryUpdatePeriod"/> enumeration value that corresponds to the specified string, otherwise returns <b>SiteSummaryUpdatePeriod.None</b>.</returns>
            <remarks>This method disregards case of specified period name.</remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XPath.IXPathNavigable"/>.
            </summary>
            <param name="source">The <b>IXPathNavigable</b> used to load this <see cref="T:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension.Load(System.Xml.XmlReader)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XmlReader"/>.
            </summary>
            <param name="reader">The <b>XmlReader</b> used to load this <see cref="T:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension"/> was able to be initialized using the supplied <paramref name="reader"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="reader"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Writes the syndication extension to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the syndication extension.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension.op_Equality(Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension,Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension.op_Inequality(Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension,Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension.op_LessThan(Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension,Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension.op_GreaterThan(Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension,Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension.Context">
            <summary>
            Gets or sets the <see cref="T:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtensionContext"/> object associated with this extension.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtensionContext"/> object that contains information associated with the current syndication extension.</value>
            <remarks>
                The <b>Context</b> encapsulates all of the syndication extension information that can be retrieved or written to an extended syndication entity. 
                Its purpose is to prevent property naming collisions between the base <see cref="T:Argotic.Extensions.SyndicationExtension"/> class and any custom properties that 
                are defined for the custom syndication extension.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.SiteSummaryContentItem">
            <summary>
            Represents a single version of the content for its parent item.
            </summary>
            <seealso cref="P:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtensionContext.Items"/>
        </member>
        <member name="F:Argotic.Extensions.Core.SiteSummaryContentItem.itemContent">
            <summary>
            Private member to hold the textual content of the item.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SiteSummaryContentItem.itemFormat">
            <summary>
            Private member to hold a URI representing the format of the item.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SiteSummaryContentItem.itemEncoding">
            <summary>
            Private member to hold a URI representing the encoding of the item.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentItem.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.SiteSummaryContentItem"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentItem.Load(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads this <see cref="T:Argotic.Extensions.Core.SiteSummaryContentItem"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.SiteSummaryContentItem"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.SiteSummaryContentItem"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentItem.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.SiteSummaryContentItem"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentItem.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.SiteSummaryContentItem"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.SiteSummaryContentItem"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentItem.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentItem.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentItem.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentItem.op_Equality(Argotic.Extensions.Core.SiteSummaryContentItem,Argotic.Extensions.Core.SiteSummaryContentItem)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentItem.op_Inequality(Argotic.Extensions.Core.SiteSummaryContentItem,Argotic.Extensions.Core.SiteSummaryContentItem)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentItem.op_LessThan(Argotic.Extensions.Core.SiteSummaryContentItem,Argotic.Extensions.Core.SiteSummaryContentItem)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentItem.op_GreaterThan(Argotic.Extensions.Core.SiteSummaryContentItem,Argotic.Extensions.Core.SiteSummaryContentItem)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.SiteSummaryContentItem.WellFormedXmlEncoding">
            <summary>
            Gets the URI used when syndicated content is encoded as well-formed XML.
            </summary>
            <value>A <see cref="T:System.Uri"/> with a value of <b>http://www.w3.org/TR/REC-xml#dt-wellformed</b> that indicates that the encoding is well-formed XML.</value>
            <seealso cref="P:Argotic.Extensions.Core.SiteSummaryContentItem.Encoding"/>
        </member>
        <member name="P:Argotic.Extensions.Core.SiteSummaryContentItem.Content">
            <summary>
            Gets or sets the textual content of this item.
            </summary>
            <value>The textual or entity encoded content of this item.</value>
            <remarks>
                The value of this property <i>may</i> be entity-encoded, but will <b>always</b> be CDATA-escaped. 
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is an empty string.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.SiteSummaryContentItem.Encoding">
            <summary>
            Gets or sets the encoding of this item.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents the encoding of this item.</value>
            <remarks>
                An encoding is a reversable method of including content within syndicated content.
            </remarks>
            <seealso cref="P:Argotic.Extensions.Core.SiteSummaryContentItem.WellFormedXmlEncoding"/>
        </member>
        <member name="P:Argotic.Extensions.Core.SiteSummaryContentItem.Format">
            <summary>
            Gets or sets the format of this item.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents the format of this item.</value>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.SimpleListGroup">
            <summary>
            Represents information that informs the client that the property to which it refers is one that is <i>groupable</i>, 
            meaning that the client should provide a user interface that allows the user to group or filter on the values of that property.
            </summary>
            <remarks>
                <para>
                    This informational entity makes reference to XML elements that are child-elements within the items of the same feed, using the supported extension mechanism of the feed format. 
                    Groupable properties <i>should</i> contain a small set of discrete values.
                </para>
                <para>
                    The value which is to be grouped <b>must be</b> the text content of the element itself (i.e. the character data contained in the element). 
                    Values of attributes or nested elements <b>cannot</b> be used for grouping. The property referred to must have no child-elements. 
                    In general, only one instance of a property should appear in each item. Clients are free to ignore repeated instances of properties.
                </para>
            </remarks>
            <seealso cref="P:Argotic.Extensions.Core.SimpleListSyndicationExtensionContext.Grouping"/>
        </member>
        <member name="F:Argotic.Extensions.Core.SimpleListGroup.groupNamespace">
            <summary>
            Private member to hold the full namespace used in the groupable property.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SimpleListGroup.groupElement">
            <summary>
            Private member to hold the name of the groupable property.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SimpleListGroup.groupLabel">
            <summary>
            Private member to hold a human-readable name for the groupable property.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListGroup.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.SimpleListGroup"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListGroup.Load(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads this <see cref="T:Argotic.Extensions.Core.SimpleListGroup"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.SimpleListGroup"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.SimpleListGroup"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListGroup.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.SimpleListGroup"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListGroup.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.SimpleListGroup"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.SimpleListGroup"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListGroup.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListGroup.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListGroup.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListGroup.op_Equality(Argotic.Extensions.Core.SimpleListGroup,Argotic.Extensions.Core.SimpleListGroup)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListGroup.op_Inequality(Argotic.Extensions.Core.SimpleListGroup,Argotic.Extensions.Core.SimpleListGroup)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListGroup.op_LessThan(Argotic.Extensions.Core.SimpleListGroup,Argotic.Extensions.Core.SimpleListGroup)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListGroup.op_GreaterThan(Argotic.Extensions.Core.SimpleListGroup,Argotic.Extensions.Core.SimpleListGroup)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.SimpleListGroup.Element">
            <summary>
            Get or sets the name of this groupable property.
            </summary>
            <value>The name of this groupable property. The default value is <see cref="F:System.String.Empty"/>.</value>
            <remarks>
                If this property is equal to <see cref="F:System.String.Empty"/>, it is assumed that the <see cref="P:Argotic.Extensions.Core.SimpleListGroup.Label"/> property is included 
                and that this <see cref="T:Argotic.Extensions.Core.SimpleListGroup"/> refers to the default sort order.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.SimpleListGroup.Label">
            <summary>
            Get or sets a human-readable name for this groupable property.
            </summary>
            <value>A human-readable name for this groupable property. The default value is <see cref="F:System.String.Empty"/>.</value>
            <remarks>
                <para>
                    If this property is <see cref="F:System.String.Empty"/>, the client should use the value of the <see cref="P:Argotic.Extensions.Core.SimpleListGroup.Element"/> property as the human-readable name.
                </para>
                <para>The <see cref="P:Argotic.Extensions.Core.SimpleListGroup.Label"/> property is <b>required</b> if the <see cref="P:Argotic.Extensions.Core.SimpleListGroup.Element"/> property is an <i>empty string</i>.</para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.SimpleListGroup.Namespace">
            <summary>
            Gets or sets the full namespace identifier used to qualify this <see cref="P:Argotic.Extensions.Core.SimpleListGroup.Element"/>.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents the full namespace identifier used to qualify this <see cref="P:Argotic.Extensions.Core.SimpleListGroup.Element"/> property. The default value is <b>null</b>.</value>
            <remarks>
                If the value of this property is <b>null</b>, it is assumed that the <see cref="P:Argotic.Extensions.Core.SimpleListGroup.Element"/> does not live in a namespace.
            </remarks>
        </member>
        <member name="T:Argotic.Extensions.Core.FeedSynchronizationHistory">
            <summary>
            Represents information about updates to a <see cref="T:Argotic.Extensions.Core.FeedSynchronizationItem"/>.
            </summary>
            <seealso cref="P:Argotic.Extensions.Core.FeedSynchronizationItem.Histories"/>
            <seealso cref="T:Argotic.Extensions.Core.FeedSynchronizationItem"/>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationHistory.historySequence">
            <summary>
            Private member to hold the sequencing of individual updates for the purposes of conflict detection.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationHistory.historyWhen">
            <summary>
            Private member to hold the date-time for the device that performed the item modification.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationHistory.historyBy">
            <summary>
            Private member to hold the text value that uniquely identifies the endpoint that made the modification.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationHistory.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationHistory"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationHistory.#ctor(System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationHistory"/> class using the supplied sequence number.
            </summary>
            <param name="sequence">An integer that is used in the sequencing of individual updates for the purposes of conflict detection.</param>
            <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="sequence"/> is less than <b>1</b>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationHistory.#ctor(System.Int32,System.DateTime,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationHistory"/> class using the supplied parameters.
            </summary>
            <param name="sequence">An integer that is used in the sequencing of individual updates for the purposes of conflict detection.</param>
            <param name="utcWhen">A <see cref="T:System.DateTime"/> that represents the date-time for the device that performed the item modification.</param>
            <param name="by">A text value that uniquely identifies the endpoint that made the modification.</param>
            <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="sequence"/> is less than <b>1</b>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationHistory.Load(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads this <see cref="T:Argotic.Extensions.Core.FeedSynchronizationHistory"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationHistory"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.FeedSynchronizationHistory"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationHistory.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.FeedSynchronizationHistory"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationHistory.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.FeedSynchronizationHistory"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.FeedSynchronizationHistory"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationHistory.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationHistory.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationHistory.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationHistory.op_Equality(Argotic.Extensions.Core.FeedSynchronizationHistory,Argotic.Extensions.Core.FeedSynchronizationHistory)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationHistory.op_Inequality(Argotic.Extensions.Core.FeedSynchronizationHistory,Argotic.Extensions.Core.FeedSynchronizationHistory)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationHistory.op_LessThan(Argotic.Extensions.Core.FeedSynchronizationHistory,Argotic.Extensions.Core.FeedSynchronizationHistory)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationHistory.op_GreaterThan(Argotic.Extensions.Core.FeedSynchronizationHistory,Argotic.Extensions.Core.FeedSynchronizationHistory)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedSynchronizationHistory.By">
            <summary>
            Gets or sets the text value that uniquely identifies the endpoint that made the modification.
            </summary>
            <value>A text value that uniquely identifies the endpoint that made the modification.</value>
            <remarks>
                <para>
                    Either or both of the <see cref="P:Argotic.Extensions.Core.FeedSynchronizationHistory.When"/> or <see cref="P:Argotic.Extensions.Core.FeedSynchronizationHistory.By"/> properties <b>must</b> be present; it is invalid to have neither. 
                    It is <i>recommended</i> that implementers specify both <see cref="P:Argotic.Extensions.Core.FeedSynchronizationHistory.When"/> and <see cref="P:Argotic.Extensions.Core.FeedSynchronizationHistory.By"/> properties whenever possible.
                </para>
                <para>
                    Implementations <b>should not</b> assume that the <see cref="P:Argotic.Extensions.Core.FeedSynchronizationHistory.By"/> property will be a human-readable indication of the author of the item; 
                    it is simply intended as a unique identifier for use in the synchronization algorithm. 
                    The precise entity represented by an endpoint will vary depending on the application.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedSynchronizationHistory.Sequence">
            <summary>
            Gets or sets the sequencing number used for the purpose of conflict detection.
            </summary>
            <value>An integer that is used in the sequencing of individual updates for the purposes of conflict detection. The default value is <b>1</b>.</value>
            <remarks>
                The sequence number is typically assigned by copying the <see cref="P:Argotic.Extensions.Core.FeedSynchronizationItem.Updates"/> value on <see cref="T:Argotic.Extensions.Core.FeedSynchronizationItem"/>, 
                after it has been incremented at the time of an update. 
            </remarks>
            <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="value"/> is less than <b>1</b>.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedSynchronizationHistory.When">
            <summary>
            Gets or sets the date-time for the device that performed the item modification.
            </summary>
            <value>
                A <see cref="T:System.DateTime"/> that represents the date-time for the device that performed the item modification. 
                The default value is <see cref="F:System.DateTime.MinValue"/>, which indicates that no date-time was specified.
            </value>
            <remarks>
                <para>The value for this property <i>should</i> be interpreted as a best effort, uncalibrated value.</para>
                <para>
                    Either or both of the <see cref="P:Argotic.Extensions.Core.FeedSynchronizationHistory.When"/> or <see cref="P:Argotic.Extensions.Core.FeedSynchronizationHistory.By"/> properties <b>must</b> be present; it is invalid to have neither. 
                    It is <i>recommended</i> that implementers specify both <see cref="P:Argotic.Extensions.Core.FeedSynchronizationHistory.When"/> and <see cref="P:Argotic.Extensions.Core.FeedSynchronizationHistory.By"/> properties whenever possible.
                </para>
                <para>The <see cref="T:System.DateTime"/> value should be provided in Coordinated Universal Time (UTC).</para>
            </remarks>
        </member>
        <member name="T:Argotic.Extensions.Core.FeedHistoryLinkRelation">
            <summary>
            Represents a link relation used to cross-reference linked feed documents.
            </summary>
            <seealso cref="P:Argotic.Extensions.Core.FeedHistorySyndicationExtensionContext.Relations"/>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedHistoryLinkRelation.linkRelationLocation">
            <summary>
            Private member to hold an IRI that identifies the location of the link relation.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedHistoryLinkRelation.linkRelationType">
            <summary>
            Private member to hold a value that indicates the type of the link relation.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistoryLinkRelation.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.FeedHistoryLinkRelation"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistoryLinkRelation.#ctor(Argotic.Extensions.Core.FeedHistoryLinkRelationType,System.Uri)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.FeedHistoryLinkRelation"/> class using the supplied relation type and location.
            </summary>
            <param name="relation">A <see cref="T:Argotic.Extensions.Core.FeedHistoryLinkRelationType"/> enumeration value that indicates the link relation type.</param>
            <param name="href">A <see cref="P:Argotic.Extensions.Core.FeedHistoryLinkRelation.Uri"/> that represents the location this link relation points to.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="href"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistoryLinkRelation.Load(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads this <see cref="T:Argotic.Extensions.Core.FeedHistoryLinkRelation"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.FeedHistoryLinkRelation"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.FeedHistoryLinkRelation"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistoryLinkRelation.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.FeedHistoryLinkRelation"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistoryLinkRelation.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.FeedHistoryLinkRelation"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.FeedHistoryLinkRelation"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistoryLinkRelation.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistoryLinkRelation.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistoryLinkRelation.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistoryLinkRelation.op_Equality(Argotic.Extensions.Core.FeedHistoryLinkRelation,Argotic.Extensions.Core.FeedHistoryLinkRelation)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistoryLinkRelation.op_Inequality(Argotic.Extensions.Core.FeedHistoryLinkRelation,Argotic.Extensions.Core.FeedHistoryLinkRelation)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistoryLinkRelation.op_LessThan(Argotic.Extensions.Core.FeedHistoryLinkRelation,Argotic.Extensions.Core.FeedHistoryLinkRelation)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistoryLinkRelation.op_GreaterThan(Argotic.Extensions.Core.FeedHistoryLinkRelation,Argotic.Extensions.Core.FeedHistoryLinkRelation)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedHistoryLinkRelation.RelationType">
            <summary>
            Gets or sets a value that indicates the type of this link relation.
            </summary>
            <value>
                A <see cref="T:Argotic.Extensions.Core.FeedHistoryLinkRelationType"/> enumeration value that indicates the link relation type. 
                The default value is <see cref="F:Argotic.Extensions.Core.FeedHistoryLinkRelationType.None"/>, which indicates no relationship type was specified.
            </value>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedHistoryLinkRelation.Uri">
            <summary>
            Gets or sets an IRI that identifies the location of this link relation.
            </summary>
            <value>A <see cref="P:Argotic.Extensions.Core.FeedHistoryLinkRelation.Uri"/> that represents a Internationalized Resource Identifier (IRI) that identifies the location of this link relation.</value>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="T:Argotic.Extensions.IExtensibleSyndicationObject">
            <summary>
            Defines generalized extension properties, methods, indexers and events that a value type or class 
            implements to create a type-specific implementation of extension properties, methods, indexers and events.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.IExtensibleSyndicationObject.AddExtension(Argotic.Extensions.ISyndicationExtension)">
            <summary>
            Adds the supplied <see cref="T:Argotic.Extensions.ISyndicationExtension"/> to the current instance's <see cref="P:Argotic.Extensions.IExtensibleSyndicationObject.Extensions"/> collection.
            </summary>
            <param name="extension">The <see cref="T:Argotic.Extensions.ISyndicationExtension"/> to be added.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.ISyndicationExtension"/> was added to the <see cref="P:Argotic.Extensions.IExtensibleSyndicationObject.Extensions"/> collection, otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="extension"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.IExtensibleSyndicationObject.FindExtension(System.Predicate{Argotic.Extensions.ISyndicationExtension})">
            <summary>
            Searches for a syndication extension that matches the conditions defined by the specified predicate, and returns the first occurrence within the <see cref="P:Argotic.Extensions.IExtensibleSyndicationObject.Extensions"/> collection.
            </summary>
            <param name="match">The <see cref="T:System.Predicate`1"/> delegate that defines the conditions of the <see cref="T:Argotic.Extensions.ISyndicationExtension"/> to search for</param>
            <returns>
                The first syndication extension that matches the conditions defined by the specified predicate, if found; otherwise, the default value for <see cref="T:Argotic.Extensions.ISyndicationExtension"/>.
            </returns>
            <remarks>
                The <see cref="T:System.Predicate`1"/> is a delegate to a method that returns <b>true</b> if the object passed to it matches the conditions defined in the delegate. 
                The elements of the current <see cref="P:Argotic.Extensions.IExtensibleSyndicationObject.Extensions"/> are individually passed to the <see cref="T:System.Predicate`1"/> delegate, moving forward in 
                the <see cref="P:Argotic.Extensions.IExtensibleSyndicationObject.Extensions"/>, starting with the first element and ending with the last element. Processing is stopped when a match is found.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="match"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.IExtensibleSyndicationObject.RemoveExtension(Argotic.Extensions.ISyndicationExtension)">
            <summary>
            Removes the supplied <see cref="T:Argotic.Extensions.ISyndicationExtension"/> from the current instance's <see cref="P:Argotic.Extensions.IExtensibleSyndicationObject.Extensions"/> collection.
            </summary>
            <param name="extension">The <see cref="T:Argotic.Extensions.ISyndicationExtension"/> to be removed.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.ISyndicationExtension"/> was removed from the <see cref="P:Argotic.Extensions.IExtensibleSyndicationObject.Extensions"/> collection, otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="extension"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="P:Argotic.Extensions.IExtensibleSyndicationObject.Extensions">
            <summary>
            Gets or sets the syndication extensions applied to the syndication entity.
            </summary>
            <value>A <see cref="T:System.Collections.Generic.IEnumerable`1"/> collection of <see cref="T:Argotic.Extensions.ISyndicationExtension"/> objects that represent syndication extensions applied to the syndication entity.</value>
            <seealso cref="T:Argotic.Extensions.SyndicationExtension"/>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="P:Argotic.Extensions.IExtensibleSyndicationObject.HasExtensions">
            <summary>
            Gets a value indicating if the syndication entity has one or more syndication extensions applied to it.
            </summary>
            <value><b>true</b> if the <see cref="P:Argotic.Extensions.IExtensibleSyndicationObject.Extensions"/> collection contains one or more <see cref="T:Argotic.Extensions.ISyndicationExtension"/> objects, otherwise returns <b>false</b>.</value>
        </member>
        <member name="T:Argotic.Extensions.Core.YahooMediaUtility">
            <summary>
            Provides methods that comprise common utility features shared across the Yahoo media syndication entities. This class cannot be inherited.
            </summary>
            <remarks>This utility class is not intended for use outside the Yahoo media syndication entities within the framework.</remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaUtility.CompareCommonObjectEntities(Argotic.Extensions.Core.IYahooMediaCommonObjectEntities,Argotic.Extensions.Core.IYahooMediaCommonObjectEntities)">
            <summary>
            Compares objects that implement the <see cref="T:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities"/> interface.
            </summary>
            <param name="source">A object that implements the <see cref="T:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities"/> interface to be compared.</param>
            <param name="target">A object that implements the <see cref="T:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities"/> to compare with the <paramref name="source"/>.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaUtility.CompareSequence(System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.YahooMediaCategory},System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.YahooMediaCategory})">
            <summary>
            Compares two specified <see cref="T:System.Collections.ObjectModel.Collection`1"/> collections.
            </summary>
            <param name="source">The first collection.</param>
            <param name="target">The second collection.</param>
            <returns>A 32-bit signed integer indicating the lexical relationship between the two comparands.</returns>
            <remarks>
                <para>
                    If the collections contain the same number of elements, determines the lexical relationship between the two sequences of comparands.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>greater than</i> the <paramref name="target"/> element count, returns <b>1</b>.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>less than</i> the <paramref name="target"/> element count, returns <b>-1</b>.
                </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="target"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaUtility.CompareSequence(System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.YahooMediaContent},System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.YahooMediaContent})">
            <summary>
            Compares two specified <see cref="T:System.Collections.ObjectModel.Collection`1"/> collections.
            </summary>
            <param name="source">The first collection.</param>
            <param name="target">The second collection.</param>
            <returns>A 32-bit signed integer indicating the lexical relationship between the two comparands.</returns>
            <remarks>
                <para>
                    If the collections contain the same number of elements, determines the lexical relationship between the two sequences of comparands.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>greater than</i> the <paramref name="target"/> element count, returns <b>1</b>.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>less than</i> the <paramref name="target"/> element count, returns <b>-1</b>.
                </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="target"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaUtility.CompareSequence(System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.YahooMediaCredit},System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.YahooMediaCredit})">
            <summary>
            Compares two specified <see cref="T:System.Collections.ObjectModel.Collection`1"/> collections.
            </summary>
            <param name="source">The first collection.</param>
            <param name="target">The second collection.</param>
            <returns>A 32-bit signed integer indicating the lexical relationship between the two comparands.</returns>
            <remarks>
                <para>
                    If the collections contain the same number of elements, determines the lexical relationship between the two sequences of comparands.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>greater than</i> the <paramref name="target"/> element count, returns <b>1</b>.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>less than</i> the <paramref name="target"/> element count, returns <b>-1</b>.
                </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="target"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaUtility.CompareSequence(System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.YahooMediaGroup},System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.YahooMediaGroup})">
            <summary>
            Compares two specified <see cref="T:System.Collections.ObjectModel.Collection`1"/> collections.
            </summary>
            <param name="source">The first collection.</param>
            <param name="target">The second collection.</param>
            <returns>A 32-bit signed integer indicating the lexical relationship between the two comparands.</returns>
            <remarks>
                <para>
                    If the collections contain the same number of elements, determines the lexical relationship between the two sequences of comparands.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>greater than</i> the <paramref name="target"/> element count, returns <b>1</b>.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>less than</i> the <paramref name="target"/> element count, returns <b>-1</b>.
                </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="target"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaUtility.CompareSequence(System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.YahooMediaHash},System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.YahooMediaHash})">
            <summary>
            Compares two specified <see cref="T:System.Collections.ObjectModel.Collection`1"/> collections.
            </summary>
            <param name="source">The first collection.</param>
            <param name="target">The second collection.</param>
            <returns>A 32-bit signed integer indicating the lexical relationship between the two comparands.</returns>
            <remarks>
                <para>
                    If the collections contain the same number of elements, determines the lexical relationship between the two sequences of comparands.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>greater than</i> the <paramref name="target"/> element count, returns <b>1</b>.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>less than</i> the <paramref name="target"/> element count, returns <b>-1</b>.
                </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="target"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaUtility.CompareSequence(System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.YahooMediaRating},System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.YahooMediaRating})">
            <summary>
            Compares two specified <see cref="T:System.Collections.ObjectModel.Collection`1"/> collections.
            </summary>
            <param name="source">The first collection.</param>
            <param name="target">The second collection.</param>
            <returns>A 32-bit signed integer indicating the lexical relationship between the two comparands.</returns>
            <remarks>
                <para>
                    If the collections contain the same number of elements, determines the lexical relationship between the two sequences of comparands.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>greater than</i> the <paramref name="target"/> element count, returns <b>1</b>.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>less than</i> the <paramref name="target"/> element count, returns <b>-1</b>.
                </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="target"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaUtility.CompareSequence(System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.YahooMediaRestriction},System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.YahooMediaRestriction})">
            <summary>
            Compares two specified <see cref="T:System.Collections.ObjectModel.Collection`1"/> collections.
            </summary>
            <param name="source">The first collection.</param>
            <param name="target">The second collection.</param>
            <returns>A 32-bit signed integer indicating the lexical relationship between the two comparands.</returns>
            <remarks>
                <para>
                    If the collections contain the same number of elements, determines the lexical relationship between the two sequences of comparands.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>greater than</i> the <paramref name="target"/> element count, returns <b>1</b>.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>less than</i> the <paramref name="target"/> element count, returns <b>-1</b>.
                </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="target"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaUtility.CompareSequence(System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.YahooMediaText},System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.YahooMediaText})">
            <summary>
            Compares two specified <see cref="T:System.Collections.ObjectModel.Collection`1"/> collections.
            </summary>
            <param name="source">The first collection.</param>
            <param name="target">The second collection.</param>
            <returns>A 32-bit signed integer indicating the lexical relationship between the two comparands.</returns>
            <remarks>
                <para>
                    If the collections contain the same number of elements, determines the lexical relationship between the two sequences of comparands.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>greater than</i> the <paramref name="target"/> element count, returns <b>1</b>.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>less than</i> the <paramref name="target"/> element count, returns <b>-1</b>.
                </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="target"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaUtility.CompareSequence(System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.YahooMediaThumbnail},System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.YahooMediaThumbnail})">
            <summary>
            Compares two specified <see cref="T:System.Collections.ObjectModel.Collection`1"/> collections.
            </summary>
            <param name="source">The first collection.</param>
            <param name="target">The second collection.</param>
            <returns>A 32-bit signed integer indicating the lexical relationship between the two comparands.</returns>
            <remarks>
                <para>
                    If the collections contain the same number of elements, determines the lexical relationship between the two sequences of comparands.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>greater than</i> the <paramref name="target"/> element count, returns <b>1</b>.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>less than</i> the <paramref name="target"/> element count, returns <b>-1</b>.
                </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="target"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaUtility.FillCommonObjectEntities(Argotic.Extensions.Core.IYahooMediaCommonObjectEntities,System.Xml.XPath.XPathNavigator)">
            <summary>
            Modifies the <see cref="T:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities"/> to match the data source.
            </summary>
            <param name="target">The object that implements the <see cref="T:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities"/> interface to be filled.</param>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract Yahoo media common entity information from.</param>
            <returns><b>true</b> if the <paramref name="target"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="target"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaUtility.WriteCommonObjectEntities(Argotic.Extensions.Core.IYahooMediaCommonObjectEntities,System.Xml.XmlWriter)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="source">A object that implements the <see cref="T:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities"/> interface to extract Yahoo media common entity information from.</param>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which the <paramref name="source"/> information will be written.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaUtility.CompareCommonObjectEntityClasses(Argotic.Extensions.Core.IYahooMediaCommonObjectEntities,Argotic.Extensions.Core.IYahooMediaCommonObjectEntities)">
            <summary>
            Compares the classes for objects that implement the <see cref="T:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities"/> interface.
            </summary>
            <param name="source">A object that implements the <see cref="T:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities"/> interface to be compared.</param>
            <param name="target">A object that implements the <see cref="T:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities"/> to compare with the <paramref name="source"/>.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaUtility.CompareCommonObjectEntityCollections(Argotic.Extensions.Core.IYahooMediaCommonObjectEntities,Argotic.Extensions.Core.IYahooMediaCommonObjectEntities)">
            <summary>
            Compares the collections for objects that implement the <see cref="T:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities"/> interface.
            </summary>
            <param name="source">A object that implements the <see cref="T:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities"/> interface to be compared.</param>
            <param name="target">A object that implements the <see cref="T:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities"/> to compare with the <paramref name="source"/>.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaUtility.FillCommonObjectEntityClasses(Argotic.Extensions.Core.IYahooMediaCommonObjectEntities,System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Modifies the classes of a <see cref="T:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities"/> to match the data source.
            </summary>
            <param name="target">The object that implements the <see cref="T:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities"/> interface to be filled.</param>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract Yahoo media common entity information from.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed Yahoo media elements and attributes.</param>
            <returns><b>true</b> if the <paramref name="target"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="target"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaUtility.FillCommonObjectEntityCollectionsPrimary(Argotic.Extensions.Core.IYahooMediaCommonObjectEntities,System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Modifies the primary collections of a <see cref="T:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities"/> to match the data source.
            </summary>
            <param name="target">The object that implements the <see cref="T:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities"/> interface to be filled.</param>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract Yahoo media common entity information from.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed Yahoo media elements and attributes.</param>
            <returns><b>true</b> if the <paramref name="target"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="target"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaUtility.FillCommonObjectEntityCollectionsSecondary(Argotic.Extensions.Core.IYahooMediaCommonObjectEntities,System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Modifies the secondary collections of a <see cref="T:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities"/> to match the data source.
            </summary>
            <param name="target">The object that implements the <see cref="T:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities"/> interface to be filled.</param>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract Yahoo media common entity information from.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed Yahoo media elements and attributes.</param>
            <returns><b>true</b> if the <paramref name="target"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="target"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.YahooMediaText">
            <summary>
            Represents a means of allowing the inclusion of a text transcript, closed captioning, or lyrics of the media content.
            </summary>
            <remarks>
                <para>
                    Many of these <see cref="T:Argotic.Extensions.Core.YahooMediaText"/> objects are permitted to provide a time series of text. 
                    In such cases, it is encouraged, but not required, that the <see cref="T:Argotic.Extensions.Core.YahooMediaText"/> objects be grouped by language and appear in time sequence order based on the start time. 
                    <see cref="T:Argotic.Extensions.Core.YahooMediaText"/> objects can have overlapping start and end times.
                </para>
            </remarks>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaText.textType">
            <summary>
            Private member to hold the type of the embedded text.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaText.textLanguage">
            <summary>
            Private member to hold the primary language encapsulated in the media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaText.textStart">
            <summary>
            Private member to hold the start time offset that the text starts being relevant to the media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaText.textEnd">
            <summary>
            Private member to hold the end time offset that the text stops being relevant to the media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaText.textContent">
            <summary>
            Private member to hold the text transcript, closed captioning, or lyrics for the media content.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaText.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaText"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaText.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaText"/> class using the supplied textual content.
            </summary>
            <param name="text">The text transcript, closed captioning, or lyrics for this media content.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="text"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="text"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaText.TextTypeAsString(Argotic.Extensions.Core.YahooMediaTextConstructType)">
            <summary>
            Returns the entity encoding type identifier for the supplied <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstructType"/>.
            </summary>
            <param name="type">The <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstructType"/> to get the entity encoding type identifier for.</param>
            <returns>The entity encoding type identifier for the supplied <paramref name="type"/>, otherwise returns an empty string.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaText.TextTypeByName(System.String)">
            <summary>
            Returns the <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstructType"/> enumeration value that corresponds to the specified entity encoding type name.
            </summary>
            <param name="name">The name of the entity encoding type.</param>
            <returns>A <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstructType"/> enumeration value that corresponds to the specified string, otherwise returns <b>YahooMediaTextConstructType.None</b>.</returns>
            <remarks>This method disregards case of specified entity encoding type name.</remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaText.Load(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads this <see cref="T:Argotic.Extensions.Core.YahooMediaText"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.YahooMediaText"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.YahooMediaText"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaText.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.YahooMediaText"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaText.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaText"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaText"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaText.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaText.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaText.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaText.op_Equality(Argotic.Extensions.Core.YahooMediaText,Argotic.Extensions.Core.YahooMediaText)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaText.op_Inequality(Argotic.Extensions.Core.YahooMediaText,Argotic.Extensions.Core.YahooMediaText)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaText.op_LessThan(Argotic.Extensions.Core.YahooMediaText,Argotic.Extensions.Core.YahooMediaText)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaText.op_GreaterThan(Argotic.Extensions.Core.YahooMediaText,Argotic.Extensions.Core.YahooMediaText)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaText.Content">
            <summary>
            Gets or sets the content of this embedded text.
            </summary>
            <value>The text transcript, closed captioning, or lyrics for this media content.</value>
            <remarks>
                All HTML <b>must</b> be entity-encoded.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is an empty string.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaText.End">
            <summary>
            Gets or sets the end time offset that this text stops being relevant to the media object.
            </summary>
            <value>
                A <see cref="T:System.TimeSpan"/> that represents the end time offset that this text stops being relevant to the media object. 
                The default value is <see cref="F:System.TimeSpan.MinValue"/>, which indicates that no end time was specified.
            </value>
            <remarks>
                If this property is not provided, and a <see cref="P:Argotic.Extensions.Core.YahooMediaText.Start">start time</see> is used, 
                it is expected that the <see cref="P:Argotic.Extensions.Core.YahooMediaText.End">end time</see> is either the end of the clip or the start of the next <see cref="T:Argotic.Extensions.Core.YahooMediaText"/> object.
            </remarks>
            <seealso cref="P:Argotic.Extensions.Core.YahooMediaText.Start"/>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaText.Language">
            <summary>
            Gets or sets the primary language encapsulated in this media object.
            </summary>
            <value>
                A <see cref="T:System.Globalization.CultureInfo"/> that represents the natural or formal language in which the <see cref="P:Argotic.Extensions.Core.YahooMediaText.Content"/> is written. 
                The default value is a <b>null</b> reference, which indicates no language was specified.
            </value>
            <remarks>
                <para>
                    The value of this property is a language identifier as defined by <a href="http://www.ietf.org/rfc/rfc3066.txt">RFC 3066: Tags for the Identification of Languages</a>, or its successor.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaText.Start">
            <summary>
            Gets or sets the start time offset that this text starts being relevant to the media object.
            </summary>
            <value>
                A <see cref="T:System.TimeSpan"/> that represents the start time offset that this text starts being relevant to the media object. 
                The default value is <see cref="F:System.TimeSpan.MinValue"/>, which indicates that no start time was specified.
            </value>
            <seealso cref="P:Argotic.Extensions.Core.YahooMediaText.End"/>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaText.TextType">
            <summary>
            Gets or sets the entity encoding utilized by this embedded text.
            </summary>
            <value>
                An <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstruct"/> enumeration value that represents the entity encoding utilized by this embedded text. 
                The default value is <see cref="F:Argotic.Extensions.Core.YahooMediaTextConstructType.None"/>.
            </value>
            <remarks>
                If no entity encoding is specified, a default value of <see cref="F:Argotic.Extensions.Core.YahooMediaTextConstructType.Plain"/> can be assumed.
            </remarks>
        </member>
        <member name="T:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext">
            <summary>
            Encapsulates specific information about an individual <see cref="T:Argotic.Extensions.Core.YahooMediaSyndicationExtension"/>.
            </summary>
        </member>
        <member name="T:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities">
            <summary>
            Allows an object to implement common Yahoo media entities by representing a set of properties, methods, indexers and events common to Yahoo media syndication resources.
            </summary>
            <remarks>
                <para>
                     The following properties are optional and may appear as sub-elements of syndication entities, <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> and/or <see cref="T:Argotic.Extensions.Core.YahooMediaGroup"/>.
                </para>
                <para>
                    When a property appears at a shallow level, such as syndication entities, it means that the property should be applied to every media object within its scope. 
                    Duplicated properties appearing at deeper levels of the document tree have higher priority over other levels. For example, <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> level 
                    properties are favored over syndication entity level properties.
                </para>
                <para>
                    The priority level is listed from strongest to weakest: <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/>, <see cref="T:Argotic.Extensions.Core.YahooMediaGroup"/>, syndication item entity, syndication feed.
                </para>
            </remarks>
            <seealso cref="T:Argotic.Extensions.Core.YahooMediaContent"/>
            <seealso cref="T:Argotic.Extensions.Core.YahooMediaGroup"/>
            <seealso cref="T:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext"/>
        </member>
        <member name="P:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities.Categories">
            <summary>
            Gets a taxonomy that gives an indication of the type of content for the media object.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaCategory"/> objects that represent a taxonomy that gives an indication to the type of content for the media object. 
                The default value is an <i>empty</i> collection.
            </value>
        </member>
        <member name="P:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities.Copyright">
            <summary>
            Gets or sets the copyright information for the media object.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.YahooMediaCopyright"/> that represents the copyright information for the media object.</value>
            <remarks>
                If the media is operating under a <i>Creative Commons license</i>, a <see cref="T:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension">Creative Commons extension</see> should be used instead.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities.Credits">
            <summary>
            Gets the entities that contributed to the creation of the media object.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaCredit"/> objects that represent the entities that contributed to the creation of the media object. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                Current entities can include people, companies, locations, etc. Specific entities can have multiple roles, 
                and several entities can have the same role. These should appear as distinct <see cref="T:Argotic.Extensions.Core.YahooMediaCredit"/> entities.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities.Description">
            <summary>
            Gets or sets the description of the media object.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstruct"/> that represents a short description of the media object.</value>
            <remarks>
                Media object descriptions are typically a sentence in length.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities.Hashes">
            <summary>
            Gets the hash digests for the media object.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaHash"/> objects that represent the hash digests for the media object. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                When assigning multiple hashes, each <see cref="T:Argotic.Extensions.Core.YahooMediaHash"/> <b>must</b> have a different <see cref="P:Argotic.Extensions.Core.YahooMediaHash.Algorithm"/>.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities.Keywords">
            <summary>
            Gets the relevant keywords that describe the media object.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:System.String"/> objects that represent the relevant keywords that describe the media object. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                Media objects are typically assigned maximum of ten keywords or phrases.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities.Player">
            <summary>
            Gets or sets a web browser media player console the media object can be accessed through.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.YahooMediaPlayer"/> that represents a web browser media player console the media object can be accessed through.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities.Ratings">
            <summary>
            Gets the permissible audiences for the media object.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaRating"/> objects that represent the permissible audiences for the media object. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                If there are no ratings specified, it can be assumed that no restrictions are necessary.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities.Restrictions">
            <summary>
            Gets the restrictions to be placed on aggregators that are rendering the media object.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaRestriction"/> objects that represent restrictions to be placed on aggregators that are rendering the media object. 
                The default value is an <i>empty</i> collection.
            </value>
        </member>
        <member name="P:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities.TextSeries">
            <summary>
            Gets the text transcript, closed captioning, or lyrics for the media object.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaText"/> objects that represent text transcript, closed captioning, or lyrics for the media object. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                Many of these <see cref="T:Argotic.Extensions.Core.YahooMediaText"/> objects are permitted to provide a time series of text. 
                In such cases, it is encouraged, but not required, that the <see cref="T:Argotic.Extensions.Core.YahooMediaText"/> objects be grouped by language and appear in time sequence order based on the start time. 
                <see cref="T:Argotic.Extensions.Core.YahooMediaText"/> objects can have overlapping start and end times.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities.Thumbnails">
            <summary>
            Gets the representative images for the media object.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaThumbnail"/> objects that represent images that are representative of the media object. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                If multiple thumbnails are included, and time coding is not at play, it is assumed that the images are in order of importance.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities.Title">
            <summary>
            Gets or sets the title of the media object.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstruct"/> that represents the title of the media object.</value>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.extensionContents">
            <summary>
            Private member to hold the collection of items that comprise the distinct content published in the feed.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.extensionGroups">
            <summary>
            Private member to hold the collection of media objects that are effectively the same content, yet different representations.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.mediaObjectRatings">
            <summary>
            Private member to hold the permissible audiences for the syndication entity.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.mediaObjectTitle">
            <summary>
            Private member to hold the title of the syndication entity.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.mediaObjectDescription">
            <summary>
            Private member to hold a short description of the syndication entity.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.mediaObjectKeywords">
            <summary>
            Private member to hold the relevant keywords that describe the syndication entity.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.mediaObjectThumbnails">
            <summary>
            Private member to hold the representative images for the syndication entity.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.mediaObjectCategories">
            <summary>
            Private member to hold a taxonomy that gives an indication of the type of content for the syndication entity.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.mediaObjectHashes">
            <summary>
            Private member to hold the hash digests for the syndication entity.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.mediaObjectPlayer">
            <summary>
            Private member to hold a web browser media player console the syndication entity can be accessed through.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.mediaObjectCredits">
            <summary>
            Private member to hold the entities that contributed to the creation of the syndication entity.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.mediaObjectCopyright">
            <summary>
            Private member to hold the copyright information for the syndication entity.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.mediaObjectTextSeries">
            <summary>
            Private member to hold the text transcript, closed captioning, or lyrics for the syndication entity.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.mediaObjectRestrictions">
            <summary>
            Private member to hold the restrictions to be placed on aggregators that are rendering the syndication entity.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.Load(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.WriteTo(System.Xml.XmlWriter,System.String)">
            <summary>
            Writes the current context to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the current context.</param>
            <param name="xmlNamespace">The XML namespace used to qualify prefixed syndication extension elements and attributes.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.AddContent(Argotic.Extensions.Core.YahooMediaContent)">
            <summary>
            Adds the supplied <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> to the current instance's <see cref="P:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.Contents"/> collection.
            </summary>
            <param name="content">The <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> to be added.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> was added to the <see cref="P:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.Contents"/> collection, otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="content"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.AddGroup(Argotic.Extensions.Core.YahooMediaGroup)">
            <summary>
            Adds the supplied <see cref="T:Argotic.Extensions.Core.YahooMediaGroup"/> to the current instance's <see cref="P:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.Groups"/> collection.
            </summary>
            <param name="group">The <see cref="T:Argotic.Extensions.Core.YahooMediaGroup"/> to be added.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.YahooMediaGroup"/> was added to the <see cref="P:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.Groups"/> collection, otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="group"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.RemoveContent(Argotic.Extensions.Core.YahooMediaContent)">
            <summary>
            Removes the supplied <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> from the current instance's <see cref="P:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.Contents"/> collection.
            </summary>
            <param name="content">The <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> to be removed.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> was removed from the <see cref="P:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.Contents"/> collection, otherwise <b>false</b>.</returns>
            <remarks>
                If the <see cref="P:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.Contents"/> collection of the current instance does not contain the specified <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/>, will return <b>false</b>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="content"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.RemoveGroup(Argotic.Extensions.Core.YahooMediaGroup)">
            <summary>
            Removes the supplied <see cref="T:Argotic.Extensions.Core.YahooMediaGroup"/> from the current instance's <see cref="P:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.Groups"/> collection.
            </summary>
            <param name="group">The <see cref="T:Argotic.Extensions.Core.YahooMediaGroup"/> to be removed.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.YahooMediaGroup"/> was removed from the <see cref="P:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.Groups"/> collection, otherwise <b>false</b>.</returns>
            <remarks>
                If the <see cref="P:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.Groups"/> collection of the current instance does not contain the specified <see cref="T:Argotic.Extensions.Core.YahooMediaGroup"/>, will return <b>false</b>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="group"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.Contents">
            <summary>
            Gets or sets the publishable media objects.
            </summary>
            <value>A <see cref="T:System.Collections.Generic.IEnumerable`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> objects that represent publishable media objects.</value>
            <remarks>
                <para>
                    The sequence of <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> objects within a syndication entity implies the order of presentation.
                </para>
                <para>
                    This <see cref="T:System.Collections.Generic.IEnumerable`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> objects is internally represented as a <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection.
                </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.Groups">
            <summary>
            Gets or sets the media objects that are effectively the same content, yet different representations.
            </summary>
            <value>A <see cref="T:System.Collections.Generic.IEnumerable`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaGroup"/> objects that represent effectively the same content, yet different representations.</value>
            <remarks>
                <para>
                    Media objects that are not the same content should not be included in the same <see cref="T:Argotic.Extensions.Core.YahooMediaGroup"/>. 
                    The sequence of <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> objects within a <see cref="T:Argotic.Extensions.Core.YahooMediaGroup"/> implies the order of presentation.
                </para>
                <para>
                    This <see cref="T:System.Collections.Generic.IEnumerable`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaGroup"/> objects is internally represented as a <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection.
                </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.Categories">
            <summary>
            Gets a taxonomy that gives an indication of the type of content for this syndication entity.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaCategory"/> objects that represent a taxonomy that gives an indication to the type of content for this syndication entity. 
                The default value is an <i>empty</i> collection.
            </value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.Copyright">
            <summary>
            Gets or sets the copyright information for this syndication entity.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.YahooMediaCopyright"/> that represents the copyright information for this syndication entity.</value>
            <remarks>
                If the media is operating under a <i>Creative Commons license</i>, a <see cref="T:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension">Creative Commons extension</see> should be used instead.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.Credits">
            <summary>
            Gets the entities that contributed to the creation of this syndication entity.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaCredit"/> objects that represent the entities that contributed to the creation of this syndication entity. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                Current entities can include people, companies, locations, etc. Specific entities can have multiple roles, 
                and several entities can have the same role. These should appear as distinct <see cref="T:Argotic.Extensions.Core.YahooMediaCredit"/> entities.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.Description">
            <summary>
            Gets or sets the description of this syndication entity.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstruct"/> that represents a short description of this syndication entity.</value>
            <remarks>
                Media object descriptions are typically a sentence in length.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.Hashes">
            <summary>
            Gets the hash digests for this syndication entity.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaHash"/> objects that represent the hash digests for this syndication entity. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                When assigning multiple hashes, each <see cref="T:Argotic.Extensions.Core.YahooMediaHash"/> <b>must</b> have a different <see cref="P:Argotic.Extensions.Core.YahooMediaHash.Algorithm"/>.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.Keywords">
            <summary>
            Gets the relevant keywords that describe this syndication entity.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:System.String"/> objects that represent the relevant keywords that describe this syndication entity. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                Media objects are typically assigned maximum of ten keywords or phrases.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.Player">
            <summary>
            Gets or sets a web browser media player console this syndication entity can be accessed through.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.YahooMediaPlayer"/> that represents a web browser media player console this syndication entity can be accessed through.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.Ratings">
            <summary>
            Gets the permissible audiences for this syndication entity.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaRating"/> objects that represent the permissible audiences for this syndication entity. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                If there are no ratings specified, it can be assumed that no restrictions are necessary.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.Restrictions">
            <summary>
            Gets the restrictions to be placed on aggregators that are rendering this syndication entity.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaRestriction"/> objects that represent restrictions to be placed on aggregators that are rendering this syndication entity. 
                The default value is an <i>empty</i> collection.
            </value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.TextSeries">
            <summary>
            Gets the text transcript, closed captioning, or lyrics for this syndication entity.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaText"/> objects that represent text transcript, closed captioning, or lyrics for this syndication entity. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                Many of these <see cref="T:Argotic.Extensions.Core.YahooMediaText"/> objects are permitted to provide a time series of text. 
                In such cases, it is encouraged, but not required, that the <see cref="T:Argotic.Extensions.Core.YahooMediaText"/> objects be grouped by language and appear in time sequence order based on the start time. 
                <see cref="T:Argotic.Extensions.Core.YahooMediaText"/> objects can have overlapping start and end times.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.Thumbnails">
            <summary>
            Gets the representative images for this syndication entity.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaThumbnail"/> objects that represent images that are representative of this syndication entity. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                If multiple thumbnails are included, and time coding is not at play, it is assumed that the images are in order of importance.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext.Title">
            <summary>
            Gets or sets the title of this syndication entity.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstruct"/> that represents the title of this syndication entity.</value>
        </member>
        <member name="T:Argotic.Extensions.Core.YahooMediaRestrictionType">
            <summary>
            Indicates the type of media that a restriction applies to.
            </summary>
            <seealso cref="T:Argotic.Extensions.Core.YahooMediaRestriction"/>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaRestrictionType.None">
            <summary>
            No restriction type specified.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaRestrictionType.Country">
            <summary>
            Indicates that restrictions are be placed based on country code.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaRestrictionType.Uri">
            <summary>
            Indicates that restrictions are be placed based on URI.
            </summary>
        </member>
        <member name="T:Argotic.Extensions.Core.YahooMediaCredit">
            <summary>
            Represents an entity that contributed to the creation of a media object.
            </summary>
            <remarks>
                <para>
                    Current entities can include people, companies, locations, etc. Specific entities can have multiple roles, 
                    and several entities can have the same role. These should appear as distinct <see cref="T:Argotic.Extensions.Core.YahooMediaCredit"/> entities.
                </para>
            </remarks>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaCredit.creditRole">
            <summary>
            Private member to hold the role the entity played.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaCredit.creditScheme">
            <summary>
            Private member to hold the URI that identifies the role scheme.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaCredit.creditEntityName">
            <summary>
            Private member to hold the name of the entity that contributed to the creation of the media object.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCredit.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaCredit"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCredit.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaCredit"/> class using the supplied entity name.
            </summary>
            <param name="entity">The name of the entity that contributed to the creation of the media object.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="entity"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="entity"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCredit.Load(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads this <see cref="T:Argotic.Extensions.Core.YahooMediaCredit"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.YahooMediaCredit"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.YahooMediaCredit"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCredit.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.YahooMediaCredit"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCredit.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaCredit"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaCredit"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCredit.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCredit.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCredit.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCredit.op_Equality(Argotic.Extensions.Core.YahooMediaCredit,Argotic.Extensions.Core.YahooMediaCredit)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCredit.op_Inequality(Argotic.Extensions.Core.YahooMediaCredit,Argotic.Extensions.Core.YahooMediaCredit)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCredit.op_LessThan(Argotic.Extensions.Core.YahooMediaCredit,Argotic.Extensions.Core.YahooMediaCredit)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCredit.op_GreaterThan(Argotic.Extensions.Core.YahooMediaCredit,Argotic.Extensions.Core.YahooMediaCredit)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaCredit.EuropeanBroadcastingUnionRoleScheme">
            <summary>
            Gets the European Broadcasting Union Roles scheme.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents the European Broadcasting Union Roles scheme, which has a value of <b>urn:ebu</b>.</value>
            <remarks>
                This scheme can be assumed to be the default scheme for <see cref="T:Argotic.Extensions.Core.YahooMediaCredit"/> when no scheme is provided.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaCredit.Entity">
            <summary>
            Gets or sets the name of the entity that contributed to this media object.
            </summary>
            <value>The name of the entity that contributed to the creation of this media object.</value>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is an empty string.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaCredit.Role">
            <summary>
            Gets or sets the role the entity played in the creation of the media object.
            </summary>
            <value>The role the entity played in the creation of the media object.</value>
            <remarks>
                All roles are converted to their lowercase equivalent. See <a href="http://www.ebu.ch/en/technical/metadata/specifications/role_codes.php">European Broadcasting Union Role Codes</a> 
                for a listing of the default entity roles.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaCredit.Scheme">
            <summary>
            Gets or sets a URI that identifies this role scheme.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents this role scheme. The default value is <b>null</b>.</value>
            <remarks>
                If no rating scheme is provided, the default scheme is <b>urn:ebu</b>.
            </remarks>
            <seealso cref="P:Argotic.Extensions.Core.YahooMediaCredit.EuropeanBroadcastingUnionRoleScheme"/>
        </member>
        <member name="T:Argotic.Extensions.Core.YahooMediaCopyright">
            <summary>
            Represents the copyright information for a media object.
            </summary>
            <remarks>
                <para>
                    If the media is operating under a <i>Creative Commons license</i>, the <see cref="T:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension">Creative Commons extension</see> should be used instead.
                </para>
            </remarks>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaCopyright.copyrightUrl">
            <summary>
            Private member to hold the url for a terms of use page or additional copyright information.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaCopyright.copyrightText">
            <summary>
            Private member to hold the textual copyright notice.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCopyright.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaCopyright"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCopyright.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaCopyright"/> class using the supplied human-readable copyright information.
            </summary>
            <param name="text">The human-readable copyright information.</param>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCopyright.Load(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads this <see cref="T:Argotic.Extensions.Core.YahooMediaCopyright"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.YahooMediaCopyright"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.YahooMediaCopyright"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCopyright.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.YahooMediaCopyright"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCopyright.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaCopyright"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaCopyright"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCopyright.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCopyright.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCopyright.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCopyright.op_Equality(Argotic.Extensions.Core.YahooMediaCopyright,Argotic.Extensions.Core.YahooMediaCopyright)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCopyright.op_Inequality(Argotic.Extensions.Core.YahooMediaCopyright,Argotic.Extensions.Core.YahooMediaCopyright)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCopyright.op_LessThan(Argotic.Extensions.Core.YahooMediaCopyright,Argotic.Extensions.Core.YahooMediaCopyright)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCopyright.op_GreaterThan(Argotic.Extensions.Core.YahooMediaCopyright,Argotic.Extensions.Core.YahooMediaCopyright)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaCopyright.Text">
            <summary>
            Gets or sets the human-readable copyright information.
            </summary>
            <value>The human-readable copyright information.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaCopyright.Url">
            <summary>
            Gets or sets the location of a terms of use page or additional copyright information.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents the URL for a terms of use page or additional copyright information.</value>
        </member>
        <member name="T:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtensionContext">
            <summary>
            Encapsulates specific information about an individual <see cref="T:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension"/>.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtensionContext.extensionComment">
            <summary>
            Private member to hold the URI that comment entries are to be posted to.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtensionContext.extensionCommentFeed">
            <summary>
            Private member to hold the URI of the syndication feed for comment entries.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtensionContext.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtensionContext"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtensionContext.Load(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtensionContext.WriteTo(System.Xml.XmlWriter,System.String)">
            <summary>
            Writes the current context to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the current context.</param>
            <param name="xmlNamespace">The XML namespace used to qualify prefixed syndication extension elements and attributes.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtensionContext.Comments">
            <summary>
            Gets or sets the URL that comment entries are to be posted to.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents the URI that comment entries are to be posted to.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtensionContext.CommentsFeed">
            <summary>
            Gets or sets the URL of the syndication feed for comment entries.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents the URI of the syndication feed for comment entries.</value>
        </member>
        <member name="T:Argotic.Extensions.Core.SiteSummaryUpdatePeriod">
            <summary>
            Represents the period over which the feed format is updated.
            </summary>
            <seealso cref="P:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtensionContext.Period"/>
            <seealso cref="T:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtensionContext"/>
        </member>
        <member name="F:Argotic.Extensions.Core.SiteSummaryUpdatePeriod.None">
            <summary>
            No update period specified.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SiteSummaryUpdatePeriod.Daily">
            <summary>
            Feed format is updated on a daily basis.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SiteSummaryUpdatePeriod.Hourly">
            <summary>
            Feed format is updated on an hourly basis.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SiteSummaryUpdatePeriod.Monthly">
            <summary>
            Feed format is updated on a monthly basis.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SiteSummaryUpdatePeriod.Weekly">
            <summary>
            Feed format is updated on a weekly basis.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SiteSummaryUpdatePeriod.Yearly">
            <summary>
            Feed format is updated on a yearly basis.
            </summary>
        </member>
        <member name="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext">
            <summary>
            Encapsulates specific information about an individual <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtension"/>.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionAbstract">
            <summary>
            Private member to hold the summary of the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionAccessRights">
            <summary>
            Private member to hold information about who can access the resource or an indication of its security status.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionAccrualMethod">
            <summary>
            Private member to hold the method by which items are added to a collection.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionAccrualPeriodicity">
            <summary>
            Private member to hold the frequency with which items are added to a collection.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionAccrualPolicy">
            <summary>
            Private member to hold the policy governing the addition of items to a collection.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionAlternativeTitle">
            <summary>
            Private member to hold an alternative name for the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionAudience">
            <summary>
            Private member to hold the class of entity for whom the resource is intended or useful.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionDateAvailable">
            <summary>
            Private member to hold the date (often a range) that the resource became or will become available.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionBibliographicCitation">
            <summary>
            Private member to hold the bibliographic reference for the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionConformsTo">
            <summary>
            Private member to hold the established standard to which the described resource conforms.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionContributor">
            <summary>
            Private member to hold the entity responsible for making contributions to the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionCoverage">
            <summary>
            Private member to hold the spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionDateCreated">
            <summary>
            Private member to hold the date of creation of the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionCreator">
            <summary>
            Private member to hold the entity primarily responsible for making the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionDate">
            <summary>
            Private member to hold a point or period of time associated with an event in the lifecycle of the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionDateAccepted">
            <summary>
            Private member to hold the date of acceptance of the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionDateCopyrighted">
            <summary>
            Private member to hold the date of copyright of the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionDateSubmitted">
            <summary>
            Private member to hold the date of submission of the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionDescription">
            <summary>
            Private member to hold an account of the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionAudienceEducationLevel">
            <summary>
            Private member to hold the class of entity, defined in terms of progression through an educational or training context, for which the described resource is intended.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionExtent">
            <summary>
            Private member to hold the size or duration of the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionFormat">
            <summary>
            Private member to hold the file format, physical medium, or dimensions of the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionHasFormat">
            <summary>
            Private member to hold a related resource that is substantially the same as the pre-existing described resource, but in another format.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionHasPart">
            <summary>
            Private member to hold a related resource that is included either physically or logically in the described resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionHasVersion">
            <summary>
            Private member to hold a related resource that is a version, edition, or adaptation of the described resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionIdentifier">
            <summary>
            Private member to hold an unambiguous reference to the resource within a given context.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionInstructionalMethod">
            <summary>
            Private member to hold the process, used to engender knowledge, attitudes and skills, that the described resource is designed to support.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionIsFormatOf">
            <summary>
            Private member to hold a related resource that is substantially the same as the described resource, but in another format.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionIsPartOf">
            <summary>
            Private member to hold a related resource in which the described resource is physically or logically included.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionIsReferencedBy">
            <summary>
            Private member to hold a related resource that references, cites, or otherwise points to the described resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionIsReplacedBy">
            <summary>
            Private member to hold a related resource that supplants, displaces, or supersedes the described resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionIsRequiredBy">
            <summary>
            Private member to hold a related resource that requires the described resource to support its function, delivery, or coherence.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionDateIssued">
            <summary>
            Private member to hold the date of formal issuance (e.g., publication) of the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionIsVersionOf">
            <summary>
            Private member to hold a related resource of which the described resource is a version, edition, or adaptation.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionLanguage">
            <summary>
            Private member to hold the language of the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionLicense">
            <summary>
            Private member to hold the legal document giving official permission to do something with the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionMediator">
            <summary>
            Private member to hold the entity that mediates access to the resource and for whom the resource is intended or useful.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionMedium">
            <summary>
            Private member to hold the material or physical carrier of the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionDateModified">
            <summary>
            Private member to hold the date on which the resource was changed.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionProvenance">
            <summary>
            Private member to hold the statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionPublisher">
            <summary>
            Private member to hold the entity responsible for making the resource available.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionReferences">
            <summary>
            Private member to hold a related resource that is referenced, cited, or otherwise pointed to by the described resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionRelation">
            <summary>
            Private member to hold a related resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionReplaces">
            <summary>
            Private member to hold a related resource that is supplanted, displaced, or superseded by the described resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionRequires">
            <summary>
            Private member to hold a related resource that is required by the described resource to support its function, delivery, or coherence.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionRights">
            <summary>
            Private member to hold information about rights held in and over the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionRightsHolder">
            <summary>
            Private member to hold the person or organization owning or managing rights over the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionSource">
            <summary>
            Private member to hold a related resource from which the described resource is derived.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionSpatialCoverage">
            <summary>
            Private member to hold the spatial characteristics of the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionSubject">
            <summary>
            Private member to hold the topic of the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionTableOfContents">
            <summary>
            Private member to hold the list of sub-units of the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionTemporalCoverage">
            <summary>
            Private member to hold the temporal characteristics of the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionTitle">
            <summary>
            Private member to hold the name given to the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionType">
            <summary>
            Private member to hold the nature or genre of the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.extensionDateValid">
            <summary>
            Private member to hold the date (often a range) of validity of the resource.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Load(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.WriteTo(System.Xml.XmlWriter,System.String)">
            <summary>
            Writes the current context to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the current context.</param>
            <param name="xmlNamespace">The XML namespace used to qualify prefixed syndication extension elements and attributes.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.LoadGroup1(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.LoadGroup2(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.LoadGroup3(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.LoadGroup4(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.LoadGroup5(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.LoadGroup6(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.WriteGroup1(System.Xml.XmlWriter,System.String)">
            <summary>
            Writes the current context to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the current context.</param>
            <param name="xmlNamespace">The XML namespace used to qualify prefixed syndication extension elements and attributes.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.WriteGroup2(System.Xml.XmlWriter,System.String)">
            <summary>
            Writes the current context to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the current context.</param>
            <param name="xmlNamespace">The XML namespace used to qualify prefixed syndication extension elements and attributes.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.WriteGroup3(System.Xml.XmlWriter,System.String)">
            <summary>
            Writes the current context to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the current context.</param>
            <param name="xmlNamespace">The XML namespace used to qualify prefixed syndication extension elements and attributes.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.WriteGroup4(System.Xml.XmlWriter,System.String)">
            <summary>
            Writes the current context to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the current context.</param>
            <param name="xmlNamespace">The XML namespace used to qualify prefixed syndication extension elements and attributes.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.WriteGroup5(System.Xml.XmlWriter,System.String)">
            <summary>
            Writes the current context to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the current context.</param>
            <param name="xmlNamespace">The XML namespace used to qualify prefixed syndication extension elements and attributes.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Abstract">
            <summary>
            Gets or sets the summary of the resource.
            </summary>
            <value>The summary of the resource.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.AccessRights">
            <summary>
            Gets or sets information about who can access the resource or an indication of its security status.
            </summary>
            <value>Information about who can access the resource or an indication of its security status.</value>
            <remarks>
                <para><see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.AccessRights"/> may include information regarding access or restrictions based on privacy, security, or other policies.</para>
                <para>
                    The <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.AccessRights"/> property represents a statement about the intellectual property rights (IPR) held in or over a resource, 
                    a legal document giving official permission to do something with a resource, or a statement about access rights.
                </para>
                <para>
                    The resource described by this term is an instance of <b>http://purl.org/dc/terms/RightsStatement</b>. 
                    See <a href="http://dublincore.org/documents/dcmi-terms/#classes-RightsStatement">http://dublincore.org/documents/dcmi-terms/#classes-RightsStatement</a> for further information.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.AccrualMethod">
            <summary>
            Gets or sets the method by which items are added to a collection.
            </summary>
            <value>The method by which items are added to a collection.</value>
            <remarks>
                <para>
                    The <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.AccrualMethod"/> property represents the method by which resources are added to a collection.
                </para>
                <para>
                    The resource described by this term is an instance of <b>http://purl.org/dc/terms/MethodOfAccrual</b>. 
                    See <a href="http://dublincore.org/documents/dcmi-terms/#classes-MethodOfAccrual">http://dublincore.org/documents/dcmi-terms/#classes-MethodOfAccrual</a> for further information.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.AccrualPeriodicity">
            <summary>
            Gets or sets the frequency with which items are added to a collection.
            </summary>
            <value>The frequency with which items are added to a collection.</value>
            <remarks>
                <para>
                    The <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.AccrualPeriodicity"/> property represents the rate at which something recurs.
                </para>
                <para>
                    The resource described by this term is an instance of <b>http://purl.org/dc/terms/Frequency</b>. 
                    See <a href="http://dublincore.org/documents/dcmi-terms/#classes-Frequency">http://dublincore.org/documents/dcmi-terms/#classes-Frequency</a> for further information.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.AccrualPolicy">
            <summary>
            Gets or sets thepolicy governing the addition of items to a collection.
            </summary>
            <value>The policy governing the addition of items to a collection.</value>
            <remarks>
                <para>
                    The <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.AccrualPolicy"/> property represents the plan or course of action by an authority, intended to influence and determine decisions, actions, and other matters.
                </para>
                <para>
                    The resource described by this term is an instance of <b>http://purl.org/dc/terms/Policy</b>. 
                    See <a href="http://dublincore.org/documents/dcmi-terms/#classes-Policy">http://dublincore.org/documents/dcmi-terms/#classes-Policy</a> for further information.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.AlternativeTitle">
            <summary>
            Gets or sets the alternative name for the resource.
            </summary>
            <value>The alternative name for the resource.</value>
            <remarks>
                The distinction between titles and alternative titles is application-specific. 
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Audience">
            <summary>
            Gets or sets the class of entity for whom the resource is intended or useful.
            </summary>
            <value>The class of entity for whom the resource is intended or useful.</value>
            <remarks>
                <para>
                    The <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Audience"/> property represents a group of resources that act or have the power to act.
                </para>
                <para>
                    The resource described by this term is an instance of <b>http://purl.org/dc/terms/AgentClass</b>. 
                    See <a href="http://dublincore.org/documents/dcmi-terms/#classes-AgentClass">http://dublincore.org/documents/dcmi-terms/#classes-AgentClass</a> for further information.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.AudienceEducationLevel">
            <summary>
            Gets or sets the class of entity, defined in terms of progression through an educational or training context, for which the described resource is intended.
            </summary>
            <value>The class of entity, defined in terms of progression through an educational or training context, for which the described resource is intended.</value>
            <remarks>
                <para>
                    The <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.AudienceEducationLevel"/> property represents a group of resources that act or have the power to act.
                </para>
                <para>
                    The resource described by this term is an instance of <b>http://purl.org/dc/terms/AgentClass</b>. 
                    See <a href="http://dublincore.org/documents/dcmi-terms/#classes-AgentClass">http://dublincore.org/documents/dcmi-terms/#classes-AgentClass</a> for further information.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.BibliographicCitation">
            <summary>
            Gets or sets the bibliographic reference for the resource.
            </summary>
            <value>The bibliographic reference for the resource.</value>
            <remarks>
                Recommended practice is to include sufficient bibliographic detail to identify the resource as unambiguously as possible.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.ConformsTo">
            <summary>
            Gets or sets the established standard to which the described resource conforms.
            </summary>
            <value>The established standard to which the described resource conforms.</value>
            <remarks>
                <para>
                    The <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.ConformsTo"/> property represents a basis for comparison; a reference point against which other things can be evaluated.
                </para>
                <para>
                    The resource described by this term is an instance of <b>http://purl.org/dc/terms/Standard</b>. 
                    See <a href="http://dublincore.org/documents/dcmi-terms/#classes-Standard">http://dublincore.org/documents/dcmi-terms/#classes-Standard</a> for further information.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Contributor">
            <summary>
            Gets or sets the entity responsible for making contributions to the resource.
            </summary>
            <value>The entity responsible for making contributions to the resource.</value>
            <remarks>
                <para>
                    The <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Contributor"/> property represents a resource that acts or has the power to act.
                </para>
                <para>
                    The resource described by this term is an instance of <b>http://purl.org/dc/terms/Agent</b>. 
                    See <a href="http://dublincore.org/documents/dcmi-terms/#classes-Agent">http://dublincore.org/documents/dcmi-terms/#classes-Agent</a> for further information.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Coverage">
            <summary>
            Gets or sets the spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant.
            </summary>
            <value>The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant.</value>
            <remarks>
                <para>
                    Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. 
                    Temporal topic may be a named period, date, or date range. 
                    A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. 
                    Recommended best practice is to use a controlled vocabulary such as the <a href="http://www.getty.edu/research/tools/vocabulary/tgn/index.html">Thesaurus of Geographic Names</a>. 
                    Where appropriate, named places or time periods can be used in preference to numeric identifiers such as sets of coordinates or date ranges.
                </para>
                <para>
                    The <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Coverage"/> property represents a location, period of time, or jurisdiction.
                </para>
                <para>
                    The resource described by this term is an instance of <b>http://purl.org/dc/terms/LocationPeriodOrJurisdiction</b>. 
                    See <a href="http://dublincore.org/documents/dcmi-terms/#classes-LocationPeriodOrJurisdiction">http://dublincore.org/documents/dcmi-terms/#classes-LocationPeriodOrJurisdiction</a> for further information.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Creator">
            <summary>
            Gets or sets the entity primarily responsible for making the resource.
            </summary>
            <value>The entity primarily responsible for making the resource.</value>
            <remarks>
                <para>Examples of a <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Creator"/> include a person, an organization, or a service. Typically, the name of a <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Creator"/> should be used to indicate the entity.</para>
                <para>
                    The <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Creator"/> property represents a resource that acts or has the power to act.
                </para>
                <para>
                    The resource described by this term is an instance of <b>http://purl.org/dc/terms/Agent</b>. 
                    See <a href="http://dublincore.org/documents/dcmi-terms/#classes-Agent">http://dublincore.org/documents/dcmi-terms/#classes-Agent</a> for further information.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Date">
            <summary>
            Gets or sets a point or period of time associated with an event in the lifecycle of the resource.
            </summary>
            <value>
                A <see cref="T:System.DateTime"/> that indicates a point or period of time associated with an event in the lifecycle of the resource. 
                The default value is <see cref="F:System.DateTime.MinValue"/>, which indicates that no date was provided.
            </value>
            <remarks>
                Date may be used to express temporal information at any level of granularity. The <see cref="T:System.DateTime"/> should be provided in Coordinated Universal Time (UTC).
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.DateAccepted">
            <summary>
            Gets or sets the date of acceptance of the resource.
            </summary>
            <value>
                A <see cref="T:System.DateTime"/> that indicates the acceptance date of the resource. 
                The default value is <see cref="F:System.DateTime.MinValue"/>, which indicates that no acceptance date was provided.
            </value>
            <remarks>
                <para>The <see cref="T:System.DateTime"/> should be provided in Coordinated Universal Time (UTC).</para>
                <para>
                    Examples of resources to which a <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.DateAccepted">Date Accepted</see> may be relevant are a thesis (accepted by a university department) or an article (accepted by a journal).
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.DateAvailable">
            <summary>
            Gets or sets the date that the resource became or will become available.
            </summary>
            <value>The date (often a range) that the resource became or will become available.</value>
            <remarks>
                When representing a date-time, it is recommended that the  <a href="http://www.ietf.org/rfc/rfc3339.txt">RFC #3339: Date and Time on the Internet (Timestamps)</a> format is used. 
                The value of this property can represent either a single date-time that indicates the period in time the resource became available, or it may represent a delimited date range 
                that indicates the start and end dates that the resource is or will be available.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.DateCopyrighted">
            <summary>
            Gets or sets the date of copyright of the resource.
            </summary>
            <value>
                A <see cref="T:System.DateTime"/> that indicates the copyright date of the resource. 
                The default value is <see cref="F:System.DateTime.MinValue"/>, which indicates that no copyright date was provided.
            </value>
            <remarks>
                <para>The <see cref="T:System.DateTime"/> should be provided in Coordinated Universal Time (UTC).</para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.DateCreated">
            <summary>
            Gets or sets the date of creation of the resource.
            </summary>
            <value>
                A <see cref="T:System.DateTime"/> that indicates creation date of the resource. 
                The default value is <see cref="F:System.DateTime.MinValue"/>, which indicates that no creation date was provided.
            </value>
            <remarks>
                The <see cref="T:System.DateTime"/> should be provided in Coordinated Universal Time (UTC).
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.DateIssued">
            <summary>
            Gets or sets the date of issuance of the resource.
            </summary>
            <value>
                A <see cref="T:System.DateTime"/> that indicates the formal issuance (e.g., publication) date of the resource. 
                The default value is <see cref="F:System.DateTime.MinValue"/>, which indicates that no issuance date was provided.
            </value>
            <remarks>
                The <see cref="T:System.DateTime"/> should be provided in Coordinated Universal Time (UTC).
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.DateModified">
            <summary>
            Gets or sets the date on which the resource was changed.
            </summary>
            <value>
                A <see cref="T:System.DateTime"/> that indicates the date on which the resource was changed. 
                The default value is <see cref="F:System.DateTime.MinValue"/>, which indicates that no modification date was provided.
            </value>
            <remarks>
                The <see cref="T:System.DateTime"/> should be provided in Coordinated Universal Time (UTC).
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.DateSubmitted">
            <summary>
            Gets or sets the date of submission of the resource.
            </summary>
            <value>
                A <see cref="T:System.DateTime"/> that indicates the submission date of the resource. 
                The default value is <see cref="F:System.DateTime.MinValue"/>, which indicates that no submission date was provided.
            </value>
            <remarks>
                <para>The <see cref="T:System.DateTime"/> should be provided in Coordinated Universal Time (UTC).</para>
                <para>
                    Examples of resources to which a <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.DateSubmitted">Date Submitted</see> may be relevant are a thesis (accepted by a university department) or an article (accepted by a journal).
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.DateValid">
            <summary>
            Gets or sets the date that the resource is valid for.
            </summary>
            <value>The date (often a range) of validity of a resource.</value>
            <remarks>
                When representing a date-time, it is recommended that the  <a href="http://www.ietf.org/rfc/rfc3339.txt">RFC #3339: Date and Time on the Internet (Timestamps)</a> format is used. 
                The value of this property can represent either a single date-time that indicates the period in time the resource is valid, or it may represent a delimited date range 
                that indicates the start and end dates that the resource is or will be valid.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Description">
            <summary>
            Gets or sets an account of the resource.
            </summary>
            <value>An account of the resource.</value>
            <remarks>
                <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Description"/> may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Extent">
            <summary>
            Gets or sets the size or duration of the resource.
            </summary>
            <value>The size or duration of the resource.</value>
            <remarks>
                <para>Examples include a number of pages, a specification of length, width, and breadth, or a period in hours, minutes, and seconds.</para>
                <para>
                    The <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Extent"/> property represents a dimension or extent, or a time taken to play or execute.
                </para>
                <para>
                    The resource described by this term is an instance of <b>http://purl.org/dc/terms/SizeOrDuration</b>. 
                    See <a href="http://dublincore.org/documents/dcmi-terms/#classes-SizeOrDuration">http://dublincore.org/documents/dcmi-terms/#classes-SizeOrDuration</a> for further information.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Format">
            <summary>
            Gets or sets the file format, physical medium, or dimensions of the resource.
            </summary>
            <value>The file format, physical medium, or dimensions of the resource.</value>
            <remarks>
                <para>
                    Examples of dimensions include size and duration. Recommended best practice is to use a controlled vocabulary such as 
                    the list of <a href="http://www.iana.org/assignments/media-types/">Internet Media Types</a>.
                </para>
                <para>
                    The <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Format"/> property represents a media type or extent.
                </para>
                <para>
                    The resource described by this term is an instance of <b>http://purl.org/dc/terms/MediaTypeOrExtent</b>. 
                    See <a href="http://dublincore.org/documents/dcmi-terms/#classes-MediaTypeOrExtent">http://dublincore.org/documents/dcmi-terms/#classes-MediaTypeOrExtent</a> for further information.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.HasFormat">
            <summary>
            Gets or sets a related resource that is substantially the same as the pre-existing described resource, but in another format.
            </summary>
            <value>A related resource that is substantially the same as the pre-existing described resource, but in another format.</value>
            <remarks>
                This term is intended to be used with non-literal values as defined in the <a href="http://dublincore.org/documents/abstract-model/">DCMI Abstract Model</a>.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.HasPart">
            <summary>
            Gets or sets a related resource that is included either physically or logically in the described resource.
            </summary>
            <value>A related resource that is included either physically or logically in the described resource.</value>
            <remarks>
                This term is intended to be used with non-literal values as defined in the <a href="http://dublincore.org/documents/abstract-model/">DCMI Abstract Model</a>.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.HasVersion">
            <summary>
            Gets or sets a related resource that is a version, edition, or adaptation of the described resource.
            </summary>
            <value>A related resource that is a version, edition, or adaptation of the described resource.</value>
            <remarks>
                This term is intended to be used with non-literal values as defined in the <a href="http://dublincore.org/documents/abstract-model/">DCMI Abstract Model</a>.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Identifier">
            <summary>
            Gets or sets an unambiguous reference to the resource within a given context.
            </summary>
            <value>An unambiguous reference to the resource within a given context.</value>
            <remarks>
                Recommended best practice is to identify the resource by means of a string conforming to a formal identification system.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.InstructionalMethod">
            <summary>
            Gets or sets the process, used to engender knowledge, attitudes and skills, that the described resource is designed to support.
            </summary>
            <value>The process, used to engender knowledge, attitudes and skills, that the described resource is designed to support.</value>
            <remarks>
                <para>
                    The <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.InstructionalMethod"/> property represents a process that is used to engender knowledge, attitudes, and skills.
                </para>
                <para>
                    The resource described by this term is an instance of <b>http://purl.org/dc/terms/MethodOfInstruction</b>. 
                    See <a href="http://dublincore.org/documents/dcmi-terms/#classes-MethodOfInstruction">http://dublincore.org/documents/dcmi-terms/#classes-MethodOfInstruction</a> for further information.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.IsFormatOf">
            <summary>
            Gets or sets a related resource that is substantially the same as the described resource, but in another format.
            </summary>
            <value>A related resource that is substantially the same as the described resource, but in another format.</value>
            <remarks>
                This term is intended to be used with non-literal values as defined in the <a href="http://dublincore.org/documents/abstract-model/">DCMI Abstract Model</a>.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.IsPartOf">
            <summary>
            Gets or sets a related resource in which the described resource is physically or logically included.
            </summary>
            <value>A related resource in which the described resource is physically or logically included.</value>
            <remarks>
                This term is intended to be used with non-literal values as defined in the <a href="http://dublincore.org/documents/abstract-model/">DCMI Abstract Model</a>.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.IsReferencedBy">
            <summary>
            Gets or sets a related resource that references, cites, or otherwise points to the described resource.
            </summary>
            <value>A related resource that references, cites, or otherwise points to the described resource.</value>
            <remarks>
                This term is intended to be used with non-literal values as defined in the <a href="http://dublincore.org/documents/abstract-model/">DCMI Abstract Model</a>.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.IsReplacedBy">
            <summary>
            Gets or sets a related resource that supplants, displaces, or supersedes the described resource.
            </summary>
            <value>A related resource that supplants, displaces, or supersedes the described resource.</value>
            <remarks>
                This term is intended to be used with non-literal values as defined in the <a href="http://dublincore.org/documents/abstract-model/">DCMI Abstract Model</a>.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.IsRequiredBy">
            <summary>
            Gets or sets a related resource that requires the described resource to support its function, delivery, or coherence.
            </summary>
            <value>A related resource that requires the described resource to support its function, delivery, or coherence.</value>
            <remarks>
                This term is intended to be used with non-literal values as defined in the <a href="http://dublincore.org/documents/abstract-model/">DCMI Abstract Model</a>.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.IsVersionOf">
            <summary>
            Gets or sets a related resource of which the described resource is a version, edition, or adaptation.
            </summary>
            <value>A related resource of which the described resource is a version, edition, or adaptation.</value>
            <remarks>
                This term is intended to be used with non-literal values as defined in the <a href="http://dublincore.org/documents/abstract-model/">DCMI Abstract Model</a>.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Language">
            <summary>
            Gets or sets the language of the resource.
            </summary>
            <value>A <see cref="T:System.Globalization.CultureInfo"/> object that represents the language of the resource. The default value is a <b>null</b> reference, which indicates that no language was specified.</value>
            <remarks>
                Recommended best practice is to use a controlled vocabulary such as <a href="http://www.ietf.org/rfc/rfc4646.txt">RFC 4646</a>. 
                This framework conforms to this best practice by utilizing the <see cref="T:System.Globalization.CultureInfo"/> class to represent the language of a resource.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.License">
            <summary>
            Gets or sets the legal document giving official permission to do something with the resource.
            </summary>
            <value>The legal document giving official permission to do something with the resource.</value>
            <remarks>
                <para>
                    The <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.License"/> property represents a legal document giving official permission to do something with a resource.
                </para>
                <para>
                    The resource described by this term is an instance of <b>http://purl.org/dc/terms/LicenseDocument</b>. 
                    See <a href="http://dublincore.org/documents/dcmi-terms/#classes-LicenseDocument">http://dublincore.org/documents/dcmi-terms/#classes-LicenseDocument</a> for further information.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Mediator">
            <summary>
            Gets or sets the entity that mediates access to the resource and for whom the resource is intended or useful.
            </summary>
            <value>The entity that mediates access to the resource and for whom the resource is intended or useful.</value>
            <remarks>
                <para>In an educational context, a mediator might be a parent, teacher, teaching assistant, or care-giver.</para>
                <para>
                    The <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Mediator"/> property represents a resource that acts or has the power to act.
                </para>
                <para>
                    The resource described by this term is an instance of <b>http://purl.org/dc/terms/Agent</b>. 
                    See <a href="http://dublincore.org/documents/dcmi-terms/#classes-Agent">http://dublincore.org/documents/dcmi-terms/#classes-Agent</a> for further information.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Medium">
            <summary>
            Gets or sets the material or physical carrier of the resource.
            </summary>
            <value>The material or physical carrier of the resource.</value>
            <remarks>
                <para>Examples include paper, canvas, or DVD.</para>
                <para>
                    The <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Medium"/> property represents a physical material or carrier.
                </para>
                <para>
                    The resource described by this term is an instance of <b>http://purl.org/dc/terms/PhysicalMedium</b>. 
                    See <a href="http://dublincore.org/documents/dcmi-terms/#classes-PhysicalMedium">http://dublincore.org/documents/dcmi-terms/#classes-PhysicalMedium</a> for further information.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Provenance">
            <summary>
            Gets or sets the statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation.
            </summary>
            <value>The statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation.</value>
            <remarks>
                <para>
                    The <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Provenance"/> property represents a statement of any changes in ownership and custody of a resource 
                    since its creation that are significant for its authenticity, integrity, and interpretation.
                </para>
                <para>
                    The resource described by this term is an instance of <b>http://purl.org/dc/terms/ProvenanceStatement</b>. 
                    See <a href="http://dublincore.org/documents/dcmi-terms/#classes-ProvenanceStatement">http://dublincore.org/documents/dcmi-terms/#classes-ProvenanceStatement</a> for further information.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Publisher">
            <summary>
            Gets or sets the entity responsible for making the resource available.
            </summary>
            <value>The entity responsible for making the resource available.</value>
            <remarks>
                <para>Examples of a <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Publisher"/> include a person, an organization, or a service. Typically, the name of a <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Publisher"/> should be used to indicate the entity.</para>
                <para>
                    The <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Publisher"/> property represents a resource that acts or has the power to act.
                </para>
                <para>
                    The resource described by this term is an instance of <b>http://purl.org/dc/terms/Agent</b>. 
                    See <a href="http://dublincore.org/documents/dcmi-terms/#classes-Agent">http://dublincore.org/documents/dcmi-terms/#classes-Agent</a> for further information.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.References">
            <summary>
            Gets or sets a related resource that is referenced, cited, or otherwise pointed to by the described resource.
            </summary>
            <value>A related resource that is referenced, cited, or otherwise pointed to by the described resource.</value>
            <remarks>
                <para>
                    This term is intended to be used with non-literal values as defined in the <a href="http://dublincore.org/documents/abstract-model/">DCMI Abstract Model</a>.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Relation">
            <summary>
            Gets or sets a related resource.
            </summary>
            <value>A related resource.</value>
            <remarks>
                <para>Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system.</para>
                <para>
                    This term is intended to be used with non-literal values as defined in the <a href="http://dublincore.org/documents/abstract-model/">DCMI Abstract Model</a>.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Replaces">
            <summary>
            Gets or sets a related resource that is supplanted, displaced, or superseded by the described resource.
            </summary>
            <value>A related resource that is supplanted, displaced, or superseded by the described resource.</value>
            <remarks>
                <para>
                    This term is intended to be used with non-literal values as defined in the <a href="http://dublincore.org/documents/abstract-model/">DCMI Abstract Model</a>.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Requires">
            <summary>
            Gets or sets a related resource that is required by the described resource to support its function, delivery, or coherence.
            </summary>
            <value>A related resource that is required by the described resource to support its function, delivery, or coherence.</value>
            <remarks>
                <para>
                    This term is intended to be used with non-literal values as defined in the <a href="http://dublincore.org/documents/abstract-model/">DCMI Abstract Model</a>.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Rights">
            <summary>
            Gets or sets information about rights held in and over the resource.
            </summary>
            <value>Information about rights held in and over the resource.</value>
            <remarks>
                <para>Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights.</para>
                <para>
                    The <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Rights"/> property represents a statement about the intellectual property rights (IPR) held in or over a resource, 
                    a legal document giving official permission to do something with a resource, or a statement about access rights.
                </para>
                <para>
                    The resource described by this term is an instance of <b>http://purl.org/dc/terms/RightsStatement</b>. 
                    See <a href="http://dublincore.org/documents/dcmi-terms/#classes-RightsStatement">http://dublincore.org/documents/dcmi-terms/#classes-RightsStatement</a> for further information.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.RightsHolder">
            <summary>
            Gets or sets the person or organization owning or managing rights over the resource.
            </summary>
            <value>The person or organization owning or managing rights over the resource.</value>
            <remarks>
                <para>
                    The <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.RightsHolder"/> property represents a resource that acts or has the power to act.
                </para>
                <para>
                    The resource described by this term is an instance of <b>http://purl.org/dc/terms/Agent</b>. 
                    See <a href="http://dublincore.org/documents/dcmi-terms/#classes-Agent">http://dublincore.org/documents/dcmi-terms/#classes-Agent</a> for further information.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Source">
            <summary>
            Gets or sets a related resource from which the described resource is derived.
            </summary>
            <value>A related resource from which the described resource is derived.</value>
            <remarks>
                <para>
                    The described resource may be derived from the related resource in whole or in part. 
                    Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system.
                </para>
                <para>
                    This term is intended to be used with non-literal values as defined in the <a href="http://dublincore.org/documents/abstract-model/">DCMI Abstract Model</a>.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.SpatialCoverage">
            <summary>
            Gets or sets the spatial characteristics of the resource.
            </summary>
            <value>The spatial characteristics of the resource.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Subject">
            <summary>
            Gets or sets the topic of the resource.
            </summary>
            <value>The topic of the resource.</value>
            <remarks>
                <para>
                    Typically, the subject will be represented using keywords, key phrases, or classification codes. 
                    Recommended best practice is to use a controlled vocabulary. 
                    To describe the spatial or temporal topic of the resource, use the <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Coverage"/> property.
                </para>
                <para>
                    This term is intended to be used with non-literal values as defined in the <a href="http://dublincore.org/documents/abstract-model/">DCMI Abstract Model</a>.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.TableOfContents">
            <summary>
            Gets or sets the list of sub-units of the resource.
            </summary>
            <value>The list of sub-units of the resource.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.TemporalCoverage">
            <summary>
            Gets or sets the temporal characteristics of the resource.
            </summary>
            <value>The temporal characteristics of the resource.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Title">
            <summary>
            Gets or sets the name given to the resource.
            </summary>
            <value>The name given to the resource.</value>
            <remarks>
                In current practice, this term is used primarily with literal values; however, there are important uses with non-literal values as well.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.TypeVocabulary">
            <summary>
            Gets or sets the nature or genre of the resource.
            </summary>
            <value>
                An <see cref="T:Argotic.Extensions.Core.DublinCoreTypeVocabularies"/> enumeration value that represents the nature or genre of the resource. 
                The default value is <see cref="F:Argotic.Extensions.Core.DublinCoreTypeVocabularies.None"/>, which indicates that no nature or genre was specified.
            </value>
            <remarks>
                <para>
                    Recommended best practice is to use a controlled vocabulary such as the <a href="http://dublincore.org/documents/dcmi-type-vocabulary/">DCMI Type Vocabulary</a>. 
                    This framework conforms to this best practice by providing the <see cref="T:Argotic.Extensions.Core.DublinCoreTypeVocabularies"/> enumeration for specifiying the nature or genre of a resource.
                </para>
                <para>To describe the file format, physical medium, or dimensions of the resource, use the <see cref="P:Argotic.Extensions.Core.DublinCoreMetadataTermsSyndicationExtensionContext.Format"/> property.</para>
            </remarks>
        </member>
        <member name="T:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension">
            <summary>
            Extends syndication specifications to provide a means of specifying which Creative Commons licenses are applicable to published content.
            </summary>
            <remarks>
                <para>
                    The <see cref="T:Argotic.Extensions.Core.BlogChannelSyndicationExtension"/> extends syndicated content to specify which <a href="http://creativecommons.org/license/">Creative Commons license</a> is applicable. 
                    This syndication extension conforms to the <a>creativeCommons RSS Module</a> 1.0 specification, which can be found 
                    at <a href="http://backend.userland.com/creativeCommonsRssModule">http://backend.userland.com/creativeCommonsRssModule</a>.
                </para>
            </remarks>
            <example>
                <code lang="cs" title="The following code example demonstrates the usage of the CreativeCommonsSyndicationExtension class.">
                    <code source="..\..\Documentation\Microsoft .NET 2.0\CodeExamplesLibrary\Extensions\Core\CreativeCommonsSyndicationExtensionExample.cs" region="CreativeCommonsSyndicationExtension"/>
                </code>
            </example>
        </member>
        <member name="F:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension.extensionContext">
            <summary>
            Private member to hold specific information about the extension.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension.MatchByType(Argotic.Extensions.ISyndicationExtension)">
            <summary>
            Predicate delegate that returns a value indicating if the supplied <see cref="T:Argotic.Extensions.ISyndicationExtension"/> 
            represents the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>.
            </summary>
            <param name="extension">The <see cref="T:Argotic.Extensions.ISyndicationExtension"/> to be compared.</param>
            <returns><b>true</b> if the <paramref name="extension"/> is the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>; otherwise, <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="extension"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XPath.IXPathNavigable"/>.
            </summary>
            <param name="source">The <b>IXPathNavigable</b> used to load this <see cref="T:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension.Load(System.Xml.XmlReader)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XmlReader"/>.
            </summary>
            <param name="reader">The <b>XmlReader</b> used to load this <see cref="T:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension"/> was able to be initialized using the supplied <paramref name="reader"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="reader"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Writes the syndication extension to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the syndication extension.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension.op_Equality(Argotic.Extensions.Core.CreativeCommonsSyndicationExtension,Argotic.Extensions.Core.CreativeCommonsSyndicationExtension)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension.op_Inequality(Argotic.Extensions.Core.CreativeCommonsSyndicationExtension,Argotic.Extensions.Core.CreativeCommonsSyndicationExtension)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension.op_LessThan(Argotic.Extensions.Core.CreativeCommonsSyndicationExtension,Argotic.Extensions.Core.CreativeCommonsSyndicationExtension)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension.op_GreaterThan(Argotic.Extensions.Core.CreativeCommonsSyndicationExtension,Argotic.Extensions.Core.CreativeCommonsSyndicationExtension)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension.Context">
            <summary>
            Gets or sets the <see cref="T:Argotic.Extensions.Core.CreativeCommonsSyndicationExtensionContext"/> object associated with this extension.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.CreativeCommonsSyndicationExtensionContext"/> object that contains information associated with the current syndication extension.</value>
            <remarks>
                The <b>Context</b> encapsulates all of the syndication extension information that can be retrieved or written to an extended syndication entity. 
                Its purpose is to prevent property naming collisions between the base <see cref="T:Argotic.Extensions.SyndicationExtension"/> class and any custom properties that 
                are defined for the custom syndication extension.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.YahooMediaContent">
            <summary>
            Represents a publishable media object.
            </summary>
            <remarks>
                <para>
                    Media objects that are not the same content should not be included in the same <see cref="T:Argotic.Extensions.Core.YahooMediaGroup"/>. 
                    The sequence of <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> objects within a <see cref="T:Argotic.Extensions.Core.YahooMediaGroup"/> implies the order of presentation.
                </para>
            </remarks>
            <seealso cref="T:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities"/>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.contentUrl">
            <summary>
            Private member to hold the direct url to the media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.contentFileSize">
            <summary>
            Private member to hold the number of bytes the media object represents on disk.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.contentMimeType">
            <summary>
            Private member to hold the MIME type of the media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.contentMedium">
            <summary>
            Private member to hold the type of the media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.contentIsDefault">
            <summary>
            Private member to hold a value indicating if the media object is the default object in a group.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.contentExpression">
            <summary>
            Private member to hold the expressed version of the media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.contentBitrate">
            <summary>
            Private member to hold the kilobits per second rate of the media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.contentFramerate">
            <summary>
            Private member to hold the number of frames per second for the media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.contentSamplingrate">
            <summary>
            Private member to hold the number of samples per second taken to create the media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.contentChannels">
            <summary>
            Private member to hold the number of audio channels in the media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.contentDuration">
            <summary>
            Private member to hold the total play time for the media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.contentHeight">
            <summary>
            Private member to hold the height of the media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.contentWidth">
            <summary>
            Private member to hold the width of the media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.contentLanguage">
            <summary>
            Private member to hold the primary language encapsulated in the media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.mediaObjectRatings">
            <summary>
            Private member to hold the permissible audiences for the media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.mediaObjectTitle">
            <summary>
            Private member to hold the title of the media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.mediaObjectDescription">
            <summary>
            Private member to hold a short description of the media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.mediaObjectKeywords">
            <summary>
            Private member to hold the relevant keywords that describe the media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.mediaObjectThumbnails">
            <summary>
            Private member to hold the representative images for the media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.mediaObjectCategories">
            <summary>
            Private member to hold a taxonomy that gives an indication of the type of content for the media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.mediaObjectHashes">
            <summary>
            Private member to hold the hash digests for the media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.mediaObjectPlayer">
            <summary>
            Private member to hold a web browser media player console the media object can be accessed through.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.mediaObjectCredits">
            <summary>
            Private member to hold the entities that contributed to the creation of the media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.mediaObjectCopyright">
            <summary>
            Private member to hold the copyright information for the media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.mediaObjectTextSeries">
            <summary>
            Private member to hold the text transcript, closed captioning, or lyrics for the media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaContent.mediaObjectRestrictions">
            <summary>
            Private member to hold the restrictions to be placed on aggregators that are rendering the media object.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaContent.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaContent.#ctor(System.Uri)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> class using the supplied <see cref="T:System.Uri"/>.
            </summary>
            <param name="url">A <see cref="T:System.Uri"/> that represents the direct URL to this media object.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="url"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaContent.#ctor(Argotic.Extensions.Core.YahooMediaPlayer)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> class using the supplied <see cref="T:Argotic.Extensions.Core.YahooMediaPlayer"/>.
            </summary>
            <param name="player">A <see cref="T:Argotic.Extensions.Core.YahooMediaPlayer"/> that represents a web browser media player console this media object can be accessed through.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="player"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaContent.Load(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads this <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaContent.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaContent.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaContent.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaContent.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaContent.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaContent.op_Equality(Argotic.Extensions.Core.YahooMediaContent,Argotic.Extensions.Core.YahooMediaContent)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaContent.op_Inequality(Argotic.Extensions.Core.YahooMediaContent,Argotic.Extensions.Core.YahooMediaContent)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaContent.op_LessThan(Argotic.Extensions.Core.YahooMediaContent,Argotic.Extensions.Core.YahooMediaContent)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaContent.op_GreaterThan(Argotic.Extensions.Core.YahooMediaContent,Argotic.Extensions.Core.YahooMediaContent)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaContent.LoadPrimary(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads the primary properties of this <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaContent.LoadSecondary(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads the secondary properties of this <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.Bitrate">
            <summary>
            Gets or sets the kilobits per second rate of this media object.
            </summary>
            <value>The <i>kilobits</i> per second rate of this media object. The default value is <see cref="F:System.Int32.MinValue"/>, which indicates that no bit-rate was specified.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.Channels">
            <summary>
            Gets or sets the number of audio channels in this media object.
            </summary>
            <value>The number of audio channels in this media object. The default value is <see cref="F:System.Int32.MinValue"/>, which indicates that no audio channels were specified.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.ContentType">
            <summary>
            Gets or sets the content type of this media object.
            </summary>
            <value>The standard MIME type of this media object.</value>
            <remarks>
                See <a href="http://www.iana.org/assignments/media-types/">IANA MIME Media Types</a> for a listing of registered MIME types.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.Duration">
            <summary>
            Gets or sets the total play time for this media object.
            </summary>
            <value>A <see cref="T:System.TimeSpan"/> that represents the total playing time for this media object. The default value is <see cref="F:System.TimeSpan.MinValue"/>, which indicates that no duration was specified.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.Expression">
            <summary>
            Gets or sets the expressed version of this media object.
            </summary>
            <value>
                A <see cref="T:Argotic.Extensions.Core.YahooMediaExpression"/> enumeration value that represents the expressed version of this media object. 
                The default value is <see cref="F:Argotic.Extensions.Core.YahooMediaExpression.None"/>, which indicates that no expression version was specified.
            </value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.FileSize">
            <summary>
            Gets or sets the file size of this media object.
            </summary>
            <value>The number of bytes this media object represents on disk. The default value is <see cref="F:System.Int64.MinValue"/>, which indicates that no file size was specified.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.FrameRate">
            <summary>
            Gets or sets the number of frames per second for this media object.
            </summary>
            <value>The number of frames per second for this media object. The default value is <see cref="F:System.Int32.MinValue"/>, which indicates that no frame-rate was specified.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.Height">
            <summary>
            Gets or sets the height of this media object.
            </summary>
            <value>The height of this media object, typically in pixels. The default value is <see cref="F:System.Int32.MinValue"/>, which indicates that no height was specified.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.IsDefault">
            <summary>
            Gets or sets a value indicating if this media object is the default object in a group.
            </summary>
            <value><b>true</b> if this media object is the default object that should be used for a <see cref="T:Argotic.Extensions.Core.YahooMediaGroup"/>; otherwise <b>false</b>.</value>
            <remarks>
                There should <b>only</b> be one default media object per <see cref="T:Argotic.Extensions.Core.YahooMediaGroup"/>.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.Language">
            <summary>
            Gets or sets the primary language encapsulated in this media object.
            </summary>
            <value>
                A <see cref="T:System.Globalization.CultureInfo"/> that represents the primary language encapsulated in this media object. 
                The default value is a <b>null</b> reference, which indicates no language was specified.
            </value>
            <remarks>
                <para>
                    The value of this property is a language identifier as defined by <a href="http://www.ietf.org/rfc/rfc3066.txt">RFC 3066: Tags for the Identification of Languages</a>, or its successor.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.Medium">
            <summary>
            Gets or sets the content medium of this media object.
            </summary>
            <value>
                A <see cref="T:Argotic.Extensions.Core.YahooMediaMedium"/> enumeration value that represents the type of this media object. 
                The default value is <see cref="F:Argotic.Extensions.Core.YahooMediaMedium.None"/>, which indicates that no content medium was specified.
            </value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.SamplingRate">
            <summary>
            Gets or sets the number of samples per second taken to create this media object.
            </summary>
            <value>The number of samples per second taken to create this media object. The default value is <see cref="F:System.Decimal.MinValue"/>, which indicates that no sampling-rate was specified.</value>
            <remarks>
                This property is expressed in thousands of samples per second (kHz).
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.Url">
            <summary>
            Gets or sets the location of this media object.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents the direct URL to this media object.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.Width">
            <summary>
            Gets or sets the width of this media object.
            </summary>
            <value>The width of this media object, typically in pixels. The default value is <see cref="F:System.Int32.MinValue"/>, which indicates that no width was specified.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.Categories">
            <summary>
            Gets a taxonomy that gives an indication of the type of content for this media object.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaCategory"/> objects that represent a taxonomy that gives an indication to the type of content for this media object. 
                The default value is an <i>empty</i> collection.
            </value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.Copyright">
            <summary>
            Gets or sets the copyright information for this media object.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.YahooMediaCopyright"/> that represents the copyright information for this media object.</value>
            <remarks>
                If the media is operating under a <i>Creative Commons license</i>, a <see cref="T:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension">Creative Commons extension</see> should be used instead.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.Credits">
            <summary>
            Gets the entities that contributed to the creation of this media object.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaCredit"/> objects that represent the entities that contributed to the creation of this media object. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                Current entities can include people, companies, locations, etc. Specific entities can have multiple roles, 
                and several entities can have the same role. These should appear as distinct <see cref="T:Argotic.Extensions.Core.YahooMediaCredit"/> entities.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.Description">
            <summary>
            Gets or sets the description of this media object.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstruct"/> that represents a short description of this media object.</value>
            <remarks>
                Media object descriptions are typically a sentence in length.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.Hashes">
            <summary>
            Gets the hash digests for this media object.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaHash"/> objects that represent the hash digests for this media object. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                When assigning multiple hashes, each <see cref="T:Argotic.Extensions.Core.YahooMediaHash"/> <b>must</b> have a different <see cref="P:Argotic.Extensions.Core.YahooMediaHash.Algorithm"/>.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.Keywords">
            <summary>
            Gets the relevant keywords that describe this media object.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:System.String"/> objects that represent the relevant keywords that describe this media object. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                Media objects are typically assigned maximum of ten keywords or phrases.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.Player">
            <summary>
            Gets or sets a web browser media player console this media object can be accessed through.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.YahooMediaPlayer"/> that represents a web browser media player console this media object can be accessed through.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.Ratings">
            <summary>
            Gets the permissible audiences for this media object.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaRating"/> objects that represent the permissible audiences for this media object. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                If there are no ratings specified, it can be assumed that no restrictions are necessary.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.Restrictions">
            <summary>
            Gets the restrictions to be placed on aggregators that are rendering this media object.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaRestriction"/> objects that represent restrictions to be placed on aggregators that are rendering this media object. 
                The default value is an <i>empty</i> collection.
            </value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.TextSeries">
            <summary>
            Gets the text transcript, closed captioning, or lyrics for this media object.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaText"/> objects that represent text transcript, closed captioning, or lyrics for this media object. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                Many of these <see cref="T:Argotic.Extensions.Core.YahooMediaText"/> objects are permitted to provide a time series of text. 
                In such cases, it is encouraged, but not required, that the <see cref="T:Argotic.Extensions.Core.YahooMediaText"/> objects be grouped by language and appear in time sequence order based on the start time. 
                <see cref="T:Argotic.Extensions.Core.YahooMediaText"/> objects can have overlapping start and end times.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.Thumbnails">
            <summary>
            Gets the representative images for this media object.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaThumbnail"/> objects that represent images that are representative of this media object. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                If multiple thumbnails are included, and time coding is not at play, it is assumed that the images are in order of importance.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaContent.Title">
            <summary>
            Gets or sets the title of this media object.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstruct"/> that represents the title of this media object.</value>
        </member>
        <member name="T:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension">
            <summary>
            Extends syndication specifications to provide a means of describing content, including its format and encoding.
            </summary>
            <remarks>
                <para>
                    The <see cref="T:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension"/> extends syndicated content to specify the actual content of websites, in multiple formats. This syndication extension conforms to the 
                    <b>RDF Site Summary 1.0 Modules: Content</b> 1.0 specification, which can be found at <a href="http://web.resource.org/rss/1.0/modules/content/">http://web.resource.org/rss/1.0/modules/content/</a>.
                </para>
            </remarks>
            <example>
                <code lang="cs" title="The following code example demonstrates the usage of the SiteSummaryContentSyndicationExtension class.">
                    <code source="..\..\Documentation\Microsoft .NET 2.0\CodeExamplesLibrary\Extensions\Core\SiteSummaryContentSyndicationExtensionExample.cs" region="SiteSummaryContentSyndicationExtension"/>
                </code>
            </example>
        </member>
        <member name="F:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension.extensionContext">
            <summary>
            Private member to hold specific information about the extension.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension.CompareSequence(System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.SiteSummaryContentItem},System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.SiteSummaryContentItem})">
            <summary>
            Compares two specified <see cref="T:System.Collections.ObjectModel.Collection`1"/> collections.
            </summary>
            <param name="source">The first collection.</param>
            <param name="target">The second collection.</param>
            <returns>A 32-bit signed integer indicating the lexical relationship between the two comparands.</returns>
            <remarks>
                <para>
                    If the collections contain the same number of elements, determines the lexical relationship between the two sequences of comparands.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>greater than</i> the <paramref name="target"/> element count, returns <b>1</b>.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>less than</i> the <paramref name="target"/> element count, returns <b>-1</b>.
                </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="target"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension.MatchByType(Argotic.Extensions.ISyndicationExtension)">
            <summary>
            Predicate delegate that returns a value indicating if the supplied <see cref="T:Argotic.Extensions.ISyndicationExtension"/> 
            represents the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>.
            </summary>
            <param name="extension">The <see cref="T:Argotic.Extensions.ISyndicationExtension"/> to be compared.</param>
            <returns><b>true</b> if the <paramref name="extension"/> is the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>; otherwise, <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="extension"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XPath.IXPathNavigable"/>.
            </summary>
            <param name="source">The <b>IXPathNavigable</b> used to load this <see cref="T:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension.Load(System.Xml.XmlReader)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XmlReader"/>.
            </summary>
            <param name="reader">The <b>XmlReader</b> used to load this <see cref="T:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension"/> was able to be initialized using the supplied <paramref name="reader"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="reader"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Writes the syndication extension to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the syndication extension.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension.op_Equality(Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension,Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension.op_Inequality(Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension,Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension.op_LessThan(Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension,Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension.op_GreaterThan(Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension,Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension.Context">
            <summary>
            Gets or sets the <see cref="T:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtensionContext"/> object associated with this extension.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtensionContext"/> object that contains information associated with the current syndication extension.</value>
            <remarks>
                The <b>Context</b> encapsulates all of the syndication extension information that can be retrieved or written to an extended syndication entity. 
                Its purpose is to prevent property naming collisions between the base <see cref="T:Argotic.Extensions.SyndicationExtension"/> class and any custom properties that 
                are defined for the custom syndication extension.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.SimpleListSyndicationExtensionContext">
            <summary>
            Encapsulates specific information about an individual <see cref="T:Argotic.Extensions.Core.SimpleListSyndicationExtension"/>.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SimpleListSyndicationExtensionContext.extensionTreatAsList">
            <summary>
            Private member to hold a value indicating if the feed is intended to be consumed as a list.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SimpleListSyndicationExtensionContext.extensionGroups">
            <summary>
            Private member to hold information that allows the client to group or filter on the values of feed properties.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SimpleListSyndicationExtensionContext.extensionSorts">
            <summary>
            Private member to hold information that allows the client to sort on the values of feed properties.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSyndicationExtensionContext.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.SimpleListSyndicationExtensionContext"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSyndicationExtensionContext.Load(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.SimpleListSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.SimpleListSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSyndicationExtensionContext.WriteTo(System.Xml.XmlWriter,System.String)">
            <summary>
            Writes the current context to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the current context.</param>
            <param name="xmlNamespace">The XML namespace used to qualify prefixed syndication extension elements and attributes.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.SimpleListSyndicationExtensionContext.Grouping">
            <summary>
            Gets information that allows the client to group or filter on the values of feed properties.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.SimpleListGroup"/> objects that represent information that allows the client to group or filter on the values of feed properties. 
                The default value is an <i>empty</i> collection.
            </value>
        </member>
        <member name="P:Argotic.Extensions.Core.SimpleListSyndicationExtensionContext.Sorting">
            <summary>
            Gets information that allows the client to sort on the values of feed properties.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.SimpleListSort"/> objects that represent information that allows the client to sort on the values of feed properties. 
                The default value is an <i>empty</i> collection.
            </value>
        </member>
        <member name="P:Argotic.Extensions.Core.SimpleListSyndicationExtensionContext.TreatAsList">
            <summary>
            Gets or sets a value indicating if this feed is intended to be consumed as a list.
            </summary>
            <value><b>true</b> if the syndication feed is intended to be consumed as a list; otherwise false.</value>
            <remarks>
                This property allows the publisher of a feed document to indicate to the consumers of the feed that the feed is intended to be consumed as a list, 
                and as such is the primary means for feed consumers to identify lists.
            </remarks>
        </member>
        <member name="T:Argotic.Extensions.Core.SimpleListDataType">
            <summary>
            Represents the data-type of a simple list property.
            </summary>
            <seealso cref="P:Argotic.Extensions.Core.SimpleListSort.DataType"/>
            <seealso cref="M:Argotic.Extensions.Core.SimpleListSort.DataTypeAsString(Argotic.Extensions.Core.SimpleListDataType)"/>
            <seealso cref="M:Argotic.Extensions.Core.SimpleListSort.DataTypeByName(System.String)"/>
        </member>
        <member name="F:Argotic.Extensions.Core.SimpleListDataType.None">
            <summary>
            No data-type specified.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SimpleListDataType.Date">
            <summary>
            The data type of the simple list property represents a date-time value.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SimpleListDataType.Number">
            <summary>
            The data type of the simple list property represents a numeric value.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SimpleListDataType.Text">
            <summary>
            The data type of the simple list property represents a textual value.
            </summary>
        </member>
        <member name="T:Argotic.Extensions.Core.PheedSyndicationExtension">
            <summary>
            Extends syndication specifications to provide a means of describing a collection of photographs as both thumbnail and full size images.
            </summary>
            <remarks>
                <para>
                    The <see cref="T:Argotic.Extensions.Core.PheedSyndicationExtension"/> extends syndicated content to specify information photography related information. This syndication extension conforms to the 
                    <b>Pheed RSS</b> 1.0 specification, which can be found at <a href="http://www.pheed.com/pheed/">http://www.pheed.com/pheed/</a>.
                </para>
            </remarks>
            <example>
                <code lang="cs" title="The following code example demonstrates the usage of the PheedSyndicationExtension class.">
                    <code source="..\..\Documentation\Microsoft .NET 2.0\CodeExamplesLibrary\Extensions\Core\PheedSyndicationExtensionExample.cs" region="PheedSyndicationExtension"/>
                </code>
            </example>
        </member>
        <member name="F:Argotic.Extensions.Core.PheedSyndicationExtension.extensionContext">
            <summary>
            Private member to hold specific information about the extension.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.PheedSyndicationExtension.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.PheedSyndicationExtension"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.PheedSyndicationExtension.MatchByType(Argotic.Extensions.ISyndicationExtension)">
            <summary>
            Predicate delegate that returns a value indicating if the supplied <see cref="T:Argotic.Extensions.ISyndicationExtension"/> 
            represents the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>.
            </summary>
            <param name="extension">The <see cref="T:Argotic.Extensions.ISyndicationExtension"/> to be compared.</param>
            <returns><b>true</b> if the <paramref name="extension"/> is the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>; otherwise, <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="extension"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.PheedSyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XPath.IXPathNavigable"/>.
            </summary>
            <param name="source">The <b>IXPathNavigable</b> used to load this <see cref="T:Argotic.Extensions.Core.PheedSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.PheedSyndicationExtension"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.PheedSyndicationExtension.Load(System.Xml.XmlReader)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XmlReader"/>.
            </summary>
            <param name="reader">The <b>XmlReader</b> used to load this <see cref="T:Argotic.Extensions.Core.PheedSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.PheedSyndicationExtension"/> was able to be initialized using the supplied <paramref name="reader"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="reader"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.PheedSyndicationExtension.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Writes the syndication extension to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the syndication extension.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.PheedSyndicationExtension.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.PheedSyndicationExtension"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.PheedSyndicationExtension"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.PheedSyndicationExtension.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.PheedSyndicationExtension.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.PheedSyndicationExtension.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.PheedSyndicationExtension.op_Equality(Argotic.Extensions.Core.PheedSyndicationExtension,Argotic.Extensions.Core.PheedSyndicationExtension)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.PheedSyndicationExtension.op_Inequality(Argotic.Extensions.Core.PheedSyndicationExtension,Argotic.Extensions.Core.PheedSyndicationExtension)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.PheedSyndicationExtension.op_LessThan(Argotic.Extensions.Core.PheedSyndicationExtension,Argotic.Extensions.Core.PheedSyndicationExtension)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.PheedSyndicationExtension.op_GreaterThan(Argotic.Extensions.Core.PheedSyndicationExtension,Argotic.Extensions.Core.PheedSyndicationExtension)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.PheedSyndicationExtension.Context">
            <summary>
            Gets or sets the <see cref="T:Argotic.Extensions.Core.PheedSyndicationExtensionContext"/> object associated with this extension.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.PheedSyndicationExtensionContext"/> object that contains information associated with the current syndication extension.</value>
            <remarks>
                The <b>Context</b> encapsulates all of the syndication extension information that can be retrieved or written to an extended syndication entity. 
                Its purpose is to prevent property naming collisions between the base <see cref="T:Argotic.Extensions.SyndicationExtension"/> class and any custom properties that 
                are defined for the custom syndication extension.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.FeedSynchronizationConflictPreservationDirective">
            <summary>
            Represents whether conflict preservation should be performed for a <see cref="T:Argotic.Extensions.Core.FeedSynchronizationItem"/>.
            </summary>
            <remarks>
                
            </remarks>
            <seealso cref="P:Argotic.Extensions.Core.FeedSynchronizationItem.ConflictPreservation"/>
            <seealso cref="T:Argotic.Extensions.Core.FeedSynchronizationItem"/>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationConflictPreservationDirective.None">
            <summary>
            No conflict preservation processing directive specified.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationConflictPreservationDirective.Ignore">
            <summary>
            Conflict preservation <b>must not</b> be performed for the item.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationConflictPreservationDirective.Perform">
            <summary>
            Conflict preservation <b>must</b> be performed for the item.
            </summary>
        </member>
        <member name="T:Argotic.Extensions.Core.YahooMediaMedium">
            <summary>
            Represents the type of a media object .
            </summary>
            <seealso cref="T:Argotic.Extensions.Core.YahooMediaTextConstruct"/>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaMedium.None">
            <summary>
            No object medium specified.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaMedium.Audio">
            <summary>
            The media object represents a resource primarily intended to be heard.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaMedium.Document">
            <summary>
            The media object represents a resource consisting primarily of words for reading.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaMedium.Executable">
            <summary>
            The media object represents a computer program in source or compiled form.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaMedium.Image">
            <summary>
            The media object represents a visual representation.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaMedium.Video">
            <summary>
            The media object represents a series of visual representations imparting an impression of motion when shown in succession.
            </summary>
        </member>
        <member name="T:Argotic.Extensions.Core.YahooMediaHash">
            <summary>
            Represents the hash of a binary media object.
            </summary>
            <remarks>
                <para>
                    This entity can be assocaited multiple times to a media object as long as each <see cref="T:Argotic.Extensions.Core.YahooMediaHash"/> instance has a different <see cref="P:Argotic.Extensions.Core.YahooMediaHash.Algorithm"/>.
                </para>
            </remarks>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaHash.hashAlgorithm">
            <summary>
            Private member to hold the algorithm used to create the hash.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaHash.hashValue">
            <summary>
            Private member to hold the hash value.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaHash.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaHash"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaHash.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaHash"/> class using the supplied hash digest value.
            </summary>
            <param name="value">The value of this hash.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaHash.GenerateHash(System.IO.Stream,Argotic.Extensions.Core.YahooMediaHashAlgorithm)">
            <summary>
            Computes the hash value for the supplied <see cref="T:System.IO.Stream"/> using the specified <see cref="T:Argotic.Extensions.Core.YahooMediaHashAlgorithm"/>.
            </summary>
            <param name="stream">The input to compute the hash code for.</param>
            <param name="algorithm">A <see cref="T:Argotic.Extensions.Core.YahooMediaHashAlgorithm"/> enumeration value that indicates the algorithm to use.</param>
            <returns>The <b>base64</b> encoded result of the computed hash code.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="stream"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentException">The <paramref name="algorithm"/> is equal to <see cref="F:Argotic.Extensions.Core.YahooMediaHashAlgorithm.None"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaHash.HashAlgorithmAsString(Argotic.Extensions.Core.YahooMediaHashAlgorithm)">
            <summary>
            Returns the hash algorithm identifier for the supplied <see cref="T:Argotic.Extensions.Core.YahooMediaHashAlgorithm"/>.
            </summary>
            <param name="algorithm">The <see cref="T:Argotic.Extensions.Core.YahooMediaHashAlgorithm"/> to get the hash algorithm identifier for.</param>
            <returns>The hash algorithm identifier for the supplied <paramref name="algorithm"/>, otherwise returns an empty string.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaHash.HashAlgorithmByName(System.String)">
            <summary>
            Returns the <see cref="T:Argotic.Extensions.Core.YahooMediaHashAlgorithm"/> enumeration value that corresponds to the specified hash algorithm name.
            </summary>
            <param name="name">The name of the hash algorithm.</param>
            <returns>A <see cref="T:Argotic.Extensions.Core.YahooMediaHashAlgorithm"/> enumeration value that corresponds to the specified string, otherwise returns <b>YahooMediaHashAlgorithm.None</b>.</returns>
            <remarks>This method disregards case of specified hash algorithm name.</remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaHash.Load(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads this <see cref="T:Argotic.Extensions.Core.YahooMediaHash"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.YahooMediaHash"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.YahooMediaHash"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaHash.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.YahooMediaHash"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaHash.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaHash"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaHash"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaHash.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaHash.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaHash.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaHash.op_Equality(Argotic.Extensions.Core.YahooMediaHash,Argotic.Extensions.Core.YahooMediaHash)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaHash.op_Inequality(Argotic.Extensions.Core.YahooMediaHash,Argotic.Extensions.Core.YahooMediaHash)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaHash.op_LessThan(Argotic.Extensions.Core.YahooMediaHash,Argotic.Extensions.Core.YahooMediaHash)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaHash.op_GreaterThan(Argotic.Extensions.Core.YahooMediaHash,Argotic.Extensions.Core.YahooMediaHash)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaHash.Algorithm">
            <summary>
            Gets or sets the algorithm used to create this hash.
            </summary>
            <value>
                A <see cref="T:Argotic.Extensions.Core.YahooMediaHashAlgorithm"/> enumeration value that indicates the algorithm used to create this hash. 
                The default value is <see cref="F:Argotic.Extensions.Core.YahooMediaHashAlgorithm.None"/>, which indicates that no hash algorithm was specified.
            </value>
            <remarks>
                If no algorithm is specified, it can be assumed that <see cref="F:Argotic.Extensions.Core.YahooMediaHashAlgorithm.MD5"/> was used to create this hash.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaHash.Value">
            <summary>
            Gets or sets the value of this hash.
            </summary>
            <value>The value of this hash.</value>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is an empty string.</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtensionContext">
            <summary>
            Encapsulates specific information about an individual <see cref="T:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtension"/>.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtensionContext.extensionSection">
            <summary>
            Private member to hold the section name.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtensionContext.extensionDepartment">
            <summary>
            Private member to hold the department name.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtensionContext.extensionComments">
            <summary>
            Private member to hold the number of comments.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtensionContext.extensionHitParade">
            <summary>
            Private member to hold the hit parade identifiers.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtensionContext.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtensionContext"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtensionContext.Load(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtensionContext.WriteTo(System.Xml.XmlWriter,System.String)">
            <summary>
            Writes the current context to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the current context.</param>
            <param name="xmlNamespace">The XML namespace used to qualify prefixed syndication extension elements and attributes.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtensionContext.Comments">
            <summary>
            Gets or sets the number of comments.
            </summary>
            <value>The number of comments. The default value is <see cref="F:System.Int32.MinValue"/>, which indicates that no comment count was specified.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtensionContext.Department">
            <summary>
            Gets or sets the name of the department.
            </summary>
            <value>The name of the department.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtensionContext.HitParade">
            <summary>
            Gets the hit parade identifiers.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:System.Int32"/> objects that represent the hit parade identifiers. 
                The default value is an <i>empty</i> collection.
            </value>
        </member>
        <member name="P:Argotic.Extensions.Core.SiteSummarySlashSyndicationExtensionContext.Section">
            <summary>
            Gets or sets the name of the section.
            </summary>
            <value>The name of the section.</value>
        </member>
        <member name="T:Argotic.Extensions.Core.SimpleListSyndicationExtension">
            <summary>
            Extends syndication specifications to provide a means of exposing ordered lists of items easier and more accessible to users.
            </summary>
            <remarks>
                <para>
                    The <see cref="T:Argotic.Extensions.Core.SimpleListSyndicationExtension"/> extends syndicated content to make exposing ordered lists of items easier and more accessible to users. 
                    This syndication extension conforms to the <b>Simple List Extensions</b> 1.0a specification, which can be found 
                    at <a href="http://msdn2.microsoft.com/en-us/xml/bb190612.aspx">http://msdn2.microsoft.com/en-us/xml/bb190612.aspx</a>.
                </para>
            </remarks>
            <example>
                <code lang="cs" title="The following code example demonstrates the usage of the SimpleListSyndicationExtension class.">
                    <code source="..\..\Documentation\Microsoft .NET 2.0\CodeExamplesLibrary\Extensions\Core\SimpleListSyndicationExtensionExample.cs" region="SimpleListSyndicationExtension"/>
                </code>
            </example>
        </member>
        <member name="F:Argotic.Extensions.Core.SimpleListSyndicationExtension.extensionContext">
            <summary>
            Private member to hold specific information about the extension.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSyndicationExtension.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.SimpleListSyndicationExtension"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSyndicationExtension.CompareSequence(System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.SimpleListGroup},System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.SimpleListGroup})">
            <summary>
            Compares two specified <see cref="T:System.Collections.ObjectModel.Collection`1"/> collections.
            </summary>
            <param name="source">The first collection.</param>
            <param name="target">The second collection.</param>
            <returns>A 32-bit signed integer indicating the lexical relationship between the two comparands.</returns>
            <remarks>
                <para>
                    If the collections contain the same number of elements, determines the lexical relationship between the two sequences of comparands.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>greater than</i> the <paramref name="target"/> element count, returns <b>1</b>.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>less than</i> the <paramref name="target"/> element count, returns <b>-1</b>.
                </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="target"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSyndicationExtension.CompareSequence(System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.SimpleListSort},System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.SimpleListSort})">
            <summary>
            Compares two specified <see cref="T:System.Collections.ObjectModel.Collection`1"/> collections.
            </summary>
            <param name="source">The first collection.</param>
            <param name="target">The second collection.</param>
            <returns>A 32-bit signed integer indicating the lexical relationship between the two comparands.</returns>
            <remarks>
                <para>
                    If the collections contain the same number of elements, determines the lexical relationship between the two sequences of comparands.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>greater than</i> the <paramref name="target"/> element count, returns <b>1</b>.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>less than</i> the <paramref name="target"/> element count, returns <b>-1</b>.
                </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="target"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSyndicationExtension.MatchByType(Argotic.Extensions.ISyndicationExtension)">
            <summary>
            Predicate delegate that returns a value indicating if the supplied <see cref="T:Argotic.Extensions.ISyndicationExtension"/> 
            represents the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>.
            </summary>
            <param name="extension">The <see cref="T:Argotic.Extensions.ISyndicationExtension"/> to be compared.</param>
            <returns><b>true</b> if the <paramref name="extension"/> is the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>; otherwise, <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="extension"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XPath.IXPathNavigable"/>.
            </summary>
            <param name="source">The <b>IXPathNavigable</b> used to load this <see cref="T:Argotic.Extensions.Core.SimpleListSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.SimpleListSyndicationExtension"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSyndicationExtension.Load(System.Xml.XmlReader)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XmlReader"/>.
            </summary>
            <param name="reader">The <b>XmlReader</b> used to load this <see cref="T:Argotic.Extensions.Core.SimpleListSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.SimpleListSyndicationExtension"/> was able to be initialized using the supplied <paramref name="reader"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="reader"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSyndicationExtension.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Writes the syndication extension to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the syndication extension.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSyndicationExtension.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.SimpleListSyndicationExtension"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.SimpleListSyndicationExtension"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSyndicationExtension.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSyndicationExtension.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSyndicationExtension.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSyndicationExtension.op_Equality(Argotic.Extensions.Core.SimpleListSyndicationExtension,Argotic.Extensions.Core.SimpleListSyndicationExtension)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSyndicationExtension.op_Inequality(Argotic.Extensions.Core.SimpleListSyndicationExtension,Argotic.Extensions.Core.SimpleListSyndicationExtension)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSyndicationExtension.op_LessThan(Argotic.Extensions.Core.SimpleListSyndicationExtension,Argotic.Extensions.Core.SimpleListSyndicationExtension)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSyndicationExtension.op_GreaterThan(Argotic.Extensions.Core.SimpleListSyndicationExtension,Argotic.Extensions.Core.SimpleListSyndicationExtension)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.SimpleListSyndicationExtension.Context">
            <summary>
            Gets or sets the <see cref="T:Argotic.Extensions.Core.SimpleListSyndicationExtensionContext"/> object associated with this extension.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.SimpleListSyndicationExtensionContext"/> object that contains information associated with the current syndication extension.</value>
            <remarks>
                The <b>Context</b> encapsulates all of the syndication extension information that can be retrieved or written to an extended syndication entity. 
                Its purpose is to prevent property naming collisions between the base <see cref="T:Argotic.Extensions.SyndicationExtension"/> class and any custom properties that 
                are defined for the custom syndication extension.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.LiveJournalUserPicture">
            <summary>
            Represents the picture associated with a LiveJournal entry.
            </summary>
            <seealso cref="P:Argotic.Extensions.Core.LiveJournalSyndicationExtensionContext.UserPicture"/>
        </member>
        <member name="F:Argotic.Extensions.Core.LiveJournalUserPicture.userPictureUrl">
            <summary>
            Private member to hold the URL of the GIF, JPEG, or PNG image.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.LiveJournalUserPicture.userPictureKeywords">
            <summary>
            Private member to hold the keyword (phrase) associated with the picture.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.LiveJournalUserPicture.userPictureWidth">
            <summary>
            Private member to hold the image width.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.LiveJournalUserPicture.userPictureHeight">
            <summary>
            Private member to hold the image height.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalUserPicture.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.LiveJournalUserPicture"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalUserPicture.#ctor(System.Uri,System.String,System.Int32,System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.LiveJournalUserPicture"/> class using the supplied parameters.
            </summary>
            <param name="url"></param>
            <param name="keyword"></param>
            <param name="width"></param>
            <param name="height"></param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="url"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="keyword"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="keyword"/> is an empty string.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="width"/> is greater than <b>100</b>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="height"/> is greater than <b>100</b>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalUserPicture.Load(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads this <see cref="T:Argotic.Extensions.Core.LiveJournalUserPicture"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.LiveJournalUserPicture"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.LiveJournalUserPicture"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalUserPicture.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.LiveJournalUserPicture"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalUserPicture.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.LiveJournalUserPicture"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.LiveJournalUserPicture"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalUserPicture.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalUserPicture.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalUserPicture.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalUserPicture.op_Equality(Argotic.Extensions.Core.LiveJournalUserPicture,Argotic.Extensions.Core.LiveJournalUserPicture)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalUserPicture.op_Inequality(Argotic.Extensions.Core.LiveJournalUserPicture,Argotic.Extensions.Core.LiveJournalUserPicture)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalUserPicture.op_LessThan(Argotic.Extensions.Core.LiveJournalUserPicture,Argotic.Extensions.Core.LiveJournalUserPicture)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalUserPicture.op_GreaterThan(Argotic.Extensions.Core.LiveJournalUserPicture,Argotic.Extensions.Core.LiveJournalUserPicture)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.LiveJournalUserPicture.Height">
            <summary>
            Gets or sets the height of this picture.
            </summary>
            <value>The height of this picture, in pixels. The default value is <see cref="F:System.Int32.MinValue"/>, which indicates no height was specified.</value>
            <remarks>
                LiveJournal limits images to a maximum of <b>100</b> pixels in each dimension.
            </remarks>
            <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="value"/> is greater than <b>100</b>.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.LiveJournalUserPicture.Keyword">
            <summary>
            Gets or sets the keyword or phrase associated with the picture.
            </summary>
            <value>The keyword or phrase associated with this picture.</value>
            <remarks>The value of this property is expected to be <i>plain text</i>, and so entity-ecoded text should be ommited.</remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is an empty string.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.LiveJournalUserPicture.Url">
            <summary>
            Gets or sets the the URL this picture.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents the URL of a GIF, JPEG, or PNG for this picture.</value>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.LiveJournalUserPicture.Width">
            <summary>
            Gets or sets the width of this picture.
            </summary>
            <value>The width of this picture, in pixels. The default value is <see cref="F:System.Int32.MinValue"/>, which indicates no width was specified.</value>
            <remarks>
                LiveJournal limits images to a maximum of <b>100</b> pixels in each dimension.
            </remarks>
            <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="value"/> is greater than <b>100</b>.</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext">
            <summary>
            Encapsulates specific information about an individual <see cref="T:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension"/>.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.extensionContributor">
            <summary>
            Private member to hold the entity responsible for making contributions to the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.extensionCoverage">
            <summary>
            Private member to hold the spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.extensionCreator">
            <summary>
            Private member to hold the entity primarily responsible for making the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.extensionDate">
            <summary>
            Private member to hold a point or period of time associated with an event in the lifecycle of the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.extensionDescription">
            <summary>
            Private member to hold an account of the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.extensionFormat">
            <summary>
            Private member to hold the file format, physical medium, or dimensions of the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.extensionIdentifier">
            <summary>
            Private member to hold an unambiguous reference to the resource within a given context.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.extensionLanguage">
            <summary>
            Private member to hold the language of the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.extensionPublisher">
            <summary>
            Private member to hold the entity responsible for making the resource available.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.extensionRelation">
            <summary>
            Private member to hold a related resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.extensionRights">
            <summary>
            Private member to hold information about rights held in and over the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.extesionSource">
            <summary>
            Private member to hold a related resource from which the described resource is derived.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.extensionSubject">
            <summary>
            Private member to hold the topic of the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.extensionTitle">
            <summary>
            Private member to hold the name given to the resource.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.extensionType">
            <summary>
            Private member to hold the nature or genre of the resource.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.Load(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.WriteTo(System.Xml.XmlWriter,System.String)">
            <summary>
            Writes the current context to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the current context.</param>
            <param name="xmlNamespace">The XML namespace used to qualify prefixed syndication extension elements and attributes.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.LoadCommon(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context common elements using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.LoadOptionals(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context optional elements using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.Contributor">
            <summary>
            Gets or sets the entity responsible for making contributions to the resource.
            </summary>
            <value>The entity responsible for making contributions to the resource.</value>
            <remarks>
                Examples of a Contributor include a person, an organization, or a service. Typically, the name of a <see cref="P:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.Contributor"/> should be used to indicate the entity.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.Coverage">
            <summary>
            Gets or sets the spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant.
            </summary>
            <value>The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant.</value>
            <remarks>
                <para>
                    Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. 
                    Temporal topic may be a named period, date, or date range. 
                    A jurisdiction may be a named administrative entity or a geographic place to which the resource applies.
                </para>
                <para>
                    Recommended best practice is to use a controlled vocabulary such as the <a href="http://www.getty.edu/research/tools/vocabulary/tgn/index.html">Thesaurus of Geographic Names</a>. 
                    Where appropriate, named places or time periods can be used in preference to numeric identifiers such as sets of coordinates or date ranges.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.Creator">
            <summary>
            Gets or sets the entity primarily responsible for making the resource.
            </summary>
            <value>The entity primarily responsible for making the resource.</value>
            <remarks>
                Examples of a <see cref="P:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.Creator"/> include a person, an organization, or a service. Typically, the name of a <see cref="P:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.Creator"/> should be used to indicate the entity.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.Date">
            <summary>
            Gets or sets a point or period of time associated with an event in the lifecycle of the resource.
            </summary>
            <value>
                A <see cref="T:System.DateTime"/> that indicates a point or period of time associated with an event in the lifecycle of the resource. 
                The default value is <see cref="F:System.DateTime.MinValue"/>, which indicates that no date was provided.
            </value>
            <remarks>
                The <see cref="T:System.DateTime"/> should be provided in Coordinated Universal Time (UTC).
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.Description">
            <summary>
            Gets or sets an account of the resource.
            </summary>
            <value>An account of the resource.</value>
            <remarks>
                <see cref="P:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.Description"/> may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.Format">
            <summary>
            Gets or sets the file format, physical medium, or dimensions of the resource.
            </summary>
            <value>The file format, physical medium, or dimensions of the resource.</value>
            <remarks>
                Examples of dimensions include size and duration. 
                Recommended best practice is to use a controlled vocabulary such as the list of <a href="http://www.iana.org/assignments/media-types/">Internet Media Types</a>.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.Identifier">
            <summary>
            Gets or sets an unambiguous reference to the resource within a given context.
            </summary>
            <value>An unambiguous reference to the resource within a given context.</value>
            <remarks>
                Recommended best practice is to identify the resource by means of a string conforming to a formal identification system.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.Language">
            <summary>
            Gets or sets the language of the resource.
            </summary>
            <value>A <see cref="T:System.Globalization.CultureInfo"/> object that represents the language of the resource. The default value is a <b>null</b> reference, which indicates that no language was specified.</value>
            <remarks>
                Recommended best practice is to use a controlled vocabulary such as <a href="http://www.ietf.org/rfc/rfc4646.txt">RFC 4646</a>. 
                This framework conforms to this best practice by utilizing the <see cref="T:System.Globalization.CultureInfo"/> class to represent the language of a resource.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.Publisher">
            <summary>
            Gets or sets the entity responsible for making the resource available.
            </summary>
            <value>The entity responsible for making the resource available.</value>
            <remarks>
                Examples of a <see cref="P:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.Publisher"/> include a person, an organization, or a service. Typically, the name of a <see cref="P:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.Publisher"/> should be used to indicate the entity.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.Relation">
            <summary>
            Gets or sets a related resource.
            </summary>
            <value>A related resource.</value>
            <remarks>
                Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.Rights">
            <summary>
            Gets or sets information about rights held in and over the resource.
            </summary>
            <value>Information about rights held in and over the resource.</value>
            <remarks>
                Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.Source">
            <summary>
            Gets or sets a related resource from which the described resource is derived.
            </summary>
            <value>A related resource from which the described resource is derived.</value>
            <remarks>
                The described resource may be derived from the related resource in whole or in part. 
                Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.Subject">
            <summary>
            Gets or sets the topic of the resource.
            </summary>
            <value>The topic of the resource.</value>
            <remarks>
                Typically, the subject will be represented using keywords, key phrases, or classification codes. 
                Recommended best practice is to use a controlled vocabulary. 
                To describe the spatial or temporal topic of the resource, use the <see cref="P:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.Coverage"/> element.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.Title">
            <summary>
            Gets or sets the name given to the resource.
            </summary>
            <value>The name given to the resource.</value>
            <remarks>
                Typically, a <see cref="P:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.Title"/> will be a name by which the resource is formally known.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.TypeVocabulary">
            <summary>
            Gets or sets the nature or genre of the resource.
            </summary>
            <value>
                An <see cref="T:Argotic.Extensions.Core.DublinCoreTypeVocabularies"/> enumeration value that represents the nature or genre of the resource. 
                The default value is <see cref="F:Argotic.Extensions.Core.DublinCoreTypeVocabularies.None"/>, which indicates that no nature or genre was specified.
            </value>
            <remarks>
                <para>
                    Recommended best practice is to use a controlled vocabulary such as the <a href="http://dublincore.org/documents/dcmi-type-vocabulary/">DCMI Type Vocabulary</a>. 
                    This framework conforms to this best practice by providing the <see cref="T:Argotic.Extensions.Core.DublinCoreTypeVocabularies"/> enumeration for specifiying the nature or genre of a resource.
                </para>
                <para>To describe the file format, physical medium, or dimensions of the resource, use <see cref="P:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext.Format"/>.</para>
            </remarks>
        </member>
        <member name="T:Argotic.Extensions.Core.LiveJournalSecurity">
            <summary>
            Represents the access level of a LiveJournal entry.
            </summary>
            <seealso cref="P:Argotic.Extensions.Core.LiveJournalSyndicationExtensionContext.Security"/>
        </member>
        <member name="F:Argotic.Extensions.Core.LiveJournalSecurity.securityType">
            <summary>
            Private member to hold security type indicator.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.LiveJournalSecurity.securityMask">
            <summary>
            Private member to hold an integer indicating the friend-groups mask.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSecurity.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.LiveJournalSecurity"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSecurity.#ctor(Argotic.Extensions.Core.LiveJournalSecurityType)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.LiveJournalSecurity"/> class using the supplied <see cref="T:Argotic.Extensions.Core.LiveJournalSecurityType"/>.
            </summary>
            <param name="accessType">A <see cref="T:Argotic.Extensions.Core.LiveJournalSecurityType"/> enumeration value that represents the access type.</param>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSecurity.#ctor(Argotic.Extensions.Core.LiveJournalSecurityType,System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.LiveJournalSecurity"/> class using the supplied <see cref="T:Argotic.Extensions.Core.LiveJournalSecurityType"/>.
            </summary>
            <param name="accessType">A <see cref="T:Argotic.Extensions.Core.LiveJournalSecurityType"/> enumeration value that represents the access type.</param>
            <param name="mask">An integer indicating the friend-groups mask.</param>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSecurity.AccessibilityAsString(Argotic.Extensions.Core.LiveJournalSecurityType)">
            <summary>
            Returns the access level identifier for the supplied <see cref="T:Argotic.Extensions.Core.LiveJournalSecurityType"/>.
            </summary>
            <param name="level">The <see cref="T:Argotic.Extensions.Core.LiveJournalSecurityType"/> to get the access level identifier for.</param>
            <returns>The access level identifier for the supplied <paramref name="level"/>, otherwise returns an empty string.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSecurity.AccessibilityByName(System.String)">
            <summary>
            Returns the <see cref="T:Argotic.Extensions.Core.LiveJournalSecurityType"/> enumeration value that corresponds to the specified access level name.
            </summary>
            <param name="name">The name of the access level.</param>
            <returns>A <see cref="T:Argotic.Extensions.Core.LiveJournalSecurityType"/> enumeration value that corresponds to the specified string, otherwise returns <b>LiveJournalSecurityType.None</b>.</returns>
            <remarks>This method disregards case of specified access level name.</remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSecurity.Load(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads this <see cref="T:Argotic.Extensions.Core.LiveJournalSecurity"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.LiveJournalSecurity"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.LiveJournalSecurity"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSecurity.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.LiveJournalSecurity"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSecurity.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.LiveJournalSecurity"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.LiveJournalSecurity"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSecurity.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSecurity.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSecurity.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSecurity.op_Equality(Argotic.Extensions.Core.LiveJournalSecurity,Argotic.Extensions.Core.LiveJournalSecurity)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSecurity.op_Inequality(Argotic.Extensions.Core.LiveJournalSecurity,Argotic.Extensions.Core.LiveJournalSecurity)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSecurity.op_LessThan(Argotic.Extensions.Core.LiveJournalSecurity,Argotic.Extensions.Core.LiveJournalSecurity)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSecurity.op_GreaterThan(Argotic.Extensions.Core.LiveJournalSecurity,Argotic.Extensions.Core.LiveJournalSecurity)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.LiveJournalSecurity.Accessibility">
            <summary>
            Gets or sets the accessibility type.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.LiveJournalSecurityType"/> enumeration value that represents the access type. The default value is <see cref="F:Argotic.Extensions.Core.LiveJournalSecurityType.Public"/>.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.LiveJournalSecurity.Mask">
            <summary>
            Gets or sets the friend-groups mask.
            </summary>
            <value>An integer indicating the friend-groups mask used. The default value is <see cref="F:System.Int32.MinValue"/>, which indicates that no friend-groups mask was specified.</value>
            <remarks>
                This property only applies if the <see cref="P:Argotic.Extensions.Core.LiveJournalSecurity.Accessibility"/> property is <see cref="F:Argotic.Extensions.Core.LiveJournalSecurityType.Friends">friends</see> 
                and <b>only</b> if the author of the post is the same as the user who has authenticated the feed request.
            </remarks>
        </member>
        <member name="T:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension">
            <summary>
            Extends syndication specifications to enable loosely-cooperating applications to use feeds as the basis for item sharing; 
            the bi-directional, asynchronous synchronization of new and changed items amongst two or more cross-subscribed feeds.
            </summary>
            <remarks>
                <para>
                    The <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension"/> extends syndicated content to specify the <i>minimum</i> extensions necessary 
                    to enable loosely-cooperating applications to use Atom and RSS feeds as the basis for item sharing. This syndication extension conforms to the 
                    <b>FeedSync for Atom and RSS</b> 1.0 specification, which can be found at <a href="http://dev.live.com/feedsync/spec/">http://dev.live.com/feedsync/spec/</a>.
                </para>
            </remarks>
            <example>
                <code lang="cs" title="The following code example demonstrates the usage of the FeedSynchronizationSyndicationExtension class.">
                    <code source="..\..\Documentation\Microsoft .NET 2.0\CodeExamplesLibrary\Extensions\Core\FeedSynchronizationSyndicationExtensionExample.cs" region="FeedSynchronizationSyndicationExtension"/>
                </code>
            </example>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension.extensionContext">
            <summary>
            Private member to hold specific information about the extension.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension.MatchByType(Argotic.Extensions.ISyndicationExtension)">
            <summary>
            Predicate delegate that returns a value indicating if the supplied <see cref="T:Argotic.Extensions.ISyndicationExtension"/> 
            represents the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>.
            </summary>
            <param name="extension">The <see cref="T:Argotic.Extensions.ISyndicationExtension"/> to be compared.</param>
            <returns><b>true</b> if the <paramref name="extension"/> is the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>; otherwise, <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="extension"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XPath.IXPathNavigable"/>.
            </summary>
            <param name="source">The <b>IXPathNavigable</b> used to load this <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension.Load(System.Xml.XmlReader)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XmlReader"/>.
            </summary>
            <param name="reader">The <b>XmlReader</b> used to load this <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension"/> was able to be initialized using the supplied <paramref name="reader"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="reader"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Writes the syndication extension to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the syndication extension.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension.op_Equality(Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension,Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension.op_Inequality(Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension,Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension.op_LessThan(Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension,Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension.op_GreaterThan(Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension,Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension.Context">
            <summary>
            Gets or sets the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtensionContext"/> object associated with this extension.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtensionContext"/> object that contains information associated with the current syndication extension.</value>
            <remarks>
                The <b>Context</b> encapsulates all of the syndication extension information that can be retrieved or written to an extended syndication entity. 
                Its purpose is to prevent property naming collisions between the base <see cref="T:Argotic.Extensions.SyndicationExtension"/> class and any custom properties that 
                are defined for the custom syndication extension.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="T:Argotic.Extensions.SyndicationExtensionAdapter">
            <summary>
            Represents a <see cref="T:System.Xml.XPath.XPathNavigator"/> and <see cref="T:Argotic.Common.SyndicationResourceLoadSettings"/> that are used to fill a <see cref="T:Argotic.Extensions.IExtensibleSyndicationObject"/>.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.SyndicationExtensionAdapter.adapterNavigator">
            <summary>
            Private member to hold the XPathNavigator used to load a syndication extension.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.SyndicationExtensionAdapter.adapterSettings">
            <summary>
            Private member to hold the XPathNavigator used to configure the load of a syndication extension.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtensionAdapter.#ctor(System.Xml.XPath.XPathNavigator,Argotic.Common.SyndicationResourceLoadSettings)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.SyndicationExtensionAdapter"/> class using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/> and <see cref="T:Argotic.Common.SyndicationResourceLoadSettings"/>.
            </summary>
            <param name="navigator">A read-only <see cref="T:System.Xml.XPath.XPathNavigator"/> object for navigating through the extended syndication resource information.</param>
            <param name="settings">The <see cref="T:Argotic.Common.SyndicationResourceLoadSettings"/> object used to configure the load operation of the <see cref="T:Argotic.Extensions.IExtensibleSyndicationObject"/>.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="navigator"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="settings"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtensionAdapter.FillExtensionTypes(Argotic.Extensions.IExtensibleSyndicationObject,System.Collections.ObjectModel.Collection{System.Type})">
            <summary>
            Fills the specified collection of <see cref="T:System.Type"/> objects using the supplied <see cref="T:Argotic.Extensions.IExtensibleSyndicationObject"/>.
            </summary>
            <param name="entity">A <see cref="T:Argotic.Extensions.IExtensibleSyndicationObject"/> to extract syndication extensions from.</param>
            <param name="types">The <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:System.Type"/> objects to be filled.</param>
            <remarks>
               This method provides implementers of the <see cref="T:Argotic.Common.ISyndicationResource"/> interface with a simple way 
               to fill a <see cref="P:Argotic.Common.SyndicationResourceSaveSettings.SupportedExtensions"/> collection when implementing the 
               <see cref="M:Argotic.Common.ISyndicationResource.Save(System.Xml.XmlWriter,Argotic.Common.SyndicationResourceSaveSettings)"/> abstract method.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="entity"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="types"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtensionAdapter.GetExtensions(System.Collections.ObjectModel.Collection{System.Type})">
            <summary>
            Creates a collection of <see cref="T:Argotic.Extensions.ISyndicationExtension"/> instances for the specified types.
            </summary>
            <param name="types">A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:System.Type"/> objects to be instantiated.</param>
            <returns>A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.ISyndicationExtension"/> objects instantiated using the supplied <paramref name="types"/>.</returns>
            <remarks>
                <para>Each <see cref="T:Argotic.Extensions.ISyndicationExtension"/> instance in the <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection will be instantiated using its default constructor. </para>
                <para>Types that are a null reference or do not implement the <see cref="T:Argotic.Extensions.ISyndicationExtension"/> interface are ignored.</para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="types"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtensionAdapter.GetExtensions(System.Collections.ObjectModel.Collection{System.Type},System.Collections.Generic.Dictionary{System.String,System.String})">
            <summary>
            Creates a collection of <see cref="T:Argotic.Extensions.ISyndicationExtension"/> instances for the specified types.
            </summary>
            <param name="types">A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:System.Type"/> objects that represent user-defined syndication extensions to be instantiated.</param>
            <param name="namespaces">A collection of XML nameapces that are used to filter the available native framework syndication extensions.</param>
            <returns>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.ISyndicationExtension"/> objects instantiated using the supplied <paramref name="types"/> and <paramref name="manager"/>.
            </returns>
            <remarks>
                This method instantiates all of the available native framework syndication extensions, and then filters them based on the XML namespaces and prefixes contained in the supplied <paramref name="namespaces"/>. 
                The user defined syndication extensions are then instantiated, and are added to the return collection if they do not already exist.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="types"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="namespaces"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtensionAdapter.WriteExtensionsTo(System.Collections.Generic.IEnumerable{Argotic.Extensions.ISyndicationExtension},System.Xml.XmlWriter)">
            <summary>
            Saves the supplied <see cref="T:System.Collections.Generic.IEnumerable`1"/> collection of <see cref="T:Argotic.Extensions.ISyndicationExtension"/> objects to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="extensions">A <see cref="T:System.Collections.Generic.IEnumerable`1"/> collection of <see cref="T:Argotic.Extensions.ISyndicationExtension"/> objects that represent the syndication extensions to be written.</param>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="extensions"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtensionAdapter.WriteXmlNamespaceDeclarations(System.Collections.ObjectModel.Collection{System.Type},System.Xml.XmlWriter)">
            <summary>
            Writes the prefixed XML namespace declarations for the supplied <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of syndication extension <see cref="T:System.Type"/> objects to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="types">A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:System.Type"/> objects that represent the syndication extensions to write prefixed XML namespace declarations for.</param>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="types"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtensionAdapter.Fill(Argotic.Extensions.IExtensibleSyndicationObject)">
            <summary>
            Modifies the <see cref="T:Argotic.Extensions.IExtensibleSyndicationObject"/> to match the data source.
            </summary>
            <remarks>
                A default <see cref="T:System.Xml.XmlNamespaceManager"/> is created against this adapter's <see cref="P:Argotic.Extensions.SyndicationExtensionAdapter.Navigator"/> property 
                when resolving prefixed syndication elements and attributes.
            </remarks>
            <param name="entity">The <see cref="T:Argotic.Extensions.IExtensibleSyndicationObject"/> to be filled.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="entity"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtensionAdapter.Fill(Argotic.Extensions.IExtensibleSyndicationObject,System.Xml.XmlNamespaceManager)">
            <summary>
            Modifies the <see cref="T:Argotic.Extensions.IExtensibleSyndicationObject"/> to match the data source.
            </summary>
            <param name="entity">The <see cref="T:Argotic.Extensions.IExtensibleSyndicationObject"/> to be filled.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> used to resolve prefixed syndication elements and attributes.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="entity"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="P:Argotic.Extensions.SyndicationExtensionAdapter.FrameworkExtensions">
            <summary>
            Gets the collection of <see cref="T:System.Type"/> objects that represent <see cref="T:Argotic.Extensions.ISyndicationExtension"/> instances natively supported by the framework.
            </summary>
            <value>
                <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:System.Type"/> objects that represent <see cref="T:Argotic.Extensions.ISyndicationExtension"/> instances natively supported by the framework.
            </value>
        </member>
        <member name="P:Argotic.Extensions.SyndicationExtensionAdapter.Navigator">
            <summary>
            Gets the <see cref="T:System.Xml.XPath.XPathNavigator"/> used to fill an extensible syndication resource.
            </summary>
            <value>The <see cref="T:System.Xml.XPath.XPathNavigator"/> used to fill an extensible syndication resource.</value>
        </member>
        <member name="P:Argotic.Extensions.SyndicationExtensionAdapter.Settings">
            <summary>
            Gets the <see cref="T:Argotic.Common.SyndicationResourceLoadSettings"/> used to configure the fill of an extensible syndication resource.
            </summary>
            <value>The <see cref="T:Argotic.Common.SyndicationResourceLoadSettings"/> used to configure the fill of an extensible syndication resource.</value>
        </member>
        <member name="T:Argotic.Extensions.Core.YahooMediaRating">
            <summary>
            Represents the permissible audience for a media object.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaRating.ratingScheme">
            <summary>
            Private member to hold the URI that identifies the rating scheme.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaRating.ratingContent">
            <summary>
            Private member to hold the permissible audience value.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRating.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaRating"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRating.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaRating"/> class using the supplied audience.
            </summary>
            <param name="audience">A textual value that represents the permissible audience(s) for this media object.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="audience"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="audience"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRating.Load(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads this <see cref="T:Argotic.Extensions.Core.YahooMediaRating"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.YahooMediaRating"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.YahooMediaRating"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRating.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.YahooMediaRating"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRating.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaRating"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaRating"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRating.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRating.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRating.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRating.op_Equality(Argotic.Extensions.Core.YahooMediaRating,Argotic.Extensions.Core.YahooMediaRating)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRating.op_Inequality(Argotic.Extensions.Core.YahooMediaRating,Argotic.Extensions.Core.YahooMediaRating)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRating.op_LessThan(Argotic.Extensions.Core.YahooMediaRating,Argotic.Extensions.Core.YahooMediaRating)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRating.op_GreaterThan(Argotic.Extensions.Core.YahooMediaRating,Argotic.Extensions.Core.YahooMediaRating)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaRating.SimpleAdultRating">
            <summary>
            Gets the media simple rating scheme adult content rating.
            </summary>
            <value>The media simple rating scheme <b>adult</b> content rating value.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaRating.SimpleNonAdultRating">
            <summary>
            Gets the media simple rating scheme non-adult content rating.
            </summary>
            <value>The media simple rating scheme <b>nonadult</b> content rating value.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaRating.SimpleScheme">
            <summary>
            Gets the media simple rating scheme.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents the media simple rating scheme. The simple scheme has a value of <b>urn:simple</b>.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaRating.Content">
            <summary>
            Gets or sets the permissible audience for this media object.
            </summary>
            <value>A textual value that represents the permissible audience(s) for this media object.</value>
            <seealso cref="P:Argotic.Extensions.Core.YahooMediaRating.SimpleAdultRating"/>
            <seealso cref="P:Argotic.Extensions.Core.YahooMediaRating.SimpleNonAdultRating"/>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is an empty string.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaRating.Scheme">
            <summary>
            Gets or sets a URI that identifies this rating scheme.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents this rating scheme. The default value is <b>null</b>.</value>
            <remarks>
                If no rating scheme is provided, the default scheme is <b>urn:simple</b>.
            </remarks>
            <seealso cref="P:Argotic.Extensions.Core.YahooMediaRating.SimpleScheme"/>
        </member>
        <member name="T:Argotic.Extensions.Core.YahooMediaGroup">
            <summary>
            Represents a means of grouping of <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> objects that are effectively the same content, yet different representations.
            </summary>
            <seealso cref="T:Argotic.Extensions.Core.YahooMediaContent"/>
            <seealso cref="T:Argotic.Extensions.Core.IYahooMediaCommonObjectEntities"/>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaGroup.groupContents">
            <summary>
            Private member to hold a collection of media objects that are effectively the same content, yet different representations.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaGroup.mediaObjectRatings">
            <summary>
            Private member to hold the permissible audiences for the media group.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaGroup.mediaObjectTitle">
            <summary>
            Private member to hold the title of the media group.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaGroup.mediaObjectDescription">
            <summary>
            Private member to hold a short description of the media group.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaGroup.mediaObjectKeywords">
            <summary>
            Private member to hold the relevant keywords that describe the media group.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaGroup.mediaObjectThumbnails">
            <summary>
            Private member to hold the representative images for the media group.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaGroup.mediaObjectCategories">
            <summary>
            Private member to hold a taxonomy that gives an indication of the type of content for the media group.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaGroup.mediaObjectHashes">
            <summary>
            Private member to hold the hash digests for the media group.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaGroup.mediaObjectPlayer">
            <summary>
            Private member to hold a web browser media player console the media group can be accessed through.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaGroup.mediaObjectCredits">
            <summary>
            Private member to hold the entities that contributed to the creation of the media group.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaGroup.mediaObjectCopyright">
            <summary>
            Private member to hold the copyright information for the media group.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaGroup.mediaObjectTextSeries">
            <summary>
            Private member to hold the text transcript, closed captioning, or lyrics for the media group.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaGroup.mediaObjectRestrictions">
            <summary>
            Private member to hold the restrictions to be placed on aggregators that are rendering the media group.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaGroup.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaGroup"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaGroup.Load(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads this <see cref="T:Argotic.Extensions.Core.YahooMediaGroup"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.YahooMediaGroup"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.YahooMediaGroup"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaGroup.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.YahooMediaGroup"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaGroup.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaGroup"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaGroup"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaGroup.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaGroup.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaGroup.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaGroup.op_Equality(Argotic.Extensions.Core.YahooMediaGroup,Argotic.Extensions.Core.YahooMediaGroup)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaGroup.op_Inequality(Argotic.Extensions.Core.YahooMediaGroup,Argotic.Extensions.Core.YahooMediaGroup)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaGroup.op_LessThan(Argotic.Extensions.Core.YahooMediaGroup,Argotic.Extensions.Core.YahooMediaGroup)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaGroup.op_GreaterThan(Argotic.Extensions.Core.YahooMediaGroup,Argotic.Extensions.Core.YahooMediaGroup)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaGroup.Contents">
            <summary>
            Gets a collection of media objects that are effectively the same content, yet different representations.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> objects that represent media objects that are effectively the same content, yet different representations. 
                The default value is an <i>empty</i> collection.
            </value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaGroup.Categories">
            <summary>
            Gets a taxonomy that gives an indication of the type of content for this media group.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaCategory"/> objects that represent a taxonomy that gives an indication to the type of content for this media group. 
                The default value is an <i>empty</i> collection.
            </value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaGroup.Copyright">
            <summary>
            Gets or sets the copyright information for this media group.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.YahooMediaCopyright"/> that represents the copyright information for this media group.</value>
            <remarks>
                If the media is operating under a <i>Creative Commons license</i>, a <see cref="T:Argotic.Extensions.Core.CreativeCommonsSyndicationExtension">Creative Commons extension</see> should be used instead.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaGroup.Credits">
            <summary>
            Gets the entities that contributed to the creation of this media group.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaCredit"/> objects that represent the entities that contributed to the creation of this media group. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                Current entities can include people, companies, locations, etc. Specific entities can have multiple roles, 
                and several entities can have the same role. These should appear as distinct <see cref="T:Argotic.Extensions.Core.YahooMediaCredit"/> entities.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaGroup.Description">
            <summary>
            Gets or sets the description of this media group.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstruct"/> that represents a short description of this media group.</value>
            <remarks>
                Media object descriptions are typically a sentence in length.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaGroup.Hashes">
            <summary>
            Gets the hash digests for this media group.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaHash"/> objects that represent the hash digests for this media group. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                When assigning multiple hashes, each <see cref="T:Argotic.Extensions.Core.YahooMediaHash"/> <b>must</b> have a different <see cref="P:Argotic.Extensions.Core.YahooMediaHash.Algorithm"/>.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaGroup.Keywords">
            <summary>
            Gets the relevant keywords that describe this media group.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:System.String"/> objects that represent the relevant keywords that describe this media group. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                Media objects are typically assigned maximum of ten keywords or phrases.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaGroup.Player">
            <summary>
            Gets or sets a web browser media player console this media group can be accessed through.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.YahooMediaPlayer"/> that represents a web browser media player console this media group can be accessed through.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaGroup.Ratings">
            <summary>
            Gets the permissible audiences for this media group.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaRating"/> objects that represent the permissible audiences for this media group. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                If there are no ratings specified, it can be assumed that no restrictions are necessary.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaGroup.Restrictions">
            <summary>
            Gets the restrictions to be placed on aggregators that are rendering this media group.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaRestriction"/> objects that represent restrictions to be placed on aggregators that are rendering this media group. 
                The default value is an <i>empty</i> collection.
            </value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaGroup.TextSeries">
            <summary>
            Gets the text transcript, closed captioning, or lyrics for this media group.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaText"/> objects that represent text transcript, closed captioning, or lyrics for this media group. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                Many of these <see cref="T:Argotic.Extensions.Core.YahooMediaText"/> objects are permitted to provide a time series of text. 
                In such cases, it is encouraged, but not required, that the <see cref="T:Argotic.Extensions.Core.YahooMediaText"/> objects be grouped by language and appear in time sequence order based on the start time. 
                <see cref="T:Argotic.Extensions.Core.YahooMediaText"/> objects can have overlapping start and end times.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaGroup.Thumbnails">
            <summary>
            Gets the representative images for this media group.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.YahooMediaThumbnail"/> objects that represent images that are representative of this media group. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                If multiple thumbnails are included, and time coding is not at play, it is assumed that the images are in order of importance.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaGroup.Title">
            <summary>
            Gets or sets the title of this media group.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.YahooMediaTextConstruct"/> that represents the title of this media group.</value>
        </member>
        <member name="T:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension">
            <summary>
            Extends syndication specifications to provide a means exposing comments made against feed content.
            </summary>
            <remarks>
                <para>
                    The <see cref="T:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension"/> extends syndicated content to specify the human and machine readable endpoints for users to provide commentary on published content. 
                    This syndication extension conforms to the <b>Well-Formed Web Comment API</b> 1.0 specification, which can be found 
                    at <a href="http://wellformedweb.org/news/wfw_namespace_elements/">http://wellformedweb.org/news/wfw_namespace_elements/</a>.
                </para>
            </remarks>
            <example>
                <code lang="cs" title="The following code example demonstrates the usage of the WellFormedWebCommentsSyndicationExtension class.">
                    <code source="..\..\Documentation\Microsoft .NET 2.0\CodeExamplesLibrary\Extensions\Core\WellFormedWebCommentsSyndicationExtensionExample.cs" region="WellFormedWebCommentsSyndicationExtension"/>
                </code>
            </example>
        </member>
        <member name="F:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension.extensionContext">
            <summary>
            Private member to hold specific information about the extension.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension.MatchByType(Argotic.Extensions.ISyndicationExtension)">
            <summary>
            Predicate delegate that returns a value indicating if the supplied <see cref="T:Argotic.Extensions.ISyndicationExtension"/> 
            represents the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>.
            </summary>
            <param name="extension">The <see cref="T:Argotic.Extensions.ISyndicationExtension"/> to be compared.</param>
            <returns><b>true</b> if the <paramref name="extension"/> is the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>; otherwise, <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="extension"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XPath.IXPathNavigable"/>.
            </summary>
            <param name="source">The <b>IXPathNavigable</b> used to load this <see cref="T:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension.Load(System.Xml.XmlReader)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XmlReader"/>.
            </summary>
            <param name="reader">The <b>XmlReader</b> used to load this <see cref="T:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension"/> was able to be initialized using the supplied <paramref name="reader"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="reader"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Writes the syndication extension to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the syndication extension.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension.op_Equality(Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension,Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension.op_Inequality(Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension,Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension.op_LessThan(Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension,Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension.op_GreaterThan(Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension,Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtension.Context">
            <summary>
            Gets or sets the <see cref="T:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtensionContext"/> object associated with this extension.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.WellFormedWebCommentsSyndicationExtensionContext"/> object that contains information associated with the current syndication extension.</value>
            <remarks>
                The <b>Context</b> encapsulates all of the syndication extension information that can be retrieved or written to an extended syndication entity. 
                Its purpose is to prevent property naming collisions between the base <see cref="T:Argotic.Extensions.SyndicationExtension"/> class and any custom properties that 
                are defined for the custom syndication extension.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.LiveJournalMood">
            <summary>
            Represents the current mood of a LiveJournal entry.
            </summary>
            <seealso cref="P:Argotic.Extensions.Core.LiveJournalSyndicationExtensionContext.Mood"/>
        </member>
        <member name="F:Argotic.Extensions.Core.LiveJournalMood.moodContent">
            <summary>
            Private member to hold the textual content of the current mood.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.LiveJournalMood.moodIdentifier">
            <summary>
            Private member to hold a site specific identifier for the current mood.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalMood.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.LiveJournalMood"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalMood.Load(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads this <see cref="T:Argotic.Extensions.Core.LiveJournalMood"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.LiveJournalMood"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.LiveJournalMood"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalMood.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.LiveJournalMood"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalMood.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.LiveJournalMood"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.LiveJournalMood"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalMood.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalMood.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalMood.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalMood.op_Equality(Argotic.Extensions.Core.LiveJournalMood,Argotic.Extensions.Core.LiveJournalMood)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalMood.op_Inequality(Argotic.Extensions.Core.LiveJournalMood,Argotic.Extensions.Core.LiveJournalMood)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalMood.op_LessThan(Argotic.Extensions.Core.LiveJournalMood,Argotic.Extensions.Core.LiveJournalMood)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalMood.op_GreaterThan(Argotic.Extensions.Core.LiveJournalMood,Argotic.Extensions.Core.LiveJournalMood)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.LiveJournalMood.Content">
            <summary>
            Gets or sets the textual content that describes this mood.
            </summary>
            <value>The textual or entity encoded content that describes this mood.</value>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is an empty string.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.LiveJournalMood.Id">
            <summary>
            Gets or sets a site specific identifier for this mood.
            </summary>
            <value>A site specific identifier for this mood. The default value is <see cref="F:System.Int32.MinValue"/>, which indicates no identifier was specified.</value>
        </member>
        <member name="T:Argotic.Extensions.Core.YahooMediaRestriction">
            <summary>
            Represents a means of allowing restrictions to be placed on the aggregator rendering the media in the feed.
            </summary>
            <remarks>
                <para>
                    Currently, restrictions are based on <b>distributor</b> or <b>country code</b>. 
                    A <see cref="T:Argotic.Extensions.Core.YahooMediaRestriction"/> is purely informational and no obligation can be assumed or implied. 
                    Only one <see cref="T:Argotic.Extensions.Core.YahooMediaRestriction"/> object of the same type can be applied to a media object, all others will be ignored.
                </para>
            </remarks>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaRestriction.restrictionRelationship">
            <summary>
            Private member to hold the type of relationship that the restriction represents.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaRestriction.restrictionType">
            <summary>
            Private member to hold the type of media that a restriction applies to.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaRestriction.restrictionEntities">
            <summary>
            Private member to hold the entities the restriction applies to.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRestriction.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaRestriction"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRestriction.RelationshipAsString(Argotic.Extensions.Core.YahooMediaRestrictionRelationship)">
            <summary>
            Returns the relationship identifier for the supplied <see cref="T:Argotic.Extensions.Core.YahooMediaRestrictionRelationship"/>.
            </summary>
            <param name="relationship">The <see cref="T:Argotic.Extensions.Core.YahooMediaRestrictionRelationship"/> to get the relationship identifier for.</param>
            <returns>The relationship identifier for the supplied <paramref name="relationship"/>, otherwise returns an empty string.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRestriction.RelationshipByName(System.String)">
            <summary>
            Returns the <see cref="T:Argotic.Extensions.Core.YahooMediaRestrictionRelationship"/> enumeration value that corresponds to the specified relationship name.
            </summary>
            <param name="name">The name of the relationship.</param>
            <returns>A <see cref="T:Argotic.Extensions.Core.YahooMediaRestrictionRelationship"/> enumeration value that corresponds to the specified string, otherwise returns <b>YahooMediaRestrictionRelationship.None</b>.</returns>
            <remarks>This method disregards case of specified relationship name.</remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRestriction.RestrictionTypeAsString(Argotic.Extensions.Core.YahooMediaRestrictionType)">
            <summary>
            Returns the restriction type identifier for the supplied <see cref="T:Argotic.Extensions.Core.YahooMediaRestrictionType"/>.
            </summary>
            <param name="type">The <see cref="T:Argotic.Extensions.Core.YahooMediaRestrictionType"/> to get the restriction type identifier for.</param>
            <returns>The restriction type identifier for the supplied <paramref name="type"/>, otherwise returns an empty string.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRestriction.RestrictionTypeByName(System.String)">
            <summary>
            Returns the <see cref="T:Argotic.Extensions.Core.YahooMediaRestrictionType"/> enumeration value that corresponds to the specified restriction type name.
            </summary>
            <param name="name">The name of the restriction type.</param>
            <returns>A <see cref="T:Argotic.Extensions.Core.YahooMediaRestrictionType"/> enumeration value that corresponds to the specified string, otherwise returns <b>YahooMediaRestrictionType.None</b>.</returns>
            <remarks>This method disregards case of specified restriction type name.</remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRestriction.Load(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads this <see cref="T:Argotic.Extensions.Core.YahooMediaRestriction"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.YahooMediaRestriction"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.YahooMediaRestriction"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRestriction.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.YahooMediaRestriction"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRestriction.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaRestriction"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaRestriction"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRestriction.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRestriction.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRestriction.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRestriction.op_Equality(Argotic.Extensions.Core.YahooMediaRestriction,Argotic.Extensions.Core.YahooMediaRestriction)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRestriction.op_Inequality(Argotic.Extensions.Core.YahooMediaRestriction,Argotic.Extensions.Core.YahooMediaRestriction)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRestriction.op_LessThan(Argotic.Extensions.Core.YahooMediaRestriction,Argotic.Extensions.Core.YahooMediaRestriction)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaRestriction.op_GreaterThan(Argotic.Extensions.Core.YahooMediaRestriction,Argotic.Extensions.Core.YahooMediaRestriction)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaRestriction.Entities">
            <summary>
            Gets the entities this restriction applies to.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:System.String"/> objects that represent the entities this restriction applies to. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                <para>
                    To allow a producer to explicitly declare their intentions, two literal entity names are reserved: <b>all</b> and <b>none</b>. These literals can <u>only</u> be used once.
                </para>
                <para>
                    When the restriction <see cref="P:Argotic.Extensions.Core.YahooMediaRestriction.EntityType"/> is <see cref="F:Argotic.Extensions.Core.YahooMediaRestrictionType.Uri"/> the elements in this collection should represent distributor <see cref="T:System.Uri">Uri's</see>.
                </para>
                <para>
                    When the restriction <see cref="P:Argotic.Extensions.Core.YahooMediaRestriction.EntityType"/> is <see cref="F:Argotic.Extensions.Core.YahooMediaRestrictionType.Country"/> the elements in this collection should represent country codes. 
                    See <a href="http://www.iso.org/iso/country_codes/iso_3166_code_lists/english_country_names_and_code_elements.htm">ISO 3166</a> for a listing of the permissible country codes.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaRestriction.EntityType">
            <summary>
            Gets or sets the type of media that this restriction applies to.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.YahooMediaRestrictionType"/> enumeration value that indicates the type of media that this restriction applies to.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaRestriction.Relationship">
            <summary>
            Gets or sets the type of relationship that this restriction represents.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.YahooMediaRestrictionRelationship"/> enumeration value that indicates the type of relationship that this restriction represents.</value>
        </member>
        <member name="T:Argotic.Extensions.Core.TrackbackSyndicationExtension">
            <summary>
            Extends syndication specifications to provide a means of communicating where to send Trackback peer-to-peer notification pings.
            </summary>
            <remarks>
                <para>
                    The <see cref="T:Argotic.Extensions.Core.TrackbackSyndicationExtension"/> extends syndicated content to specify a means of enabling communication between websites. 
                    This syndication extension conforms to the <b>TrackBack Module for RSS 1.0/2.0</b> 1.0 specification, which can be found 
                    at <a href="http://madskills.com/public/xml/rss/module/trackback/">http://madskills.com/public/xml/rss/module/trackback/</a>.
                </para>
            </remarks>
            <example>
                <code lang="cs" title="The following code example demonstrates the usage of the TrackbackSyndicationExtension class.">
                    <code source="..\..\Documentation\Microsoft .NET 2.0\CodeExamplesLibrary\Extensions\Core\TrackbackSyndicationExtensionExample.cs" region="TrackbackSyndicationExtension"/>
                </code>
            </example>
        </member>
        <member name="F:Argotic.Extensions.Core.TrackbackSyndicationExtension.extensionContext">
            <summary>
            Private member to hold specific information about the extension.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.TrackbackSyndicationExtension.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.TrackbackSyndicationExtension"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.TrackbackSyndicationExtension.MatchByType(Argotic.Extensions.ISyndicationExtension)">
            <summary>
            Predicate delegate that returns a value indicating if the supplied <see cref="T:Argotic.Extensions.ISyndicationExtension"/> 
            represents the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>.
            </summary>
            <param name="extension">The <see cref="T:Argotic.Extensions.ISyndicationExtension"/> to be compared.</param>
            <returns><b>true</b> if the <paramref name="extension"/> is the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>; otherwise, <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="extension"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.TrackbackSyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XPath.IXPathNavigable"/>.
            </summary>
            <param name="source">The <b>IXPathNavigable</b> used to load this <see cref="T:Argotic.Extensions.Core.TrackbackSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.TrackbackSyndicationExtension"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.TrackbackSyndicationExtension.Load(System.Xml.XmlReader)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XmlReader"/>.
            </summary>
            <param name="reader">The <b>XmlReader</b> used to load this <see cref="T:Argotic.Extensions.Core.TrackbackSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.TrackbackSyndicationExtension"/> was able to be initialized using the supplied <paramref name="reader"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="reader"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.TrackbackSyndicationExtension.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Writes the syndication extension to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the syndication extension.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.TrackbackSyndicationExtension.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.TrackbackSyndicationExtension"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.TrackbackSyndicationExtension"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.TrackbackSyndicationExtension.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.TrackbackSyndicationExtension.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.TrackbackSyndicationExtension.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.TrackbackSyndicationExtension.op_Equality(Argotic.Extensions.Core.TrackbackSyndicationExtension,Argotic.Extensions.Core.TrackbackSyndicationExtension)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.TrackbackSyndicationExtension.op_Inequality(Argotic.Extensions.Core.TrackbackSyndicationExtension,Argotic.Extensions.Core.TrackbackSyndicationExtension)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.TrackbackSyndicationExtension.op_LessThan(Argotic.Extensions.Core.TrackbackSyndicationExtension,Argotic.Extensions.Core.TrackbackSyndicationExtension)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.TrackbackSyndicationExtension.op_GreaterThan(Argotic.Extensions.Core.TrackbackSyndicationExtension,Argotic.Extensions.Core.TrackbackSyndicationExtension)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.TrackbackSyndicationExtension.Context">
            <summary>
            Gets or sets the <see cref="T:Argotic.Extensions.Core.TrackbackSyndicationExtensionContext"/> object associated with this extension.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.TrackbackSyndicationExtensionContext"/> object that contains information associated with the current syndication extension.</value>
            <remarks>
                The <b>Context</b> encapsulates all of the syndication extension information that can be retrieved or written to an extended syndication entity. 
                Its purpose is to prevent property naming collisions between the base <see cref="T:Argotic.Extensions.SyndicationExtension"/> class and any custom properties that 
                are defined for the custom syndication extension.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtensionContext">
            <summary>
            Encapsulates specific information about an individual <see cref="T:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtension"/>.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtensionContext.extensionUpdatePeriod">
            <summary>
            Private member to hold the period over which the feed format is updated.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtensionContext.extensionUpdateFrequency">
            <summary>
            Private member to hold the frequency of updates in relation to the update period.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtensionContext.extensionUpdateBase">
            <summary>
            Private member to hold a base date to be used in concert with period and frequency to calculate the publishing schedule.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtensionContext.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtensionContext"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtensionContext.Load(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtensionContext.WriteTo(System.Xml.XmlWriter,System.String)">
            <summary>
            Writes the current context to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the current context.</param>
            <param name="xmlNamespace">The XML namespace used to qualify prefixed syndication extension elements and attributes.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtensionContext.Base">
            <summary>
            Gets or sets the base date to be used in concert with period and frequency to calculate the publishing schedule.
            </summary>
            <value>
                A <see cref="T:System.DateTime"/> that represents the base date to be used in concert with period and frequency to calculate the publishing schedule. 
                The default value is <see cref="F:System.DateTime.MinValue"/>, which indicates no base date was specified.
            </value>
            <remarks>
                The <see cref="T:System.DateTime"/> should be provided in Coordinated Universal Time (UTC).
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtensionContext.Frequency">
            <summary>
            Gets or sets the frequency of updates in relation to the update period.
            </summary>
            <value>The frequency of updates in relation to the update period.</value>
            <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="value"/> is less than <b>1</b>.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.SiteSummaryUpdateSyndicationExtensionContext.Period">
            <summary>
            Gets or sets the period over which the feed format is updated.
            </summary>
            <value>
                A <see cref="T:Argotic.Extensions.Core.SiteSummaryUpdatePeriod"/> enumeration value that indicates the period over which the feed format is updated. 
                The default value is <see cref="F:Argotic.Extensions.Core.SiteSummaryUpdatePeriod.None"/>, which indicates that no update period was specified.
            </value>
        </member>
        <member name="T:Argotic.Extensions.Core.PingbackSyndicationExtensionContext">
            <summary>
            Encapsulates specific information about an individual <see cref="T:Argotic.Extensions.Core.PingbackSyndicationExtension"/>.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.PingbackSyndicationExtensionContext.extensionServer">
            <summary>
            Private member to hold the URL of the Pingback server.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.PingbackSyndicationExtensionContext.extensionTarget">
            <summary>
            Private member to hold the value that should be used as the target in a ping.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.PingbackSyndicationExtensionContext.extensionAbouts">
            <summary>
            Private member to hold the targets that were pinged in reference.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.PingbackSyndicationExtensionContext.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.PingbackSyndicationExtensionContext"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.PingbackSyndicationExtensionContext.Load(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.PingbackSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.PingbackSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.PingbackSyndicationExtensionContext.WriteTo(System.Xml.XmlWriter,System.String)">
            <summary>
            Writes the current context to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the current context.</param>
            <param name="xmlNamespace">The XML namespace used to qualify prefixed syndication extension elements and attributes.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.PingbackSyndicationExtensionContext.Abouts">
            <summary>
            Gets the targets that were pinged in reference.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:System.Uri"/> objects that represent targets that were pinged in reference. 
                The default value is an <i>empty</i> collection.
            </value>
        </member>
        <member name="P:Argotic.Extensions.Core.PingbackSyndicationExtensionContext.Server">
            <summary>
            Gets or sets the URL of the Pingback server.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents the URL of the Pingback server.</value>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.PingbackSyndicationExtensionContext.Target">
            <summary>
            Gets or sets the value that should be used as the <i>targetURI</i> in a ping.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents the value that should be used as the <i>targetURI</i> in a ping.</value>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.ITunesSyndicationExtension">
            <summary>
            Extends syndication specifications to provide a means of describing iTunes podcasting information.
            </summary>
            <remarks>
                <para>
                    The <see cref="T:Argotic.Extensions.Core.ITunesSyndicationExtension"/> extends syndicated content to specify iTunes podcasting information. This syndication extension conforms to the 
                    <b>iTunes RSS Tags</b> 1.0 specification, which can be found at <a href="http://www.apple.com/itunes/store/podcaststechspecs.html#rss">http://www.apple.com/itunes/store/podcaststechspecs.html#rss</a>.
                </para>
            </remarks>
            <example>
                <code lang="cs" title="The following code example demonstrates the usage of the ITunesSyndicationExtension class.">
                    <code source="..\..\Documentation\Microsoft .NET 2.0\CodeExamplesLibrary\Extensions\Core\ITunesSyndicationExtensionExample.cs" region="ITunesSyndicationExtension"/>
                </code>
            </example>
        </member>
        <member name="F:Argotic.Extensions.Core.ITunesSyndicationExtension.extensionContext">
            <summary>
            Private member to hold specific information about the extension.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesSyndicationExtension.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.ITunesSyndicationExtension"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesSyndicationExtension.CompareSequence(System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.ITunesCategory},System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.ITunesCategory})">
            <summary>
            Compares two specified <see cref="T:System.Collections.ObjectModel.Collection`1"/> collections.
            </summary>
            <param name="source">The first collection.</param>
            <param name="target">The second collection.</param>
            <returns>A 32-bit signed integer indicating the lexical relationship between the two comparands.</returns>
            <remarks>
                <para>
                    If the collections contain the same number of elements, determines the lexical relationship between the two sequences of comparands.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>greater than</i> the <paramref name="target"/> element count, returns <b>1</b>.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>less than</i> the <paramref name="target"/> element count, returns <b>-1</b>.
                </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="target"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesSyndicationExtension.ExplicitMaterialAsString(Argotic.Extensions.Core.ITunesExplicitMaterial)">
            <summary>
            Returns the cloud protocol identifier for the supplied <see cref="T:Argotic.Extensions.Core.ITunesExplicitMaterial"/>.
            </summary>
            <param name="material">The <see cref="T:Argotic.Extensions.Core.ITunesExplicitMaterial"/> to get the explicit material identifier for.</param>
            <returns>The explicit material identifier for the supplied <paramref name="material"/>, otherwise returns an empty string.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesSyndicationExtension.ExplicitMaterialByName(System.String)">
            <summary>
            Returns the <see cref="T:Argotic.Extensions.Core.ITunesExplicitMaterial"/> enumeration value that corresponds to the specified explicit material name.
            </summary>
            <param name="name">The name of the explicit material.</param>
            <returns>A <see cref="T:Argotic.Extensions.Core.ITunesExplicitMaterial"/> enumeration value that corresponds to the specified string, otherwise returns <b>ITunesExplicitMaterial.None</b>.</returns>
            <remarks>This method disregards case of specified explicit material name.</remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesSyndicationExtension.MatchByType(Argotic.Extensions.ISyndicationExtension)">
            <summary>
            Predicate delegate that returns a value indicating if the supplied <see cref="T:Argotic.Extensions.ISyndicationExtension"/> 
            represents the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>.
            </summary>
            <param name="extension">The <see cref="T:Argotic.Extensions.ISyndicationExtension"/> to be compared.</param>
            <returns><b>true</b> if the <paramref name="extension"/> is the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>; otherwise, <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="extension"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesSyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XPath.IXPathNavigable"/>.
            </summary>
            <param name="source">The <b>IXPathNavigable</b> used to load this <see cref="T:Argotic.Extensions.Core.ITunesSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.ITunesSyndicationExtension"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesSyndicationExtension.Load(System.Xml.XmlReader)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XmlReader"/>.
            </summary>
            <param name="reader">The <b>XmlReader</b> used to load this <see cref="T:Argotic.Extensions.Core.ITunesSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.ITunesSyndicationExtension"/> was able to be initialized using the supplied <paramref name="reader"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="reader"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesSyndicationExtension.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Writes the syndication extension to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the syndication extension.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesSyndicationExtension.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.ITunesSyndicationExtension"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.ITunesSyndicationExtension"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesSyndicationExtension.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesSyndicationExtension.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesSyndicationExtension.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesSyndicationExtension.op_Equality(Argotic.Extensions.Core.ITunesSyndicationExtension,Argotic.Extensions.Core.ITunesSyndicationExtension)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesSyndicationExtension.op_Inequality(Argotic.Extensions.Core.ITunesSyndicationExtension,Argotic.Extensions.Core.ITunesSyndicationExtension)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesSyndicationExtension.op_LessThan(Argotic.Extensions.Core.ITunesSyndicationExtension,Argotic.Extensions.Core.ITunesSyndicationExtension)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesSyndicationExtension.op_GreaterThan(Argotic.Extensions.Core.ITunesSyndicationExtension,Argotic.Extensions.Core.ITunesSyndicationExtension)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.ITunesSyndicationExtension.Context">
            <summary>
            Gets or sets the <see cref="T:Argotic.Extensions.Core.ITunesSyndicationExtensionContext"/> object associated with this extension.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.ITunesSyndicationExtensionContext"/> object that contains information associated with the current syndication extension.</value>
            <remarks>
                The <b>Context</b> encapsulates all of the syndication extension information that can be retrieved or written to an extended syndication entity. 
                Its purpose is to prevent property naming collisions between the base <see cref="T:Argotic.Extensions.SyndicationExtension"/> class and any custom properties that 
                are defined for the custom syndication extension.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension">
            <summary>
            Extends syndication specifications to provide a meta-data element resource description vocabulary.
            </summary>
            <remarks>
                <para>
                    The <see cref="T:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension"/> extends syndicated content to specify a vocabulary of fifteen properties for use in resource description. 
                    This syndication extension conforms to the <b>Dublin Core Metadata Element Set</b> 1.1 specification, which can be found 
                    at <a href="http://dublincore.org/documents/dces/">http://dublincore.org/documents/dces/</a>.
                </para>
            </remarks>
            <example>
                <code lang="cs" title="The following code example demonstrates the usage of the DublinCoreElementSetSyndicationExtension class.">
                    <code source="..\..\Documentation\Microsoft .NET 2.0\CodeExamplesLibrary\Extensions\Core\DublinCoreElementSetSyndicationExtensionExample.cs" region="DublinCoreElementSetSyndicationExtension"/>
                </code>
            </example>
        </member>
        <member name="F:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension.extensionContext">
            <summary>
            Private member to hold specific information about the extension.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension.MatchByType(Argotic.Extensions.ISyndicationExtension)">
            <summary>
            Predicate delegate that returns a value indicating if the supplied <see cref="T:Argotic.Extensions.ISyndicationExtension"/> 
            represents the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>.
            </summary>
            <param name="extension">The <see cref="T:Argotic.Extensions.ISyndicationExtension"/> to be compared.</param>
            <returns><b>true</b> if the <paramref name="extension"/> is the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>; otherwise, <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="extension"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension.TypeVocabularyAsString(Argotic.Extensions.Core.DublinCoreTypeVocabularies)">
            <summary>
            Returns the type vocabulary identifier for the supplied <see cref="T:Argotic.Extensions.Core.DublinCoreTypeVocabularies"/>.
            </summary>
            <param name="vocabulary">The <see cref="T:Argotic.Extensions.Core.DublinCoreTypeVocabularies"/> to get the type vocabulary identifier for.</param>
            <returns>The type vocabulary identifier for the supplied <paramref name="vocabulary"/>, otherwise returns an empty string.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension.TypeVocabularyByName(System.String)">
            <summary>
            Returns the <see cref="T:Argotic.Extensions.Core.DublinCoreTypeVocabularies"/> enumeration value that corresponds to the specified type vocabulary name.
            </summary>
            <param name="name">The name of the type vocabulary.</param>
            <returns>A <see cref="T:Argotic.Extensions.Core.DublinCoreTypeVocabularies"/> enumeration value that corresponds to the specified string, otherwise returns <b>DublinCoreTypeVocabularies.None</b>.</returns>
            <remarks>This method disregards case of specified type vocabulary name.</remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XPath.IXPathNavigable"/>.
            </summary>
            <param name="source">The <b>IXPathNavigable</b> used to load this <see cref="T:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension.Load(System.Xml.XmlReader)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XmlReader"/>.
            </summary>
            <param name="reader">The <b>XmlReader</b> used to load this <see cref="T:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension"/> was able to be initialized using the supplied <paramref name="reader"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="reader"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Writes the syndication extension to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the syndication extension.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension.op_Equality(Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension,Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension.op_Inequality(Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension,Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension.op_LessThan(Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension,Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension.op_GreaterThan(Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension,Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtension.Context">
            <summary>
            Gets or sets the <see cref="T:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext"/> object associated with this extension.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.DublinCoreElementSetSyndicationExtensionContext"/> object that contains information associated with the current syndication extension.</value>
            <remarks>
                The <b>Context</b> encapsulates all of the syndication extension information that can be retrieved or written to an extended syndication entity. 
                Its purpose is to prevent property naming collisions between the base <see cref="T:Argotic.Extensions.SyndicationExtension"/> class and any custom properties that 
                are defined for the custom syndication extension.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.SimpleListSort">
            <summary>
            Represents information that enables the publisher to indicate to the client that the property to which it refers is one that is <i>sortable</i>, 
            meaning that the client should provide a user interface that allows the user to sort on that property.
            </summary>
            <remarks>
                <para>
                    This informational entity makes reference to XML elements that are child-elements within the items of the same feed, using the supported extension mechanism of the feed format. 
                    This entity can also be used to provide a label for the default sort that appears in the list.
                </para>
                <para>
                    The value which is to be sorted <b>must be</b> the text content of the element itself (i.e. the character data contained in the element). 
                    Values of attributes or nested elements <b>cannot</b> be used for sorting. The property referred to must have no child-elements. 
                    In general, only one instance of a property should appear in each item. Clients are free to ignore repeated instances of properties.
                </para>
            </remarks>
            <seealso cref="P:Argotic.Extensions.Core.SimpleListSyndicationExtensionContext.Sorting"/>
        </member>
        <member name="F:Argotic.Extensions.Core.SimpleListSort.sortNamespace">
            <summary>
            Private member to hold the full namespace used in the sortable property.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SimpleListSort.sortElement">
            <summary>
            Private member to hold the name of the sortable property.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SimpleListSort.sortLabel">
            <summary>
            Private member to hold a human-readable name for the sortable property.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SimpleListSort.sortDataType">
            <summary>
            Private member to hold the data-type of the sortable property.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SimpleListSort.sortIsDefault">
            <summary>
            Private member to hold a value indicating if the sortable property is the default sort order in the list.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSort.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.SimpleListSort"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSort.DataTypeAsString(Argotic.Extensions.Core.SimpleListDataType)">
            <summary>
            Returns the data type identifier for the supplied <see cref="T:Argotic.Extensions.Core.SimpleListDataType"/>.
            </summary>
            <param name="type">The <see cref="T:Argotic.Extensions.Core.SimpleListDataType"/> to get the data type identifier for.</param>
            <returns>The data type identifier for the supplied <paramref name="type"/>, otherwise returns an empty string.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSort.DataTypeByName(System.String)">
            <summary>
            Returns the <see cref="T:Argotic.Extensions.Core.SimpleListDataType"/> enumeration value that corresponds to the specified data type name.
            </summary>
            <param name="name">The name of the data type.</param>
            <returns>A <see cref="T:Argotic.Extensions.Core.SimpleListDataType"/> enumeration value that corresponds to the specified string, otherwise returns <b>SimpleListDataType.None</b>.</returns>
            <remarks>This method disregards case of specified data type name.</remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSort.Load(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads this <see cref="T:Argotic.Extensions.Core.SimpleListSort"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.SimpleListSort"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.SimpleListSort"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSort.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.SimpleListSort"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSort.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.SimpleListSort"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.SimpleListSort"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSort.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSort.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSort.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSort.op_Equality(Argotic.Extensions.Core.SimpleListSort,Argotic.Extensions.Core.SimpleListSort)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSort.op_Inequality(Argotic.Extensions.Core.SimpleListSort,Argotic.Extensions.Core.SimpleListSort)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSort.op_LessThan(Argotic.Extensions.Core.SimpleListSort,Argotic.Extensions.Core.SimpleListSort)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.SimpleListSort.op_GreaterThan(Argotic.Extensions.Core.SimpleListSort,Argotic.Extensions.Core.SimpleListSort)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.SimpleListSort.DataType">
            <summary>
            Gets or sets the data-type of this sortable property.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.SimpleListDataType"/> enumeration value that represents the data-type of this sortable property. The default value is <see cref="F:Argotic.Extensions.Core.SimpleListDataType.None"/>.</value>
            <remarks>
                If the value of this property is <see cref="F:Argotic.Extensions.Core.SimpleListDataType.None"/>, it <i>should</i> be assumed default data-type of this sortable property is <see cref="F:Argotic.Extensions.Core.SimpleListDataType.Text"/>.
            </remarks>
            <seealso cref="M:Argotic.Extensions.Core.SimpleListSort.DataTypeAsString(Argotic.Extensions.Core.SimpleListDataType)"/>
            <seealso cref="M:Argotic.Extensions.Core.SimpleListSort.DataTypeByName(System.String)"/>
        </member>
        <member name="P:Argotic.Extensions.Core.SimpleListSort.Element">
            <summary>
            Get or sets the name of this sortable property.
            </summary>
            <value>The name of this sortable property. The default value is <see cref="F:System.String.Empty"/>.</value>
            <remarks>
                If this property is equal to <see cref="F:System.String.Empty"/>, it is assumed that the <see cref="P:Argotic.Extensions.Core.SimpleListSort.Label"/> property is included 
                and that this <see cref="T:Argotic.Extensions.Core.SimpleListSort"/> refers to the default sort order.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.SimpleListSort.IsDefault">
            <summary>
            Gets or sets a value indicating if this sortable property is the default sort order in the list.
            </summary>
            <value><b>true</b> if this sortable property is the default sort order in the list; otherwise <b>false</b>. The default value is <b>false</b>.</value>
            <remarks>
                The items in the list <b>must</b> be already be sorted by the element, meaning the client <b>should not</b> expect to have to resort by this field if it displaying content directly from the list. 
                The client <i>should</i> respect only the first <see cref="T:Argotic.Extensions.Core.SimpleListSort"/> that has a <see cref="P:Argotic.Extensions.Core.SimpleListSort.IsDefault"/> property with a value of <b>true</b> that it encounters.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.SimpleListSort.Label">
            <summary>
            Get or sets a human-readable name for this sortable property.
            </summary>
            <value>A human-readable name for this sortable property. The default value is <see cref="F:System.String.Empty"/>.</value>
            <remarks>
                <para>
                    If this property is <see cref="F:System.String.Empty"/>, the client should use the value of the <see cref="P:Argotic.Extensions.Core.SimpleListSort.Element"/> property as the human-readable name.
                </para>
                <para>The <see cref="P:Argotic.Extensions.Core.SimpleListSort.Label"/> property is <b>required</b> if the <see cref="P:Argotic.Extensions.Core.SimpleListSort.Element"/> property is an <i>empty string</i>.</para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.SimpleListSort.Namespace">
            <summary>
            Gets or sets the full namespace identifier used to qualify this <see cref="P:Argotic.Extensions.Core.SimpleListSort.Element"/>.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents the full namespace identifier used to qualify this <see cref="P:Argotic.Extensions.Core.SimpleListSort.Element"/> property. The default value is <b>null</b>.</value>
            <remarks>
                If the value of this property is <b>null</b>, it is assumed that the <see cref="P:Argotic.Extensions.Core.SimpleListSort.Element"/> does not live in a namespace.
            </remarks>
        </member>
        <member name="T:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtensionContext">
            <summary>
            Encapsulates specific information about an individual <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtension"/>.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtensionContext.extensionSharingInformation">
            <summary>
            Private member to hold the sharing information exposed by a syndication feed.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtensionContext.synchronizationItem">
            <summary>
            Private member to hold information required for synchronization of syndication feeds.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtensionContext.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtensionContext"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtensionContext.Load(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtensionContext.WriteTo(System.Xml.XmlWriter,System.String)">
            <summary>
            Writes the current context to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the current context.</param>
            <param name="xmlNamespace">The XML namespace used to qualify prefixed syndication extension elements and attributes.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtensionContext.Sharing">
            <summary>
            Gets or sets information from a specific feed publisher to the specific feed consumer that requested the feed.
            </summary>
            <value>
                A <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSharingInformation"/> object that represents information from a specific feed publisher to the specific feed consumer that requested the feed. 
                The default value is <b>null</b>.
            </value>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtensionContext.Synchronization">
            <summary>
            Gets or sets the information required for synchronization.
            </summary>
            <value>A <see cref="F:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtensionContext.synchronizationItem"/> object that represents the information required for synchronization.</value>
            <remarks>
                <para>
                    This is <b>required</b> of all items in all feeds wishing to participate in FeedSync-based synchronization. 
                    Since <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSharingInformation"/> is not required, feed consumers <b>must</b> consider the presence of <see cref="T:Argotic.Extensions.Core.FeedSynchronizationItem"/> in items or entries 
                    as an indication that the feed contains sync data.
                </para>
                <para>
                    It acceptable for a feed to have some items or entries with <see cref="T:Argotic.Extensions.Core.FeedSynchronizationItem"/> elements, and some without a <see cref="T:Argotic.Extensions.Core.FeedSynchronizationItem"/>. 
                    Only the items and entries that include the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationItem"/> element participate in FeedSync synchronization.
                </para>
            </remarks>
        </member>
        <member name="T:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation">
            <summary>
            Represents information about related feeds or locations.
            </summary>
            <remarks>
                In the case where a publisher’s feed has incorporated items from other feeds, it can be useful for subscribers to see more detailed information about the other feeds. 
                In the case of feed sharing as envisioned by the <i>FeedSync</i> specification, this class can also be used to notify subscribing feeds of the feeds of other participants 
                which they might also wish to subscribe to.
            </remarks>
            <seealso cref="T:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtensionContext"/>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation.relatedInformationLink">
            <summary>
            Private member to hold the URI for the related feed.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation.relatedInformationTitle">
            <summary>
            Private member to hold the name or description of the related feed.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation.relatedInformationType">
            <summary>
            Private member to hold the type of the related feed.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation.#ctor(System.Uri,Argotic.Extensions.Core.FeedSynchronizationRelatedInformationType)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation"/> class using the supplied <see cref="T:System.Uri"/> and <see cref="T:Argotic.Extensions.Core.FeedSynchronizationRelatedInformationType"/>.
            </summary>
            <param name="link">A <see cref="T:System.Uri"/> that represents the URI for this related feed.</param>
            <param name="type">A <see cref="T:Argotic.Extensions.Core.FeedSynchronizationRelatedInformationType"/> enumeration values that represents the type of the related feed.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="link"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentException">The <paramref name="type"/> is equal to <see cref="F:Argotic.Extensions.Core.FeedSynchronizationRelatedInformationType.None"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation.#ctor(System.Uri,Argotic.Extensions.Core.FeedSynchronizationRelatedInformationType,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation"/> class using the supplied <see cref="T:System.Uri"/> and <see cref="T:Argotic.Extensions.Core.FeedSynchronizationRelatedInformationType"/>.
            </summary>
            <param name="link">A <see cref="T:System.Uri"/> that represents the URI for this related feed.</param>
            <param name="type">A <see cref="T:Argotic.Extensions.Core.FeedSynchronizationRelatedInformationType"/> enumeration values that represents the type of the related feed.</param>
            <param name="title">The name or description of this related feed.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="link"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentException">The <paramref name="type"/> is equal to <see cref="F:Argotic.Extensions.Core.FeedSynchronizationRelatedInformationType.None"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation.RelationTypeAsString(Argotic.Extensions.Core.FeedSynchronizationRelatedInformationType)">
            <summary>
            Returns the relation type identifier for the supplied <see cref="T:Argotic.Extensions.Core.FeedSynchronizationRelatedInformationType"/>.
            </summary>
            <param name="type">The <see cref="T:Argotic.Extensions.Core.FeedSynchronizationRelatedInformationType"/> to get the relation type identifier for.</param>
            <returns>The relation type identifier for the supplied <paramref name="vocabulary"/>, otherwise returns an empty string.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation.RelationTypeByName(System.String)">
            <summary>
            Returns the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationRelatedInformationType"/> enumeration value that corresponds to the specified relation type name.
            </summary>
            <param name="name">The name of the relation type.</param>
            <returns>A <see cref="T:Argotic.Extensions.Core.FeedSynchronizationRelatedInformationType"/> enumeration value that corresponds to the specified string, otherwise returns <b>FeedSynchronizationRelatedInformationType.None</b>.</returns>
            <remarks>This method disregards case of specified relation type name.</remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation.Load(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads this <see cref="T:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation.op_Equality(Argotic.Extensions.Core.FeedSynchronizationRelatedInformation,Argotic.Extensions.Core.FeedSynchronizationRelatedInformation)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation.op_Inequality(Argotic.Extensions.Core.FeedSynchronizationRelatedInformation,Argotic.Extensions.Core.FeedSynchronizationRelatedInformation)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation.op_LessThan(Argotic.Extensions.Core.FeedSynchronizationRelatedInformation,Argotic.Extensions.Core.FeedSynchronizationRelatedInformation)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation.op_GreaterThan(Argotic.Extensions.Core.FeedSynchronizationRelatedInformation,Argotic.Extensions.Core.FeedSynchronizationRelatedInformation)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation.Link">
            <summary>
            Gets or sets the URI for this related feed.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents the URI for this related feed.</value>
            <remarks>
                The value <b>must not</b> be a relative reference.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation.RelationType">
            <summary>
            Gets or sets the type of the related feed.
            </summary>
            <value>
                A <see cref="T:Argotic.Extensions.Core.FeedSynchronizationRelatedInformationType"/> enumeration values that represents the type of the related feed. 
                The default value is <see cref="F:Argotic.Extensions.Core.FeedSynchronizationRelatedInformationType.None"/>, which indicates that no relation type has been specified.
            </value>
            <remarks>
                <para>
                    Publishers will generally include, in a feed, only the most recent modifications, additions, and deletions within some reasonable time window. 
                    These feeds are referred to as <i>partial feeds</i>, whereas feeds containing the complete set of items are referred to as <i>complete feeds</i>.
                </para>
                <para>
                    In the feed sharing context new subscribers, or existing subscribers failing to subscribe within the published feed window, will need to initially 
                    copy a complete set of items from a publisher before being in a position to process incremental updates. As such, the specification provides for the 
                    ability for the latter feed to reference the complete feed.
                </para>
            </remarks>
            <exception cref="T:System.ArgumentException">The <paramref name="value"/> is equal to <see cref="F:Argotic.Extensions.Core.FeedSynchronizationRelatedInformationType.None"/>.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedSynchronizationRelatedInformation.Title">
            <summary>
            Gets or sets the name or description of this related feed.
            </summary>
            <value>The name or description of this related feed.</value>
        </member>
        <member name="T:Argotic.Extensions.Core.YahooMediaThumbnail">
            <summary>
            Represents an image that can be used as a representative image for a media object.
            </summary>
            <remarks>
                <para>
                    If multiple thumbnails are associated to a media object, and time coding is not at play, it is assumed that the images are in order of importance.
                </para>
            </remarks>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaThumbnail.thumbnailUrl">
            <summary>
            Private member to hold the url of the thumbnail.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaThumbnail.thumbnailHeight">
            <summary>
            Private member to hold the height of the thumbnail.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaThumbnail.thumbnailWidth">
            <summary>
            Private member to hold the width of the thumbnail.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaThumbnail.thumbnailTime">
            <summary>
            Private member to hold the time offset in relation to the media object.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaThumbnail.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaThumbnail"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaThumbnail.#ctor(System.Uri)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaThumbnail"/> class using the supplied <see cref="T:System.Uri"/>.
            </summary>
            <param name="url">A <see cref="T:System.Uri"/> that represents the URL of this thumbnail image.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="url"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaThumbnail.#ctor(System.Uri,System.Int32,System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaThumbnail"/> class using the supplied <see cref="T:System.Uri"/>, height and width.
            </summary>
            <param name="url">A <see cref="T:System.Uri"/> that represents the URL of this thumbnail image.</param>
            <param name="height">The height of this thumbnail, typically in pixels.</param>
            <param name="width">The width of this thumbnail, typically in pixels.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="url"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaThumbnail.Load(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads this <see cref="T:Argotic.Extensions.Core.YahooMediaThumbnail"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.YahooMediaThumbnail"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.YahooMediaThumbnail"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaThumbnail.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.YahooMediaThumbnail"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaThumbnail.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaThumbnail"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaThumbnail"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaThumbnail.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaThumbnail.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaThumbnail.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaThumbnail.op_Equality(Argotic.Extensions.Core.YahooMediaThumbnail,Argotic.Extensions.Core.YahooMediaThumbnail)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaThumbnail.op_Inequality(Argotic.Extensions.Core.YahooMediaThumbnail,Argotic.Extensions.Core.YahooMediaThumbnail)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaThumbnail.op_LessThan(Argotic.Extensions.Core.YahooMediaThumbnail,Argotic.Extensions.Core.YahooMediaThumbnail)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaThumbnail.op_GreaterThan(Argotic.Extensions.Core.YahooMediaThumbnail,Argotic.Extensions.Core.YahooMediaThumbnail)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaThumbnail.Height">
            <summary>
            Gets or sets the height of this thumbnail.
            </summary>
            <value>The height of this thumbnail, typically in pixels. The default value is <see cref="F:System.Int32.MinValue"/>, which indicates that no height was specified.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaThumbnail.Time">
            <summary>
            Gets or sets the time offset in relation to the media object.
            </summary>
            <value>
                A <see cref="T:System.TimeSpan"/> that represents the time offset in relation to the media object. 
                The default value is <see cref="F:System.TimeSpan.MinValue"/>, which indicates that no time offset was specified.
            </value>
            <remarks>
                Typically this property is used when creating multiple keyframes within a single video.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaThumbnail.Url">
            <summary>
            Gets or sets the location of this thumbnail image.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents the URL of this thumbnail image.</value>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaThumbnail.Width">
            <summary>
            Gets or sets the width of this thumbnail.
            </summary>
            <value>The width of this thumbnail, typically in pixels. The default value is <see cref="F:System.Int32.MinValue"/>, which indicates that no width was specified.</value>
        </member>
        <member name="T:Argotic.Extensions.Core.YahooMediaCategory">
            <summary>
            Represents a taxonomy that gives an indication of the type of media content, and its particular contents.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaCategory.categoryScheme">
            <summary>
            Private member to hold a URI that identifies the taxonomy scheme.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaCategory.categoryLabel">
            <summary>
            Private member to hold the human readable label for the category that can be displayed in end user applications.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaCategory.categoryContent">
            <summary>
            Private member to hold the categorization taxonomy for the media object.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCategory.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaCategory"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCategory.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaCategory"/> class using the supplied text.
            </summary>
            <param name="text">A textual value that represents the categorization taxonomy for this media object.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="text"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="text"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCategory.Load(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads this <see cref="T:Argotic.Extensions.Core.YahooMediaCategory"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.YahooMediaCategory"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.YahooMediaCategory"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCategory.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.YahooMediaCategory"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCategory.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaCategory"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaCategory"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCategory.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCategory.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCategory.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCategory.op_Equality(Argotic.Extensions.Core.YahooMediaCategory,Argotic.Extensions.Core.YahooMediaCategory)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCategory.op_Inequality(Argotic.Extensions.Core.YahooMediaCategory,Argotic.Extensions.Core.YahooMediaCategory)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCategory.op_LessThan(Argotic.Extensions.Core.YahooMediaCategory,Argotic.Extensions.Core.YahooMediaCategory)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaCategory.op_GreaterThan(Argotic.Extensions.Core.YahooMediaCategory,Argotic.Extensions.Core.YahooMediaCategory)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaCategory.DefaultScheme">
            <summary>
            Gets the default categorization scheme for media objects.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents the categorization scheme for media objects, which has a value of <b>http://search.yahoo.com/mrss/category_schema</b>.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaCategory.Content">
            <summary>
            Gets or sets the categorization taxonomy for this media object.
            </summary>
            <value>A textual value that represents the categorization taxonomy for this media object.</value>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is an empty string.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaCategory.Label">
            <summary>
            Gets or sets the human readable label for this category.
            </summary>
            <value>The human readable label for this category that can be displayed in end user applications.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaCategory.Scheme">
            <summary>
            Gets or sets a URI that identifies this categorization scheme.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents this categorization scheme. The default value is <b>null</b>.</value>
            <remarks>
                If no categorization scheme is provided, the default scheme can be assumed to be <b>http://search.yahoo.com/mrss/category_schema</b>.
            </remarks>
            <seealso cref="P:Argotic.Extensions.Core.YahooMediaCategory.DefaultScheme"/>
        </member>
        <member name="T:Argotic.Extensions.Core.PingbackSyndicationExtension">
            <summary>
            Extends syndication specifications to provide a means for publishers to request notification when an entity links to their content.
            </summary>
            <remarks>
                <para>
                    The <see cref="T:Argotic.Extensions.Core.PingbackSyndicationExtension"/> extends syndicated content to specify a method for web authors to request notification when somebody links to one of their documents. 
                    This extension uses Pingback URLs in a such a way as to allow feed items to communicate the location of their Pingback server, as well as the value that should be passed as the <i>targetURI</i> when pinging.
                    This syndication extension conforms to the <b>Pingback Module for RSS 1.0/2.0</b> 1.0 specification, which can be found 
                    at <a href="http://madskills.com/public/xml/rss/module/pingback/">http://madskills.com/public/xml/rss/module/pingback/</a>.
                </para>
            </remarks>
            <example>
                <code lang="cs" title="The following code example demonstrates the usage of the PingbackSyndicationExtension class.">
                    <code source="..\..\Documentation\Microsoft .NET 2.0\CodeExamplesLibrary\Extensions\Core\PingbackSyndicationExtensionExample.cs" region="PingbackSyndicationExtension"/>
                </code>
            </example>
        </member>
        <member name="F:Argotic.Extensions.Core.PingbackSyndicationExtension.extensionContext">
            <summary>
            Private member to hold specific information about the extension.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.PingbackSyndicationExtension.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.PingbackSyndicationExtension"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.PingbackSyndicationExtension.MatchByType(Argotic.Extensions.ISyndicationExtension)">
            <summary>
            Predicate delegate that returns a value indicating if the supplied <see cref="T:Argotic.Extensions.ISyndicationExtension"/> 
            represents the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>.
            </summary>
            <param name="extension">The <see cref="T:Argotic.Extensions.ISyndicationExtension"/> to be compared.</param>
            <returns><b>true</b> if the <paramref name="extension"/> is the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>; otherwise, <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="extension"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.PingbackSyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XPath.IXPathNavigable"/>.
            </summary>
            <param name="source">The <b>IXPathNavigable</b> used to load this <see cref="T:Argotic.Extensions.Core.PingbackSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.PingbackSyndicationExtension"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.PingbackSyndicationExtension.Load(System.Xml.XmlReader)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XmlReader"/>.
            </summary>
            <param name="reader">The <b>XmlReader</b> used to load this <see cref="T:Argotic.Extensions.Core.PingbackSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.PingbackSyndicationExtension"/> was able to be initialized using the supplied <paramref name="reader"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="reader"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.PingbackSyndicationExtension.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Writes the syndication extension to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the syndication extension.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.PingbackSyndicationExtension.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.PingbackSyndicationExtension"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.PingbackSyndicationExtension"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.PingbackSyndicationExtension.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.PingbackSyndicationExtension.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.PingbackSyndicationExtension.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.PingbackSyndicationExtension.op_Equality(Argotic.Extensions.Core.PingbackSyndicationExtension,Argotic.Extensions.Core.PingbackSyndicationExtension)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.PingbackSyndicationExtension.op_Inequality(Argotic.Extensions.Core.PingbackSyndicationExtension,Argotic.Extensions.Core.PingbackSyndicationExtension)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.PingbackSyndicationExtension.op_LessThan(Argotic.Extensions.Core.PingbackSyndicationExtension,Argotic.Extensions.Core.PingbackSyndicationExtension)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.PingbackSyndicationExtension.op_GreaterThan(Argotic.Extensions.Core.PingbackSyndicationExtension,Argotic.Extensions.Core.PingbackSyndicationExtension)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.PingbackSyndicationExtension.Context">
            <summary>
            Gets or sets the <see cref="T:Argotic.Extensions.Core.PingbackSyndicationExtensionContext"/> object associated with this extension.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.PingbackSyndicationExtensionContext"/> object that contains information associated with the current syndication extension.</value>
            <remarks>
                The <b>Context</b> encapsulates all of the syndication extension information that can be retrieved or written to an extended syndication entity. 
                Its purpose is to prevent property naming collisions between the base <see cref="T:Argotic.Extensions.SyndicationExtension"/> class and any custom properties that 
                are defined for the custom syndication extension.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.LiveJournalSyndicationExtensionContext">
            <summary>
            Encapsulates specific information about an individual <see cref="T:Argotic.Extensions.Core.LiveJournalSyndicationExtension"/>.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.LiveJournalSyndicationExtensionContext.extensionMusic">
            <summary>
            Private member to hold the current music.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.LiveJournalSyndicationExtensionContext.extensionMood">
            <summary>
            Private member to hold the current mood.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.LiveJournalSyndicationExtensionContext.extensionSecurity">
            <summary>
            Private member to hold the access level. 
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.LiveJournalSyndicationExtensionContext.extensionIsPreformatted">
            <summary>
            Private member to hold a value indicating if entry has been preformatted.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.LiveJournalSyndicationExtensionContext.extensionUserPicture">
            <summary>
            Private member to hold the associated user picture.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSyndicationExtensionContext.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.LiveJournalSyndicationExtensionContext"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSyndicationExtensionContext.Load(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.LiveJournalSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.LiveJournalSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSyndicationExtensionContext.WriteTo(System.Xml.XmlWriter,System.String)">
            <summary>
            Writes the current context to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the current context.</param>
            <param name="xmlNamespace">The XML namespace used to qualify prefixed syndication extension elements and attributes.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.LiveJournalSyndicationExtensionContext.IsPreformatted">
            <summary>
            Gets or sets a value indicating if the author has requested that the entry HTML be displayed without modification.
            </summary>
            <value><b>true</b> if the author has requested that the entry HTML be displayed without modification; otherwise <b>false</b>.</value>
            <remarks>
                If <b>false</b>, newlines within the entry must be expanded into visual newlines (using the <i>br</i> tag) to be displayed properly.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.LiveJournalSyndicationExtensionContext.Mood">
            <summary>
            Gets or sets the current mood.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.LiveJournalMood"/> object that represents the current mood.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.LiveJournalSyndicationExtensionContext.Music">
            <summary>
            Gets or sets the current music.
            </summary>
            <value>Textual or entity encoded content that represents the current music.</value>
            <remarks>
                There is no standard format for presenting broken-down information such as artist or album.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.LiveJournalSyndicationExtensionContext.Security">
            <summary>
            Gets or sets the access level.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.LiveJournalSecurity"/> object that represents the access level.</value>
            <remarks>
                If absent, the entry is assumed to be <see cref="F:Argotic.Extensions.Core.LiveJournalSecurityType.Public">publicly</see> accessible. 
                All feeds requested without authentication will <b>only</b> contain public entries.
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.LiveJournalSyndicationExtensionContext.UserPicture">
            <summary>
            Gets or sets theassociated user picture.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.LiveJournalUserPicture"/> object that represents the associated user picture.</value>
            <remarks>
                If omitted, the LiveJournal entry uses the feed-level default picture.
            </remarks>
        </member>
        <member name="T:Argotic.Extensions.Core.LiveJournalSyndicationExtension">
            <summary>
            Extends syndication specifications to provide LiveJournal specific meta-data.
            </summary>
            <remarks>
                <para>
                    The <see cref="T:Argotic.Extensions.Core.LiveJournalSyndicationExtension"/> extends syndicated content to specify <a href="http://community.livejournal.com/lj_dev/">LiveJournal</a> specific metadata for entries. 
                    This syndication extension conforms to the <b>LiveJournal RSS Module</b> 2.0 specification, which can be currently found 
                    at <a href="http://neugierig.org/drop/lj/rss/">http://neugierig.org/drop/lj/rss/</a>.
                </para>
            </remarks>
            <example>
                <code lang="cs" title="The following code example demonstrates the usage of the LiveJournalSyndicationExtension class.">
                    <code source="..\..\Documentation\Microsoft .NET 2.0\CodeExamplesLibrary\Extensions\Core\LiveJournalSyndicationExtensionExample.cs" region="LiveJournalSyndicationExtension"/>
                </code>
            </example>
        </member>
        <member name="F:Argotic.Extensions.Core.LiveJournalSyndicationExtension.extensionContext">
            <summary>
            Private member to hold specific information about the extension.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSyndicationExtension.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.LiveJournalSyndicationExtension"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSyndicationExtension.MatchByType(Argotic.Extensions.ISyndicationExtension)">
            <summary>
            Predicate delegate that returns a value indicating if the supplied <see cref="T:Argotic.Extensions.ISyndicationExtension"/> 
            represents the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>.
            </summary>
            <param name="extension">The <see cref="T:Argotic.Extensions.ISyndicationExtension"/> to be compared.</param>
            <returns><b>true</b> if the <paramref name="extension"/> is the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>; otherwise, <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="extension"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XPath.IXPathNavigable"/>.
            </summary>
            <param name="source">The <b>IXPathNavigable</b> used to load this <see cref="T:Argotic.Extensions.Core.LiveJournalSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.LiveJournalSyndicationExtension"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSyndicationExtension.Load(System.Xml.XmlReader)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XmlReader"/>.
            </summary>
            <param name="reader">The <b>XmlReader</b> used to load this <see cref="T:Argotic.Extensions.Core.LiveJournalSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.LiveJournalSyndicationExtension"/> was able to be initialized using the supplied <paramref name="reader"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="reader"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSyndicationExtension.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Writes the syndication extension to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the syndication extension.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSyndicationExtension.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.LiveJournalSyndicationExtension"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.LiveJournalSyndicationExtension"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSyndicationExtension.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSyndicationExtension.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSyndicationExtension.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSyndicationExtension.op_Equality(Argotic.Extensions.Core.LiveJournalSyndicationExtension,Argotic.Extensions.Core.LiveJournalSyndicationExtension)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSyndicationExtension.op_Inequality(Argotic.Extensions.Core.LiveJournalSyndicationExtension,Argotic.Extensions.Core.LiveJournalSyndicationExtension)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSyndicationExtension.op_LessThan(Argotic.Extensions.Core.LiveJournalSyndicationExtension,Argotic.Extensions.Core.LiveJournalSyndicationExtension)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.LiveJournalSyndicationExtension.op_GreaterThan(Argotic.Extensions.Core.LiveJournalSyndicationExtension,Argotic.Extensions.Core.LiveJournalSyndicationExtension)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.LiveJournalSyndicationExtension.Context">
            <summary>
            Gets or sets the <see cref="T:Argotic.Extensions.Core.LiveJournalSyndicationExtensionContext"/> object associated with this extension.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.LiveJournalSyndicationExtensionContext"/> object that contains information associated with the current syndication extension.</value>
            <remarks>
                The <b>Context</b> encapsulates all of the syndication extension information that can be retrieved or written to an extended syndication entity. 
                Its purpose is to prevent property naming collisions between the base <see cref="T:Argotic.Extensions.SyndicationExtension"/> class and any custom properties that 
                are defined for the custom syndication extension.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.ITunesExplicitMaterial">
            <summary>
            Represents the explicit language or adult content advisory information of an iTunes podcast.
            </summary>
            <seealso cref="T:Argotic.Extensions.Core.ITunesSyndicationExtensionContext"/>
        </member>
        <member name="F:Argotic.Extensions.Core.ITunesExplicitMaterial.None">
            <summary>
            No explicit material designation specified.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.ITunesExplicitMaterial.Clean">
            <summary>
            The podcast has no explicit language or adult content included anywhere in its episodes. 
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.ITunesExplicitMaterial.No">
            <summary>
            The podcast explicit material advisory was not provided by the publisher.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.ITunesExplicitMaterial.Yes">
            <summary>
            The podcast has explicit language or adult content included in its episodes. 
            </summary>
        </member>
        <member name="T:Argotic.Extensions.Core.FeedRankSyndicationExtension">
            <summary>
            Extends syndication specifications to provide a means feed publishers to convey one or more numeric rankings for entries contained within feeds, 
            each of which can be used, independently or in conjunction with the others, to establish a sorting order.
            </summary>
            <remarks>
                <para>
                    The <see cref="T:Argotic.Extensions.Core.FeedRankSyndicationExtension"/> extends syndicated content to specify a means of numerically ranking entries within a syndication feed. 
                    This syndication extension conforms to the <b>Atom Ranking Extensions</b> 1.0 specification, which can be found 
                    at <a href="http://xml.coverpages.org/draft-snell-atompub-feed-index-10.txt">http://xml.coverpages.org/draft-snell-atompub-feed-index-10.txt</a>.
                </para>
            </remarks>
            <example>
                <code lang="cs" title="The following code example demonstrates the usage of the FeedRankSyndicationExtension class.">
                    <code source="..\..\Documentation\Microsoft .NET 2.0\CodeExamplesLibrary\Extensions\Core\FeedRankSyndicationExtensionExample.cs" region="FeedRankSyndicationExtension"/>
                </code>
            </example>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedRankSyndicationExtension.extensionContext">
            <summary>
            Private member to hold specific information about the extension.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedRankSyndicationExtension.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.FeedRankSyndicationExtension"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedRankSyndicationExtension.MatchByType(Argotic.Extensions.ISyndicationExtension)">
            <summary>
            Predicate delegate that returns a value indicating if the supplied <see cref="T:Argotic.Extensions.ISyndicationExtension"/> 
            represents the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>.
            </summary>
            <param name="extension">The <see cref="T:Argotic.Extensions.ISyndicationExtension"/> to be compared.</param>
            <returns><b>true</b> if the <paramref name="extension"/> is the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>; otherwise, <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="extension"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedRankSyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XPath.IXPathNavigable"/>.
            </summary>
            <param name="source">The <b>IXPathNavigable</b> used to load this <see cref="T:Argotic.Extensions.Core.FeedRankSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.FeedRankSyndicationExtension"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedRankSyndicationExtension.Load(System.Xml.XmlReader)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XmlReader"/>.
            </summary>
            <param name="reader">The <b>XmlReader</b> used to load this <see cref="T:Argotic.Extensions.Core.FeedRankSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.FeedRankSyndicationExtension"/> was able to be initialized using the supplied <paramref name="reader"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="reader"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedRankSyndicationExtension.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Writes the syndication extension to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the syndication extension.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedRankSyndicationExtension.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.FeedRankSyndicationExtension"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.FeedRankSyndicationExtension"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedRankSyndicationExtension.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedRankSyndicationExtension.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedRankSyndicationExtension.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedRankSyndicationExtension.op_Equality(Argotic.Extensions.Core.FeedRankSyndicationExtension,Argotic.Extensions.Core.FeedRankSyndicationExtension)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedRankSyndicationExtension.op_Inequality(Argotic.Extensions.Core.FeedRankSyndicationExtension,Argotic.Extensions.Core.FeedRankSyndicationExtension)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedRankSyndicationExtension.op_LessThan(Argotic.Extensions.Core.FeedRankSyndicationExtension,Argotic.Extensions.Core.FeedRankSyndicationExtension)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedRankSyndicationExtension.op_GreaterThan(Argotic.Extensions.Core.FeedRankSyndicationExtension,Argotic.Extensions.Core.FeedRankSyndicationExtension)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedRankSyndicationExtension.Context">
            <summary>
            Gets or sets the <see cref="T:Argotic.Extensions.Core.FeedRankSyndicationExtensionContext"/> object associated with this extension.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.FeedRankSyndicationExtensionContext"/> object that contains information associated with the current syndication extension.</value>
            <remarks>
                The <b>Context</b> encapsulates all of the syndication extension information that can be retrieved or written to an extended syndication entity. 
                Its purpose is to prevent property naming collisions between the base <see cref="T:Argotic.Extensions.SyndicationExtension"/> class and any custom properties that 
                are defined for the custom syndication extension.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.YahooMediaSyndicationExtension">
            <summary>
            Extends syndication specifications to provide a means of supplementing the enclosure capabilities of feeds.
            </summary>
            <remarks>
                <para>
                    The <see cref="T:Argotic.Extensions.Core.YahooMediaSyndicationExtension"/> extends syndicated content to extends <i>enclosures</i> to handle other media types, 
                    such as short films or TV, as well as provide additional metadata with the media. This extension enables content publishers and bloggers 
                    to syndicate multimedia content such as TV and video clips, movies, images, and audio.. This syndication extension conforms to the 
                    <b>Media RSS Module</b> 1.1.1 specification, which can be found at <a href="http://search.yahoo.com/mrss">http://search.yahoo.com/mrss</a>.
                </para>
            </remarks>
            <example>
                <code lang="cs" title="The following code example demonstrates the usage of the YahooMediaSyndicationExtension class.">
                    <code source="..\..\Documentation\Microsoft .NET 2.0\CodeExamplesLibrary\Extensions\Core\YahooMediaSyndicationExtensionExample.cs" region="YahooMediaSyndicationExtension"/>
                </code>
            </example>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaSyndicationExtension.extensionContext">
            <summary>
            Private member to hold specific information about the extension.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaSyndicationExtension.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaSyndicationExtension"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaSyndicationExtension.ExpressionAsString(Argotic.Extensions.Core.YahooMediaExpression)">
            <summary>
            Returns the content expression identifier for the supplied <see cref="T:Argotic.Extensions.Core.YahooMediaExpression"/>.
            </summary>
            <param name="expression">The <see cref="T:Argotic.Extensions.Core.YahooMediaExpression"/> to get the content expression identifier for.</param>
            <returns>The content expression identifier for the supplied <paramref name="expression"/>, otherwise returns an empty string.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaSyndicationExtension.ExpressionByName(System.String)">
            <summary>
            Returns the <see cref="T:Argotic.Extensions.Core.YahooMediaExpression"/> enumeration value that corresponds to the specified content expression name.
            </summary>
            <param name="name">The name of the content expression.</param>
            <returns>A <see cref="T:Argotic.Extensions.Core.YahooMediaExpression"/> enumeration value that corresponds to the specified string, otherwise returns <b>YahooMediaExpression.None</b>.</returns>
            <remarks>This method disregards case of specified content expression name.</remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaSyndicationExtension.MatchByType(Argotic.Extensions.ISyndicationExtension)">
            <summary>
            Predicate delegate that returns a value indicating if the supplied <see cref="T:Argotic.Extensions.ISyndicationExtension"/> 
            represents the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>.
            </summary>
            <param name="extension">The <see cref="T:Argotic.Extensions.ISyndicationExtension"/> to be compared.</param>
            <returns><b>true</b> if the <paramref name="extension"/> is the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>; otherwise, <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="extension"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaSyndicationExtension.MediumAsString(Argotic.Extensions.Core.YahooMediaMedium)">
            <summary>
            Returns the content medium identifier for the supplied <see cref="T:Argotic.Extensions.Core.YahooMediaMedium"/>.
            </summary>
            <param name="medium">The <see cref="T:Argotic.Extensions.Core.YahooMediaMedium"/> to get the content medium identifier for.</param>
            <returns>The content medium identifier for the supplied <paramref name="medium"/>, otherwise returns an empty string.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaSyndicationExtension.MediumByName(System.String)">
            <summary>
            Returns the <see cref="T:Argotic.Extensions.Core.YahooMediaMedium"/> enumeration value that corresponds to the specified content medium name.
            </summary>
            <param name="name">The name of the content medium.</param>
            <returns>A <see cref="T:Argotic.Extensions.Core.YahooMediaMedium"/> enumeration value that corresponds to the specified string, otherwise returns <b>YahooMediaMedium.None</b>.</returns>
            <remarks>This method disregards case of specified content medium name.</remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaSyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XPath.IXPathNavigable"/>.
            </summary>
            <param name="source">The <b>IXPathNavigable</b> used to load this <see cref="T:Argotic.Extensions.Core.YahooMediaSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.YahooMediaSyndicationExtension"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaSyndicationExtension.Load(System.Xml.XmlReader)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XmlReader"/>.
            </summary>
            <param name="reader">The <b>XmlReader</b> used to load this <see cref="T:Argotic.Extensions.Core.YahooMediaSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.YahooMediaSyndicationExtension"/> was able to be initialized using the supplied <paramref name="reader"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="reader"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaSyndicationExtension.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Writes the syndication extension to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the syndication extension.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaSyndicationExtension.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaSyndicationExtension"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaSyndicationExtension"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaSyndicationExtension.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaSyndicationExtension.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaSyndicationExtension.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaSyndicationExtension.op_Equality(Argotic.Extensions.Core.YahooMediaSyndicationExtension,Argotic.Extensions.Core.YahooMediaSyndicationExtension)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaSyndicationExtension.op_Inequality(Argotic.Extensions.Core.YahooMediaSyndicationExtension,Argotic.Extensions.Core.YahooMediaSyndicationExtension)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaSyndicationExtension.op_LessThan(Argotic.Extensions.Core.YahooMediaSyndicationExtension,Argotic.Extensions.Core.YahooMediaSyndicationExtension)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaSyndicationExtension.op_GreaterThan(Argotic.Extensions.Core.YahooMediaSyndicationExtension,Argotic.Extensions.Core.YahooMediaSyndicationExtension)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaSyndicationExtension.Context">
            <summary>
            Gets or sets the <see cref="T:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext"/> object associated with this extension.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.YahooMediaSyndicationExtensionContext"/> object that contains information associated with the current syndication extension.</value>
            <remarks>
                The <b>Context</b> encapsulates all of the syndication extension information that can be retrieved or written to an extended syndication entity. 
                Its purpose is to prevent property naming collisions between the base <see cref="T:Argotic.Extensions.SyndicationExtension"/> class and any custom properties that 
                are defined for the custom syndication extension.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.ITunesOwner">
            <summary>
            Represents information that will be used to contact the owner of a podcast for communication specifically about their podcast.
            </summary>
            <seealso cref="T:Argotic.Extensions.Core.ITunesSyndicationExtensionContext"/>
        </member>
        <member name="F:Argotic.Extensions.Core.ITunesOwner.ownerEmailAddress">
            <summary>
            Private member to hold the email address of the owner.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.ITunesOwner.ownerName">
            <summary>
            Private member to hold the name of the owner.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesOwner.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.ITunesOwner"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesOwner.#ctor(System.String,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.ITunesOwner"/> class using the supplied email address and name.
            </summary>
            <param name="emailAddress">The email address of this owner.</param>
            <param name="name">The name of this owner.</param>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesOwner.Load(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads this <see cref="T:Argotic.Extensions.Core.ITunesOwner"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.ITunesOwner"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.ITunesOwner"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesOwner.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.ITunesOwner"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesOwner.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.ITunesOwner"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.ITunesOwner"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesOwner.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesOwner.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesOwner.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesOwner.op_Equality(Argotic.Extensions.Core.ITunesOwner,Argotic.Extensions.Core.ITunesOwner)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesOwner.op_Inequality(Argotic.Extensions.Core.ITunesOwner,Argotic.Extensions.Core.ITunesOwner)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesOwner.op_LessThan(Argotic.Extensions.Core.ITunesOwner,Argotic.Extensions.Core.ITunesOwner)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesOwner.op_GreaterThan(Argotic.Extensions.Core.ITunesOwner,Argotic.Extensions.Core.ITunesOwner)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.ITunesOwner.EmailAddress">
            <summary>
            Gets or sets the email address of this owner.
            </summary>
            <value>The email address of this owner.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.ITunesOwner.Name">
            <summary>
            Gets or sets the name of this owner.
            </summary>
            <value>The name of this owner.</value>
        </member>
        <member name="T:Argotic.Extensions.Core.FeedHistorySyndicationExtension">
            <summary>
            Extends syndication specifications to provide a means of publishing of entries across one or more feed documents.
            </summary>
            <remarks>
                <para>
                    The <see cref="T:Argotic.Extensions.Core.FeedHistorySyndicationExtension"/> extends syndicated content to specify three types of syndicated Web feeds that enable publication 
                    of entries across one or more feed documents. This includes <i>paged</i> feeds for piecemeal access, <i>archived</i> feeds that allow reconstruction 
                    of the feed's contents, and feeds that are explicitly <i>complete</i>. This syndication extension conforms to the 
                    <b>Feed Paging and Archiving</b> 1.0 specification, which can be found at <a href="http://www.ietf.org/rfc/rfc5005.txt">http://www.ietf.org/rfc/rfc5005.txt</a>.
                </para>
            </remarks>
            <example>
                <code lang="cs" title="The following code example demonstrates the usage of the FeedHistorySyndicationExtension class.">
                    <code source="..\..\Documentation\Microsoft .NET 2.0\CodeExamplesLibrary\Extensions\Core\FeedHistorySyndicationExtensionExample.cs" region="FeedHistorySyndicationExtension"/>
                </code>
            </example>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedHistorySyndicationExtension.extensionContext">
            <summary>
            Private member to hold specific information about the extension.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistorySyndicationExtension.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.FeedHistorySyndicationExtension"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistorySyndicationExtension.CompareSequence(System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.FeedHistoryLinkRelation},System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.FeedHistoryLinkRelation})">
            <summary>
            Compares two specified <see cref="T:System.Collections.ObjectModel.Collection`1"/> collections.
            </summary>
            <param name="source">The first collection.</param>
            <param name="target">The second collection.</param>
            <returns>A 32-bit signed integer indicating the lexical relationship between the two comparands.</returns>
            <remarks>
                <para>
                    If the collections contain the same number of elements, determines the lexical relationship between the two sequences of comparands.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>greater than</i> the <paramref name="target"/> element count, returns <b>1</b>.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>less than</i> the <paramref name="target"/> element count, returns <b>-1</b>.
                </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="target"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistorySyndicationExtension.LinkRelationTypeAsString(Argotic.Extensions.Core.FeedHistoryLinkRelationType)">
            <summary>
            Returns the link relation identifier for the supplied <see cref="T:Argotic.Extensions.Core.FeedHistoryLinkRelationType"/>.
            </summary>
            <param name="relation">The <see cref="T:Argotic.Extensions.Core.FeedHistoryLinkRelationType"/> to get the link relation identifier for.</param>
            <returns>The link relation identifier for the supplied <paramref name="relation"/>, otherwise returns an empty string.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistorySyndicationExtension.LinkRelationTypeByName(System.String)">
            <summary>
            Returns the <see cref="T:Argotic.Extensions.Core.FeedHistoryLinkRelationType"/> enumeration value that corresponds to the specified link relation.
            </summary>
            <param name="name">The name of the link relation.</param>
            <returns>A <see cref="T:Argotic.Extensions.Core.FeedHistoryLinkRelationType"/> enumeration value that corresponds to the specified string, otherwise returns <b>FeedHistoryLinkRelationType.None</b>.</returns>
            <remarks>This method disregards case of specified link relation name.</remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistorySyndicationExtension.MatchByType(Argotic.Extensions.ISyndicationExtension)">
            <summary>
            Predicate delegate that returns a value indicating if the supplied <see cref="T:Argotic.Extensions.ISyndicationExtension"/> 
            represents the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>.
            </summary>
            <param name="extension">The <see cref="T:Argotic.Extensions.ISyndicationExtension"/> to be compared.</param>
            <returns><b>true</b> if the <paramref name="extension"/> is the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>; otherwise, <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="extension"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistorySyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XPath.IXPathNavigable"/>.
            </summary>
            <param name="source">The <b>IXPathNavigable</b> used to load this <see cref="T:Argotic.Extensions.Core.FeedHistorySyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.FeedHistorySyndicationExtension"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistorySyndicationExtension.Load(System.Xml.XmlReader)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XmlReader"/>.
            </summary>
            <param name="reader">The <b>XmlReader</b> used to load this <see cref="T:Argotic.Extensions.Core.FeedHistorySyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.FeedHistorySyndicationExtension"/> was able to be initialized using the supplied <paramref name="reader"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="reader"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistorySyndicationExtension.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Writes the syndication extension to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the syndication extension.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistorySyndicationExtension.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.FeedHistorySyndicationExtension"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.FeedHistorySyndicationExtension"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistorySyndicationExtension.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistorySyndicationExtension.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistorySyndicationExtension.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistorySyndicationExtension.op_Equality(Argotic.Extensions.Core.FeedHistorySyndicationExtension,Argotic.Extensions.Core.FeedHistorySyndicationExtension)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistorySyndicationExtension.op_Inequality(Argotic.Extensions.Core.FeedHistorySyndicationExtension,Argotic.Extensions.Core.FeedHistorySyndicationExtension)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistorySyndicationExtension.op_LessThan(Argotic.Extensions.Core.FeedHistorySyndicationExtension,Argotic.Extensions.Core.FeedHistorySyndicationExtension)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistorySyndicationExtension.op_GreaterThan(Argotic.Extensions.Core.FeedHistorySyndicationExtension,Argotic.Extensions.Core.FeedHistorySyndicationExtension)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedHistorySyndicationExtension.Context">
            <summary>
            Gets or sets the <see cref="T:Argotic.Extensions.Core.FeedHistorySyndicationExtensionContext"/> object associated with this extension.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.FeedHistorySyndicationExtensionContext"/> object that contains information associated with the current syndication extension.</value>
            <remarks>
                The <b>Context</b> encapsulates all of the syndication extension information that can be retrieved or written to an extended syndication entity. 
                Its purpose is to prevent property naming collisions between the base <see cref="T:Argotic.Extensions.SyndicationExtension"/> class and any custom properties that 
                are defined for the custom syndication extension.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension">
            <summary>
            Extends syndication specifications to provide a means of representing latitude, longitude and other information about spatially-located things.
            </summary>
            <remarks>
                <para>
                    The <see cref="T:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension"/> extends syndicated content to specify a basic RDF vocabulary that provides the Semantic Web community 
                    with a namespace for representing latitude, longitude and other information about spatially-located things. This syndication extension conforms to the 
                    Basic Geo (WGS84 lat/long) Vocabulary specification, which can be found at <a href="http://www.w3.org/2003/01/geo/">http://www.w3.org/2003/01/geo/</a>.
                </para>
            </remarks>
            <example>
                <code lang="cs" title="The following code example demonstrates the usage of the BasicGeocodingSyndicationExtension class.">
                    <code source="..\..\Documentation\Microsoft .NET 2.0\CodeExamplesLibrary\Extensions\Core\BasicGeocodingSyndicationExtensionExample.cs" region="BasicGeocodingSyndicationExtension"/>
                </code>
            </example>
        </member>
        <member name="F:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension.extensionContext">
            <summary>
            Private member to hold specific information about the extension.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension.ConvertDecimalToDegreesMinutesSeconds(System.Decimal)">
            <summary>
            Converts the supplied decimal value to an equivalent degrees, minutes, seconds string representation.
            </summary>
            <param name="value">A <see cref="T:System.Decimal"/> value that represents the degrees, minutes, and seconds of a spacial coordinate.</param>
            <returns>A string in the format ###°##'##.##" that represents the decimal value.</returns>
            <seealso cref="M:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension.ConvertDegreesMinutesSecondsToDecimal(System.String)"/>
        </member>
        <member name="M:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension.ConvertDegreesMinutesSecondsToDecimal(System.String)">
            <summary>
            Converts the supplied degrees, minutes, and seconds spacial coordinate string to its equivalent decimal value.
            </summary>
            <param name="degreesMinutesSeconds">A degrees, minutes, and seconds of a spacial coordinate in the format ###°##'##.##".</param>
            <returns>A <see cref="T:System.Decimal"/> value that represents the supplied degrees, minutes, and seconds.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="degreesMinutesSeconds"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="degreesMinutesSeconds"/> is an empty string.</exception>
            <seealso cref="M:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension.ConvertDecimalToDegreesMinutesSeconds(System.Decimal)"/>
        </member>
        <member name="M:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension.MatchByType(Argotic.Extensions.ISyndicationExtension)">
            <summary>
            Predicate delegate that returns a value indicating if the supplied <see cref="T:Argotic.Extensions.ISyndicationExtension"/> 
            represents the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>.
            </summary>
            <param name="extension">The <see cref="T:Argotic.Extensions.ISyndicationExtension"/> to be compared.</param>
            <returns><b>true</b> if the <paramref name="extension"/> is the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>; otherwise, <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="extension"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XPath.IXPathNavigable"/>.
            </summary>
            <param name="source">The <b>IXPathNavigable</b> used to load this <see cref="T:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension.Load(System.Xml.XmlReader)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XmlReader"/>.
            </summary>
            <param name="reader">The <b>XmlReader</b> used to load this <see cref="T:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension"/> was able to be initialized using the supplied <paramref name="reader"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="reader"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Writes the syndication extension to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the syndication extension.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension.op_Equality(Argotic.Extensions.Core.BasicGeocodingSyndicationExtension,Argotic.Extensions.Core.BasicGeocodingSyndicationExtension)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension.op_Inequality(Argotic.Extensions.Core.BasicGeocodingSyndicationExtension,Argotic.Extensions.Core.BasicGeocodingSyndicationExtension)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension.op_LessThan(Argotic.Extensions.Core.BasicGeocodingSyndicationExtension,Argotic.Extensions.Core.BasicGeocodingSyndicationExtension)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension.op_GreaterThan(Argotic.Extensions.Core.BasicGeocodingSyndicationExtension,Argotic.Extensions.Core.BasicGeocodingSyndicationExtension)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension.Context">
            <summary>
            Gets or sets the <see cref="T:Argotic.Extensions.Core.BasicGeocodingSyndicationExtensionContext"/> object associated with this extension.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.BasicGeocodingSyndicationExtensionContext"/> object that contains information associated with the current syndication extension.</value>
            <remarks>
                The <b>Context</b> encapsulates all of the syndication extension information that can be retrieved or written to an extended syndication entity. 
                Its purpose is to prevent property naming collisions between the base <see cref="T:Argotic.Extensions.SyndicationExtension"/> class and any custom properties that 
                are defined for the custom syndication extension.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.YahooMediaRestrictionRelationship">
            <summary>
            Indicates the type of relationship that a restriction represents.
            </summary>
            <seealso cref="T:Argotic.Extensions.Core.YahooMediaRestriction"/>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaRestrictionRelationship.None">
            <summary>
            No restriction relationship specified.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaRestrictionRelationship.Allow">
            <summary>
            Indicates that the type of relationship is permissive.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaRestrictionRelationship.Deny">
            <summary>
            Indicates that the type of relationship is restrictive.
            </summary>
        </member>
        <member name="T:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtensionContext">
            <summary>
            Encapsulates specific information about an individual <see cref="T:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension"/>.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtensionContext.extensionEncoded">
            <summary>
            Private member to hold the entity-encoded or CDATA-escaped version of the content of the item.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtensionContext.extensionItems">
            <summary>
            Private member to hold the alternative versions of the item's content.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtensionContext.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtensionContext"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtensionContext.Load(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtensionContext.WriteTo(System.Xml.XmlWriter,System.String)">
            <summary>
            Writes the current context to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the current context.</param>
            <param name="xmlNamespace">The XML namespace used to qualify prefixed syndication extension elements and attributes.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtensionContext.Encoded">
            <summary>
            Gets or sets an alternative version of the content of this item.
            </summary>
            <value>The alternative version of the content of this item.</value>
            <remarks>
                The value of this property <i>may</i> be entity-encoded, but will <b>always</b> be CDATA-escaped. 
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtensionContext.Items">
            <summary>
            Gets the alternative versions of this item's content.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.SiteSummaryContentItem"/> objects that represent multiple versions of this item's content. 
                The default value is an <i>empty</i> collection.
            </value>
            <remarks>
                The <see cref="P:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtensionContext.Encoded"/> property represents the <b>updated</b> syntax for the <see cref="T:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtension"/>. 
                It is <i>recommended</i> that <see cref="P:Argotic.Extensions.Core.SiteSummaryContentSyndicationExtensionContext.Encoded"/> is utilized when defining an alternative encoding for the content of an item.
            </remarks>
        </member>
        <member name="T:Argotic.Extensions.Core.FeedHistorySyndicationExtensionContext">
            <summary>
            Encapsulates specific information about an individual <see cref="T:Argotic.Extensions.Core.FeedHistorySyndicationExtension"/>.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedHistorySyndicationExtensionContext.extensionIsComplete">
            <summary>
            Private member to hold a value indicating if feed contains all of the entries of a logical feed.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedHistorySyndicationExtensionContext.extensionIsArchive">
            <summary>
            Private member to hold feed is a set of linked feed documents that together contain the entries of a logical feed.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedHistorySyndicationExtensionContext.extensionLinkRelations">
            <summary>
            Private member to hold a collection of relations for linked feed documents that together contain the entries of a logical feed.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistorySyndicationExtensionContext.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.FeedHistorySyndicationExtensionContext"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistorySyndicationExtensionContext.Load(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.FeedHistorySyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.FeedHistorySyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedHistorySyndicationExtensionContext.WriteTo(System.Xml.XmlWriter,System.String)">
            <summary>
            Writes the current context to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the current context.</param>
            <param name="xmlNamespace">The XML namespace used to qualify prefixed syndication extension elements and attributes.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedHistorySyndicationExtensionContext.IsArchive">
            <summary>
            Gets or sets a value indicating the feed is a set of linked feed documents that together contain the entries of a logical feed, without any guarantees about the stability of the documents' contents.
            </summary>
            <value><b>true</b> if feed is a set of linked feed documents that together contain the entries of a logical feed; otherwise returns <b>false</b>.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedHistorySyndicationExtensionContext.IsComplete">
            <summary>
            Gets or sets a value indicating the feed contains all of the entries of a logical feed; any entry not actually in the feed document should not be considered to be part of that feed.
            </summary>
            <value><b>true</b> if feed contains all of the entries of a logical feed; otherwise returns <b>false</b>.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedHistorySyndicationExtensionContext.Relations">
            <summary>
            Gets a collection of <see cref="T:Argotic.Extensions.Core.FeedHistoryLinkRelation"/> objects that represent the relationships between feed documents.
            </summary>
            <value>A collection of <see cref="T:Argotic.Extensions.Core.FeedHistoryLinkRelation"/> objects that represent the relationships between feed documents.</value>
        </member>
        <member name="T:Argotic.Extensions.SyndicationExtensionLoadedEventArgs">
            <summary>
            Provides data for the <see cref="E:Argotic.Extensions.ISyndicationExtension.Loaded"/> event.
            </summary>
            <remarks>
                A <see cref="E:Argotic.Extensions.ISyndicationExtension.Loaded"/> event occurs whenever the <see cref="M:Argotic.Extensions.ISyndicationExtension.Load(System.Xml.XmlReader)"/> 
                or <see cref="M:Argotic.Extensions.ISyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)"/> methods are called.
            </remarks>
            <seealso cref="T:Argotic.Extensions.ISyndicationExtension"/>
            <seealso cref="M:Argotic.Extensions.ISyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)"/>
            <seealso cref="M:Argotic.Extensions.ISyndicationExtension.Load(System.Xml.XmlReader)"/>
        </member>
        <member name="F:Argotic.Extensions.SyndicationExtensionLoadedEventArgs.emptyEventArguments">
            <summary>
            Private member to hold instance of event with no event data.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.SyndicationExtensionLoadedEventArgs.eventNavigator">
            <summary>
            Private member to hold read-only XPathNavigator object for navigating the XML data used to load the syndication extension.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.SyndicationExtensionLoadedEventArgs.eventExtension">
            <summary>
            Private member to hold the syndication extension that resulted from the load operation.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtensionLoadedEventArgs.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.SyndicationExtensionLoadedEventArgs"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtensionLoadedEventArgs.#ctor(System.Xml.XPath.IXPathNavigable)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.SyndicationExtensionLoadedEventArgs"/> class using the supplied <see cref="T:System.Xml.XPath.IXPathNavigable"/>.
            </summary>
            <param name="data">A <see cref="T:System.Xml.XPath.IXPathNavigable"/> object that represents the XML data that was used to load the syndication extension.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="data"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtensionLoadedEventArgs.#ctor(System.Xml.XPath.IXPathNavigable,Argotic.Extensions.ISyndicationExtension)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.SyndicationExtensionLoadedEventArgs"/> class using the supplied <see cref="T:System.Xml.XPath.IXPathNavigable"/> and <see cref="T:Argotic.Extensions.ISyndicationExtension"/>.
            </summary>
            <param name="data">A <see cref="T:System.Xml.XPath.IXPathNavigable"/> object that represents the XML data that was used to load the syndication extension.</param>
            <param name="extension">
                A <see cref="T:Argotic.Extensions.ISyndicationExtension"/> that represents the syndication extension after the load operation completed.
            </param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="data"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="extension"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtensionLoadedEventArgs.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.SyndicationExtensionLoadedEventArgs"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.SyndicationExtensionLoadedEventArgs"/>.</returns>
            <remarks>
                This method returns a human-readable string for the current instance. Hash code values are displayed for applicable properties.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtensionLoadedEventArgs.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtensionLoadedEventArgs.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtensionLoadedEventArgs.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtensionLoadedEventArgs.op_Equality(Argotic.Extensions.SyndicationExtensionLoadedEventArgs,Argotic.Extensions.SyndicationExtensionLoadedEventArgs)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtensionLoadedEventArgs.op_Inequality(Argotic.Extensions.SyndicationExtensionLoadedEventArgs,Argotic.Extensions.SyndicationExtensionLoadedEventArgs)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtensionLoadedEventArgs.op_LessThan(Argotic.Extensions.SyndicationExtensionLoadedEventArgs,Argotic.Extensions.SyndicationExtensionLoadedEventArgs)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.SyndicationExtensionLoadedEventArgs.op_GreaterThan(Argotic.Extensions.SyndicationExtensionLoadedEventArgs,Argotic.Extensions.SyndicationExtensionLoadedEventArgs)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.SyndicationExtensionLoadedEventArgs.Empty">
            <summary>
            Represents an syndication extension loaded event with no event data.
            </summary>
            <value>An uninitialized instance of the <see cref="T:Argotic.Extensions.SyndicationExtensionLoadedEventArgs"/> class.</value>
            <remarks>The value of Empty is a read-only instance of <see cref="T:Argotic.Extensions.SyndicationExtensionLoadedEventArgs"/> equivalent to the result of calling the <see cref="M:Argotic.Extensions.SyndicationExtensionLoadedEventArgs.#ctor"/> constructor.</remarks>
        </member>
        <member name="P:Argotic.Extensions.SyndicationExtensionLoadedEventArgs.Data">
            <summary>
            Gets a read-only <see cref="T:System.Xml.XPath.XPathNavigator"/> object for navigating the XML data that was used to load the syndication extension.
            </summary>
            <value>
                A read-only <see cref="T:System.Xml.XPath.XPathNavigator"/> object for navigating the XML data that was used to load the syndication extension.
            </value>
        </member>
        <member name="P:Argotic.Extensions.SyndicationExtensionLoadedEventArgs.Extension">
            <summary>
            Gets the <see cref="T:Argotic.Extensions.ISyndicationExtension"/> that resulted from the load operation.
            </summary>
            <value>
                The <see cref="T:Argotic.Extensions.ISyndicationExtension"/> that resulted from the load operation. 
            </value>
        </member>
        <member name="T:Argotic.Extensions.Core.ITunesCategory">
            <summary>
            Represents a categorization taxonomy that can be applied to a podcast.
            </summary>
            <seealso cref="T:Argotic.Extensions.Core.ITunesSyndicationExtensionContext"/>
        </member>
        <member name="F:Argotic.Extensions.Core.ITunesCategory.categoryText">
            <summary>
            Private member to hold the name of the category.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.ITunesCategory.categorySubcategories">
            <summary>
            Private member to hold a collection of sub-categories of the category.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesCategory.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.ITunesCategory"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesCategory.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.ITunesCategory"/> class using the supplied text.
            </summary>
            <param name="text"></param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="text"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="text"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesCategory.Load(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads this <see cref="T:Argotic.Extensions.Core.ITunesCategory"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.ITunesCategory"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.ITunesCategory"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesCategory.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.ITunesCategory"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesCategory.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.ITunesCategory"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.ITunesCategory"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesCategory.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesCategory.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesCategory.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesCategory.op_Equality(Argotic.Extensions.Core.ITunesCategory,Argotic.Extensions.Core.ITunesCategory)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesCategory.op_Inequality(Argotic.Extensions.Core.ITunesCategory,Argotic.Extensions.Core.ITunesCategory)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesCategory.op_LessThan(Argotic.Extensions.Core.ITunesCategory,Argotic.Extensions.Core.ITunesCategory)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.ITunesCategory.op_GreaterThan(Argotic.Extensions.Core.ITunesCategory,Argotic.Extensions.Core.ITunesCategory)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.ITunesCategory.Categories">
            <summary>
            Gets the sub-categories of this category.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.ITunesCategory"/> objects that represent the sub-categories of this category. The default value is an <i>empty</i> collection.
            </value>
        </member>
        <member name="P:Argotic.Extensions.Core.ITunesCategory.Text">
            <summary>
            Gets or sets the name of this category.
            </summary>
            <value>The name of this category.</value>
            <remarks>
                The category text <i>may</i> be entity encoded.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is an empty string.</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.FeedRankSyndicationExtensionContext">
            <summary>
            Encapsulates specific information about an individual <see cref="T:Argotic.Extensions.Core.FeedRankSyndicationExtension"/>.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedRankSyndicationExtensionContext.extensionScheme">
            <summary>
            Private member to hold the permanent, universally unique identifier for the ranking scheme.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedRankSyndicationExtensionContext.extensionDomain">
            <summary>
            Private member to hold the permanent, universally unique identifier for the ranking domain.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedRankSyndicationExtensionContext.extensionLabel">
            <summary>
            Private member to hold the language sensitive, human-readable label for the rank.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedRankSyndicationExtensionContext.extensionValue">
            <summary>
            Private member to hold the decimal value of the rank.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedRankSyndicationExtensionContext.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.FeedRankSyndicationExtensionContext"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedRankSyndicationExtensionContext.#ctor(System.Uri,System.Decimal)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.FeedRankSyndicationExtensionContext"/> class using the supplied schem and value.
            </summary>
            <param name="scheme">The <see cref="T:System.Uri"/> that describes the permanent, universally unique identifier for the ranking scheme.</param>
            <param name="value">The <see cref="T:System.Decimal"/> value of the rank.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="scheme"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedRankSyndicationExtensionContext.Load(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.FeedRankSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.FeedRankSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedRankSyndicationExtensionContext.WriteTo(System.Xml.XmlWriter,System.String)">
            <summary>
            Writes the current context to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the current context.</param>
            <param name="xmlNamespace">The XML namespace used to qualify prefixed syndication extension elements and attributes.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedRankSyndicationExtensionContext.Domain">
            <summary>
            Gets or sets the <see cref="T:System.Uri"/> that describes the permanent, universally unique identifier for this ranking domain.
            </summary>
            <value>The <see cref="T:System.Uri"/> that describes the permanent, universally unique identifier for this ranking domain.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedRankSyndicationExtensionContext.Label">
            <summary>
            Gets or sets the language sensitive, human-readable label for this rank.
            </summary>
            <value>The language sensitive, human-readable label for this rank.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedRankSyndicationExtensionContext.Scheme">
            <summary>
            Gets or sets the <see cref="T:System.Uri"/> that describes the permanent, universally unique identifier for this ranking scheme.
            </summary>
            <value>The <see cref="T:System.Uri"/> that describes the permanent, universally unique identifier for this ranking scheme.</value>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedRankSyndicationExtensionContext.Value">
            <summary>
            Gets or sets the value of this rank.
            </summary>
            <value>The <see cref="T:System.Decimal"/> value of this rank. The default value is <see cref="F:System.Decimal.MinValue"/>, which indicates that no ranking value was specified.</value>
        </member>
        <member name="T:Argotic.Extensions.Core.YahooMediaTextConstructType">
            <summary>
            Represents the entity encoding utilized by human-readable text constructs. 
            </summary>
            <seealso cref="T:Argotic.Extensions.Core.YahooMediaTextConstruct"/>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaTextConstructType.None">
            <summary>
            No entity-encoding type specified.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaTextConstructType.Html">
            <summary>
            Indicates that the human-readable text is Hyper-Text Markup Language (HTML) encoded.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaTextConstructType.Plain">
            <summary>
            Indicates that the human-readable text is not encoded per a specific entity scheme.
            </summary>
        </member>
        <member name="T:Argotic.Extensions.Core.YahooMediaPlayer">
            <summary>
            Represents a means of allowing the media object to be accessed through a web browser media player console.
            </summary>
            <remarks>
                <para>
                    This class is required only if a direct media <see cref="P:Argotic.Extensions.Core.YahooMediaContent.Url"/> property is not specified in the <see cref="T:Argotic.Extensions.Core.YahooMediaContent"/> class.
                </para>
            </remarks>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaPlayer.playerUrl">
            <summary>
            Private member to hold the URL of the player console.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaPlayer.playerHeight">
            <summary>
            Private member to hold the height of the browser window that the player console should be opened in.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaPlayer.playerWidth">
            <summary>
            Private member to hold the with of the browser window that the player console should be opened in.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaPlayer.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaPlayer"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaPlayer.#ctor(System.Uri)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaPlayer"/> class using the supplied <see cref="T:System.Uri"/>.
            </summary>
            <param name="url">A <see cref="T:System.Uri"/> that represents the URL of this player console.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="url"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaPlayer.#ctor(System.Uri,System.Int32,System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.YahooMediaPlayer"/> class using the supplied <see cref="T:System.Uri"/>, height and width.
            </summary>
            <param name="url">A <see cref="T:System.Uri"/> that represents the URL of this player console.</param>
            <param name="height">The height of the browser window that this player console should be opened in.</param>
            <param name="width">The width of the browser window that this player console should be opened in.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="url"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaPlayer.Load(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads this <see cref="T:Argotic.Extensions.Core.YahooMediaPlayer"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.YahooMediaPlayer"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.YahooMediaPlayer"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaPlayer.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.YahooMediaPlayer"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaPlayer.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaPlayer"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.YahooMediaPlayer"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaPlayer.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaPlayer.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaPlayer.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaPlayer.op_Equality(Argotic.Extensions.Core.YahooMediaPlayer,Argotic.Extensions.Core.YahooMediaPlayer)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaPlayer.op_Inequality(Argotic.Extensions.Core.YahooMediaPlayer,Argotic.Extensions.Core.YahooMediaPlayer)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaPlayer.op_LessThan(Argotic.Extensions.Core.YahooMediaPlayer,Argotic.Extensions.Core.YahooMediaPlayer)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.YahooMediaPlayer.op_GreaterThan(Argotic.Extensions.Core.YahooMediaPlayer,Argotic.Extensions.Core.YahooMediaPlayer)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaPlayer.Height">
            <summary>
            Gets or sets the height of the browser window that this player console should be opened in.
            </summary>
            <value>The height of the browser window that this player console should be opened in. The default value is <see cref="F:System.Int32.MinValue"/>, which indicates that no height was specified.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaPlayer.Url">
            <summary>
            Gets or sets the location of this player console.
            </summary>
            <value>A <see cref="T:System.Uri"/> that represents the URL of this player console that plays the media.</value>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.YahooMediaPlayer.Width">
            <summary>
            Gets or sets the width of the browser window that this player console should be opened in.
            </summary>
            <value>The width of the browser window that this player console should be opened in. The default value is <see cref="F:System.Int32.MinValue"/>, which indicates that no width was specified.</value>
        </member>
        <member name="T:Argotic.Extensions.Core.YahooMediaHashAlgorithm">
            <summary>
            Represents the hashing algorithm used to create a hash value.
            </summary>
            <seealso cref="T:Argotic.Extensions.Core.YahooMediaHash"/>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaHashAlgorithm.None">
            <summary>
            No hashing algorithm was specified.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaHashAlgorithm.MD5">
            <summary>
            Indicates that the <b>Message-Digest 5</b> algorithm was used to generate the hash.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.YahooMediaHashAlgorithm.Sha1">
            <summary>
            Indicates that the <b>Secure Hash Algorithm 1</b> algorithm was used to generate the hash.
            </summary>
        </member>
        <member name="T:Argotic.Extensions.Core.FeedHistoryLinkRelationType">
            <summary>
            Represents the link relation type of a web resource.
            </summary>
            <seealso cref="P:Argotic.Extensions.Core.FeedHistoryLinkRelation.RelationType"/>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedHistoryLinkRelationType.None">
            <summary>
            No link relation type specified.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedHistoryLinkRelationType.Current">
            <summary>
            Refers to a document containing the most recent entries.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedHistoryLinkRelationType.First">
            <summary>
            Refers to the furthest preceding document in a series of documents.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedHistoryLinkRelationType.Last">
            <summary>
            Refers to the furthest following document in a series of documents.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedHistoryLinkRelationType.Next">
            <summary>
            Refers to the immediately following document in a series of documents.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedHistoryLinkRelationType.NextArchive">
            <summary>
            Refers to the immediately following archive document.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedHistoryLinkRelationType.Previous">
            <summary>
            Refers to the immediately preceding document in a series of documents.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedHistoryLinkRelationType.PreviousArchive">
            <summary>
            Refers to the immediately preceding archive document.
            </summary>
        </member>
        <member name="T:Argotic.Extensions.Core.BlogChannelSyndicationExtension">
            <summary>
            Extends syndication specifications to provide meta-data common to weblogs.
            </summary>
            <remarks>
                <para>
                    The <see cref="T:Argotic.Extensions.Core.BlogChannelSyndicationExtension"/> extends syndicated content to specify information common to weblogs. This syndication extension conforms to the 
                    <b>blogChannel RSS module</b> 1.0 specification, which can be found at <a href="http://backend.userland.com/blogChannelModule">http://backend.userland.com/blogChannelModule</a>.
                </para>
            </remarks>
            <example>
                <code lang="cs" title="The following code example demonstrates the usage of the BlogChannelSyndicationExtension class.">
                    <code source="..\..\Documentation\Microsoft .NET 2.0\CodeExamplesLibrary\Extensions\Core\BlogChannelSyndicationExtensionExample.cs" region="BlogChannelSyndicationExtension"/>
                </code>
            </example>
        </member>
        <member name="F:Argotic.Extensions.Core.BlogChannelSyndicationExtension.extensionContext">
            <summary>
            Private member to hold specific information about the extension.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.BlogChannelSyndicationExtension.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.BlogChannelSyndicationExtension"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.BlogChannelSyndicationExtension.MatchByType(Argotic.Extensions.ISyndicationExtension)">
            <summary>
            Predicate delegate that returns a value indicating if the supplied <see cref="T:Argotic.Extensions.ISyndicationExtension"/> 
            represents the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>.
            </summary>
            <param name="extension">The <see cref="T:Argotic.Extensions.ISyndicationExtension"/> to be compared.</param>
            <returns><b>true</b> if the <paramref name="extension"/> is the same <see cref="T:System.Type"/> as this <see cref="T:Argotic.Extensions.SyndicationExtension"/>; otherwise, <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="extension"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.BlogChannelSyndicationExtension.Load(System.Xml.XPath.IXPathNavigable)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XPath.IXPathNavigable"/>.
            </summary>
            <param name="source">The <b>IXPathNavigable</b> used to load this <see cref="T:Argotic.Extensions.Core.BlogChannelSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.BlogChannelSyndicationExtension"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.BlogChannelSyndicationExtension.Load(System.Xml.XmlReader)">
            <summary>
            Initializes the syndication extension using the supplied <see cref="T:System.Xml.XmlReader"/>.
            </summary>
            <param name="reader">The <b>XmlReader</b> used to load this <see cref="T:Argotic.Extensions.Core.BlogChannelSyndicationExtension"/>.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.BlogChannelSyndicationExtension"/> was able to be initialized using the supplied <paramref name="reader"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="reader"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.BlogChannelSyndicationExtension.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Writes the syndication extension to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the syndication extension.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.BlogChannelSyndicationExtension.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.BlogChannelSyndicationExtension"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.BlogChannelSyndicationExtension"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.BlogChannelSyndicationExtension.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.BlogChannelSyndicationExtension.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.BlogChannelSyndicationExtension.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.BlogChannelSyndicationExtension.op_Equality(Argotic.Extensions.Core.BlogChannelSyndicationExtension,Argotic.Extensions.Core.BlogChannelSyndicationExtension)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.BlogChannelSyndicationExtension.op_Inequality(Argotic.Extensions.Core.BlogChannelSyndicationExtension,Argotic.Extensions.Core.BlogChannelSyndicationExtension)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.BlogChannelSyndicationExtension.op_LessThan(Argotic.Extensions.Core.BlogChannelSyndicationExtension,Argotic.Extensions.Core.BlogChannelSyndicationExtension)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.BlogChannelSyndicationExtension.op_GreaterThan(Argotic.Extensions.Core.BlogChannelSyndicationExtension,Argotic.Extensions.Core.BlogChannelSyndicationExtension)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.BlogChannelSyndicationExtension.Context">
            <summary>
            Gets or sets the <see cref="T:Argotic.Extensions.Core.BlogChannelSyndicationExtensionContext"/> object associated with this extension.
            </summary>
            <value>A <see cref="T:Argotic.Extensions.Core.BlogChannelSyndicationExtensionContext"/> object that contains information associated with the current syndication extension.</value>
            <remarks>
                The <b>Context</b> encapsulates all of the syndication extension information that can be retrieved or written to an extended syndication entity. 
                Its purpose is to prevent property naming collisions between the base <see cref="T:Argotic.Extensions.SyndicationExtension"/> class and any custom properties that 
                are defined for the custom syndication extension.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="T:Argotic.Extensions.Core.BasicGeocodingSyndicationExtensionContext">
            <summary>
            Encapsulates specific information about an individual <see cref="T:Argotic.Extensions.Core.BasicGeocodingSyndicationExtension"/>.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.BasicGeocodingSyndicationExtensionContext.extensionLatitude">
            <summary>
            Private member to hold the latitude spatial coordinate.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.BasicGeocodingSyndicationExtensionContext.extensionLongitude">
            <summary>
            Private member to hold the longitude spatial coordinate.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.BasicGeocodingSyndicationExtensionContext.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.BasicGeocodingSyndicationExtensionContext"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.BasicGeocodingSyndicationExtensionContext.Load(System.Xml.XPath.XPathNavigator,System.Xml.XmlNamespaceManager)">
            <summary>
            Initializes the syndication extension context using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <b>XPathNavigator</b> used to load this <see cref="T:Argotic.Extensions.Core.BasicGeocodingSyndicationExtensionContext"/>.</param>
            <param name="manager">The <see cref="T:System.Xml.XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.BasicGeocodingSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.BasicGeocodingSyndicationExtensionContext.WriteTo(System.Xml.XmlWriter,System.String)">
            <summary>
            Writes the current context to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <b>XmlWriter</b> to which you want to write the current context.</param>
            <param name="xmlNamespace">The XML namespace used to qualify prefixed syndication extension elements and attributes.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="xmlNamespace"/> is an empty string.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.BasicGeocodingSyndicationExtensionContext.Latitude">
            <summary>
            Gets or sets the geocoding latitude coordinate.
            </summary>
            <value>The geocoding latitude coordinate. The default value is <see cref="F:System.Decimal.MinValue"/>, which indicates that no latitude was provided.</value>
        </member>
        <member name="P:Argotic.Extensions.Core.BasicGeocodingSyndicationExtensionContext.Longitude">
            <summary>
            Gets or sets the geocoding longitude coordinate.
            </summary>
            <value>The geocoding longitude coordinate. The default value is <see cref="F:System.Decimal.MinValue"/>, which indicates that no longitude was provided.</value>
        </member>
        <member name="T:Argotic.Extensions.Core.LiveJournalSecurityType">
            <summary>
            Represents the access level type of a LiveJournal entry.
            </summary>
            <seealso cref="P:Argotic.Extensions.Core.LiveJournalSecurity.Accessibility"/>
            <seealso cref="T:Argotic.Extensions.Core.LiveJournalSecurity"/>
        </member>
        <member name="F:Argotic.Extensions.Core.LiveJournalSecurityType.None">
            <summary>
            No access level specified.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.LiveJournalSecurityType.Friends">
            <summary>
            The LiveJournal entry is accessible to friends of the author. 
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.LiveJournalSecurityType.Private">
            <summary>
            The LiveJournal entry is accessible to the author.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.LiveJournalSecurityType.Public">
            <summary>
            The LiveJournal entry is publicly accessible. 
            </summary>
        </member>
        <member name="T:Argotic.Extensions.Core.FeedSynchronizationItem">
            <summary>
            Represents the information required for synchronization of syndication feeds.
            </summary>
            <remarks>
                <para>The <see cref="T:Argotic.Extensions.Core.FeedSynchronizationItem"/> class represents a <b>sx:sync</b> element in the <i>FeedSync</i> specification.</para>
                <para>
                    This is <b>required</b> of all items in all feeds wishing to participate in FeedSync-based synchronization. 
                    Since <see cref="T:Argotic.Extensions.Core.FeedSynchronizationSharingInformation"/> is not required, feed consumers <b>must</b> consider the presence of <see cref="T:Argotic.Extensions.Core.FeedSynchronizationItem"/> in items or entries 
                    as an indication that the feed contains sync data.
                </para>
                <para>
                    It acceptable for a feed to have some items or entries with <see cref="T:Argotic.Extensions.Core.FeedSynchronizationItem"/> elements, and some without a <see cref="T:Argotic.Extensions.Core.FeedSynchronizationItem"/>. 
                    Only the items and entries that include the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationItem"/> element participate in FeedSync synchronization.
                </para>
            </remarks>
            <seealso cref="T:Argotic.Extensions.Core.FeedSynchronizationSyndicationExtensionContext"/>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationItem.synchronizationId">
            <summary>
            Private member to hold the globally unique identifier for the item.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationItem.synchronizationUpdates">
            <summary>
            Private member to hold the number of updates applied to an item.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationItem.synchronizationTombstoneStatus">
            <summary>
            Private member to hold a value indicating that the item has been deleted and is a tombstone.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationItem.synchronizationConflictPreservation">
            <summary>
            Private member to hold a value indicating how conflict preservation is processed.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationItem.synchronizationHistories">
            <summary>
            Private member to hold information about updates to the item.
            </summary>
        </member>
        <member name="F:Argotic.Extensions.Core.FeedSynchronizationItem.synchronizationConflicts">
            <summary>
            Private member to hold information about conflicting updates to the item.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationItem.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationItem"/> class.
            </summary>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationItem.#ctor(System.String,System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationItem"/> class using the supplied indentifier and number of updates.
            </summary>
            <param name="id">The globally unique identifier for the item.</param>
            <param name="updates">The number of updates applied to this item.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="id"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="id"/> is an empty string.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="updates"/> is less than <b>1</b>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationItem.#ctor(System.String,System.Int32,Argotic.Extensions.Core.FeedSynchronizationHistory)">
            <summary>
            Initializes a new instance of the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationItem"/> class using the supplied indentifier, number of updates, and initial <see cref="T:Argotic.Extensions.Core.FeedSynchronizationHistory"/>.
            </summary>
            <param name="id">The globally unique identifier for the item.</param>
            <param name="updates">The number of updates applied to this item.</param>
            <param name="history">A <see cref="T:Argotic.Extensions.Core.FeedSynchronizationHistory"/> object that represents the initial information about updates to this item.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="id"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="id"/> is an empty string.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="updates"/> is less than <b>1</b>.</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="history"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationItem.CompareSequence(System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.FeedSynchronizationHistory},System.Collections.ObjectModel.Collection{Argotic.Extensions.Core.FeedSynchronizationHistory})">
            <summary>
            Compares two specified <see cref="T:System.Collections.ObjectModel.Collection`1"/> collections.
            </summary>
            <param name="source">The first collection.</param>
            <param name="target">The second collection.</param>
            <returns>A 32-bit signed integer indicating the lexical relationship between the two comparands.</returns>
            <remarks>
                <para>
                    If the collections contain the same number of elements, determines the lexical relationship between the two sequences of comparands.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>greater than</i> the <paramref name="target"/> element count, returns <b>1</b>.
                </para>
                <para>
                    If the <paramref name="source"/> has an element count that is <i>less than</i> the <paramref name="target"/> element count, returns <b>-1</b>.
                </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="target"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationItem.ConflictPreservationAsString(Argotic.Extensions.Core.FeedSynchronizationConflictPreservationDirective)">
            <summary>
            Returns the conflict preservation identifier for the supplied <see cref="T:Argotic.Extensions.Core.FeedSynchronizationConflictPreservationDirective"/>.
            </summary>
            <param name="directive">The <see cref="T:Argotic.Extensions.Core.FeedSynchronizationConflictPreservationDirective"/> to get the conflict preservation identifier for.</param>
            <returns>The conflict preservation identifier for the supplied <paramref name="vocabulary"/>, otherwise returns an empty string.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationItem.ConflictPreservationByName(System.String)">
            <summary>
            Returns the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationConflictPreservationDirective"/> enumeration value that corresponds to the specified conflict preservation name.
            </summary>
            <param name="name">The name of the conflict preservation.</param>
            <returns>A <see cref="T:Argotic.Extensions.Core.FeedSynchronizationConflictPreservationDirective"/> enumeration value that corresponds to the specified string, otherwise returns <b>FeedSynchronizationConflictPreservationDirective.None</b>.</returns>
            <remarks>This method disregards case of specified conflict preservation name.</remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationItem.TombstoneStatusAsString(Argotic.Extensions.Core.FeedSynchronizationTombstoneStatus)">
            <summary>
            Returns the tombstone status identifier for the supplied <see cref="T:Argotic.Extensions.Core.FeedSynchronizationTombstoneStatus"/>.
            </summary>
            <param name="status">The <see cref="T:Argotic.Extensions.Core.FeedSynchronizationTombstoneStatus"/> to get the tombstone status identifier for.</param>
            <returns>The tombstone status identifier for the supplied <paramref name="vocabulary"/>, otherwise returns an empty string.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationItem.TombstoneStatusByName(System.String)">
            <summary>
            Returns the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationTombstoneStatus"/> enumeration value that corresponds to the specified tombstone status name.
            </summary>
            <param name="name">The name of the tombstone status.</param>
            <returns>A <see cref="T:Argotic.Extensions.Core.FeedSynchronizationTombstoneStatus"/> enumeration value that corresponds to the specified string, otherwise returns <b>FeedSynchronizationTombstoneStatus.None</b>.</returns>
            <remarks>This method disregards case of specified tombstone status name.</remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="name"/> is an empty string.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationItem.Load(System.Xml.XPath.XPathNavigator)">
            <summary>
            Loads this <see cref="T:Argotic.Extensions.Core.FeedSynchronizationItem"/> using the supplied <see cref="T:System.Xml.XPath.XPathNavigator"/>.
            </summary>
            <param name="source">The <see cref="T:System.Xml.XPath.XPathNavigator"/> to extract information from.</param>
            <returns><b>true</b> if the <see cref="T:Argotic.Extensions.Core.FeedSynchronizationItem"/> was initialized using the supplied <paramref name="source"/>, otherwise <b>false</b>.</returns>
            <remarks>
                This method expects the supplied <paramref name="source"/> to be positioned on the XML element that represents a <see cref="T:Argotic.Extensions.Core.FeedSynchronizationItem"/>.
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationItem.WriteTo(System.Xml.XmlWriter)">
            <summary>
            Saves the current <see cref="T:Argotic.Extensions.Core.FeedSynchronizationItem"/> to the specified <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="writer">The <see cref="T:System.Xml.XmlWriter"/> to which you want to save.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="writer"/> is a null reference (Nothing in Visual Basic).</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationItem.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.FeedSynchronizationItem"/>.
            </summary>
            <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:Argotic.Extensions.Core.FeedSynchronizationItem"/>.</returns>
            <remarks>
                This method returns the XML representation for the current instance.
            </remarks>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationItem.CompareTo(System.Object)">
            <summary>
            Compares the current instance with another object of the same type.
            </summary>
            <param name="obj">An object to compare with this instance.</param>
            <returns>A 32-bit signed integer that indicates the relative order of the objects being compared.</returns>
            <exception cref="T:System.ArgumentException">The <paramref name="obj"/> is not the expected <see cref="T:System.Type"/>.</exception>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationItem.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to the current instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with the current instance.</param>
            <returns><b>true</b> if the specified <see cref="T:System.Object"/> is equal to the current instance; otherwise, <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationItem.GetHashCode">
            <summary>
            Returns a hash code for the current instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationItem.op_Equality(Argotic.Extensions.Core.FeedSynchronizationItem,Argotic.Extensions.Core.FeedSynchronizationItem)">
            <summary>
            Determines if operands are equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the values of its operands are equal, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationItem.op_Inequality(Argotic.Extensions.Core.FeedSynchronizationItem,Argotic.Extensions.Core.FeedSynchronizationItem)">
            <summary>
            Determines if operands are not equal.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>false</b> if its operands are equal, otherwise; <b>true</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationItem.op_LessThan(Argotic.Extensions.Core.FeedSynchronizationItem,Argotic.Extensions.Core.FeedSynchronizationItem)">
            <summary>
            Determines if first operand is less than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is less than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="M:Argotic.Extensions.Core.FeedSynchronizationItem.op_GreaterThan(Argotic.Extensions.Core.FeedSynchronizationItem,Argotic.Extensions.Core.FeedSynchronizationItem)">
            <summary>
            Determines if first operand is greater than second operand.
            </summary>
            <param name="first">Operand to be compared.</param>
            <param name="second">Operand to compare to.</param>
            <returns><b>true</b> if the first operand is greater than the second, otherwise; <b>false</b>.</returns>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedSynchronizationItem.Conflicts">
            <summary>
            Gets the conflicting updates for this item.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:System.Xml.XPath.XPathNavigator"/> objects that represent conflicting updates for this item. 
                The default value is an <i>empty</i> collection.
            </value>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedSynchronizationItem.Histories">
            <summary>
            Gets the information about updates to this item.
            </summary>
            <value>
                A <see cref="T:System.Collections.ObjectModel.Collection`1"/> collection of <see cref="T:Argotic.Extensions.Core.FeedSynchronizationHistory"/> objects that represent information about updates to this item. 
                The default value is an <i>empty</i> collection.
            </value>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedSynchronizationItem.Id">
            <summary>
            Gets or sets the globally unique identifier for this item.
            </summary>
            <value>The globally unique identifier for this item.</value>
            <remarks>
                <para>
                    The <see cref="P:Argotic.Extensions.Core.FeedSynchronizationItem.Id">identifier</see> <b>must</b> be globally unique within the feed and it <b>must</b> be identical across feeds if an item is being shared or synchronized as part of multiple distinct independent feeds.
                </para>
                <para>
                    Atom has a similar requirement for each entry to have a unique id. While the Atom entry <i>id</i> could be used for the sync id at the publisher’s discretion, 
                    implementers <b>must not</b> assume that the Atom <i>id</i> for the entry matches the sync id. Likewise, if the RSS item includes a <i>guid</i>, 
                    implementers <b>must not</b> assume that the <i>guid</i> is the same as the sync id.
                </para>
                <para>
                    In Atom feeds, it is acceptable to have multiple entries in the same feed with the same atom id element; in this case, the entries are considered different versions of the same entry. 
                    It is allowed to use FeedSync in such a feed, but the <b>sx:sync/@id</b> attributes are still required to be different in each entry. 
                    FeedSync considers those entries to be different sync items.
                </para>
                <para>
                    The <see cref="P:Argotic.Extensions.Core.FeedSynchronizationItem.Id">identifier</see> is assigned by the creator of the item, and <b>must not</b> be changed by subsequent publishers. 
                    Applications will collate and compare these identifiers; therefore they <b>must</b> conform to the syntax for 
                    Namespace Specific Strings (the NSS portion of a URN) in <a href="http://www.ietf.org/rfc/rfc2141.txt">RFC 2141</a>.
                </para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is a null reference (Nothing in Visual Basic).</exception>
            <exception cref="T:System.ArgumentNullException">The <paramref name="value"/> is an empty string.</exception>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedSynchronizationItem.ConflictPreservation">
            <summary>
            Gets or sets a value indicating whether conflict preservation is performed for this item.
            </summary>
            <value>
                A <see cref="T:Argotic.Extensions.Core.FeedSynchronizationConflictPreservationDirective"/> enumeration value that indicates whether conflict preservation is performed for this item. 
                The default value is <see cref="F:Argotic.Extensions.Core.FeedSynchronizationConflictPreservationDirective.None"/>, which indicates conflict preservation <b>must</b> be performed for the item.
            </value>
            <remarks>
                <para>
                    This value <b>must</b> only be set once, and <i>shall</i> only be set when the updates property value is <b>1</b>. 
                    All updates to the item after the first update must propagate whatever state was set on the first update.
                </para>
                <para>
                    Within this framework, <see cref="F:Argotic.Extensions.Core.FeedSynchronizationConflictPreservationDirective.Ignore"/> is equivalent to <b>true</b> for the <i>noconflicts</i> attribute in the FeedSync specification, 
                    while <see cref="F:Argotic.Extensions.Core.FeedSynchronizationConflictPreservationDirective.Perform"/> is equivalent to <b>false</b> for the <i>noconflicts</i> attribute in the FeedSync specification. 
                    Specifying a value of <see cref="F:Argotic.Extensions.Core.FeedSynchronizationConflictPreservationDirective.None"/> is equivalent to the <i>noconflicts</i> attribute not being present.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedSynchronizationItem.TombstoneStatus">
            <summary>
            Gets or sets a value indicating if the item has been deleted.
            </summary>
            <value>
                A <see cref="T:Argotic.Extensions.Core.FeedSynchronizationTombstoneStatus"/> enumeration value that indicates whether this item has been deleted. 
                The default value is <see cref="F:Argotic.Extensions.Core.FeedSynchronizationTombstoneStatus.None"/>, which indicates the item has not been deleted.
            </value>
            <remarks>
                <para>
                    Within this framework, <see cref="F:Argotic.Extensions.Core.FeedSynchronizationTombstoneStatus.Deleted"/> is equivalent to <b>true</b> for the <i>deleted</i> attribute in the FeedSync specification, 
                    while <see cref="F:Argotic.Extensions.Core.FeedSynchronizationTombstoneStatus.Present"/> is equivalent to <b>false</b> for the <i>deleted</i> attribute in the FeedSync specification. 
                    Specifying a value of <see cref="F:Argotic.Extensions.Core.FeedSynchronizationTombstoneStatus.None"/> is equivalent to the <i>deleted</i> attribute not being present.
                </para>
            </remarks>
        </member>
        <member name="P:Argotic.Extensions.Core.FeedSynchronizationItem.Updates">
            <summary>
            Gets or sets the number of updates applied to this item.
            </summary>
            <value>The number of updates applied to this item. The default value is <b>1</b>.</value>
            <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="value"/> is less than <b>1</b>.</exception>
        </member>
    </members>
</doc>
