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