Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AddressXception/91924847718487cb8f4e16d05084d905 to your computer and use it in GitHub Desktop.
Save AddressXception/91924847718487cb8f4e16d05084d905 to your computer and use it in GitHub Desktop.
public AppResult[] Query(string marked)
{
try
{
var control = _screenDictionary
.FindControl(_window.FriendlyName, () => marked);
return new AppResult[]
{
new WindowsAppResult(control)
};
}
catch (Exception ex)
{
Console.WriteLine(ex);
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment