This validation method performs a check to ensure that the object passed in is not null or empty in the case of a string

Namespace: Nehta.VendorLibrary.Common
Assembly: Nehta.VendorLibrary.Common (in Nehta.VendorLibrary.Common.dll) Version: 3.0.2.0 (1.0.0.0)

Syntax

C#
public bool ArgumentRequiredCheck(
	string name,
	Object value
)
Visual Basic
Public Function ArgumentRequiredCheck ( _
	name As String, _
	value As Object _
) As Boolean
Visual C++
public:
bool ArgumentRequiredCheck(
	String^ name, 
	Object^ value
)

Parameters

name
Type: System..::..String
The property name
value
Type: System..::..Object
The collection to check

Return Value

A boolean indicating if the validation passed

See Also