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