|   | Error | 
 Inheritance Hierarchy
Inheritance Hierarchy
         Syntax
SyntaxThe ErrorModule type exposes the following members.
 Constructors
Constructors| Name | Description | |
|---|---|---|
|  | ErrorModule | Initializes a new instance of the ErrorModule class | 
 Properties
Properties| Name | Description | |
|---|---|---|
|    | Logger | Gets the ErrorLogger object used by the ErrorModule object for logging exceptions. | 
 Methods
Methods| Name | Description | |
|---|---|---|
|  | Dispose | Disposes the resources (other than memory) used by the ErrorModule. | 
|  | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) | 
|  | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) | 
|  | GetHashCode | Serves as the default hash function. (Inherited from Object) | 
|  | GetType | Gets the Type of the current instance. (Inherited from Object) | 
|  | Init | Initializes the ErrorModule and prepares it to handle requests. | 
|  | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) | 
|  | ToString | Returns a string that represents the current object. (Inherited from Object) | 
 Extension Methods
Extension Methods| Name | Description | |
|---|---|---|
|  | GetEnumValueOrDefault | Gets the enumeration constant for value, if defined in the enumeration, or a default value. (Defined by EnumExtensions) | 
|  | GetEnumValueOrDefaultT | Gets the enumeration constant for this value, if defined in the enumeration, or a default value. (Defined by EnumExtensions) | 
 Example
Example<configuration>
  <system.web>
    <httpModules>
      <add name="ErrorModule" type="GSF.ErrorManagement.ErrorModule, GSF.Core" />
    </httpModules>
  </system.web>
</configuration><configuration>
  <configSections>
    <section name="categorizedSettings" type="GSF.Configuration.CategorizedSettingsSection, GSF.Core" />
  </configSections>
  <categorizedSettings>
    <errorLogger>
      <add name="LogToUI" value="False" description="True if an encountered exception is to be logged to the User Interface; otherwise False."
        encrypted="false" />
      <add name="LogToFile" value="True" description="True if an encountered exception is to be logged to a file; otherwise False."
        encrypted="false" />
      <add name="LogToEmail" value="False" description="True if an email is to be sent to ContactEmail with the details of an encountered exception; otherwise False."
        encrypted="false" />
      <add name="LogToEventLog" value="True" description="True if an encountered exception is to be logged to the Event Log; otherwise False."
        encrypted="false" />
      <add name="LogToScreenshot" value="False" description="True if a screenshot is to be taken when an exception is encountered; otherwise False."
        encrypted="false" />
      <add name="SmtpServer" value="smtp.email.com" description="Name of the SMTP server to be used for sending the email messages."
        encrypted="false" />
      <add name="ContactEmail" value="" description="Comma-seperated list of recipient email addresses for the email message."
        encrypted="false" />
      <add name="ContactName" value="" description="Name of the person that the end-user can contact when an exception is encountered."
        encrypted="false" />
      <add name="ContactPhone" value="" description="Phone number of the person that the end-user can contact when an exception is encountered."
        encrypted="false" />
      <add name="HandleUnhandledException" value="True" description="True if unhandled exceptions are to be handled automatically; otherwise False."
        encrypted="false" />
      <add name="ExitOnUnhandledException" value="False" description="True if the application must exit when an unhandled exception is encountered; otherwise False."
        encrypted="false" />
    </errorLogger>
  </categorizedSettings>
</configuration> See Also
See Also