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. |