Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / clr / src / BCL / System / IO / IOException.cs / 1 / IOException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: IOException ** ** ** Purpose: Exception for a generic IO error. ** ** ===========================================================*/ using System; using System.Runtime.Serialization; namespace System.IO { [Serializable] [System.Runtime.InteropServices.ComVisible(true)] public class IOException : SystemException { // For debugging purposes, store the complete path in the IOException // if possible. Don't give it back to users due to security concerns. // Let the code that throws the exception worry about that. But we can // at least assist people attached to the process with a managed // debugger. Don't serialize it to avoid any security problems. // This information isn't guaranteed to be correct, but is our second // best effort at a file or directory involved, after the exception // message. [NonSerialized] private String _maybeFullPath; // For debuggers on partial trust code public IOException() : base(Environment.GetResourceString("Arg_IOException")) { SetErrorCode(__HResults.COR_E_IO); } public IOException(String message) : base(message) { SetErrorCode(__HResults.COR_E_IO); } public IOException(String message, int hresult) : base(message) { SetErrorCode(hresult); } // Adding this for debuggers when looking at exceptions in partial // trust code that may not have interesting path information in // the exception message. internal IOException(String message, int hresult, String maybeFullPath) : base(message) { SetErrorCode(hresult); _maybeFullPath = maybeFullPath; } public IOException(String message, Exception innerException) : base(message, innerException) { SetErrorCode(__HResults.COR_E_IO); } protected IOException(SerializationInfo info, StreamingContext context) : base (info, context) { } } } // 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
- SafePipeHandle.cs
- FileReader.cs
- EventLogSession.cs
- Win32Native.cs
- ISO2022Encoding.cs
- DecoderFallbackWithFailureFlag.cs
- BufferedWebEventProvider.cs
- EnvelopeVersion.cs
- AttachmentCollection.cs
- PropertyOrder.cs
- SqlDelegatedTransaction.cs
- StrokeCollection2.cs
- ImageFormat.cs
- TextModifier.cs
- ScriptResourceAttribute.cs
- HijriCalendar.cs
- SchemaInfo.cs
- JobCollate.cs
- DetailsViewUpdatedEventArgs.cs
- HtmlContainerControl.cs
- PointHitTestParameters.cs
- UriSchemeKeyedCollection.cs
- EntityModelBuildProvider.cs
- StylusPlugin.cs
- CommandLineParser.cs
- HttpWriter.cs
- ClientEventManager.cs
- Border.cs
- ConfigurationStrings.cs
- DesignerView.xaml.cs
- QueuePathDialog.cs
- LinkedResource.cs
- GenericTextProperties.cs
- LocalizedNameDescriptionPair.cs
- RectangleHotSpot.cs
- StyleCollection.cs
- WebPartEditVerb.cs
- OletxTransactionManager.cs
- PersistStreamTypeWrapper.cs
- DataGridAutomationPeer.cs
- SingleStorage.cs
- MouseActionValueSerializer.cs
- CompiledXpathExpr.cs
- TableLayoutStyleCollection.cs
- CodeGenerator.cs
- ImageField.cs
- HttpApplication.cs
- ThemeDirectoryCompiler.cs
- UniqueIdentifierService.cs
- ByteStream.cs
- ContainerVisual.cs
- SelectionProcessor.cs
- HtmlInputButton.cs
- ImportOptions.cs
- MDIWindowDialog.cs
- Helper.cs
- ConstraintCollection.cs
- IriParsingElement.cs
- UnsupportedPolicyOptionsException.cs
- TabControl.cs
- SqlRewriteScalarSubqueries.cs
- namescope.cs
- IndexedString.cs
- SourceElementsCollection.cs
- CapabilitiesAssignment.cs
- LineServices.cs
- XPathMultyIterator.cs
- Comparer.cs
- InfoCardKeyedHashAlgorithm.cs
- BitVector32.cs
- EditingCoordinator.cs
- QilSortKey.cs
- Matrix3DStack.cs
- PropertyStore.cs
- XPathChildIterator.cs
- MarshalByValueComponent.cs
- ClosableStream.cs
- DelegateBodyWriter.cs
- CodeTypeReferenceCollection.cs
- TextReader.cs
- NetworkAddressChange.cs
- SoapParser.cs
- ColumnResizeUndoUnit.cs
- ObjectManager.cs
- PackagingUtilities.cs
- Stackframe.cs
- FlatButtonAppearance.cs
- DataGridViewRowCollection.cs
- XmlWhitespace.cs
- SuppressIldasmAttribute.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- OraclePermissionAttribute.cs
- _MultipleConnectAsync.cs
- SingleStorage.cs
- AnnotationAuthorChangedEventArgs.cs
- Animatable.cs
- parserscommon.cs
- SectionVisual.cs
- VirtualDirectoryMapping.cs
- DrawingGroup.cs