- Home
- Products
- Integration
- Tutorial
- Barcode FAQ
- Purchase
- Company
ASP.NET Event Providers in .NET
ASP.NET Event Providers QR-Code Drawer In VS .NET Using Barcode encoder for ASP.NET Control to generate, create Denso QR Bar Code image in ASP.NET applications. www.OnBarcode.comBar Code Printer In .NET Framework Using Barcode generator for ASP.NET Control to generate, create bar code image in ASP.NET applications. www.OnBarcode.comRather than requiring you to write code to perform any number of different event noti fication mechanisms, the .NET Framework includes several event providers, as described in Table 13-5. Both the events that are built into ASP.NET and custom events that your application generates can be sent through any of these providers. Making QR Code 2d Barcode In Visual C#.NET Using Barcode encoder for VS .NET Control to generate, create Quick Response Code image in VS .NET applications. www.OnBarcode.comQR Code ISO/IEC18004 Creator In Visual Studio .NET Using Barcode generation for .NET Control to generate, create QR image in Visual Studio .NET applications. www.OnBarcode.comTable 13-5 ASP.NET Event Providers
QR Code Generation In Visual Basic .NET Using Barcode creation for Visual Studio .NET Control to generate, create QR Code ISO/IEC18004 image in VS .NET applications. www.OnBarcode.comBarcode Creation In VS .NET Using Barcode generation for ASP.NET Control to generate, create barcode image in ASP.NET applications. www.OnBarcode.comEvent Provider EventLogWebEventProvider
GS1 - 13 Generation In .NET Framework Using Barcode generator for ASP.NET Control to generate, create GTIN - 13 image in ASP.NET applications. www.OnBarcode.comPrint PDF417 In .NET Framework Using Barcode encoder for ASP.NET Control to generate, create PDF 417 image in ASP.NET applications. www.OnBarcode.comDescription Writes Web event data to the Windows event log. By default, this provider is configured to write all errors to the Windows event log. Security operation errors are logged under the event name Failure Audits and all other errors are logged under the event name All Errors. To read event log data, you can view data using the Windows Event Viewer or read event log data pro grammatically. Making Bar Code In Visual Studio .NET Using Barcode creator for ASP.NET Control to generate, create bar code image in ASP.NET applications. www.OnBarcode.comDraw GTIN - 128 In .NET Using Barcode generator for ASP.NET Control to generate, create UCC-128 image in ASP.NET applications. www.OnBarcode.comSqlWebEventProvider
Creating Linear 1D Barcode In .NET Using Barcode creation for ASP.NET Control to generate, create 1D image in ASP.NET applications. www.OnBarcode.comGenerate EAN-8 In .NET Framework Using Barcode creator for ASP.NET Control to generate, create EAN 8 image in ASP.NET applications. www.OnBarcode.comLogs Web event data to a Microsoft SQL Server database. By default, this provider logs data to the SQL Server Express database in the Web applica tion s App_Data folder. It does not subscribe to any events by default. Create Code 128B In Objective-C Using Barcode generation for iPad Control to generate, create Code-128 image in iPad applications. www.OnBarcode.comPDF 417 Generator In None Using Barcode generator for Office Word Control to generate, create PDF417 image in Word applications. www.OnBarcode.com 13
Draw Bar Code In Java Using Barcode creator for Java Control to generate, create bar code image in Java applications. www.OnBarcode.comData Matrix ECC200 Creation In Objective-C Using Barcode encoder for iPad Control to generate, create Data Matrix 2d barcode image in iPad applications. www.OnBarcode.comMonitoring, Deploying, and Caching Applications
Read Code 128B In VB.NET Using Barcode recognizer for VS .NET Control to read, scan read, scan image in .NET applications. www.OnBarcode.comUPC-A Supplement 5 Reader In Visual C#.NET Using Barcode reader for .NET framework Control to read, scan read, scan image in Visual Studio .NET applications. www.OnBarcode.comTable 13-5 ASP.NET Event Providers
GTIN - 12 Encoder In Java Using Barcode printer for Android Control to generate, create UPC A image in Android applications. www.OnBarcode.comBarcode Generation In None Using Barcode drawer for Excel Control to generate, create barcode image in Microsoft Excel applications. www.OnBarcode.comEvent Provider WmiWebEventProvider
Description Passes Web events to Windows Management Instrumentation (WMI), converting them to WMI events. By default, this provider does not subscribe to any events. Sends an e-mail message when Web events are raised. By default, these providers are not configured and do not subscribe to any events. Passes event data to the ASP.NET page tracing sys tem. By default, this provider is not configured and does not subscribe to any events. Tracing provides you with the ability to start and stop event tracing sessions, to instrument applications to provide trace events, and to consume trace events. You can use the events to debug an application and perform capacity and performance analysis. SimpleMailWebEventProvider and TemplatedMail WebEventProvider TraceWebEventProvider
Additionally, you can create your own custom event providers by inheriting from the WebEventProvider or BufferedWebEventProvider classes. Custom event providers can log events to a custom log file, send event data to third-party monitoring systems, and meet other specific requirements that might be provided by your IT department. MORE INFO
How to create custom event providers
For more information about creating custom event providers, read Extending ASP.NET Health Mon itoring at http://msdn2.microsoft.com/en-us/ms228095.aspx. ASP.NET Web Events
ASP.NET includes many different types of events that can be sent through any of the event providers. These events are listed in Table 13-6. Lesson 2: Building Web Applications for Monitoring
Table 13-6 ASP.NET Web Events
Event Class WebApplicationLifetimeEvent
Description Represents a significant event in the lifetime of an ASP.NET application. Application lifetime events include events such as application startup and shut down events. If an application is terminated, you can determine why by viewing the related eventmessage field. Serves as the base class for all ASP.NET health-mon itoring audit events. Provides information about ASP.NET authentica tion failures. Provides information about successful authentica tion events. Serves as the base class for all the health-monitoring error events. Serves as the base class for the ASP.NET healthmonitoring events. Provides information about errors caused by prob lems with configuration or application code. An example is the error issued by ASP.NET when an error is found in a page. Provides information about security failures. Serves as a timer for the ASP.NET health-monitoring system. These events are raised at an interval defined by the heartbeatInterval attribute of the <healthMonitoring> configuration section. Serves as the base class for events that carry applica tion and process information. Defines the event that carries information about Web-request errors. WebAuditEvent WebAuthenticationFailureAuditEvent WebAuthenticationSuccessAuditEvent WebBaseErrorEvent WebBaseEvent WebErrorEvent WebFailureAuditEvent WebHeartbeatEvent
WebManagementEvent WebRequestErrorEvent
13
Monitoring, Deploying, and Caching Applications
Table 13-6 ASP.NET Web Events
Event Class WebRequestEvent WebSuccessAuditEvent
Description Serves as the base class for events providing Webrequest information. Provides information about successful security events. An example of this is a successful URL authorization for a Web request. Provides Web application view state failure infor mation. WebViewStateFailureAuditEvent
Additionally, you can create your own custom Web events by deriving a class from one of the base event classes shown in Table 13-6, such as WebManagementEvent or WebAuditEvent.
|
|