当前位置: 首页>>代码示例>>C#>>正文


C# SyndicationLink.WriteAttributeExtensions方法代码示例

本文整理汇总了C#中System.ServiceModel.Syndication.SyndicationLink.WriteAttributeExtensions方法的典型用法代码示例。如果您正苦于以下问题:C# SyndicationLink.WriteAttributeExtensions方法的具体用法?C# SyndicationLink.WriteAttributeExtensions怎么用?C# SyndicationLink.WriteAttributeExtensions使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.ServiceModel.Syndication.SyndicationLink的用法示例。


在下文中一共展示了SyndicationLink.WriteAttributeExtensions方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: WriteAlternateLink

 private void WriteAlternateLink(XmlWriter writer, SyndicationLink link, Uri baseUri)
 {
     writer.WriteStartElement("link", "");
     Uri baseUriToWrite = FeedUtils.GetBaseUriToWrite(baseUri, link.BaseUri);
     if (baseUriToWrite != null)
     {
         writer.WriteAttributeString("xml", "base", "http://www.w3.org/XML/1998/namespace", FeedUtils.GetUriString(baseUriToWrite));
     }
     link.WriteAttributeExtensions(writer, "Rss20");
     writer.WriteString(FeedUtils.GetUriString(link.Uri));
     writer.WriteEndElement();
 }
开发者ID:pritesh-mandowara-sp,项目名称:DecompliedDotNetLibraries,代码行数:12,代码来源:Rss20FeedFormatter.cs

示例2: WriteAttributeExtensions

		protected internal static void WriteAttributeExtensions (XmlWriter writer, SyndicationLink link, string version)
		{
			if (link == null)
				throw new ArgumentNullException ("link");
			link.WriteAttributeExtensions (writer, version);
		}
开发者ID:nickchal,项目名称:pash,代码行数:6,代码来源:SyndicationItemFormatter.cs

示例3: WriteMediaEnclosure

 private void WriteMediaEnclosure(XmlWriter writer, SyndicationLink link, Uri baseUri)
 {
     writer.WriteStartElement("enclosure", "");
     Uri baseUriToWrite = FeedUtils.GetBaseUriToWrite(baseUri, link.BaseUri);
     if (baseUriToWrite != null)
     {
         writer.WriteAttributeString("xml", "base", "http://www.w3.org/XML/1998/namespace", FeedUtils.GetUriString(baseUriToWrite));
     }
     link.WriteAttributeExtensions(writer, "Rss20");
     if (!link.AttributeExtensions.ContainsKey(Rss20Url))
     {
         writer.WriteAttributeString("url", "", FeedUtils.GetUriString(link.Uri));
     }
     if ((link.MediaType != null) && !link.AttributeExtensions.ContainsKey(Rss20Type))
     {
         writer.WriteAttributeString("type", "", link.MediaType);
     }
     if ((link.Length != 0L) && !link.AttributeExtensions.ContainsKey(Rss20Length))
     {
         writer.WriteAttributeString("length", "", Convert.ToString(link.Length, CultureInfo.InvariantCulture));
     }
     writer.WriteEndElement();
 }
开发者ID:pritesh-mandowara-sp,项目名称:DecompliedDotNetLibraries,代码行数:23,代码来源:Rss20FeedFormatter.cs

示例4: WriteMediaEnclosure

 void WriteMediaEnclosure(XmlWriter writer, SyndicationLink link, Uri baseUri)
 {
     writer.WriteStartElement(Rss20Constants.EnclosureTag, Rss20Constants.Rss20Namespace);
     Uri baseUriToWrite = FeedUtils.GetBaseUriToWrite(baseUri, link.BaseUri);
     if (baseUriToWrite != null)
     {
         writer.WriteAttributeString("xml", "base", Atom10FeedFormatter.XmlNs, FeedUtils.GetUriString(baseUriToWrite));
     }
     link.WriteAttributeExtensions(writer, SyndicationVersions.Rss20);
     if (!link.AttributeExtensions.ContainsKey(Rss20Url))
     {
         writer.WriteAttributeString(Rss20Constants.UrlTag, Rss20Constants.Rss20Namespace, FeedUtils.GetUriString(link.Uri));
     }
     if (link.MediaType != null && !link.AttributeExtensions.ContainsKey(Rss20Type))
     {
         writer.WriteAttributeString(Rss20Constants.TypeTag, Rss20Constants.Rss20Namespace, link.MediaType);
     }
     if (link.Length != 0 && !link.AttributeExtensions.ContainsKey(Rss20Length))
     {
         writer.WriteAttributeString(Rss20Constants.LengthTag, Rss20Constants.Rss20Namespace, Convert.ToString(link.Length, CultureInfo.InvariantCulture));
     }
     writer.WriteEndElement();
 }
开发者ID:uQr,项目名称:referencesource,代码行数:23,代码来源:Rss20FeedFormatter.cs

示例5: WriteAlternateLink

 void WriteAlternateLink(XmlWriter writer, SyndicationLink link, Uri baseUri)
 {
     writer.WriteStartElement(Rss20Constants.LinkTag, Rss20Constants.Rss20Namespace);
     Uri baseUriToWrite = FeedUtils.GetBaseUriToWrite(baseUri, link.BaseUri);
     if (baseUriToWrite != null)
     {
         writer.WriteAttributeString("xml", "base", Atom10FeedFormatter.XmlNs, FeedUtils.GetUriString(baseUriToWrite));
     }
     link.WriteAttributeExtensions(writer, SyndicationVersions.Rss20);
     writer.WriteString(FeedUtils.GetUriString(link.Uri));
     writer.WriteEndElement();
 }
开发者ID:uQr,项目名称:referencesource,代码行数:12,代码来源:Rss20FeedFormatter.cs

示例6: WriteLink

 internal void WriteLink(XmlWriter writer, SyndicationLink link, Uri baseUri)
 {
     writer.WriteStartElement(Atom10Constants.LinkTag, Atom10Constants.Atom10Namespace);
     Uri baseUriToWrite = FeedUtils.GetBaseUriToWrite(baseUri, link.BaseUri);
     if (baseUriToWrite != null)
     {
         writer.WriteAttributeString("xml", "base", XmlNs, FeedUtils.GetUriString(baseUriToWrite));
     }
     link.WriteAttributeExtensions(writer, SyndicationVersions.Atom10);
     if (!string.IsNullOrEmpty(link.RelationshipType) && !link.AttributeExtensions.ContainsKey(Atom10Relative))
     {
         writer.WriteAttributeString(Atom10Constants.RelativeTag, link.RelationshipType);
     }
     if (!string.IsNullOrEmpty(link.MediaType) && !link.AttributeExtensions.ContainsKey(Atom10Type))
     {
         writer.WriteAttributeString(Atom10Constants.TypeTag, link.MediaType);
     }
     if (!string.IsNullOrEmpty(link.Title) && !link.AttributeExtensions.ContainsKey(Atom10Title))
     {
         writer.WriteAttributeString(Atom10Constants.TitleTag, link.Title);
     }
     if (link.Length != 0 && !link.AttributeExtensions.ContainsKey(Atom10Length))
     {
         writer.WriteAttributeString(Atom10Constants.LengthTag, Convert.ToString(link.Length, CultureInfo.InvariantCulture));
     }
     if (!link.AttributeExtensions.ContainsKey(Atom10Href))
     {
         writer.WriteAttributeString(Atom10Constants.HrefTag, FeedUtils.GetUriString(link.Uri));
     }
     link.WriteElementExtensions(writer, SyndicationVersions.Atom10);
     writer.WriteEndElement();
 }
开发者ID:krytht,项目名称:DotNetReferenceSource,代码行数:32,代码来源:Atom10FeedFormatter.cs

示例7: WriteLink

 internal void WriteLink(XmlWriter writer, SyndicationLink link, Uri baseUri)
 {
     writer.WriteStartElement("link", "http://www.w3.org/2005/Atom");
     Uri baseUriToWrite = FeedUtils.GetBaseUriToWrite(baseUri, link.BaseUri);
     if (baseUriToWrite != null)
     {
         writer.WriteAttributeString("xml", "base", "http://www.w3.org/XML/1998/namespace", FeedUtils.GetUriString(baseUriToWrite));
     }
     link.WriteAttributeExtensions(writer, "Atom10");
     if (!string.IsNullOrEmpty(link.RelationshipType) && !link.AttributeExtensions.ContainsKey(Atom10Relative))
     {
         writer.WriteAttributeString("rel", link.RelationshipType);
     }
     if (!string.IsNullOrEmpty(link.MediaType) && !link.AttributeExtensions.ContainsKey(Atom10Type))
     {
         writer.WriteAttributeString("type", link.MediaType);
     }
     if (!string.IsNullOrEmpty(link.Title) && !link.AttributeExtensions.ContainsKey(Atom10Title))
     {
         writer.WriteAttributeString("title", link.Title);
     }
     if ((link.Length != 0L) && !link.AttributeExtensions.ContainsKey(Atom10Length))
     {
         writer.WriteAttributeString("length", Convert.ToString(link.Length, CultureInfo.InvariantCulture));
     }
     if (!link.AttributeExtensions.ContainsKey(Atom10Href))
     {
         writer.WriteAttributeString("href", FeedUtils.GetUriString(link.Uri));
     }
     link.WriteElementExtensions(writer, "Atom10");
     writer.WriteEndElement();
 }
开发者ID:pritesh-mandowara-sp,项目名称:DecompliedDotNetLibraries,代码行数:32,代码来源:Atom10FeedFormatter.cs


注:本文中的System.ServiceModel.Syndication.SyndicationLink.WriteAttributeExtensions方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。