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));
 }
示例#2
0
        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));
        }
示例#3
0
 protected static bool TryParseAttribute(string name, string ns, string value, ServiceDocument document, string version)
 {
     return(document.TryParseAttribute(name, ns, value, version));
 }