Please ensure Javascript is enabled for purposes of website accessibility
Powered by Zoomin Software. For more details please contactZoomin

AF SDK Getting Started

Lesson 2 hints and tips

  • Last UpdatedSep 29, 2022
  • 1 minute read

A general pattern for searching is shown here:

using (AFElementSearch elementQuery = new AFElementSearch(database,
"nameOfSearch", queryString))
{
elementQuery.CacheTimeout = TimeSpan.FromMinutes(5);
foreach (AFElement element in elementQuery.FindElements())
{
ProcessElement(element);
}
}

TitleResults for “How to create a CRG?”Also Available in