Class NpgsqlOperationInProgressException
- Namespace
- Npgsql
- Assembly
- Npgsql.dll
Thrown when trying to use a connection that is already busy performing some other operation. Provides information on the already-executing operation to help with debugging.
public sealed class NpgsqlOperationInProgressException : NpgsqlException, ISerializable
- Inheritance
-
NpgsqlOperationInProgressException
- Implements
- Inherited Members
Constructors
NpgsqlOperationInProgressException(NpgsqlCommand)
Creates a new instance of NpgsqlOperationInProgressException.
public NpgsqlOperationInProgressException(NpgsqlCommand command)
Parameters
command
NpgsqlCommandA command which was in progress when the operation which triggered this exception was executed.
Properties
CommandInProgress
If the connection is busy with another command, this will contain a reference to that command. Otherwise, if the connection if busy with another type of operation (e.g. COPY), contains null.
public NpgsqlCommand? CommandInProgress { get; }