Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / XamlBuildTask / XamlFxTrace.cs / 1305376 / XamlFxTrace.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.Xaml { using System; using System.Runtime; using System.Reflection; using System.Threading; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Diagnostics.CodeAnalysis; static partial class FxTrace { const string baseEventSourceName = "System.Xaml"; static string eventSourceName; static ExceptionTrace exceptionTrace; public static ExceptionTrace Exception { get { if (exceptionTrace == null) { // don't need a lock here since a true singleton is not required exceptionTrace = new ExceptionTrace(EventSourceName); } return exceptionTrace; } } static string EventSourceName { get { if (eventSourceName == null) { object[] fileVersionList = typeof(FxTrace).Assembly.GetCustomAttributes(typeof(AssemblyFileVersionAttribute), false); if (fileVersionList != null && fileVersionList.Length > 0 && fileVersionList[0] is AssemblyFileVersionAttribute) { eventSourceName = string.Concat(baseEventSourceName, " ", ((AssemblyFileVersionAttribute)fileVersionList[0]).Version); } else { eventSourceName = baseEventSourceName; } } return eventSourceName; } } // This never returns. The Exception return type lets you write 'throw FailFast()' which tells the compiler/tools that // execution stops. // This method is static on a beforefieldinit class. As long as it's built into the calling assembly and that assembly is // NGEN'd, it's very unlikely for the call itself to fail. [MethodImpl(MethodImplOptions.NoInlining)] [SuppressMessage(FxCop.Category.Performance, FxCop.Rule.AvoidUncalledPrivateCode, Justification = "This template is shared across all assemblies, some of which use this accessor.")] public static Exception FailFast(string message) { // The catch is here to force the finally to run, as finallys don't run until the stack walk gets to a catch. // The catch makes sure that the finally will run before the stack-walk leaves the frame, but the code inside is impossible to reach. try { try { FxTrace.Exception.TraceFailFast(message); } finally { Environment.FailFast(message); } } catch { throw; } return null; // we'll never get here since we've just fail-fasted } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.Xaml { using System; using System.Runtime; using System.Reflection; using System.Threading; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Diagnostics.CodeAnalysis; static partial class FxTrace { const string baseEventSourceName = "System.Xaml"; static string eventSourceName; static ExceptionTrace exceptionTrace; public static ExceptionTrace Exception { get { if (exceptionTrace == null) { // don't need a lock here since a true singleton is not required exceptionTrace = new ExceptionTrace(EventSourceName); } return exceptionTrace; } } static string EventSourceName { get { if (eventSourceName == null) { object[] fileVersionList = typeof(FxTrace).Assembly.GetCustomAttributes(typeof(AssemblyFileVersionAttribute), false); if (fileVersionList != null && fileVersionList.Length > 0 && fileVersionList[0] is AssemblyFileVersionAttribute) { eventSourceName = string.Concat(baseEventSourceName, " ", ((AssemblyFileVersionAttribute)fileVersionList[0]).Version); } else { eventSourceName = baseEventSourceName; } } return eventSourceName; } } // This never returns. The Exception return type lets you write 'throw FailFast()' which tells the compiler/tools that // execution stops. // This method is static on a beforefieldinit class. As long as it's built into the calling assembly and that assembly is // NGEN'd, it's very unlikely for the call itself to fail. [MethodImpl(MethodImplOptions.NoInlining)] [SuppressMessage(FxCop.Category.Performance, FxCop.Rule.AvoidUncalledPrivateCode, Justification = "This template is shared across all assemblies, some of which use this accessor.")] public static Exception FailFast(string message) { // The catch is here to force the finally to run, as finallys don't run until the stack walk gets to a catch. // The catch makes sure that the finally will run before the stack-walk leaves the frame, but the code inside is impossible to reach. try { try { FxTrace.Exception.TraceFailFast(message); } finally { Environment.FailFast(message); } } catch { throw; } return null; // we'll never get here since we've just fail-fasted } } } // 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
- XmlHierarchicalDataSourceView.cs
- RangeBase.cs
- Transform3D.cs
- SelectionBorderGlyph.cs
- SendingRequestEventArgs.cs
- FormatterServices.cs
- MetadataUtilsSmi.cs
- safex509handles.cs
- ConsoleCancelEventArgs.cs
- XmlException.cs
- invalidudtexception.cs
- TemplateField.cs
- CacheMemory.cs
- ObjectDataSourceEventArgs.cs
- StreamSecurityUpgradeInitiator.cs
- XamlInterfaces.cs
- DoubleCollectionConverter.cs
- ObjectView.cs
- Signature.cs
- SchemaNotation.cs
- VirtualizingStackPanel.cs
- HttpRequestWrapper.cs
- StorageInfo.cs
- HtmlInputControl.cs
- Marshal.cs
- WorkflowOperationInvoker.cs
- XmlSchemaAttributeGroupRef.cs
- RuleSet.cs
- UnsafeNativeMethods.cs
- SoapProtocolReflector.cs
- SimpleHandlerFactory.cs
- FullTextLine.cs
- RuleCache.cs
- ConfigUtil.cs
- ObjectDataSource.cs
- EntityTypeEmitter.cs
- DigitShape.cs
- UpdateTranslator.cs
- ResourceAttributes.cs
- PeerNearMe.cs
- DeflateEmulationStream.cs
- ZoneLinkButton.cs
- Selection.cs
- ViewGenResults.cs
- PointAnimationUsingKeyFrames.cs
- MetaDataInfo.cs
- BaseTemplatedMobileComponentEditor.cs
- XmlSerializableWriter.cs
- COSERVERINFO.cs
- TreeNodeConverter.cs
- UserNameServiceElement.cs
- ConfigurationManagerHelper.cs
- Membership.cs
- CssStyleCollection.cs
- SchemaCollectionCompiler.cs
- Journal.cs
- CommandID.cs
- SupportingTokenSpecification.cs
- SHA256Managed.cs
- InteropAutomationProvider.cs
- ChannelManagerService.cs
- DrawingVisual.cs
- DesignerOptionService.cs
- ZipQueryOperator.cs
- MatrixValueSerializer.cs
- CultureTable.cs
- BamlLocalizabilityResolver.cs
- SimpleApplicationHost.cs
- StatusBarItemAutomationPeer.cs
- IteratorFilter.cs
- DbMetaDataCollectionNames.cs
- SspiNegotiationTokenProvider.cs
- TdsValueSetter.cs
- Double.cs
- TextBoxBaseDesigner.cs
- TransportListener.cs
- LinkClickEvent.cs
- SqlCachedBuffer.cs
- XmlIncludeAttribute.cs
- NullableDecimalSumAggregationOperator.cs
- StylusEditingBehavior.cs
- AuthorizationRule.cs
- ToolStripSplitButton.cs
- RTLAwareMessageBox.cs
- ColumnMapCopier.cs
- DiffuseMaterial.cs
- TableProvider.cs
- OlePropertyStructs.cs
- ObjectStateEntryOriginalDbUpdatableDataRecord.cs
- DBCommand.cs
- SectionXmlInfo.cs
- SchemaNames.cs
- DateTimeFormatInfoScanner.cs
- UnmanagedHandle.cs
- ByteStack.cs
- TranslateTransform.cs
- TypeConverterBase.cs
- DataBindingHandlerAttribute.cs
- PagedControl.cs
- CheckBoxDesigner.cs