Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / Diagnostics / TraceFilter.cs / 1305376 / TraceFilter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; namespace System.Diagnostics { public abstract class TraceFilter { internal string initializeData; public abstract bool ShouldTrace(TraceEventCache cache, string source, TraceEventType eventType, int id, string formatOrMessage, object[] args, object data1, object[] data); internal bool ShouldTrace(TraceEventCache cache, string source, TraceEventType eventType, int id, string formatOrMessage) { return ShouldTrace(cache, source, eventType, id, formatOrMessage, null, null, null); } internal bool ShouldTrace(TraceEventCache cache, string source, TraceEventType eventType, int id, string formatOrMessage, object[] args) { return ShouldTrace(cache, source, eventType, id, formatOrMessage, args, null, null); } internal bool ShouldTrace(TraceEventCache cache, string source, TraceEventType eventType, int id, string formatOrMessage, object[] args, object data1) { return ShouldTrace(cache, source, eventType, id, formatOrMessage, args, data1, null); } } } // 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
- SQLRoleProvider.cs
- RSAPKCS1SignatureFormatter.cs
- HMACRIPEMD160.cs
- StreamWithDictionary.cs
- XmlSiteMapProvider.cs
- ProfileModule.cs
- AssemblyAssociatedContentFileAttribute.cs
- WebBrowserDocumentCompletedEventHandler.cs
- MarginCollapsingState.cs
- RootBrowserWindowAutomationPeer.cs
- XsltFunctions.cs
- MDIClient.cs
- Compiler.cs
- JpegBitmapDecoder.cs
- GridViewRowPresenterBase.cs
- AlphabetConverter.cs
- DataTableExtensions.cs
- MatrixAnimationUsingPath.cs
- TableHeaderCell.cs
- PlatformNotSupportedException.cs
- ApplicationManager.cs
- DrawingBrush.cs
- MetadataCacheItem.cs
- PointUtil.cs
- WebAdminConfigurationHelper.cs
- unsafenativemethodsother.cs
- compensatingcollection.cs
- StylusPoint.cs
- SmtpClient.cs
- ToolStripScrollButton.cs
- TableColumn.cs
- EntityDataSourceDataSelection.cs
- SqlWriter.cs
- TableDetailsCollection.cs
- ServiceObjectContainer.cs
- UpdateCompiler.cs
- HandleCollector.cs
- FlowDocumentReaderAutomationPeer.cs
- While.cs
- SmiGettersStream.cs
- WebCategoryAttribute.cs
- DataMemberAttribute.cs
- ActivityBindForm.Designer.cs
- StringWriter.cs
- PassportIdentity.cs
- PiiTraceSource.cs
- SBCSCodePageEncoding.cs
- RelationshipManager.cs
- DelimitedListTraceListener.cs
- Rfc2898DeriveBytes.cs
- StringOutput.cs
- FontSizeConverter.cs
- UserNameSecurityTokenAuthenticator.cs
- XmlSchemaElement.cs
- ByteStream.cs
- ServerValidateEventArgs.cs
- MD5.cs
- CellCreator.cs
- TcpServerChannel.cs
- BamlLocalizableResource.cs
- MasterPageParser.cs
- TreeNodeMouseHoverEvent.cs
- ColumnClickEvent.cs
- StrongNameIdentityPermission.cs
- FormViewPageEventArgs.cs
- DataGridTableCollection.cs
- DnsPermission.cs
- ObjectStateEntry.cs
- HtmlInputFile.cs
- ConstructorNeedsTagAttribute.cs
- ProxyWebPartConnectionCollection.cs
- Deflater.cs
- DrawListViewSubItemEventArgs.cs
- UriTemplateDispatchFormatter.cs
- DefaultMemberAttribute.cs
- WindowsBrush.cs
- SignerInfo.cs
- OutputWindow.cs
- RegexWorker.cs
- TypedRowGenerator.cs
- FormsAuthenticationModule.cs
- TouchPoint.cs
- XamlWrappingReader.cs
- InternalConfigHost.cs
- DataSourceHelper.cs
- ObjectSet.cs
- IndexerNameAttribute.cs
- shaperfactory.cs
- PerfCounters.cs
- ComponentResourceKeyConverter.cs
- DynamicPropertyHolder.cs
- SQLByte.cs
- VideoDrawing.cs
- ThicknessConverter.cs
- XsltException.cs
- ILGenerator.cs
- ExpressionBindings.cs
- FileReader.cs
- TripleDES.cs
- X509PeerCertificateElement.cs