internal static protected bool TryParseElement(XmlReader reader, SyndicationCategory category, string version)
 {
     if (category == null)
     {
         throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("category");
     }
     return(category.TryParseElement(reader, version));
 }
Пример #2
0
 internal static protected bool TryParseElement(XmlReader reader, SyndicationCategory category, string version)
 {
     if (category == null)
     {
         throw new ArgumentNullException(nameof(category));
     }
     return(category.TryParseElement(reader, version));
 }
Пример #3
0
		protected internal static bool TryParseElement (XmlReader reader, SyndicationCategory category, string version)
		{
			if (category == null)
				throw new ArgumentNullException ("category");
			return category.TryParseElement (reader, version);
		}