Enum TransactionResultStatus
This enumeration represents the results from a FeatureSource transaction.
public enum TransactionResultStatus
Fields
Cancel = 2This means that the transaction was canceled.
Failure = 1This 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 = 0This means that each item in the transaction buffer succeeded.
Remarks
None