Exemplo n.º 1
0
        /// <summary>
        /// Provides example code for the AtomEntry.Create(Uri) method
        /// </summary>
        public static void CreateExample()
        {
            AtomEntry entry = AtomEntry.Create(new Uri("http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=Argotic&DownloadId=28707"));

            if (entry.PublishedOn >= DateTime.Today)
            {
                //  Perform some processing on the entry
            }
        }