Namespace: log4net.AppenderAssembly: log4net (in log4net.dll) Version: 2.0.6.0-.NET 4.0
protected IDbConnection Connection { get; set; }
Protected Property Connection As IDbConnection
Get
Set
protected:
property IDbConnection^ Connection {
IDbConnection^ get ();
void set (IDbConnection^ value);
}
member Connection : IDbConnection with get, set
Property Value
Type:
IDbConnection
The underlying
IDbConnection.
AdoNetAppender creates a
IDbConnection to insert
logging events into a database. Classes deriving from
AdoNetAppender
can use this property to get or set this
IDbConnection. Use the
underlying
IDbConnection returned from
Connection if
you require access beyond that which
AdoNetAppender provides.
Reference