Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Core / System / Diagnostics / Eventing / Reader / EventMetadata.cs / 1305376 / EventMetadata.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: EventMetadata ** ** Purpose: ** This public class describes the metadata for a specific event ** raised by Provider. An instance of this class is obtained from ** ProviderMetadata class. ** ============================================================*/ using System.Globalization; using System.Collections.Generic; using System.Runtime.InteropServices; using System.Text; using System.Diagnostics.CodeAnalysis; namespace System.Diagnostics.Eventing.Reader { ////// Event Metadata /// [System.Security.Permissions.HostProtection(MayLeakOnAbort = true)] public sealed class EventMetadata { private long id; private byte version; private byte channelId; private byte level; private short opcode; private int task; private long keywords; private string template; private string description; ProviderMetadata pmReference; internal EventMetadata(uint id, byte version, byte channelId, byte level, byte opcode, short task, long keywords, string template, string description, ProviderMetadata pmReference) { this.id = id; this.version = version; this.channelId = channelId; this.level = level; this.opcode = opcode; this.task = task; this.keywords = keywords; this.template = template; this.description = description; this.pmReference = pmReference; } // // Max value will be UINT32.MaxValue - it is a long because this property // is really a UINT32. The legacy API allows event message ids to be declared // as UINT32 and these event/messages may be migrated into a Provider's // manifest as UINT32. Note that EventRecord ids are // still declared as int, because those ids max value is UINT16.MaxValue // and rest of the bits of the legacy event id would be stored in // Qualifiers property. // public long Id { get { return this.id; } } public byte Version { get { return this.version; } } public EventLogLink LogLink { get { return new EventLogLink((uint)this.channelId, this.pmReference); } } public EventLevel Level { get { return new EventLevel(this.level, this.pmReference); } } [SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly", MessageId = "Opcode", Justification = "[....]: Shipped public in 3.5, breaking change to fix now.")] public EventOpcode Opcode { get { return new EventOpcode(this.opcode, this.pmReference); } } public EventTask Task { get { return new EventTask(this.task, this.pmReference); } } public IEnumerableKeywords { get { List list = new List (); ulong theKeywords = (ulong)this.keywords; ulong mask = 0x8000000000000000; //for every bit //for (int i = 0; i < 64 && theKeywords != 0; i++) for (int i = 0; i < 64; i++) { //if this bit is set if ((theKeywords & mask) > 0) { //the mask is the keyword we will be searching for. list.Add(new EventKeyword((long)mask, this.pmReference)); //theKeywords = theKeywords - mask; } //modify the mask to check next bit. mask = mask >> 1; } return list; } } public string Template { get { return this.template; } } public string Description { get { return this.description; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AccessDataSourceView.cs
- StrokeCollectionConverter.cs
- Exception.cs
- IImplicitResourceProvider.cs
- MenuAutomationPeer.cs
- JulianCalendar.cs
- MarshalDirectiveException.cs
- MultiBinding.cs
- UnsafeNativeMethods.cs
- CleanUpVirtualizedItemEventArgs.cs
- FixedPosition.cs
- Utilities.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- SessionStateModule.cs
- TemplateControlCodeDomTreeGenerator.cs
- Number.cs
- ScriptingAuthenticationServiceSection.cs
- StyleXamlTreeBuilder.cs
- FigureParagraph.cs
- CustomErrorsSection.cs
- TrackPoint.cs
- XNodeValidator.cs
- BorderGapMaskConverter.cs
- HwndTarget.cs
- ValueUnavailableException.cs
- SystemIPv4InterfaceProperties.cs
- StreamWriter.cs
- ObjectCacheSettings.cs
- TagMapCollection.cs
- ByteStreamBufferedMessageData.cs
- DrawingContextWalker.cs
- HandlerMappingMemo.cs
- OleCmdHelper.cs
- InstanceKeyView.cs
- ModulesEntry.cs
- Tracking.cs
- ValueType.cs
- Keywords.cs
- BufferedGenericXmlSecurityToken.cs
- XmlSchemaAnyAttribute.cs
- WebPartConnectionCollection.cs
- FileDialogCustomPlacesCollection.cs
- NumericUpDownAccelerationCollection.cs
- RenderData.cs
- _AutoWebProxyScriptHelper.cs
- SectionInput.cs
- WindowsHyperlink.cs
- SuppressMergeCheckAttribute.cs
- WindowShowOrOpenTracker.cs
- AnimationClock.cs
- SchemaNamespaceManager.cs
- ToolboxItem.cs
- ReachDocumentReferenceSerializerAsync.cs
- WebPartDescriptionCollection.cs
- SourceFileInfo.cs
- HtmlTable.cs
- EntityDataSourceEntityTypeFilterConverter.cs
- ObjectViewFactory.cs
- NotFiniteNumberException.cs
- MemberPathMap.cs
- Timer.cs
- Filter.cs
- InstanceView.cs
- DesignConnectionCollection.cs
- ConfigurationStrings.cs
- OutOfMemoryException.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- ColumnResult.cs
- WindowShowOrOpenTracker.cs
- WebPartTransformer.cs
- ColumnResult.cs
- ButtonField.cs
- CuspData.cs
- TextServicesContext.cs
- LineUtil.cs
- CodeTypeParameter.cs
- SqlTriggerContext.cs
- ChannelListenerBase.cs
- InheritedPropertyChangedEventArgs.cs
- SystemIPGlobalProperties.cs
- DesignTimeTemplateParser.cs
- PersonalizationState.cs
- ByteAnimationBase.cs
- CatalogZoneBase.cs
- BufferedStream2.cs
- TraceListener.cs
- ToolBarTray.cs
- ValidatedMobileControlConverter.cs
- SurrogateSelector.cs
- MembershipAdapter.cs
- ComponentEvent.cs
- Adorner.cs
- ReachSerializationUtils.cs
- LiteralSubsegment.cs
- TransportBindingElementImporter.cs
- AssertUtility.cs
- SectionXmlInfo.cs
- DeliveryRequirementsAttribute.cs
- ProxyGenerationError.cs
- RtfToken.cs