Validates that at least one of multiple arguments is provided. Arguments and names are provided in a dictionary.

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 static void ValidateArgumentAtLeastOneRequired(
	Dictionary<string, Object> nameValues
)
Visual Basic
Public Shared Sub ValidateArgumentAtLeastOneRequired ( _
	nameValues As Dictionary(Of String, Object) _
)
Visual C++
public:
static void ValidateArgumentAtLeastOneRequired(
	Dictionary<String^, Object^>^ nameValues
)

Parameters

nameValues
Type: System.Collections.Generic..::..Dictionary<(Of <(<'String, Object>)>)>
A dictionary containing the argument names and values.

See Also