What is the difference between exceptionpolicy and exceptionmanager classes of Microsoft Enterprise Library?? I didn't even know that exceptionmanager existed! Why are there two different classes?
ExceptionPolicy vs ExceptionManager
1.2k Views Asked by Aditi At
1
There are 1 best solutions below
Related Questions in .NET
- Does compiler optimize operation on const variable and literal const number?
- What is the point of definnig Asp.net Intrinsic Objects In different places and what is the different betwen them?
- Deleting Orphans with Fluent NHibernate
- IOrderedEnumerable to vb.net IOrderedEnumerable Conversion
- What is this namespace ITypeOfObjectsBoundToListBox ? Couldn't find it
- .net rest service with JSON string and consumed with java client
- What is best way to check if any of the property of object is null or empty?
- Telerik's WPF RadColorPicker NoColorText property not working
- Possible consequences of duplicate ProgId for different classes
- How are multiple requests to Task.Run handled from a resource management standpoint?
- Optimizing C++ call from C#
- Make a per-web-application object available to Web API and SignalR controllers
- System.ComponentModel.DataAnnotations.Schema namespace conflict
- LINQ Except/Distinct based on few columns only, to not add duplicates
- Not displaying content by its URL string - absolute urls
Related Questions in EXCEPTION
- Python twisted not catching exception
- Proper use of custom exceptions
- C++ Mongodb driver, not working
- C# console application - Unhandled exception while finding the Available and free Ram space.Getting exact answer in windows forms application
- Hashing String (SHA-256) in an ActionListener class
- Do we have to mention exception type in java?
- How can I make Eclipse (or javac) warn about over-inclusive throws clauses
- Why can an Exception not be rethrown in the BackgroundWorker RunWorkerCompleted event
- How can I set the the expected Exception type for a catch statement with a parameter I've passed into a method?
- Why do I get an IndexOutOfBoundsException when my else should prevent it?
- crypto.BadPaddingException: data hash wrong (EKYC-Response)
- How to print the first line from a traceback stack
- java.lang.ArrayIndexOutOfBoundsException object array
- Passing keyword arguments to custom exceptions - anomaly
- Unauthorised access to folders when creating xml file
Related Questions in ENTERPRISE-LIBRARY
- Enterprise Library 6 - dynamically change log file name
- How to merge .net custom config sections for different environments
- The type or namespace name 'Practices' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?)
- VSIXInstaller.NoApplicableSKUsException: This extension is not installable on any currently installed products
- Do we need to close DbCommand in enterprise library 4.1?
- Could not load file or assembly 'Microsoft.Practices.EnterpriseLibrary.Common, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or
- EnterpriseLibrary dbCommand.ExecuteScalarAsync is error :Invalid operation. The connection is closed
- Change Enterprise Library configuration midway in a program
- Enterprise Library TraceListener to display logging messages inside app
- Azure Web Role with Transient Fault Handling Block exception: The path is too long after being fully qualified
- Enterprise Library DAAB 6 and ODP.NET - Connection string for the default database 'XXX' does not exist
- Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. Enterprise Library
- Enterprise Library issue
- Enterprise library logging Database trace listener with custom parameter input
- Change name of source in Enterprise Library Logging
Related Questions in ENTERPRISE-LIBRARY-5
- Is it possible to use dataBase.executeNonQuery and use a return value from a stored proc?
- Change Enterprise Library configuration midway in a program
- Enterprise Library 6.0 - exceptional handling block-The configuration section for Exception Handling cannot be found in the configuration source
- Security EnterpriseLibrary Logging Block using IIS
- Microsoft Enterprise Library Logging Application Block Formatting Incorrectly
- Can IsLoggingEnabled() change at runtime?
- When to use ExternallyControlledLifetimeManager?
- Enterprise Lib 5.0 not working on Production (Windows Server 2008R2)
- The type Database cannot be constructed. You must configure the container to supply this value (EntLib 5 + ODP.NET)
- Why Enterprise Library does not throw FaultException in WCF
- Enterprise Library cast exception in web application
- Comma Separated String from a DataReader Column
- Enterprise Logging not translating environment variables in XML Trace Listener fileName specification
- How to manage logs' preservation period using RollingFlatFileTraceListener on Enterprise Library Logging Application Block?
- Enterprise Library Logging Extended Properties Fails on Server
Related Questions in APPLICATION-BLOCKS
- Controls inside splitter container paint issue on win7 x64 using CAB
- application block cache query
- application block cache scavenging event
- what is difference between Exception handling Application block & Exception handling
- How to use proxy with TwitterConsumer class from DotNetOpenAuth.ApplicationBlock
- Are Microsoft Code Contracts unsuitable for validating user input?
- THREE OBJ Loader missing geometry faces from Blocks
- Does the Validation Application Block in Entlib 5.0 support client-side validation?
- Add date to log file name in Logging Application Block
- Setting CommandTimeout in Microsoft's Data Access Application Block (SQLHelper)
- Can I use Ninject instead of Unity in the MS Application Blocks?
- ExceptionPolicy vs ExceptionManager
- Could not install package 'EnterpriseLibrary.Common 6.0.1304'
- log4net vs MS Logging Application Block
- Enterprise Security Application Block in Conjunction With MembershipProvider in ASP.NET
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
ExceptionManager Exists
See this Link
I'll prefer ExceptionManger to handle my all exception as i can compare exception, start process according to exception policy, can know the type of exception while ExceptionPolicy just give me a single member function to handle exception nothing else...
you should also go through from these links...
1. Members of ExceptionManager
2. Members of ExceptionPolicy
3. Introduction to the Exception Handling Application Block