ESRI.ArcGIS.Mobile
EditState Enumeration
See Also  Send Feedback
ESRI.ArcGIS.Mobile.MobileServices Namespace : EditState Enumeration

Describes the state of features in the cache. Used fro query or as properties or returned argument on FeatureDataRow, FeatureDataReader, and FeatureDataRecord.

Syntax

Visual Basic (Declaration) 
Public Enum EditState 
   Inherits Enum
C# 
public enum EditState : Enum 

Members

MemberDescription
NotDefined The feature is not defined in the cache. This value cannot be used for querying.
Original The feature has never been modified, it's in its original state when pulled from the server. When used for a query, the query will returned features as when they were pulled from the server.
Current When used in a query, all the current features: added, modified, or original that have not been modified or deleted.
Deleted The feature has been marked as deleted. When used for a query, the query will returned features that have been marked as deleted.
Modified The feature has been modified. When used for a query, the query will returned features that have been modified.
Added The feature has been added by the user on in the cache. It's a new feature. When used for a query, the query will returned added features.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         ESRI.ArcGIS.Mobile.MobileServices.EditState

Requirements

Namespace: ESRI.ArcGIS.Mobile.MobileServices

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

Assembly: ESRI.ArcGIS.Mobile (in ESRI.ArcGIS.Mobile.dll)

See Also