Determines whether the attribute is a key.
Syntax
boolean IisKey(string attributeName);
Parameters
Return Values
The method returns true if the attribute is a key, else it returns false.
Exceptions
Example
// See if attribute is key boolean isKey = false; String busAttribute = "AttributeName"; isKey = exampleBusObj.IisKey(busAttribute); if (isKey) ...