Deep decryption. NET (Windows Event log)

Source: Internet
Author: User

Test

usingSystem;usingSystem.Diagnostics;namespacewindowsconsoleapp{//Test     Public classEnventloghelper {PrivateEventLog log;  Publicenventloghelper () {log=NewEventLog ();//Default Write Application log        }         PublicEnventloghelper (stringname) {Log=NewEventLog (name);//Specifies the classification to write, and the user customizes the new grouping. System Retention//" Application" app, "security" secure, "system" systems//or you can use log. Log = "Security";        }         Public voidWritetoapp () {Try{log. Source="My application";//Log SourceLog. WriteEntry ("Processing Information 1", eventlogentrytype.information);//Log TypeLog. WriteEntry ("Processing Information 2", eventlogentrytype.information); Throw NewSystem.IO.FileNotFoundException ("Readme.txt File not found"); }            Catch(System.IO.FileNotFoundException exception) {log. WriteEntry (Exception.            Message, EventLogEntryType.Error); }        }         Public voidReadlog () {eventlogentrycollection eventlogentrycollection= log. Entries;//Get Log Collection            foreach(EventLogEntry entryincheventlogentrycollection) {                                stringinfo =string.                Empty; Info+=""type":"+ entry. Entrytype.tostring () +";"; Info+=""Date""+ entry. Timegenerated.tolongdatestring () +";"; Info+=""Time""+ entry. Timegenerated.tolongtimestring () +";"; Info+=""Computer""+ entry. MachineName +""Source""+ entry. Source +""More Information""+ entry. Message +""""; //Console.WriteLine (info); }        }    }}

Resources:

https://referencesource.microsoft.com/#System/services/monitoring/system/diagnosticts/eventlog.cs

Https://msdn.microsoft.com/zh-cn/library/system.diagnostics.eventlog (v=vs.110). aspx

Deep decryption. NET (Windows Event log)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.