Hello,im using the the Editor with custom commands to create an editing application, everything works fine but for deleting a feature i would like to do the following, update an attribute,, i was looking at the REST url and found out there Edit-Delete-Update operations available but never found a way to access them.private void Editor_EditCompleted(object sender, Editor.EditEventArgs e)
{
if (e.Action == Editor.EditAction.DeleteSelected)
{
}
}
i started fiddler and found out that it is calling applyedits through REST, is there any direct way to update attributes instead of deleting them ?thanks for any help