Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CompMod / System / Diagnostics / DelimitedListTraceListener.cs / 1 / DelimitedListTraceListener.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Text; using System.Globalization; using System.IO; using System.Collections; using System.Security.Permissions; using System.Runtime.Versioning; namespace System.Diagnostics { [HostProtection(Synchronization=true)] public class DelimitedListTraceListener : TextWriterTraceListener { string delimiter = ";"; string secondaryDelim = ","; bool initializedDelim = false; public DelimitedListTraceListener(Stream stream) : base(stream) { } public DelimitedListTraceListener(Stream stream, string name) : base(stream, name) { } public DelimitedListTraceListener(TextWriter writer) : base(writer) { } public DelimitedListTraceListener(TextWriter writer, string name) : base(writer, name) { } [ResourceExposure(ResourceScope.Machine)] [ResourceConsumption(ResourceScope.Machine)] public DelimitedListTraceListener(string fileName) : base (fileName) { } [ResourceExposure(ResourceScope.Machine)] [ResourceConsumption(ResourceScope.Machine)] public DelimitedListTraceListener(string fileName, string name) : base(fileName, name) { } public string Delimiter { get { lock(this) { // Probably overkill if (!initializedDelim) { if (Attributes.ContainsKey("delimiter")) delimiter = Attributes["delimiter"]; initializedDelim = true; } } return delimiter; } set { if (value == null) throw new ArgumentNullException("Delimiter"); if (value.Length == 0) throw new ArgumentException(SR.GetString("Generic_ArgCantBeEmptyString", "Delimiter")); lock(this) { delimiter = value; initializedDelim = true; } if (delimiter == ",") secondaryDelim = ";"; else secondaryDelim = ","; } } protected override internal string[] GetSupportedAttributes() { return new String[]{"delimiter"}; } public override void TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, int id, string format, params object[] args) { if (Filter != null && !Filter.ShouldTrace(eventCache, source, eventType, id, format, args)) return; WriteHeader(source, eventType, id); if (args != null) WriteEscaped(String.Format(CultureInfo.InvariantCulture, format, args)); else WriteEscaped(format); Write(Delimiter); // Use get_Delimiter // one more delimiter for the data object Write(Delimiter); // Use get_Delimiter WriteFooter(eventCache); } public override void TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, int id, string message) { if (Filter != null && !Filter.ShouldTrace(eventCache, source, eventType, id, message)) return; WriteHeader(source, eventType, id); WriteEscaped(message); Write(Delimiter); // Use get_Delimiter // one more delimiter for the data object Write(Delimiter); // Use get_Delimiter WriteFooter(eventCache); } public override void TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, int id, object data) { if (Filter != null && !Filter.ShouldTrace(eventCache, source, eventType, id, null, null, data)) return; WriteHeader(source, eventType, id); // first a delimiter for the message Write(Delimiter); // Use get_Delimiter WriteEscaped(data.ToString()); Write(Delimiter); // Use get_Delimiter WriteFooter(eventCache); } public override void TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, int id, params object[] data) { if (Filter != null && !Filter.ShouldTrace(eventCache, source, eventType, id, null, null, null, data)) return; WriteHeader(source, eventType, id); // first a delimiter for the message Write(Delimiter); // Use get_Delimiter if (data != null) { for (int i=0; i// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Text; using System.Globalization; using System.IO; using System.Collections; using System.Security.Permissions; using System.Runtime.Versioning; namespace System.Diagnostics { [HostProtection(Synchronization=true)] public class DelimitedListTraceListener : TextWriterTraceListener { string delimiter = ";"; string secondaryDelim = ","; bool initializedDelim = false; public DelimitedListTraceListener(Stream stream) : base(stream) { } public DelimitedListTraceListener(Stream stream, string name) : base(stream, name) { } public DelimitedListTraceListener(TextWriter writer) : base(writer) { } public DelimitedListTraceListener(TextWriter writer, string name) : base(writer, name) { } [ResourceExposure(ResourceScope.Machine)] [ResourceConsumption(ResourceScope.Machine)] public DelimitedListTraceListener(string fileName) : base (fileName) { } [ResourceExposure(ResourceScope.Machine)] [ResourceConsumption(ResourceScope.Machine)] public DelimitedListTraceListener(string fileName, string name) : base(fileName, name) { } public string Delimiter { get { lock(this) { // Probably overkill if (!initializedDelim) { if (Attributes.ContainsKey("delimiter")) delimiter = Attributes["delimiter"]; initializedDelim = true; } } return delimiter; } set { if (value == null) throw new ArgumentNullException("Delimiter"); if (value.Length == 0) throw new ArgumentException(SR.GetString("Generic_ArgCantBeEmptyString", "Delimiter")); lock(this) { delimiter = value; initializedDelim = true; } if (delimiter == ",") secondaryDelim = ";"; else secondaryDelim = ","; } } protected override internal string[] GetSupportedAttributes() { return new String[]{"delimiter"}; } public override void TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, int id, string format, params object[] args) { if (Filter != null && !Filter.ShouldTrace(eventCache, source, eventType, id, format, args)) return; WriteHeader(source, eventType, id); if (args != null) WriteEscaped(String.Format(CultureInfo.InvariantCulture, format, args)); else WriteEscaped(format); Write(Delimiter); // Use get_Delimiter // one more delimiter for the data object Write(Delimiter); // Use get_Delimiter WriteFooter(eventCache); } public override void TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, int id, string message) { if (Filter != null && !Filter.ShouldTrace(eventCache, source, eventType, id, message)) return; WriteHeader(source, eventType, id); WriteEscaped(message); Write(Delimiter); // Use get_Delimiter // one more delimiter for the data object Write(Delimiter); // Use get_Delimiter WriteFooter(eventCache); } public override void TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, int id, object data) { if (Filter != null && !Filter.ShouldTrace(eventCache, source, eventType, id, null, null, data)) return; WriteHeader(source, eventType, id); // first a delimiter for the message Write(Delimiter); // Use get_Delimiter WriteEscaped(data.ToString()); Write(Delimiter); // Use get_Delimiter WriteFooter(eventCache); } public override void TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, int id, params object[] data) { if (Filter != null && !Filter.ShouldTrace(eventCache, source, eventType, id, null, null, null, data)) return; WriteHeader(source, eventType, id); // first a delimiter for the message Write(Delimiter); // Use get_Delimiter if (data != null) { for (int i=0; i
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ADRole.cs
- PageCodeDomTreeGenerator.cs
- Enlistment.cs
- CodeArgumentReferenceExpression.cs
- TabPage.cs
- NamedPipeTransportManager.cs
- EventHandlersStore.cs
- ReadOnlyAttribute.cs
- WindowsAltTab.cs
- MessageContractAttribute.cs
- GridViewPageEventArgs.cs
- TransformedBitmap.cs
- PackagePartCollection.cs
- DataGridColumnCollection.cs
- CharEnumerator.cs
- DisplayClaim.cs
- TabControl.cs
- PeerObject.cs
- DataTableTypeConverter.cs
- SwitchAttribute.cs
- ImageMetadata.cs
- ServiceHttpHandlerFactory.cs
- XPathPatternParser.cs
- BackEase.cs
- GetPageNumberCompletedEventArgs.cs
- FileDetails.cs
- Span.cs
- ProfileServiceManager.cs
- _FixedSizeReader.cs
- SystemIPv6InterfaceProperties.cs
- DataServiceQueryOfT.cs
- Icon.cs
- EventLogger.cs
- CharEntityEncoderFallback.cs
- FixedPageProcessor.cs
- KoreanCalendar.cs
- QueryRewriter.cs
- SamlSubject.cs
- NotConverter.cs
- PageCodeDomTreeGenerator.cs
- IndentedWriter.cs
- HtmlFormParameterReader.cs
- ThemeDirectoryCompiler.cs
- SqlDataSourceParameterParser.cs
- Vector3D.cs
- Attribute.cs
- ModelServiceImpl.cs
- Classification.cs
- HttpHandler.cs
- PasswordRecovery.cs
- XmlWriter.cs
- VectorKeyFrameCollection.cs
- UndirectedGraph.cs
- SecurityChannelListener.cs
- CodeNamespaceCollection.cs
- FormViewDeleteEventArgs.cs
- WebScriptServiceHostFactory.cs
- SerializationStore.cs
- TextChange.cs
- XamlSerializerUtil.cs
- JournalEntryListConverter.cs
- EnumDataContract.cs
- RuntimeConfigLKG.cs
- AnnotationAuthorChangedEventArgs.cs
- ControlValuePropertyAttribute.cs
- TextEditorTyping.cs
- DynamicValidator.cs
- TextAutomationPeer.cs
- HwndProxyElementProvider.cs
- XmlElementAttribute.cs
- FixedPageStructure.cs
- SessionState.cs
- GZipDecoder.cs
- WorkflowItemPresenter.cs
- RawTextInputReport.cs
- PointLightBase.cs
- AutoSizeComboBox.cs
- FixedPage.cs
- BasicViewGenerator.cs
- Domain.cs
- RemoteHelper.cs
- Logging.cs
- XslTransformFileEditor.cs
- Win32Native.cs
- TransformerInfoCollection.cs
- TemplateBindingExpressionConverter.cs
- PrivilegedConfigurationManager.cs
- ImmutableCommunicationTimeouts.cs
- EdmType.cs
- Utils.cs
- ModelFactory.cs
- unsafenativemethodsother.cs
- OutputBuffer.cs
- PropertyMap.cs
- RotateTransform.cs
- DataGridViewCellCancelEventArgs.cs
- FixedPageAutomationPeer.cs
- RbTree.cs
- TextRangeAdaptor.cs
- IMembershipProvider.cs