| EAPUtilIsNullObjectOrEmptyString Method  | 
 
            Determine if an object is null or a blank string.
            A DBNull object is considered null.  
            Note that this function is identical to 
IsNullOrBlank(Object).
            
 
    Namespace: 
   NetQuarry
    Assembly:
   EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
 Syntax
Syntaxpublic static bool IsNullObjectOrEmptyString(
	Object obj
)
Public Shared Function IsNullObjectOrEmptyString ( 
	obj As Object
) As Boolean
Parameters
- obj
- Type: SystemObject
 The object in question.
Return Value
Type: 
BooleanTrue if the object is null, or is a blank string, else false.
 See Also
See Also