|   | IAdapterCollectionTryCreateAdapter Method | 
        
        
            Attempts to create an 
IAdapter from the specified 
DataRow.
            
 GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.257-beta
 Syntax
Syntaxbool TryCreateAdapter(
	DataRow adapterRow,
	out IAdapter adapter
)
Function TryCreateAdapter ( 
	adapterRow As DataRow,
	<OutAttribute> ByRef adapter As IAdapter
) As Boolean
bool TryCreateAdapter(
	DataRow^ adapterRow, 
	[OutAttribute] IAdapter^% adapter
)
abstract TryCreateAdapter : 
        adapterRow : DataRow * 
        adapter : IAdapter byref -> bool function TryCreateAdapter(adapterRow, adapter);
Parameters
- adapterRow  DataRow
- DataRow containing item information to initialize.
- adapter  IAdapter
- Initialized adapter if successful; otherwise null.
Return Value
Booleantrue if item was successfully initialized; otherwise 
false.
 See Also
See Also