When using Enterprise Library 6.0, this error occurs in the code below:
bool rethrow = ExceptionPolicy.HandleException(ex, "ReplacePolicy1")
"Must set an ExceptionManager in the ExceptionPolicy class using the SetExceptionManager method."
In Enterprise Library 5.0 this code worked:
public static bool HandleException(Exception exception, string PolicyName)
{
ExceptionManager exManager = EnterpriseLibraryContainer.Current.GetInstance<ExceptionManager>();
ExceptionPolicy.SetExceptionManager(exManager);
bool rethrow = ExceptionPolicy.HandleException(ex, "ReplacePolicy1");
return reThrow;
}
But in Enterprise Library 6.0 the EnterpriseLibraryContainer class is not found. I want get instance of ExceptionManager. How do I solve this problem ?
EnterpriseLibraryContainer was removed for the release of Enterprise Library 6. There is a new approach for bootstrapping the application blocks in Enterprise Library 6. If you want to get an instance of ExceptionManager
you can use the factory:
IConfigurationSource config = ConfigurationSourceFactory.Create();
ExceptionPolicyFactory factory = new ExceptionPolicyFactory(config);
ExceptionManager exManager = factory.CreateManager();
To configure the blocks to use the static facades you can use the SetExceptionManager method and supply the ExceptionManager from above:
ExceptionPolicy.SetExceptionManager(factory.CreateManager());
This only needs to be done once at application startup.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With