internal static protected bool TryParseElement(XmlReader reader, SyndicationLink link, string version)
 {
     if (link == null)
     {
         throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("link");
     }
     return(link.TryParseElement(reader, version));
 }
예제 #2
0
 internal static protected bool TryParseElement(XmlReader reader, SyndicationLink link, string version)
 {
     if (link == null)
     {
         throw new ArgumentNullException(nameof(link));
     }
     return(link.TryParseElement(reader, version));
 }
예제 #3
0
		protected internal static bool TryParseElement (XmlReader reader, SyndicationLink link, string version)
		{
			if (link == null)
				throw new ArgumentNullException ("link");
			return link.TryParseElement (reader, version);
		}