當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。