SfcConnectionContextMode 枚举

Specifies the connection mode of the object tree and the client and server processing rules. 不要在您的代码中直接引用此成员。它支持 SQL Server 基础结构。

命名空间:  Microsoft.SqlServer.Management.Sdk.Sfc
程序集:  Microsoft.SqlServer.Management.Sdk.Sfc(在 Microsoft.SqlServer.Management.Sdk.Sfc.dll 中)

语法

声明
Public Enumeration SfcConnectionContextMode
用法
Dim instance As SfcConnectionContextMode
public enum SfcConnectionContextMode
public enum class SfcConnectionContextMode
type SfcConnectionContextMode
public enum SfcConnectionContextMode

成员

成员名称 说明
Offline Not connected for read or write operations.
Online Fully connected for read and write operations.
TransactedBatch Fully connected for read operations. Queues all write operations to the action log. If the mode changes to Online, or if the FlushActionLog method is called, performs all write operations, and pops the queue with each write operation. If the mode changes to Offline, the action log is discarded.
NonTransactedBatch Fully connected for read operations. Queues all write operations to the action log. If the mode changes to Online, or if the FlushActionLog method is called, performs all write operations with transaction bracketing, but does not pop the queue. If the mode changes to Offline, the action log is discarded.