//============================================================
        //	ICOMPARABLE IMPLEMENTATION
        //============================================================
        #region CompareTo(object obj)
        /// <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="ArgumentException">The <paramref name="obj"/> is not the expected <see cref="Type"/>.</exception>
        public int CompareTo(object obj)
        {
            //------------------------------------------------------------
            //	If target is a null reference, instance is greater
            //------------------------------------------------------------
            if (obj == null)
            {
                return(1);
            }

            //------------------------------------------------------------
            //	Determine comparison result using property state of objects
            //------------------------------------------------------------
            FeedSynchronizationSharingInformation value = obj as FeedSynchronizationSharingInformation;

            if (value != null)
            {
                int result = this.ExpiresOn.CompareTo(value.ExpiresOn);
                result = result | FeedSynchronizationSharingInformation.CompareSequence(this.Relations, value.Relations);
                result = result | String.Compare(this.Since, value.Since, StringComparison.OrdinalIgnoreCase);
                result = result | String.Compare(this.Until, value.Until, StringComparison.OrdinalIgnoreCase);

                return(result);
            }
            else
            {
                throw new ArgumentException(String.Format(null, "obj is not of type {0}, type was found to be '{1}'.", this.GetType().FullName, obj.GetType().FullName), "obj");
            }
        }
示例#2
0
        /// <summary>
        /// Initializes the syndication extension context using the supplied <see cref="XPathNavigator"/>.
        /// </summary>
        /// <param name="source">The <b>XPathNavigator</b> used to load this <see cref="FeedSynchronizationSyndicationExtensionContext"/>.</param>
        /// <param name="manager">The <see cref="XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
        /// <returns><b>true</b> if the <see cref="FeedSynchronizationSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
        /// <exception cref="ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        /// <exception cref="ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        public bool Load(XPathNavigator source, XmlNamespaceManager manager)
        {
            bool wasLoaded = false;

            Guard.ArgumentNotNull(source, "source");
            Guard.ArgumentNotNull(manager, "manager");
            if (source.HasChildren)
            {
                XPathNavigator sharingNavigator = source.SelectSingleNode("sx:sharing", manager);
                XPathNavigator syncNavigator    = source.SelectSingleNode("sx:sync", manager);

                if (sharingNavigator != null)
                {
                    FeedSynchronizationSharingInformation sharing = new FeedSynchronizationSharingInformation();
                    if (sharing.Load(sharingNavigator))
                    {
                        this.Sharing = sharing;
                        wasLoaded    = true;
                    }
                }

                if (syncNavigator != null)
                {
                    FeedSynchronizationItem synchronization = new FeedSynchronizationItem();
                    if (synchronization.Load(syncNavigator))
                    {
                        this.Synchronization = synchronization;
                        wasLoaded            = true;
                    }
                }
            }

            return(wasLoaded);
        }
        //============================================================
        //	PUBLIC METHODS
        //============================================================
        #region Load(XPathNavigator source, XmlNamespaceManager manager)
        /// <summary>
        /// Initializes the syndication extension context using the supplied <see cref="XPathNavigator"/>.
        /// </summary>
        /// <param name="source">The <b>XPathNavigator</b> used to load this <see cref="FeedSynchronizationSyndicationExtensionContext"/>.</param>
        /// <param name="manager">The <see cref="XmlNamespaceManager"/> object used to resolve prefixed syndication extension elements and attributes.</param>
        /// <returns><b>true</b> if the <see cref="FeedSynchronizationSyndicationExtensionContext"/> was able to be initialized using the supplied <paramref name="source"/>; otherwise <b>false</b>.</returns>
        /// <exception cref="ArgumentNullException">The <paramref name="source"/> is a null reference (Nothing in Visual Basic).</exception>
        /// <exception cref="ArgumentNullException">The <paramref name="manager"/> is a null reference (Nothing in Visual Basic).</exception>
        public bool Load(XPathNavigator source, XmlNamespaceManager manager)
        {
            //------------------------------------------------------------
            //	Local members
            //------------------------------------------------------------
            bool wasLoaded = false;

            //------------------------------------------------------------
            //	Validate parameter
            //------------------------------------------------------------
            Guard.ArgumentNotNull(source, "source");
            Guard.ArgumentNotNull(manager, "manager");

            //------------------------------------------------------------
            //	Attempt to extract syndication extension information
            //------------------------------------------------------------
            if (source.HasChildren)
            {
                XPathNavigator sharingNavigator = source.SelectSingleNode("sx:sharing", manager);
                XPathNavigator syncNavigator    = source.SelectSingleNode("sx:sync", manager);

                if (sharingNavigator != null)
                {
                    FeedSynchronizationSharingInformation sharing = new FeedSynchronizationSharingInformation();
                    if (sharing.Load(sharingNavigator))
                    {
                        this.Sharing = sharing;
                        wasLoaded    = true;
                    }
                }

                if (syncNavigator != null)
                {
                    FeedSynchronizationItem synchronization = new FeedSynchronizationItem();
                    if (synchronization.Load(syncNavigator))
                    {
                        this.Synchronization = synchronization;
                        wasLoaded            = true;
                    }
                }
            }

            return(wasLoaded);
        }
示例#4
0
        /// <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="ArgumentException">The <paramref name="obj"/> is not the expected <see cref="Type"/>.</exception>
        public int CompareTo(object obj)
        {
            if (obj == null)
            {
                return(1);
            }
            FeedSynchronizationSharingInformation value = obj as FeedSynchronizationSharingInformation;

            if (value != null)
            {
                int result = this.ExpiresOn.CompareTo(value.ExpiresOn);
                result = result | FeedSynchronizationSharingInformation.CompareSequence(this.Relations, value.Relations);
                result = result | String.Compare(this.Since, value.Since, StringComparison.OrdinalIgnoreCase);
                result = result | String.Compare(this.Until, value.Until, StringComparison.OrdinalIgnoreCase);

                return(result);
            }
            else
            {
                throw new ArgumentException(String.Format(null, "obj is not of type {0}, type was found to be '{1}'.", this.GetType().FullName, obj.GetType().FullName), "obj");
            }
        }