IisIgnoreValue()

Determines whether the attribute value is "ignore".

Syntax

boolean IisIgnoreValue(string attributeName);

Parameters

attributeName
The name of the attribute whose value is tested for "ignore".

Return Values

Returns true if the attribute value is "ignore"; otherwise, it returns false.

Exceptions

IInvalidAttributeNameException
Thrown when the attribute name is invalid.

IValueNotSetException
Thrown when the attribute has no default value.

Example

// Call the attribute ignore method 
boolean isIgnore = false;
String busAttribute = "AttributeName";
isIgnore = exampleBusObj.IisIgnoreValue(busAttribute);
if (isIgnore)
     ...

Copyright IBM Corp. 1997, 2004