|
|
LOGICAL Add (IAuthTag)
|
/* Add an auth tag to the collection
@param IAuthTag The role/tag to add
@return logical TRUE if the item was added from the set */
|
|
|
LOGICAL CanFind (character)
|
/* Return true if the specified auth tag is in the collection
@param character The auth tag name to find
@return logical TRUE if an auth tag with the given name exists in the collection */
|
|
|
LOGICAL Contains (IAuthTag)
|
/* Return true if the Role/AuthTag is in the collection
@param IAuthTag The role/tag to find
@return logical TRUE if a role/tag with the given name exists in the collection */
|
|
|
OpenEdge.DataAdmin.IAuthTag Find (character)
|
/** Return the AuthTag with the specified auth tag from the collection.
@param character The auth tag name to find
@return IAuthTag Returns an AuthTag if found, otherwise unknown */
|
|
|
LOGICAL Remove (IAuthTag)
|
/* Remove an auth tag from the collection
@param IAuthTag The role/tag to remove
@return logical TRUE if the item was removed from the set */
|