Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Services / Monitoring / system / Diagnosticts / EventLogTraceListener.cs / 1 / EventLogTraceListener.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Diagnostics { using System; using System.Security; using System.Security.Permissions; using System.IO; using System.Text; using System.Globalization; using System.Runtime.InteropServices; ////// [HostProtection(SecurityAction.LinkDemand, Synchronization=true)] public sealed class EventLogTraceListener : TraceListener { private EventLog eventLog; private bool nameSet; ///Provides a simple listener for directing tracing or /// debugging output to a ///or to a , such as or /// . /// public EventLogTraceListener() { } ///Initializes a new instance of the ///class without a trace /// listener. /// public EventLogTraceListener(EventLog eventLog) : base((eventLog != null) ? eventLog.Source : string.Empty) { this.eventLog = eventLog; } ///Initializes a new instance of the ///class using the /// specified event log. /// public EventLogTraceListener(string source) { eventLog = new EventLog(); eventLog.Source = source; } ///Initializes a new instance of the ///class using the /// specified source. /// public EventLog EventLog { get { return eventLog; } set { eventLog = value; } } ///Gets or sets the event log to write to. ////// public override string Name { get { if (nameSet == false && eventLog != null) { nameSet = true; base.Name = eventLog.Source; } return base.Name; } set { nameSet = true; base.Name = value; } } ///Gets or sets the /// name of this trace listener. ////// public override void Close() { if (eventLog != null) eventLog.Close(); } ///Closes the text writer so that it no longer receives tracing or /// debugging output. ////// /// protected override void Dispose(bool disposing) { if (disposing) this.Close(); } ////// public override void Write(string message) { if (eventLog != null) eventLog.WriteEntry(message); } ///Writes a message to this instance's event log. ////// public override void WriteLine(string message) { Write(message); } [ ComVisible(false) ] public override void TraceEvent(TraceEventCache eventCache, string source, TraceEventType severity, int id, string format, params object[] args) { if (Filter != null && !Filter.ShouldTrace(eventCache, source, severity, id, format, args)) return; EventInstance data = CreateEventInstance(severity, id); if (args == null) { eventLog.WriteEvent(data, format); } else if(String.IsNullOrEmpty(format)) { string[] strings = new string[args.Length]; for (int i=0; iWrites a message to this instance's event log followed by a line terminator. /// The default line terminator is a carriage return followed by a line feed /// (\r\n). ///ushort.MaxValue) id = ushort.MaxValue; // Ideally we need to pick a value other than '0' as zero is // a commonly used EventId by most applications if (id < ushort.MinValue) id = ushort.MinValue; EventInstance data = new EventInstance(id, 0); if (severity == TraceEventType.Error || severity == TraceEventType.Critical) data.EntryType = EventLogEntryType.Error; else if (severity == TraceEventType.Warning) data.EntryType = EventLogEntryType.Warning; else data.EntryType = EventLogEntryType.Information; return data; } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- assemblycache.cs
- SystemTcpStatistics.cs
- _ListenerResponseStream.cs
- ValueType.cs
- HotSpotCollection.cs
- HiddenFieldDesigner.cs
- StorageMappingFragment.cs
- CleanUpVirtualizedItemEventArgs.cs
- RectAnimationClockResource.cs
- String.cs
- DataGridViewColumnConverter.cs
- WebPartPersonalization.cs
- SqlDependency.cs
- BuildResultCache.cs
- Transform.cs
- _ChunkParse.cs
- DataGridTextBoxColumn.cs
- KeyTime.cs
- DataObjectEventArgs.cs
- CompilerHelpers.cs
- TagPrefixInfo.cs
- WebPartCloseVerb.cs
- ProjectionNode.cs
- WebBrowsableAttribute.cs
- SecurityPermission.cs
- SiteMapDataSourceDesigner.cs
- DependencySource.cs
- WindowsListViewGroup.cs
- SiteOfOriginContainer.cs
- ContextMenuStrip.cs
- BrowserDefinition.cs
- TypeBuilder.cs
- ResourceDescriptionAttribute.cs
- QuaternionRotation3D.cs
- SQLChars.cs
- ClonableStack.cs
- PathNode.cs
- PersistenceTypeAttribute.cs
- InfoCardRSACryptoProvider.cs
- CodeConditionStatement.cs
- InstancePersistenceEvent.cs
- AsymmetricSecurityProtocol.cs
- GiveFeedbackEvent.cs
- SafePEFileHandle.cs
- HtmlSelect.cs
- XmlSchemaParticle.cs
- KnowledgeBase.cs
- DataSourceListEditor.cs
- XamlTypeMapper.cs
- FileLogRecord.cs
- SiteMapSection.cs
- AppDomainResourcePerfCounters.cs
- DesignerProperties.cs
- SettingsContext.cs
- SiteOfOriginPart.cs
- DocumentSchemaValidator.cs
- HttpHandlersSection.cs
- SQLByteStorage.cs
- util.cs
- UInt16Storage.cs
- DictionaryCustomTypeDescriptor.cs
- DateTimeOffsetConverter.cs
- WsdlImporter.cs
- BindingOperations.cs
- DataSourceDescriptorCollection.cs
- DocumentOrderQuery.cs
- CacheRequest.cs
- XmlProcessingInstruction.cs
- LinkedResource.cs
- HttpHandlersSection.cs
- _AutoWebProxyScriptWrapper.cs
- QueryOutputWriterV1.cs
- MouseGesture.cs
- NameValueConfigurationElement.cs
- cache.cs
- DataGridViewColumnTypePicker.cs
- Visual3DCollection.cs
- ipaddressinformationcollection.cs
- PolicyValidator.cs
- AudioBase.cs
- IBuiltInEvidence.cs
- FlowPosition.cs
- XmlReader.cs
- OutputWindow.cs
- ObfuscationAttribute.cs
- FormViewInsertedEventArgs.cs
- DrawingGroup.cs
- SQLBoolean.cs
- TypeDescriptionProvider.cs
- Roles.cs
- TableCell.cs
- HttpHostedTransportConfiguration.cs
- HighlightComponent.cs
- ButtonBase.cs
- StyleHelper.cs
- AsyncPostBackErrorEventArgs.cs
- PolicyChain.cs
- ListViewHitTestInfo.cs
- WebBrowserContainer.cs
- DataGridViewColumnCollectionEditor.cs