Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / Diagnostics / TraceEventCache.cs / 1305376 / TraceEventCache.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Threading; using System.Security.Permissions; using System.Text; using System.Collections; using System.Globalization; using System.Runtime.Versioning; namespace System.Diagnostics { public class TraceEventCache { private static int processId; private static string processName; private long timeStamp = -1; private DateTime dateTime = DateTime.MinValue; private string stackTrace = null; internal Guid ActivityId { get { return Trace.CorrelationManager.ActivityId; } } public string Callstack { get { if (stackTrace == null) stackTrace = Environment.StackTrace; else new EnvironmentPermission(PermissionState.Unrestricted).Demand(); return stackTrace; } } public Stack LogicalOperationStack { get { return Trace.CorrelationManager.LogicalOperationStack; } } public DateTime DateTime { get { if (dateTime == DateTime.MinValue) dateTime = DateTime.UtcNow; return dateTime; } } public int ProcessId { [ResourceExposure(ResourceScope.Process)] // Returns the current process's pid [ResourceConsumption(ResourceScope.Process)] get { return GetProcessId(); } } public string ThreadId { get { return GetThreadId().ToString(CultureInfo.InvariantCulture); } } public long Timestamp { get { if (timeStamp == -1) timeStamp = Stopwatch.GetTimestamp(); return timeStamp ; } } [ResourceExposure(ResourceScope.None)] [ResourceConsumption(ResourceScope.Machine, ResourceScope.Machine)] private static void InitProcessInfo() { // Demand unmanaged code permission new SecurityPermission(SecurityPermissionFlag.UnmanagedCode).Demand(); if (processName == null) { Process p = Process.GetCurrentProcess(); try { processId = p.Id; processName = p.ProcessName; } finally { p.Dispose(); } } } [ResourceExposure(ResourceScope.Process)] internal static int GetProcessId() { InitProcessInfo(); return processId; } internal static string GetProcessName() { InitProcessInfo(); return processName; } internal static int GetThreadId() { return Thread.CurrentThread.ManagedThreadId; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Threading; using System.Security.Permissions; using System.Text; using System.Collections; using System.Globalization; using System.Runtime.Versioning; namespace System.Diagnostics { public class TraceEventCache { private static int processId; private static string processName; private long timeStamp = -1; private DateTime dateTime = DateTime.MinValue; private string stackTrace = null; internal Guid ActivityId { get { return Trace.CorrelationManager.ActivityId; } } public string Callstack { get { if (stackTrace == null) stackTrace = Environment.StackTrace; else new EnvironmentPermission(PermissionState.Unrestricted).Demand(); return stackTrace; } } public Stack LogicalOperationStack { get { return Trace.CorrelationManager.LogicalOperationStack; } } public DateTime DateTime { get { if (dateTime == DateTime.MinValue) dateTime = DateTime.UtcNow; return dateTime; } } public int ProcessId { [ResourceExposure(ResourceScope.Process)] // Returns the current process's pid [ResourceConsumption(ResourceScope.Process)] get { return GetProcessId(); } } public string ThreadId { get { return GetThreadId().ToString(CultureInfo.InvariantCulture); } } public long Timestamp { get { if (timeStamp == -1) timeStamp = Stopwatch.GetTimestamp(); return timeStamp ; } } [ResourceExposure(ResourceScope.None)] [ResourceConsumption(ResourceScope.Machine, ResourceScope.Machine)] private static void InitProcessInfo() { // Demand unmanaged code permission new SecurityPermission(SecurityPermissionFlag.UnmanagedCode).Demand(); if (processName == null) { Process p = Process.GetCurrentProcess(); try { processId = p.Id; processName = p.ProcessName; } finally { p.Dispose(); } } } [ResourceExposure(ResourceScope.Process)] internal static int GetProcessId() { InitProcessInfo(); return processId; } internal static string GetProcessName() { InitProcessInfo(); return processName; } internal static int GetThreadId() { return Thread.CurrentThread.ManagedThreadId; } } } // 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
- listviewsubitemcollectioneditor.cs
- GenericFlowSwitchHelper.cs
- ParserHooks.cs
- Int32CAMarshaler.cs
- HtmlControl.cs
- PopupRootAutomationPeer.cs
- ALinqExpressionVisitor.cs
- DynamicControlParameter.cs
- TextEndOfParagraph.cs
- PeerUnsafeNativeMethods.cs
- ClaimSet.cs
- DataGridView.cs
- LayoutUtils.cs
- ModelFactory.cs
- X509CertificateValidator.cs
- _CookieModule.cs
- NativeObjectSecurity.cs
- XmlSchemaAnnotation.cs
- WebEncodingValidator.cs
- XMLDiffLoader.cs
- LineProperties.cs
- BinaryObjectInfo.cs
- ObjectSet.cs
- WebCategoryAttribute.cs
- AssemblyName.cs
- AnnouncementEventArgs.cs
- Binding.cs
- NullableDoubleAverageAggregationOperator.cs
- SaveFileDialog.cs
- CharUnicodeInfo.cs
- Visitor.cs
- WebPartTransformer.cs
- FileLevelControlBuilderAttribute.cs
- XmlParserContext.cs
- SetterBase.cs
- URLMembershipCondition.cs
- WorkflowOperationBehavior.cs
- FormattedTextSymbols.cs
- SelectionEditingBehavior.cs
- QilList.cs
- ObjectAnimationBase.cs
- DesignerVerbToolStripMenuItem.cs
- CompilationSection.cs
- UrlPath.cs
- __Filters.cs
- BasicCellRelation.cs
- MultiView.cs
- HostedElements.cs
- cookiecontainer.cs
- RemoteTokenFactory.cs
- DelegatingConfigHost.cs
- SByteStorage.cs
- ErrorWebPart.cs
- ValidateNames.cs
- ScrollEvent.cs
- ExpressionVisitorHelpers.cs
- SmtpMail.cs
- Image.cs
- QuaternionValueSerializer.cs
- PeerObject.cs
- InputBinder.cs
- ButtonChrome.cs
- OdbcCommand.cs
- RequestCachingSection.cs
- ProcessingInstructionAction.cs
- SolidBrush.cs
- ContextStaticAttribute.cs
- OutputCacheModule.cs
- ListItemsPage.cs
- DateTimeUtil.cs
- RotationValidation.cs
- _NegotiateClient.cs
- CleanUpVirtualizedItemEventArgs.cs
- MostlySingletonList.cs
- SemaphoreSecurity.cs
- TimeZoneInfo.cs
- FormsAuthenticationTicket.cs
- MultipartContentParser.cs
- Attributes.cs
- _AcceptOverlappedAsyncResult.cs
- PropertyToken.cs
- RtfControls.cs
- TextTreeRootNode.cs
- EmbossBitmapEffect.cs
- QilInvoke.cs
- EpmContentSerializer.cs
- Model3DGroup.cs
- WebUtil.cs
- Privilege.cs
- HttpServerVarsCollection.cs
- Console.cs
- SmtpSection.cs
- Rect3DConverter.cs
- DefaultProxySection.cs
- InputScopeConverter.cs
- ADMembershipProvider.cs
- Connection.cs
- Rectangle.cs
- PeerApplicationLaunchInfo.cs
- HttpContext.cs