This documentation is archived and is not being maintained.
ResourcePool.TransactionEndDelegate Delegate
.NET Framework 1.1
Represents the method that handles the ending of a transaction.
[Visual Basic] <Serializable> Public Delegate Sub ResourcePool.TransactionEndDelegate( _ ByVal resource As Object _ ) [C#] [Serializable] public delegate void ResourcePool.TransactionEndDelegate( object resource ); [C++] [Serializable] public __gc __delegate void ResourcePool.TransactionEndDelegate( Object* resource );
[JScript] In JScript, you can use the delegates in the .NET Framework, but you cannot define your own.
Parameters [Visual Basic, C#, C++]
The declaration of your callback method must have the same parameters as the ResourcePool.TransactionEndDelegate delegate declaration.
- resource
- The object that is passed back to the delegate.
Remarks
When you create a ResourcePool.TransactionEndDelegate delegate, you identify the method that will handle the event. For more information about event handler delegates, see Events and Delegates.
Requirements
Namespace: System.EnterpriseServices
Platforms: Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: System.Enterpriseservices (in System.Enterpriseservices.dll)
See Also
Show: