protected static bool TryParseAttribute(string name, string ns, string value, ServiceDocument document, string version) { if (document == null) { throw System.ServiceModel.DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("document"); } return(document.TryParseAttribute(name, ns, value, version)); }
protected static bool TryParseAttribute(string name, string ns, string value, ServiceDocument document, string version) { if (document == null) { throw new ArgumentNullException(nameof(document)); } return(document.TryParseAttribute(name, ns, value, version)); }
protected static bool TryParseAttribute(string name, string ns, string value, ServiceDocument document, string version) { return(document.TryParseAttribute(name, ns, value, version)); }