Represents the method that will handle an event raised when a client has created, deleted, or changed the subscription on the server.
            Syntax
            
            
            
            
            'Declaration
 
<ComVisibleAttribute(False)>
Public Delegate Sub EasyUAClientSubscriptionLifecycleEventHandler( _
   ByVal  As Object, _
   ByVal  As EasyUAClientSubscriptionLifecycleEventArgs _
) 
             
        
            
            'Usage
 
Dim instance As New EasyUAClientSubscriptionLifecycleEventHandler(AddressOf HandlerMethod)
             
        
            
            [ComVisible(false)]
public delegate void EasyUAClientSubscriptionLifecycleEventHandler( 
   object ,
   EasyUAClientSubscriptionLifecycleEventArgs 
)
             
        
            
            [ComVisible(false)]
public delegate void EasyUAClientSubscriptionLifecycleEventHandler( 
   Object^ ,
   EasyUAClientSubscriptionLifecycleEventArgs^ 
)
             
        
             
        
            Parameters
- sender
 
- The source of the event.
 - e
 
- An OpcLabs.EasyOpc.UA.OperationModel.EasyUAClientSessionConnectionEventArgs that contains the event data.
 
            
             
            
            
            
            
            
            
            Requirements
 
Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows
            
            See Also