TransactionHandler.Disposed Method (DbConnection, DbConnectionInterceptionContext)

[This page is specific to the Entity Framework version 6. The latest version is available as the 'Entity Framework' NuGet package. For more information about Entity Framework, see msdn.com/data/ef.]

Can be implemented in a derived class.

Namespace:  System.Data.Entity.Infrastructure
Assembly:  EntityFramework (in EntityFramework.dll)

Syntax

'Declaration
Public Overridable Sub Disposed ( _
    connection As DbConnection, _
    interceptionContext As DbConnectionInterceptionContext _
)
'Usage
Dim instance As TransactionHandler 
Dim connection As DbConnection 
Dim interceptionContext As DbConnectionInterceptionContext

instance.Disposed(connection, interceptionContext)
public virtual void Disposed(
    DbConnection connection,
    DbConnectionInterceptionContext interceptionContext
)
public:
virtual void Disposed(
    DbConnection^ connection, 
    DbConnectionInterceptionContext^ interceptionContext
)
abstract Disposed : 
        connection:DbConnection * 
        interceptionContext:DbConnectionInterceptionContext -> unit  
override Disposed : 
        connection:DbConnection * 
        interceptionContext:DbConnectionInterceptionContext -> unit
public function Disposed(
    connection : DbConnection, 
    interceptionContext : DbConnectionInterceptionContext
)

Parameters

  • interceptionContext
    Type: DbConnectionInterceptionContext
    The contextual information associated with the call.

See Also

Reference

TransactionHandler Class

Disposed Overload

System.Data.Entity.Infrastructure Namespace