Enumeração SfcConnectionContextMode
Specifies the connection mode of the object tree and the client and server processing rules. Não referencie esse membro diretamente no código. Ele dá suporte à infraestrutura do SQL Server.
Namespace: Microsoft.SqlServer.Management.Sdk.Sfc
Assembly: Microsoft.SqlServer.Management.Sdk.Sfc (em Microsoft.SqlServer.Management.Sdk.Sfc.dll)
Sintaxe
'Declaração
Public Enumeration SfcConnectionContextMode
'Uso
Dim instance As SfcConnectionContextMode
public enum SfcConnectionContextMode
public enum class SfcConnectionContextMode
type SfcConnectionContextMode
public enum SfcConnectionContextMode
Membros
Nome do membro | Descrição | |
---|---|---|
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. |