/// <summary> /// Get references that matches search criteria. /// </summary> /// <param name="clientInformation">Information about the client that makes this web service call.</param> /// <param name="searchCriteria">Reference search criteria.</param> /// <returns>References that matches search criteria.</returns> public List <WebReference> GetReferencesBySearchCriteria(WebClientInformation clientInformation, WebReferenceSearchCriteria searchCriteria) { using (WebServiceContext context = GetWebServiceContext(clientInformation)) { try { return(ReferenceManager.GetReferencesBySearchCriteria(context, searchCriteria)); } catch (Exception exception) { WebServiceData.LogManager.LogError(context, exception); throw; } } }