ReadOperator.DataSet Property
Gets or sets the DataSet that the operator reads features from.
Syntax
public DataSet DataSet { get; set; }
Property Value
Example
// Replace the DataSet a ReadOperator so it reads from
public static void ReplaceDataSetInReadOperator(ReadOperator readOperator, DataSet dataSet)
{
// This property is a member of a type that might be referred to by a View
// or a GlobeView, either directly or indirectly through other objects, which means
// that you must use the Guard class to take the global configuration lock when it
// is modified to synchronize access with any running Carmenta Engine threads.
using (Guard guard = new Guard())
{
// Replace the DataSet in the ReadOperator
readOperator.DataSet = dataSet;
}
}
Platforms
Windows, Linux, Android