| 1234567891011121314151617181920212223242526 |
- //
- // System.Data.ConnectionState.cs
- //
- // Author:
- // Christopher Podurgiel ([email protected])
- //
- // (C) Chris Podurgiel
- //
- namespace System.Data
- {
- /// <summary>
- /// Returns the current state of the connection to a data source.
- /// This enumeration has a FlagsAttribute that allows a bitwise combination of its member values.
- /// </summary>
- public enum ConnectionState
- {
- Broken,
- Closed,
- Connecting,
- Executing,
- Fetching,
- Open
- }
- }
|