internal static protected bool TryParseElement(XmlReader reader, SyndicationCategory category, string version) { if (category == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("category"); } return(category.TryParseElement(reader, version)); }
internal static protected bool TryParseElement(XmlReader reader, SyndicationCategory category, string version) { if (category == null) { throw new ArgumentNullException(nameof(category)); } return(category.TryParseElement(reader, version)); }
protected internal static bool TryParseElement (XmlReader reader, SyndicationCategory category, string version) { if (category == null) throw new ArgumentNullException ("category"); return category.TryParseElement (reader, version); }