SfcConnectionContextMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The mode of the object tree for client and server processing rules. Offline - no connection to the server for reads or writes at all. Online - full connection to the server for both reads and writes. TransactedBatch - full connection for reads, queue all writes to action log. mode changed to Online, or explicit FlushActionLog() - perform all writes with transaction bracketing, do not pop queue. mode changed to Offline - discard action log. NonTransactedBatch - full connection for reads, queue all writes to action log. mode changed to Online, or explicit FlushActionLog() - perform all writes, pop queue as each action done. mode changed to Offline - discard action log.
public enum SfcConnectionContextMode
type SfcConnectionContextMode =
Public Enum SfcConnectionContextMode
- Inheritance
-
SfcConnectionContextMode
Fields
Name | Value | Description |
---|---|---|
Offline | 0 | |
Online | 1 | |
TransactedBatch | 2 | |
NonTransactedBatch | 3 |