Processes an error that has occurred during sending of a callback. Processes an error that has occurred during a callback.
            
            
            Syntax
            
            
            
            
            'Declaration
 
Protected Overrides NotOverridable Sub SendCallbackError( _
   ByVal  As String, _
   ByVal  As Exception _
) 
             
        
            
            'Usage
 
Dim instance As EasyDAClient
Dim name As String
Dim exception As Exception
 
instance.SendCallbackError(name, exception)
             
        
            
            protected override void SendCallbackError( 
   string ,
   Exception 
)
             
        
            
            protected:
void SendCallbackError( 
   String^ ,
   Exception^ 
) override 
             
        
             
        
            Parameters
- name
 
- Name of the callback or event handler.Name of the callback or event handler.
 - exception
 
- The exception thrown by the handler.The exception thrown by the handler.
 
            
             
            
            
            
            
            
            
            
            
            
            Requirements
 
Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2012 R2, Windows Server 2016; .NET: Linux, macOS, Microsoft Windows
            
            See Also