Enum TransactionResultStatus
This enumeration represents the results from a FeatureSource transaction.
public enum TransactionResultStatus
Fields
Cancel = 2
This means that the transaction was canceled.
Failure = 1
This means that at least one of the items in the transaction buffer failed. It may mean that other record did succeed. This depends on the implementation of the specific FeatureSource.
Success = 0
This means that each item in the transaction buffer succeeded.
Remarks
None