IisIgnoreValue()

属性値が「ignore」であるかどうかを判別します。

構文

boolean IisIgnoreValue(string attributeName);
 

パラメーター

attributeName
値が「ignore」であるかどうか検査される属性の名前。

戻り値

属性値が「ignore」である場合には true を戻します。それ以外の場合には、false を戻します。

例外

IInvalidAttributeNameException
属性名が無効な場合にスローされます。

IValueNotSetException
属性にデフォルト値がある場合にスローされます。

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

Copyright IBM Corp. 2004