boolean IisBlankValue(string attributeName);
Returns true if the attribute value is a blank value; otherwise, it returns false.
// See if attribute is blank boolean isBlank = false; String busAttribute = "AttributeName"; isBlank = exampleBusObj.IisBlankValue(busAttribute); if (isBlank) ...