Interface IBatchInsertFeatures
Defines a command that inserts a series of features into a Feature Source
Namespace: OSGeo.MapGuide.MaestroAPI.Commands
Assembly: OSGeo.MapGuide.MaestroAPI.dll
Syntax
public interface IBatchInsertFeatures : IFeatureCommand, ICommand
Remarks
This command is only supported on certain implementations of IServerConnection You can find out if the connection supports this command through the Capabilities
Nothing implements this interface at the moment
Properties
| Improve this Doc View SourceRecordsToInsert
Gets or sets the list of features to insert
Declaration
ICollection<IRecord> RecordsToInsert { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.ICollection<IRecord> |
Methods
| Improve this Doc View SourceExecute()
Executes the command.
Declaration
ICollection<InsertResult> Execute()
Returns
Type | Description |
---|---|
System.Collections.Generic.ICollection<InsertResult> | A collection of InsertResult instances. Inspect the individual InsertResult properties to determine which features failed to be inserted. |