Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Runtime / InteropServices / SEHException.cs / 1305376 / SEHException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** Class: SEHException ** ** ** Purpose: Exception class for all Structured Exception Handling code. ** ** =============================================================================*/ namespace System.Runtime.InteropServices { using System.Runtime.InteropServices; using System; using System.Runtime.Serialization; // Exception for Structured Exception Handler exceptions. // [System.Runtime.InteropServices.ComVisible(true)] [Serializable] public class SEHException : ExternalException { public SEHException() : base() { SetErrorCode(__HResults.E_FAIL); } public SEHException(String message) : base(message) { SetErrorCode(__HResults.E_FAIL); } public SEHException(String message, Exception inner) : base(message, inner) { SetErrorCode(__HResults.E_FAIL); } [System.Security.SecuritySafeCritical] // auto-generated protected SEHException(SerializationInfo info, StreamingContext context) : base(info, context) { } // Exceptions can be resumable, meaning a filtered exception // handler can correct the problem that caused the exception, // and the code will continue from the point that threw the // exception. // // Resumable exceptions aren't implemented in this version, // but this method exists and always returns false. // public virtual bool CanResume() { return false; } } } // 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
- ArraySubsetEnumerator.cs
- ListSortDescriptionCollection.cs
- Queue.cs
- HttpException.cs
- codemethodreferenceexpression.cs
- TextEditorSpelling.cs
- MaskedTextBox.cs
- CustomUserNameSecurityTokenAuthenticator.cs
- SupportingTokenAuthenticatorSpecification.cs
- ButtonColumn.cs
- MappingItemCollection.cs
- EntitySet.cs
- InvariantComparer.cs
- DeviceSpecificDialogCachedState.cs
- MethodImplAttribute.cs
- MergePropertyDescriptor.cs
- SqlInternalConnectionSmi.cs
- DesignerView.Commands.cs
- SchemaCollectionPreprocessor.cs
- XmlCodeExporter.cs
- PageWrapper.cs
- CqlGenerator.cs
- RoleManagerModule.cs
- KeyFrames.cs
- ToolStripDropDownMenu.cs
- ZipIOModeEnforcingStream.cs
- BooleanKeyFrameCollection.cs
- FontSourceCollection.cs
- ImageBrush.cs
- UntypedNullExpression.cs
- HTTPNotFoundHandler.cs
- AsymmetricSignatureFormatter.cs
- DataServiceClientException.cs
- StylusPointPropertyId.cs
- StaticTextPointer.cs
- XmlILAnnotation.cs
- CharacterBuffer.cs
- SBCSCodePageEncoding.cs
- ServiceModelSecurityTokenTypes.cs
- PolicyLevel.cs
- HtmlShim.cs
- SystemColors.cs
- CacheAxisQuery.cs
- LockedHandleGlyph.cs
- Rotation3DAnimationBase.cs
- LabelAutomationPeer.cs
- RegionInfo.cs
- PartialCachingControl.cs
- BypassElement.cs
- RuntimeCompatibilityAttribute.cs
- InputBuffer.cs
- PolyQuadraticBezierSegmentFigureLogic.cs
- DrawingGroupDrawingContext.cs
- AdornerDecorator.cs
- ParameterBuilder.cs
- SplitterPanel.cs
- TextBox.cs
- Panel.cs
- QilDataSource.cs
- DirectionalLight.cs
- SpeechAudioFormatInfo.cs
- RectAnimationBase.cs
- Array.cs
- UITypeEditor.cs
- MobileControlBuilder.cs
- BinaryObjectWriter.cs
- OdbcParameterCollection.cs
- CodeAttributeDeclarationCollection.cs
- DocumentGridContextMenu.cs
- LinkTarget.cs
- ApplicationManager.cs
- COMException.cs
- ItemsPresenter.cs
- BrowserCapabilitiesCompiler.cs
- BufferedStream.cs
- DSACryptoServiceProvider.cs
- SourceFileInfo.cs
- TypedRowHandler.cs
- PerformanceCounters.cs
- ProgressPage.cs
- NetCodeGroup.cs
- QuaternionValueSerializer.cs
- EventBuilder.cs
- DriveNotFoundException.cs
- DataBinding.cs
- RoleBoolean.cs
- EditorReuseAttribute.cs
- TextTreeInsertUndoUnit.cs
- WindowsGraphicsCacheManager.cs
- TimeoutException.cs
- DateTimeOffsetStorage.cs
- ActivityTrace.cs
- AppDomainAttributes.cs
- dsa.cs
- TextStore.cs
- HttpResponseBase.cs
- DataRowComparer.cs
- UniqueConstraint.cs
- TableLayoutStyle.cs
- BlurBitmapEffect.cs