SyndicationVersions.cs 545 B

123456789101112131415
  1. //------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //------------------------------------------------------------
  4. namespace System.ServiceModel.Syndication
  5. {
  6. using System.Runtime.CompilerServices;
  7. [TypeForwardedFrom("System.ServiceModel.Web, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
  8. public static class SyndicationVersions
  9. {
  10. public const string Atom10 = "Atom10";
  11. public const string Rss20 = "Rss20";
  12. }
  13. }