Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WCF / SMDiagnostics / System / ServiceModel / Diagnostics / AssertUtility.cs / 1305376 / AssertUtility.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- // This class needs to function even if it was built retail. That is, a debug caller calling against a retail // SMDiagnostics should still have asserts fire. To achieve that, we need to define DEBUG here. // We do not do the registry override in retail SMDiagnostics because that would require shipping a test hook. We // do not generally ship test hooks today. #if DEBUG #define DEBUG_FOR_REALS #else #define DEBUG #endif namespace System.ServiceModel.Diagnostics { using System; using System.Runtime; using System.Runtime.Interop; using System.Diagnostics; using System.Runtime.CompilerServices; using System.Diagnostics.CodeAnalysis; using Microsoft.Win32; static class AssertUtility { #if DEBUG_FOR_REALS const string WinFXRegistryKey = @"SOFTWARE\Microsoft\NET Framework Setup\NDP"; const string WcfRegistryKey = AssertUtility.WinFXRegistryKey + @"\CDF\v4.0\Debug"; const string AssertsFailFastName = "AssertsFailFast"; #endif [Obsolete("For SMDiagnostics.dll use only. Call DiagnosticUtility.DebugAssert instead")] [SuppressMessage(FxCop.Category.ReliabilityBasic, FxCop.Rule.InvariantAssertRule, Justification = "Assert implementation")] internal static void DebugAssertCore(string message) { try { #if DEBUG_FOR_REALS string debugMessage = "WCF Assert fired! --> " + message + "\r\n"; if (Debugger.IsAttached) { Debugger.Log(0, Debugger.DefaultCategory, debugMessage); Debugger.Break(); } if (UnsafeNativeMethods.IsDebuggerPresent()) { UnsafeNativeMethods.OutputDebugString(debugMessage); UnsafeNativeMethods.DebugBreak(); } // This can be switched to just FailFast (e.g. for the stress lab). RegistryKey key = Registry.LocalMachine.OpenSubKey(AssertUtility.WcfRegistryKey); if (key != null) { object value; using (key) { value = key.GetValue(AssertUtility.AssertsFailFastName); } if (value != null && typeof(int).IsAssignableFrom(value.GetType()) && ((int) value) != 0) { try { if (ExceptionUtility.mainInstance != null) { #pragma warning disable 618 ExceptionUtility.mainInstance.TraceFailFast(message); } else { ExceptionUtility.TraceFailFast(message, new EventLogger("System.ServiceModel", null)); } #pragma warning restore 618 } finally { Environment.FailFast(message); } } } } catch (Exception exception) { message = string.Concat("Exception during assert! [", exception.GetType().Name, ": ", exception.Message, "] --> ", message); throw; #endif } finally { Debug.Assert(false, message); } } // For use within SMDiagnostics. [Conditional("DEBUG")] [Obsolete("For SMDiagnostics.dll use only. Call DiagnosticUtility.DebugAssert instead")] internal static void DebugAssert(bool condition, string message) { if (!condition) { DebugAssert(message); } } [MethodImpl(MethodImplOptions.NoInlining)] [Conditional("DEBUG")] [Obsolete("For SMDiagnostics.dll use only. Call DiagnosticUtility.DebugAssert instead")] internal static void DebugAssert(string message) { DebugAssertCore(message); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- // This class needs to function even if it was built retail. That is, a debug caller calling against a retail // SMDiagnostics should still have asserts fire. To achieve that, we need to define DEBUG here. // We do not do the registry override in retail SMDiagnostics because that would require shipping a test hook. We // do not generally ship test hooks today. #if DEBUG #define DEBUG_FOR_REALS #else #define DEBUG #endif namespace System.ServiceModel.Diagnostics { using System; using System.Runtime; using System.Runtime.Interop; using System.Diagnostics; using System.Runtime.CompilerServices; using System.Diagnostics.CodeAnalysis; using Microsoft.Win32; static class AssertUtility { #if DEBUG_FOR_REALS const string WinFXRegistryKey = @"SOFTWARE\Microsoft\NET Framework Setup\NDP"; const string WcfRegistryKey = AssertUtility.WinFXRegistryKey + @"\CDF\v4.0\Debug"; const string AssertsFailFastName = "AssertsFailFast"; #endif [Obsolete("For SMDiagnostics.dll use only. Call DiagnosticUtility.DebugAssert instead")] [SuppressMessage(FxCop.Category.ReliabilityBasic, FxCop.Rule.InvariantAssertRule, Justification = "Assert implementation")] internal static void DebugAssertCore(string message) { try { #if DEBUG_FOR_REALS string debugMessage = "WCF Assert fired! --> " + message + "\r\n"; if (Debugger.IsAttached) { Debugger.Log(0, Debugger.DefaultCategory, debugMessage); Debugger.Break(); } if (UnsafeNativeMethods.IsDebuggerPresent()) { UnsafeNativeMethods.OutputDebugString(debugMessage); UnsafeNativeMethods.DebugBreak(); } // This can be switched to just FailFast (e.g. for the stress lab). RegistryKey key = Registry.LocalMachine.OpenSubKey(AssertUtility.WcfRegistryKey); if (key != null) { object value; using (key) { value = key.GetValue(AssertUtility.AssertsFailFastName); } if (value != null && typeof(int).IsAssignableFrom(value.GetType()) && ((int) value) != 0) { try { if (ExceptionUtility.mainInstance != null) { #pragma warning disable 618 ExceptionUtility.mainInstance.TraceFailFast(message); } else { ExceptionUtility.TraceFailFast(message, new EventLogger("System.ServiceModel", null)); } #pragma warning restore 618 } finally { Environment.FailFast(message); } } } } catch (Exception exception) { message = string.Concat("Exception during assert! [", exception.GetType().Name, ": ", exception.Message, "] --> ", message); throw; #endif } finally { Debug.Assert(false, message); } } // For use within SMDiagnostics. [Conditional("DEBUG")] [Obsolete("For SMDiagnostics.dll use only. Call DiagnosticUtility.DebugAssert instead")] internal static void DebugAssert(bool condition, string message) { if (!condition) { DebugAssert(message); } } [MethodImpl(MethodImplOptions.NoInlining)] [Conditional("DEBUG")] [Obsolete("For SMDiagnostics.dll use only. Call DiagnosticUtility.DebugAssert instead")] internal static void DebugAssert(string message) { DebugAssertCore(message); } } } // 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
- WindowsSysHeader.cs
- CodeCompiler.cs
- InstalledFontCollection.cs
- FormViewUpdatedEventArgs.cs
- HttpServerProtocol.cs
- MetadataAssemblyHelper.cs
- SByteConverter.cs
- AnimatedTypeHelpers.cs
- EntityDataSourceDataSelection.cs
- StrongNamePublicKeyBlob.cs
- StrongTypingException.cs
- ConfigXmlText.cs
- EdgeProfileValidation.cs
- PropertyTab.cs
- EntityClientCacheEntry.cs
- RepeaterDesigner.cs
- ListSourceHelper.cs
- BinaryParser.cs
- UrlAuthFailedErrorFormatter.cs
- BlockExpression.cs
- SecondaryViewProvider.cs
- EncryptionUtility.cs
- DefaultBindingPropertyAttribute.cs
- WsdlBuildProvider.cs
- FormsAuthenticationConfiguration.cs
- Deflater.cs
- X509Extension.cs
- ButtonFieldBase.cs
- ConnectionStringsExpressionBuilder.cs
- TypeDescriptorFilterService.cs
- ReversePositionQuery.cs
- VersionedStream.cs
- TextServicesContext.cs
- PropertyItem.cs
- XmlDocumentFragment.cs
- PageStatePersister.cs
- ArrayWithOffset.cs
- MessageFormatterConverter.cs
- elementinformation.cs
- RenderCapability.cs
- LineBreakRecord.cs
- DynamicDataExtensions.cs
- ConnectionConsumerAttribute.cs
- MsdtcClusterUtils.cs
- DataGridViewTopRowAccessibleObject.cs
- AnnouncementSendsAsyncResult.cs
- FeatureSupport.cs
- Registry.cs
- BezierSegment.cs
- NonParentingControl.cs
- ISFTagAndGuidCache.cs
- VariantWrapper.cs
- QilPatternFactory.cs
- ActiveXSite.cs
- WebFormsRootDesigner.cs
- MultiTrigger.cs
- COM2IManagedPerPropertyBrowsingHandler.cs
- NativeMethods.cs
- SafeReadContext.cs
- ScrollProviderWrapper.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- ModuleBuilderData.cs
- HashCodeCombiner.cs
- GeneralTransformGroup.cs
- XmlAttributeCollection.cs
- Repeater.cs
- SimpleBitVector32.cs
- XamlSerializer.cs
- AdPostCacheSubstitution.cs
- EntityDataSourceWrapperCollection.cs
- ClrPerspective.cs
- TypeToArgumentTypeConverter.cs
- HighlightComponent.cs
- UserControlFileEditor.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- Rect3D.cs
- BamlStream.cs
- DataGridViewCellStateChangedEventArgs.cs
- DataObject.cs
- DataColumnMapping.cs
- WmlLinkAdapter.cs
- EtwTrace.cs
- RenderData.cs
- DataServiceRequestArgs.cs
- SynchronizationContext.cs
- UrlEncodedParameterWriter.cs
- BitStack.cs
- UntypedNullExpression.cs
- Adorner.cs
- RequestResizeEvent.cs
- IgnoreDeviceFilterElementCollection.cs
- XmlSchemaInferenceException.cs
- XhtmlBasicLiteralTextAdapter.cs
- FrameworkEventSource.cs
- HttpCookieCollection.cs
- TextStore.cs
- SID.cs
- EventHandlersStore.cs
- ObjectItemCollection.cs
- AutomationEventArgs.cs