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
- AccessibleObject.cs
- TableLayoutPanelResizeGlyph.cs
- TextServicesManager.cs
- ToolStripContainer.cs
- RemoteWebConfigurationHost.cs
- DataMemberFieldConverter.cs
- UnmanagedMemoryStream.cs
- UnsafeNativeMethods.cs
- ToolStripContentPanel.cs
- Vector3dCollection.cs
- SchemaDeclBase.cs
- CoTaskMemHandle.cs
- ResXResourceSet.cs
- AsynchronousChannel.cs
- PropertyGroupDescription.cs
- SerialStream.cs
- DataTableTypeConverter.cs
- DataBindingHandlerAttribute.cs
- MultiView.cs
- DataControlLinkButton.cs
- Int32AnimationBase.cs
- WindowsScroll.cs
- SettingsPropertyValue.cs
- StreamInfo.cs
- TreeView.cs
- TypedMessageConverter.cs
- SelectionHighlightInfo.cs
- XPathPatternParser.cs
- SiteMapNode.cs
- SqlBuilder.cs
- EventLogStatus.cs
- DayRenderEvent.cs
- BaseTemplatedMobileComponentEditor.cs
- CrossSiteScriptingValidation.cs
- SmtpNetworkElement.cs
- DataGridViewIntLinkedList.cs
- GlobalAllocSafeHandle.cs
- DesignTimeParseData.cs
- ConfigXmlComment.cs
- _TimerThread.cs
- DataRowComparer.cs
- ItemCheckedEvent.cs
- HandlerWithFactory.cs
- NavigationPropertyAccessor.cs
- SqlMethodTransformer.cs
- SortedDictionary.cs
- SystemTcpStatistics.cs
- DataExchangeServiceBinder.cs
- Propagator.cs
- OwnerDrawPropertyBag.cs
- AssertHelper.cs
- MD5CryptoServiceProvider.cs
- _AcceptOverlappedAsyncResult.cs
- mansign.cs
- ChannelBase.cs
- ItemsPanelTemplate.cs
- PathStreamGeometryContext.cs
- ConfigDefinitionUpdates.cs
- XmlEntityReference.cs
- UriParserTemplates.cs
- SafeNativeMethods.cs
- ThemeDirectoryCompiler.cs
- CultureInfoConverter.cs
- HttpValueCollection.cs
- CodeObjectCreateExpression.cs
- ProfileGroupSettings.cs
- Enum.cs
- ISAPIRuntime.cs
- ButtonBase.cs
- OleDbCommandBuilder.cs
- ReaderContextStackData.cs
- RelOps.cs
- Visual3D.cs
- CompilerGeneratedAttribute.cs
- ClockGroup.cs
- DataGridViewRowPostPaintEventArgs.cs
- ExceptionUtil.cs
- HtmlInputButton.cs
- ISO2022Encoding.cs
- UncommonField.cs
- ResourceWriter.cs
- GatewayDefinition.cs
- HttpResponseInternalWrapper.cs
- PassportAuthenticationEventArgs.cs
- AddInActivator.cs
- FormView.cs
- ConfigurationSchemaErrors.cs
- CalendarDataBindingHandler.cs
- QilBinary.cs
- IODescriptionAttribute.cs
- InvalidOperationException.cs
- PerformanceCounterPermissionEntry.cs
- MetadataFile.cs
- SafePEFileHandle.cs
- ItemsPresenter.cs
- MenuItemBindingCollection.cs
- CodeIndexerExpression.cs
- TdsParserStateObject.cs
- coordinatorfactory.cs
- CodeNamespaceImportCollection.cs