CustomDataSetResult Class
Result class returned by ICustomDataSet.Query or CustomDataSetAdapter.OnQuery implementations.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECustomObjects assembly)
Syntax
public class CustomDataSetResult sealed : IQueryResult
Remarks
This class implements the IQueryResult interface, and provides a simple way of returning features from an ICustomDataSet.Query or CustomDataSetAdapter.OnQuery implementation. The alternative is to create your own custom class implementing the IQueryResult interface.
To use it, just create an instance of it in your query method, add zero, one or more features to it, and use as the return value from the query method.
Please see Custom DataSet Sample for an example of how this class is used in a custom dataset implementation.
Inheritance Hierarchy
System.Object (not available in C#)
CustomDataSetResult
Platforms
Windows, Linux, Android
CustomDataSetResult Members
The CustomDataSetResult type has the following members.
Constructors
Name | Description |
---|---|
CustomDataSetResult | Initializes a new instance of the CustomDataSetResult class. |
Methods
Name | Description |
---|---|
Add | Adds a single Feature to the end of the result. |
AddRange | Overloaded. Adds multiple features to the end of the result. |