Opc.Ua.Core
ToList<T> Method (ExtensionObject)



Opc.Ua Namespace > ExtensionObject Class : ToList<T> Method
The array to convert.
Converts an array of extension objects to a List of the specified type.
Syntax
'Declaration
 
Public Shared Function ToList(Of T As Class)( _
   ByVal source As Object _
) As List(Of T)
'Usage
 
Dim source As Object
Dim value As List(Of T)
 
value = ExtensionObject.ToList(Of T)(source)
public static List<T> ToList<T>( 
   object source
)
where T: class
public:
static List<T^>^ ToListgeneric<typename T>
( 
   Object^ source
) 
where T: ref class

Parameters

source
The array to convert.

Type Parameters

T

Return Value

The new typed List
Remarks
Will add null elements if individual elements cannot be converted.
Requirements

Target Platforms: Windows 7, 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

Reference

ExtensionObject Class
ExtensionObject Members