Click here to Skip to main content
15,885,216 members
Articles / Database Development / SQL Server

Database Helper Class Library to Ease Database Operation

Rate me:
Please Sign up or sign in to vote.
3.09/5 (9 votes)
14 Apr 2007CPOL4 min read 87.5K   3K   57  
Database Helper Class Library to Ease Database Operation
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Microsoft.ApplicationBlocks.ExceptionManagement.Interfaces</name>
    </assembly>
    <members>
        <member name="T:Microsoft.ApplicationBlocks.ExceptionManagement.IExceptionPublisher">
            <summary>
            Interface to publish exception information.  All exception information is passed as the chain of exception objects.
            </summary>
        </member>
        <member name="M:Microsoft.ApplicationBlocks.ExceptionManagement.IExceptionPublisher.Publish(System.Exception,System.Collections.Specialized.NameValueCollection,System.Collections.Specialized.NameValueCollection)">
            <summary>
            Method used to publish exception information and additional information.
            </summary>
            <param name="exception">The exception object whose information should be published.</param>
            <param name="additionalInfo">A collection of additional data that should be published along with the exception information.</param>
            <param name="configSettings">A collection of name/value attributes specified in the config settings.</param>
        </member>
        <member name="T:Microsoft.ApplicationBlocks.ExceptionManagement.IExceptionXmlPublisher">
            <summary>
            Interface to publish exception information.  All exception information is passed as XML.
            </summary>
        </member>
        <member name="M:Microsoft.ApplicationBlocks.ExceptionManagement.IExceptionXmlPublisher.Publish(System.Xml.XmlDocument,System.Collections.Specialized.NameValueCollection)">
            <summary>
            Method used to publish exception information and any additional information in XML.
            </summary>
            <param name="exceptionInfo">An XML Document containing the all exception information.</param>
            <param name="configSettings">A collection of name/value attributes specified in the config settings.</param>
        </member>
    </members>
</doc>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Malaysia Malaysia
Had worked as analyst programmer for 4 years. Now helping in family business but still involved actively in .Net development whenever there is a free time.

Comments and Discussions