Skip to end of banner
Go to start of banner

admGetFiltersByName

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 9 Next »

Description

Retrieves all the filters identified by the specified name. Filters are not restricted to have unique names so you can have one ore more filters returned.

Parameters

Return Type

JFilter []

Returns a list of filters identified by name.

Example

string filterName = "Test";
JFilter []filters = admGetFilterByName(filterName); //is isgnore case
for(JFilter f in filters) {
    runnerLog("Returned filter" + f);
}

See also

  • No labels