internal static protected void WriteElementExtensions(XmlWriter writer, SyndicationCategory category, string version)
 {
     if (category == null)
     {
         throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("category");
     }
     category.WriteElementExtensions(writer, version);
 }
Ejemplo n.º 2
0
 internal static protected void WriteElementExtensions(XmlWriter writer, SyndicationCategory category, string version)
 {
     if (category == null)
     {
         throw new ArgumentNullException(nameof(category));
     }
     category.WriteElementExtensions(writer, version);
 }
Ejemplo n.º 3
0
		protected internal void WriteElementExtensions (XmlWriter writer, SyndicationCategory category, string version)
		{
			if (category == null)
				throw new ArgumentNullException ("category");
			category.WriteElementExtensions (writer, version);
		}