Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / clr / src / BCL / System / Runtime / InteropServices / SEHException.cs / 1 / 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); } 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. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlDeclaration.cs
- SqlInternalConnectionSmi.cs
- SelectionRange.cs
- HostingEnvironmentException.cs
- SiteMapDataSource.cs
- RadioButtonStandardAdapter.cs
- SharedStatics.cs
- _NtlmClient.cs
- SHA1CryptoServiceProvider.cs
- COMException.cs
- DocumentEventArgs.cs
- Int16AnimationBase.cs
- DataFormats.cs
- NativeMethodsCLR.cs
- DynamicMethod.cs
- Pen.cs
- EntitySetBaseCollection.cs
- ImageList.cs
- DesignerActionKeyboardBehavior.cs
- DoubleIndependentAnimationStorage.cs
- ContextQuery.cs
- PropertyCollection.cs
- EncoderBestFitFallback.cs
- Guid.cs
- XmlAtomicValue.cs
- ColorKeyFrameCollection.cs
- followingsibling.cs
- filewebrequest.cs
- SmtpFailedRecipientsException.cs
- PropertyRef.cs
- CodeArrayCreateExpression.cs
- ToolStripDropDownItem.cs
- InfoCardBaseException.cs
- MessageHeaderInfoTraceRecord.cs
- PropertyMetadata.cs
- BufferedGraphicsManager.cs
- SrgsToken.cs
- ArrayItemValue.cs
- GeometryDrawing.cs
- UserPersonalizationStateInfo.cs
- GridLength.cs
- GenericIdentity.cs
- CloudCollection.cs
- CodeChecksumPragma.cs
- ResourceSetExpression.cs
- TextureBrush.cs
- MsmqIntegrationInputMessage.cs
- FlagsAttribute.cs
- MetadataArtifactLoaderCompositeResource.cs
- StreamSecurityUpgradeInitiator.cs
- BackEase.cs
- DataGridViewRowCancelEventArgs.cs
- TransformPattern.cs
- QueueAccessMode.cs
- TreeBuilderXamlTranslator.cs
- StringKeyFrameCollection.cs
- CurrentChangingEventManager.cs
- _FixedSizeReader.cs
- SQLBinaryStorage.cs
- DataServiceConfiguration.cs
- SQLBoolean.cs
- TdsParserSafeHandles.cs
- PersistenceProviderFactory.cs
- MissingMethodException.cs
- safelinkcollection.cs
- AsymmetricSignatureFormatter.cs
- AdornerHitTestResult.cs
- CapabilitiesRule.cs
- OledbConnectionStringbuilder.cs
- ManipulationPivot.cs
- XmlSchemaValidationException.cs
- PeerEndPoint.cs
- AttributeParameterInfo.cs
- RegexBoyerMoore.cs
- BrowserDefinitionCollection.cs
- AppDomainUnloadedException.cs
- MetafileHeaderWmf.cs
- HandlerMappingMemo.cs
- BaseTemplateParser.cs
- NegotiateStream.cs
- HttpConfigurationContext.cs
- MembershipPasswordException.cs
- AxisAngleRotation3D.cs
- CodeLinePragma.cs
- TransformerTypeCollection.cs
- StylusCollection.cs
- ManipulationStartedEventArgs.cs
- HtmlTable.cs
- CompoundFileIOPermission.cs
- MachineKeySection.cs
- FastEncoderWindow.cs
- NamespaceTable.cs
- COM2IDispatchConverter.cs
- TitleStyle.cs
- DuplicateDetector.cs
- ConnectionPoolManager.cs
- BadImageFormatException.cs
- SqlUserDefinedTypeAttribute.cs
- ControlIdConverter.cs
- TextEndOfLine.cs