ExceptionHandler.AsynchronousThreadExceptionHandler Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the current ExceptionHandler implementation for the application domain.
public:
static property System::ServiceModel::Dispatcher::ExceptionHandler ^ AsynchronousThreadExceptionHandler { System::ServiceModel::Dispatcher::ExceptionHandler ^ get(); void set(System::ServiceModel::Dispatcher::ExceptionHandler ^ value); };
public static System.ServiceModel.Dispatcher.ExceptionHandler AsynchronousThreadExceptionHandler { [System.Security.SecurityCritical] [System.Security.SecurityTreatAsSafe] get; [System.Security.SecurityCritical] [System.Security.SecurityTreatAsSafe] set; }
public static System.ServiceModel.Dispatcher.ExceptionHandler AsynchronousThreadExceptionHandler { get; set; }
[<get: System.Security.SecurityCritical>]
[<get: System.Security.SecurityTreatAsSafe>]
[<set: System.Security.SecurityCritical>]
[<set: System.Security.SecurityTreatAsSafe>]
static member AsynchronousThreadExceptionHandler : System.ServiceModel.Dispatcher.ExceptionHandler with get, set
static member AsynchronousThreadExceptionHandler : System.ServiceModel.Dispatcher.ExceptionHandler with get, set
Public Shared Property AsynchronousThreadExceptionHandler As ExceptionHandler
Property Value
Assign a custom ExceptionHandler object that receives unhandled exceptions that occur on asynchronous Windows Communication Foundation (WCF) threads.
- Attributes
Remarks
By default, the AsynchronousThreadExceptionHandler property is null
, and unhandled exceptions on asynchronous WCF threads terminate the application. Set this property to an ExceptionHandler object to receive and react to these exceptions.
If an unhandled exception occurs on an asynchronous WCF thread and reaches this handler, the state of the application domain may be compromised. HandleException should not return true
for these exceptions.