Description
returns the data provider information specified by the data provider path.
Syntax
[Visual Basic .NET] |
---|
Public Function GetDataPrvInfoFromPath( _
ByVal DataProviderPath As String _
) As
|
Parameters
See Also
Example
Coarse grain approach to retrieving data provider information
[C#] |
---|
// The path separator is //
IAgDataProviderInfo dp = facility.DataProviders.GetDataPrvInfoFromPath("Lighting Times//Sunlight");
string dpiName = dp.Name;
AgEDataProviderType dpiType = dp.Type;
bool isGroup = dp.IsGroup();
|
|
Coarse grain approach to retrieving data provider information
[Visual Basic .NET] |
---|
' The path separator is //
Dim dp As IAgDataProviderInfo = facility.DataProviders.GetDataPrvInfoFromPath("Lighting Times//Sunlight")
Dim dpiName As String = dp.Name
Dim dpiType As AgEDataProviderType = dp.Type
Dim isGroup As Boolean = dp.IsGroup()
|
|