6 writes to _handleState
System.Data (6)
fx\src\data\System\Data\Odbc\OdbcConnectionHandle.cs (6)
77_handleState = HandleState.Transacted; 136_handleState = HandleState.TransactionInProgress; 169_handleState = HandleState.Transacted; 176_handleState = HandleState.Connected; 199_handleState = HandleState.Connected; 216_handleState = HandleState.Allocated;
7 references to _handleState
System.Data (7)
fx\src\data\System\Data\Odbc\OdbcConnectionHandle.cs (7)
67Debug.Assert(HandleState.Connected <= _handleState, "AutoCommitOff while in wrong state?"); 166if (HandleState.TransactionInProgress == _handleState) { 174if (HandleState.Transacted == _handleState) { // AutoCommitOn 186Debug.Assert(HandleState.Allocated == _handleState, "SQLDriverConnect while in wrong state?"); 214if ((HandleState.Connected == _handleState) || (HandleState.TransactionInProgress == _handleState)) { 219Debug.Assert(HandleState.Allocated == _handleState, "not expected HandleState.Allocated");