OctetStringIsNullOrEmpty Method |
Indicates whether the specified
OctetString object is a null reference (
Nothing in Visual Basic) or an
Empty string.
Namespace: Lextm.SharpSnmpLibAssembly: SharpSnmpLib (in SharpSnmpLib.dll) Version: 12.5.7-2+Branch.master.Sha.2a75ece2c9d55c4f731f356d1512c8a5d19fa096.2a75ece2c9d55c4f731f356d1512c8a5d19fa096
Syntaxpublic static bool IsNullOrEmpty(
OctetString? value
)
Public Shared Function IsNullOrEmpty (
value As OctetString
) As Boolean
Dim value As OctetString
Dim returnValue As Boolean
returnValue = OctetString.IsNullOrEmpty(value)
public:
static bool IsNullOrEmpty(
OctetString^ value
)
static member IsNullOrEmpty :
value : OctetString -> bool
Parameters
- value OctetString
- A OctetString reference.
Return Value
Booleantrue if the
value parameter is a null reference (
Nothing in Visual Basic) or an empty string (""); otherwise,
false.
See Also