Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / clr / src / BCL / System / Diagnostics / Assert.cs / 1 / Assert.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== namespace System.Diagnostics { using System; using System.Security.Permissions; using System.IO; using System.Reflection; using System.Runtime.CompilerServices; // Class which handles code asserts. Asserts are used to explicitly protect // assumptions made in the code. In general if an assert fails, it indicates // a program bug so is immediately called to the attention of the user. // Only static data members, does not need to be marked with the serializable attribute internal static class Assert { private static AssertFilter[] ListOfFilters; private static int iNumOfFilters; private static int iFilterArraySize; static Assert() { Assert.AddFilter(new DefaultFilter()); } // AddFilter adds a new assert filter. This replaces the current // filter, unless the filter returns FailContinue. // public static void AddFilter(AssertFilter filter) { if (iFilterArraySize <= iNumOfFilters) { AssertFilter[] newFilterArray = new AssertFilter [iFilterArraySize+2]; if (iNumOfFilters > 0) Array.Copy(ListOfFilters, newFilterArray, iNumOfFilters); iFilterArraySize += 2; ListOfFilters = newFilterArray; } ListOfFilters [iNumOfFilters++] = filter; } // Called when an assertion is being made. // public static void Check(bool condition, String conditionString, String message) { if (!condition) { Fail (conditionString, message); } } public static void Fail(String conditionString, String message) { // get the stacktrace StackTrace st = new StackTrace(); // Run through the list of filters backwards (the last filter in the list // is the default filter. So we're guaranteed that there will be atleast // one filter to handle the assert. int iTemp = iNumOfFilters; while (iTemp > 0) { AssertFilters iResult = ListOfFilters [--iTemp].AssertFailure (conditionString, message, st); if (iResult == AssertFilters.FailDebug) { if (Debugger.IsAttached == true) Debugger.Break(); else { if (Debugger.Launch() == false) { throw new InvalidOperationException( Environment.GetResourceString("InvalidOperation_DebuggerLaunchFailed")); } } break; } else if (iResult == AssertFilters.FailTerminate) Environment.Exit(-1); else if (iResult == AssertFilters.FailIgnore) break; // If none of the above, it means that the Filter returned FailContinue. // So invoke the next filter. } } // Called when an assert happens. // [MethodImplAttribute(MethodImplOptions.InternalCall)] public extern static int ShowDefaultAssertDialog(String conditionString, String message); } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== namespace System.Diagnostics { using System; using System.Security.Permissions; using System.IO; using System.Reflection; using System.Runtime.CompilerServices; // Class which handles code asserts. Asserts are used to explicitly protect // assumptions made in the code. In general if an assert fails, it indicates // a program bug so is immediately called to the attention of the user. // Only static data members, does not need to be marked with the serializable attribute internal static class Assert { private static AssertFilter[] ListOfFilters; private static int iNumOfFilters; private static int iFilterArraySize; static Assert() { Assert.AddFilter(new DefaultFilter()); } // AddFilter adds a new assert filter. This replaces the current // filter, unless the filter returns FailContinue. // public static void AddFilter(AssertFilter filter) { if (iFilterArraySize <= iNumOfFilters) { AssertFilter[] newFilterArray = new AssertFilter [iFilterArraySize+2]; if (iNumOfFilters > 0) Array.Copy(ListOfFilters, newFilterArray, iNumOfFilters); iFilterArraySize += 2; ListOfFilters = newFilterArray; } ListOfFilters [iNumOfFilters++] = filter; } // Called when an assertion is being made. // public static void Check(bool condition, String conditionString, String message) { if (!condition) { Fail (conditionString, message); } } public static void Fail(String conditionString, String message) { // get the stacktrace StackTrace st = new StackTrace(); // Run through the list of filters backwards (the last filter in the list // is the default filter. So we're guaranteed that there will be atleast // one filter to handle the assert. int iTemp = iNumOfFilters; while (iTemp > 0) { AssertFilters iResult = ListOfFilters [--iTemp].AssertFailure (conditionString, message, st); if (iResult == AssertFilters.FailDebug) { if (Debugger.IsAttached == true) Debugger.Break(); else { if (Debugger.Launch() == false) { throw new InvalidOperationException( Environment.GetResourceString("InvalidOperation_DebuggerLaunchFailed")); } } break; } else if (iResult == AssertFilters.FailTerminate) Environment.Exit(-1); else if (iResult == AssertFilters.FailIgnore) break; // If none of the above, it means that the Filter returned FailContinue. // So invoke the next filter. } } // Called when an assert happens. // [MethodImplAttribute(MethodImplOptions.InternalCall)] public extern static int ShowDefaultAssertDialog(String conditionString, String 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
- DataGridColumn.cs
- GetRecipientListRequest.cs
- DeploymentExceptionMapper.cs
- FileFormatException.cs
- PlanCompiler.cs
- MobileUITypeEditor.cs
- CharKeyFrameCollection.cs
- ToggleButtonAutomationPeer.cs
- CmsInterop.cs
- BinHexEncoder.cs
- SmiContext.cs
- DataFormats.cs
- HtmlControlAdapter.cs
- TriState.cs
- ipaddressinformationcollection.cs
- SerializationSectionGroup.cs
- TypeForwardedFromAttribute.cs
- SortDescription.cs
- LoadGrammarCompletedEventArgs.cs
- AssemblyName.cs
- DetailsViewDeletedEventArgs.cs
- SpecularMaterial.cs
- MaskedTextProvider.cs
- DesignerAttributeInfo.cs
- SettingsAttributes.cs
- RegisteredExpandoAttribute.cs
- LinkUtilities.cs
- DocumentXmlWriter.cs
- ContextMenuStripGroupCollection.cs
- SafeCryptoHandles.cs
- KeyTime.cs
- ObjectTag.cs
- MimeObjectFactory.cs
- Symbol.cs
- DataBindEngine.cs
- CurrentChangingEventArgs.cs
- PersonalizationStateInfoCollection.cs
- StrokeNodeOperations.cs
- DiscoveryRequestHandler.cs
- Rotation3DAnimationUsingKeyFrames.cs
- AutoCompleteStringCollection.cs
- QueryStatement.cs
- Control.cs
- HttpStreams.cs
- DataBinding.cs
- LineUtil.cs
- InvokeMethodActivityDesigner.cs
- DropShadowBitmapEffect.cs
- DocumentSchemaValidator.cs
- XmlJsonReader.cs
- RefType.cs
- EventRouteFactory.cs
- HtmlControl.cs
- XmlSiteMapProvider.cs
- BulletChrome.cs
- HttpHeaderCollection.cs
- VolatileEnlistmentMultiplexing.cs
- GacUtil.cs
- SecurityTokenRequirement.cs
- OciHandle.cs
- ItemCheckEvent.cs
- GroupDescription.cs
- CodeArrayCreateExpression.cs
- hebrewshape.cs
- RadioButtonFlatAdapter.cs
- UiaCoreTypesApi.cs
- pingexception.cs
- TrustExchangeException.cs
- ComponentChangedEvent.cs
- VirtualizedCellInfoCollection.cs
- CacheForPrimitiveTypes.cs
- Attachment.cs
- Int32Rect.cs
- SecurityTokenReferenceStyle.cs
- ManagedIStream.cs
- EdmToObjectNamespaceMap.cs
- processwaithandle.cs
- EntityStoreSchemaFilterEntry.cs
- MatrixIndependentAnimationStorage.cs
- CheckoutException.cs
- XmlDataSourceView.cs
- ThreadExceptionEvent.cs
- CacheRequest.cs
- SelectionManager.cs
- TreeNodeBindingDepthConverter.cs
- RelationshipEndCollection.cs
- DbConnectionClosed.cs
- TextContainerHelper.cs
- FlowLayoutSettings.cs
- FormViewCommandEventArgs.cs
- InfoCardRSAPKCS1KeyExchangeFormatter.cs
- BinaryVersion.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- UniqueConstraint.cs
- TabItemWrapperAutomationPeer.cs
- TdsParameterSetter.cs
- Substitution.cs
- MetadataProperty.cs
- AssociationTypeEmitter.cs
- NumberFormatInfo.cs