Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- StrokeIntersection.cs
- WindowsProgressbar.cs
- ClientApiGenerator.cs
- ThrowHelper.cs
- TemplateEditingFrame.cs
- WebPartActionVerb.cs
- WebPartUserCapability.cs
- RangeValueProviderWrapper.cs
- SocketInformation.cs
- _LazyAsyncResult.cs
- SoapObjectWriter.cs
- BitmapSource.cs
- CLSCompliantAttribute.cs
- DbgUtil.cs
- ZipIOExtraField.cs
- PerspectiveCamera.cs
- SqlMetaData.cs
- MimeReflector.cs
- DataRelationCollection.cs
- DocumentEventArgs.cs
- Visual.cs
- RouteItem.cs
- CharEnumerator.cs
- SmiEventSink_Default.cs
- ClientSponsor.cs
- OperationContractGenerationContext.cs
- SoapAttributeAttribute.cs
- FormsAuthentication.cs
- NetworkStream.cs
- StorageEntityTypeMapping.cs
- SystemIPInterfaceProperties.cs
- SqlDataRecord.cs
- XmlAttributeProperties.cs
- FacetValueContainer.cs
- WizardForm.cs
- DocumentCollection.cs
- IIS7UserPrincipal.cs
- DeploymentSection.cs
- BoolExpression.cs
- IOThreadTimer.cs
- SHA256Managed.cs
- PriorityQueue.cs
- FlowDocumentScrollViewer.cs
- ListBox.cs
- DataPagerFieldCollection.cs
- StringDictionaryCodeDomSerializer.cs
- Column.cs
- VisualStyleInformation.cs
- Typography.cs
- ValidationErrorEventArgs.cs
- ProcessHost.cs
- TextServicesLoader.cs
- Menu.cs
- PeerToPeerException.cs
- VSWCFServiceContractGenerator.cs
- PersistChildrenAttribute.cs
- EventRouteFactory.cs
- CalendarDay.cs
- CommunicationException.cs
- SerTrace.cs
- Timeline.cs
- _NetworkingPerfCounters.cs
- CodeExporter.cs
- ModuleConfigurationInfo.cs
- Atom10FeedFormatter.cs
- SessionStateUtil.cs
- FullTextState.cs
- TdsParameterSetter.cs
- QilTypeChecker.cs
- BigInt.cs
- SqlSupersetValidator.cs
- HelpKeywordAttribute.cs
- ReadOnlyCollection.cs
- CompModHelpers.cs
- Deserializer.cs
- VarInfo.cs
- XmlArrayItemAttribute.cs
- CompilerParameters.cs
- CookieParameter.cs
- MarkupCompilePass1.cs
- BrowsableAttribute.cs
- SamlAuthenticationStatement.cs
- XmlChildEnumerator.cs
- ContractCodeDomInfo.cs
- BridgeDataRecord.cs
- Volatile.cs
- SoapEnvelopeProcessingElement.cs
- InlineUIContainer.cs
- datacache.cs
- DesignerActionGlyph.cs
- ActivityDesignerAccessibleObject.cs
- KeyboardEventArgs.cs
- TemplateField.cs
- MimeTypePropertyAttribute.cs
- Path.cs
- ContentElement.cs
- TypeDelegator.cs
- WebPageTraceListener.cs
- FileDialog.cs
- InputDevice.cs