Convenience method to import data from a DLL using the Import method.

C# | Visual Basic | Visual C++ |
public ArrayList ImportCustomDataSet( string assemblyFilePath, string fullClassName, string uniqueColumnName, string resultUrlFormat )
Public Function ImportCustomDataSet ( _ assemblyFilePath As String, _ fullClassName As String, _ uniqueColumnName As String, _ resultUrlFormat As String _ ) As ArrayList
public: ArrayList^ ImportCustomDataSet( String^ assemblyFilePath, String^ fullClassName, String^ uniqueColumnName, String^ resultUrlFormat )

- assemblyFilePath (String)
- Full path to the DLL, including filename - can be relative to IndexDirectory - see help.
- fullClassName (String)
- The fully qualified class name that contains the data.
- uniqueColumnName (String)
- The name of the column which uniquely identifies a row (eg. primary key)
- resultUrlFormat (String)
- The format string for the result URLs.

Returns list of Uri objects newly imported

The Help has much more information in the importing section, regarding custom dataset imports.