2 implementations of State
System.Data.Common (1)
System\Data\Common\DbConnection.cs (1)
47public abstract ConnectionState State { get; }
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net9.0\System.Data.OleDb.notsupported.cs (1)
107public override System.Data.ConnectionState State { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
4 references to State
System.Data.Common (4)
System\Data\Common\DbDataAdapter.cs (4)
982connectionStates[0] = connections[0]!.State; 1476connectionStates[index] = connections[0]!.State; 1479return connection.State; 1825originalState = connection.State;