Version

EnumerableObjectWrapper Constructor(IEnumerable,String)

Creates a new instance of an EnumerableObjectWrapper
Syntax
'Declaration
 
Public Function New( _
   ByVal items As IEnumerable, _
   ByVal name As String _
)
public EnumerableObjectWrapper( 
   IEnumerable items,
   string name
)

Parameters

items
The underlying list of items.
name
The name of the object.
Exceptions
ExceptionDescription
System.ArgumentNullExceptionIf items parameter is null.
System.ArgumentExceptionIf items parameter is a string.
Remarks

Note: if the 'name' parameter is null then the Name property will be initialized by either calling the System.ComponentModel.ITypedList interface's GetListName method. . Otherwise the ToString method is called.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also