DicomObjects.NET.8.48 Documentation
DicomObjects.Delegates Namespace / AssociationClosedHandler Delegate
Sender as Object
e as AssocaitionClosedArgs






In This Topic
    AssociationClosedHandler Delegate
    In This Topic
    Syntax
    'Declaration
     
    
    Public Delegate Sub AssociationClosedHandler( _
       ByVal Sender As System.Object, _
       ByVal e As AssociationClosedArgs _
    ) 
    'Usage
     
    
    Dim instance As New AssociationClosedHandler(AddressOf HandlerMethod)
    public delegate void AssociationClosedHandler( 
       System.object Sender,
       AssociationClosedArgs e
    )
    public delegate AssociationClosedHandler( 
        Sender: System.TObject;
        e: AssociationClosedArgs
    );
    public delegate AssociationClosedHandler( 
       Sender : System.Object,
       e : AssociationClosedArgs
    )
    public: __gc __delegate void AssociationClosedHandler( 
       System.Object* Sender,
       AssociationClosedArgs* e
    )
    public delegate void AssociationClosedHandler( 
       System.Object^ Sender,
       AssociationClosedArgs^ e
    )

    Parameters

    Sender
    Sender as Object
    e
    e as AssocaitionClosedArgs
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also