構文
boolean IisKey(string attributeName);
パラメーター
戻り値
メソッドは、属性がキーである場合には true を戻します。それ以外の場合には、false を戻します。
例外
例
// See if attribute is key boolean isKey = false; String busAttribute = "AttributeName"; isKey = exampleBusObj.IisKey(busAttribute); if (isKey) ...