internal static protected void WriteAttributeExtensions(XmlWriter writer, SyndicationPerson person, string version)
 {
     if (person == null)
     {
         throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("person");
     }
     person.WriteAttributeExtensions(writer, version);
 }
예제 #2
0
 internal static protected void WriteAttributeExtensions(XmlWriter writer, SyndicationPerson person, string version)
 {
     if (person == null)
     {
         throw new ArgumentNullException(nameof(person));
     }
     person.WriteAttributeExtensions(writer, version);
 }
예제 #3
0
		protected internal static void WriteAttributeExtensions (XmlWriter writer, SyndicationPerson person, string version)
		{
			if (person == null)
				throw new ArgumentNullException ("person");
			person.WriteAttributeExtensions (writer, version);
		}