Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Core / System / Diagnostics / Eventing / Reader / EventRecord.cs / 1305376 / EventRecord.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: EventRecord ** ** Purpose: ** This public abstract class defines the methods / properties ** that all events should support. ** ============================================================*/ using System; using System.Collections; using System.Collections.Generic; using System.Security.Principal; using System.Diagnostics.CodeAnalysis; namespace System.Diagnostics.Eventing.Reader { ////// Represents an event obtained from an EventReader. /// [System.Security.Permissions.HostProtection(MayLeakOnAbort = true)] public abstract class EventRecord : IDisposable { public abstract int Id { get; } public abstract byte? Version { get; } public abstract byte? Level { get; } public abstract int? Task { get; } [SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly", MessageId = "Opcode", Justification = "[....]: Shipped public in 3.5, breaking change to fix now.")] public abstract short? Opcode { get; } public abstract long? Keywords { get; } public abstract long? RecordId { get; } public abstract string ProviderName { get; } public abstract Guid? ProviderId { get; } public abstract string LogName { get; } public abstract int? ProcessId { get; } public abstract int? ThreadId { get; } public abstract string MachineName { get; } public abstract SecurityIdentifier UserId { get; } public abstract DateTime? TimeCreated { get; } public abstract Guid? ActivityId { get; } public abstract Guid? RelatedActivityId { get; } public abstract int? Qualifiers { get; } public abstract string FormatDescription(); public abstract string FormatDescription(IEnumerable
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlReaderDelegator.cs
- SudsWriter.cs
- ImageMap.cs
- Triplet.cs
- RadioButtonPopupAdapter.cs
- SmtpReplyReader.cs
- VScrollBar.cs
- GeometryHitTestResult.cs
- FullTrustAssemblyCollection.cs
- FormsAuthenticationUserCollection.cs
- DataGridViewButtonCell.cs
- SR.cs
- XamlLoadErrorInfo.cs
- XmlSchemaSimpleType.cs
- Native.cs
- RequestCache.cs
- DisplayMemberTemplateSelector.cs
- DefaultAssemblyResolver.cs
- BooleanExpr.cs
- SynchronizingStream.cs
- ActivityMarkupSerializer.cs
- WindowShowOrOpenTracker.cs
- CommonRemoteMemoryBlock.cs
- AssemblyNameProxy.cs
- ConfigurationCollectionAttribute.cs
- ZipPackagePart.cs
- DirectionalLight.cs
- XamlFilter.cs
- XmlSchemaAnnotated.cs
- EntityClassGenerator.cs
- ServerValidateEventArgs.cs
- ReferentialConstraint.cs
- VideoDrawing.cs
- TextFormattingConverter.cs
- GuidTagList.cs
- HtmlTableRow.cs
- XmlSchemaIdentityConstraint.cs
- SqlDependencyUtils.cs
- BinaryParser.cs
- _ConnectionGroup.cs
- MdiWindowListItemConverter.cs
- DropDownList.cs
- WeakReferenceEnumerator.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- Action.cs
- PreProcessor.cs
- DocumentViewerBase.cs
- ValidationPropertyAttribute.cs
- ChangeTracker.cs
- EUCJPEncoding.cs
- hwndwrapper.cs
- TextServicesManager.cs
- WebPartDisplayModeCollection.cs
- RTLAwareMessageBox.cs
- QueueNameHelper.cs
- ConditionalAttribute.cs
- TypeBuilder.cs
- TraceListeners.cs
- DesignerObjectListAdapter.cs
- UserValidatedEventArgs.cs
- StructuralObject.cs
- AttributeUsageAttribute.cs
- InteropEnvironment.cs
- EventLogPermissionHolder.cs
- PersonalizableAttribute.cs
- TextChangedEventArgs.cs
- Partitioner.cs
- ExtensibleSyndicationObject.cs
- MetadataArtifactLoader.cs
- CanonicalFontFamilyReference.cs
- fixedPageContentExtractor.cs
- ListViewUpdatedEventArgs.cs
- dataprotectionpermissionattribute.cs
- Operators.cs
- BaseCAMarshaler.cs
- ContainerCodeDomSerializer.cs
- TypeUtils.cs
- MachinePropertyVariants.cs
- XmlValueConverter.cs
- SourceItem.cs
- Membership.cs
- ScalarType.cs
- ProfileService.cs
- SignedXml.cs
- CommandHelper.cs
- SpeechRecognizer.cs
- IssuerInformation.cs
- OleAutBinder.cs
- MessageFault.cs
- columnmapkeybuilder.cs
- WeakEventTable.cs
- RuleAction.cs
- DescendantOverDescendantQuery.cs
- CompiledRegexRunnerFactory.cs
- OleDbConnection.cs
- TableRow.cs
- UserPreferenceChangedEventArgs.cs
- Math.cs
- ProtocolsSection.cs
- PagePropertiesChangingEventArgs.cs