Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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); } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- _BasicClient.cs
- StorageMappingFragment.cs
- DispatchWrapper.cs
- FloaterParaClient.cs
- __Error.cs
- Renderer.cs
- ResourceExpressionBuilder.cs
- WebBrowserBase.cs
- DetailsViewInsertedEventArgs.cs
- MinimizableAttributeTypeConverter.cs
- AnimationTimeline.cs
- CreateUserWizardDesigner.cs
- ArraySegment.cs
- ErrorTableItemStyle.cs
- FocusTracker.cs
- OperatingSystemVersionCheck.cs
- ICspAsymmetricAlgorithm.cs
- Int32Rect.cs
- DbProviderFactory.cs
- InfoCardRSAPKCS1KeyExchangeDeformatter.cs
- EncryptedHeader.cs
- PasswordBox.cs
- SendActivityValidator.cs
- EditBehavior.cs
- PointLight.cs
- WebResourceAttribute.cs
- ObjectRef.cs
- Keywords.cs
- VerificationAttribute.cs
- ObjectNavigationPropertyMapping.cs
- _Rfc2616CacheValidators.cs
- Atom10FormatterFactory.cs
- ComponentTray.cs
- DataGridRow.cs
- InputElement.cs
- DecoderFallbackWithFailureFlag.cs
- WmlLiteralTextAdapter.cs
- VerificationException.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- CompositeTypefaceMetrics.cs
- LayoutUtils.cs
- SByteConverter.cs
- ObjectSpanRewriter.cs
- Int16Storage.cs
- GeneralTransform.cs
- UnsafeNativeMethods.cs
- D3DImage.cs
- HandleCollector.cs
- FlowDocument.cs
- XsltLibrary.cs
- MsmqIntegrationBindingElement.cs
- DictationGrammar.cs
- CollectionContainer.cs
- AspProxy.cs
- XmlEventCache.cs
- FontStretchConverter.cs
- ResXResourceWriter.cs
- ViewCellSlot.cs
- EntityDataSourceViewSchema.cs
- MethodToken.cs
- FrameworkPropertyMetadata.cs
- SqlConnection.cs
- XPathParser.cs
- GifBitmapEncoder.cs
- SmiMetaData.cs
- TabItemWrapperAutomationPeer.cs
- DbModificationCommandTree.cs
- DocumentOrderQuery.cs
- ControlPropertyNameConverter.cs
- Imaging.cs
- EncoderFallback.cs
- DirectionalLight.cs
- RemotingClientProxy.cs
- AsnEncodedData.cs
- NullEntityWrapper.cs
- PropertyTabAttribute.cs
- CellTreeSimplifier.cs
- DataGridViewDataConnection.cs
- OdbcCommandBuilder.cs
- ScriptControlManager.cs
- ObservableCollection.cs
- HotSpot.cs
- ActivationServices.cs
- RelativeSource.cs
- SystemColorTracker.cs
- PhoneCallDesigner.cs
- Visual3D.cs
- TransformationRules.cs
- InheritanceRules.cs
- Site.cs
- Permission.cs
- HotCommands.cs
- RegexCompilationInfo.cs
- IdentityModelDictionary.cs
- MultiPageTextView.cs
- _NegoState.cs
- WorkflowViewStateService.cs
- DragDeltaEventArgs.cs
- DataListItemCollection.cs
- HtmlLiteralTextAdapter.cs