In the Editing Options of a project, I choose to automatically save edits after 1 minute.
If I create a new feature manually, it is automatically saved after 1 minute. However, if I create the feature programmatically, it is not automatically saved after 1 minute.
To create the feature programmatically, I use a Construction Tool and the following code inside the method OnSketchCompleteAsync():
var createOperation = new EditOperation();
createOperation.Create(featLayer, attributes);
bool succeeded = await QueuedTask.Run(() =>
{
return createOperation.Execute();
}); Is there a way that the creation of my new feature is recognized by automatically save edits?