You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
351 B
14 lines
351 B
Imports LINQ.Runtime.Drivers
|
|
|
|
<DriverFlag("dataframe")>
|
|
Public Class CDFDataSet : Inherits DataSourceDriver
|
|
|
|
Public Sub New(arguments() As String)
|
|
MyBase.New(arguments)
|
|
End Sub
|
|
|
|
Public Overrides Function ReadFromUri(uri As String) As IEnumerable(Of Object)
|
|
Throw New NotImplementedException()
|
|
End Function
|
|
End Class
|