/// <summary> /// Run ContentInspection_Search, and return results as a list of ContentInspectionRow. /// </summary> /// <param name="fldSourceUrl">Value for SourceUrl</param> /// <returns>A collection of ContentInspectionRow.</returns> public static List <ContentInspectionContract> SearchNow(string fldSourceUrl ) { var driver = new ContentInspectionLogic(); driver.Search(fldSourceUrl ); return(driver.Results); }
/// <summary> /// Run ContentInspection_Search, and return results as a list of ContentInspectionRow. /// </summary> /// <param name="fldSourceUrl">Value for SourceUrl</param> /// <param name="connection">The SqlConnection to use</param> /// <param name="transaction">The SqlTransaction to use</param> /// <returns>A collection of ContentInspectionRow.</returns> public static List <ContentInspectionContract> SearchNow(string fldSourceUrl , SqlConnection connection, SqlTransaction transaction) { var driver = new ContentInspectionLogic(); driver.Search(fldSourceUrl , connection, transaction); return(driver.Results); }