Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / clr / src / BCL / System / IO / DirectoryNotFoundException.cs / 1 / DirectoryNotFoundException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: DirectoryNotFoundException ** ** ** Purpose: Exception for accessing a path that doesn't exist. ** ** ===========================================================*/ using System; using System.Runtime.Serialization; namespace System.IO { /* * Thrown when trying to access a directory that doesn't exist on disk. * From COM Interop, this exception is thrown for 2 HRESULTS: * the Win32 errorcode-as-HRESULT ERROR_PATH_NOT_FOUND (0x80070003) * and STG_E_PATHNOTFOUND (0x80030003). */ [Serializable] [System.Runtime.InteropServices.ComVisible(true)] public class DirectoryNotFoundException : IOException { public DirectoryNotFoundException() : base(Environment.GetResourceString("Arg_DirectoryNotFoundException")) { SetErrorCode(__HResults.COR_E_DIRECTORYNOTFOUND); } public DirectoryNotFoundException(String message) : base(message) { SetErrorCode(__HResults.COR_E_DIRECTORYNOTFOUND); } public DirectoryNotFoundException(String message, Exception innerException) : base(message, innerException) { SetErrorCode(__HResults.COR_E_DIRECTORYNOTFOUND); } protected DirectoryNotFoundException(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. // // ==--== /*============================================================ ** ** Class: DirectoryNotFoundException ** ** ** Purpose: Exception for accessing a path that doesn't exist. ** ** ===========================================================*/ using System; using System.Runtime.Serialization; namespace System.IO { /* * Thrown when trying to access a directory that doesn't exist on disk. * From COM Interop, this exception is thrown for 2 HRESULTS: * the Win32 errorcode-as-HRESULT ERROR_PATH_NOT_FOUND (0x80070003) * and STG_E_PATHNOTFOUND (0x80030003). */ [Serializable] [System.Runtime.InteropServices.ComVisible(true)] public class DirectoryNotFoundException : IOException { public DirectoryNotFoundException() : base(Environment.GetResourceString("Arg_DirectoryNotFoundException")) { SetErrorCode(__HResults.COR_E_DIRECTORYNOTFOUND); } public DirectoryNotFoundException(String message) : base(message) { SetErrorCode(__HResults.COR_E_DIRECTORYNOTFOUND); } public DirectoryNotFoundException(String message, Exception innerException) : base(message, innerException) { SetErrorCode(__HResults.COR_E_DIRECTORYNOTFOUND); } protected DirectoryNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context) { } } } // 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
- GifBitmapEncoder.cs
- AnimatedTypeHelpers.cs
- BaseTemplateParser.cs
- FakeModelItemImpl.cs
- KeySpline.cs
- GreaterThanOrEqual.cs
- MenuStrip.cs
- FormView.cs
- Latin1Encoding.cs
- DeflateEmulationStream.cs
- ClientWindowsAuthenticationMembershipProvider.cs
- CursorConverter.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- ScriptManagerProxy.cs
- ReadOnlyDictionary.cs
- ContentHostHelper.cs
- WebPartTransformer.cs
- WebReferencesBuildProvider.cs
- CodeNamespaceImport.cs
- AttributeAction.cs
- PropertyGridCommands.cs
- XmlUtil.cs
- QuadTree.cs
- HttpCapabilitiesBase.cs
- SmiSettersStream.cs
- CollectionBuilder.cs
- SecurityMode.cs
- WebAdminConfigurationHelper.cs
- SubMenuStyleCollection.cs
- HealthMonitoringSectionHelper.cs
- SoapIncludeAttribute.cs
- XslTransform.cs
- SettingsBase.cs
- PageOutputColor.cs
- DataGridViewIntLinkedList.cs
- WsdlBuildProvider.cs
- AbstractDataSvcMapFileLoader.cs
- ButtonBaseAutomationPeer.cs
- ColumnWidthChangedEvent.cs
- TextAction.cs
- SimpleLine.cs
- UInt32.cs
- LoginViewDesigner.cs
- WebPartConnection.cs
- ThicknessAnimation.cs
- EtwTrackingParticipant.cs
- FutureFactory.cs
- MemoryPressure.cs
- WebSysDisplayNameAttribute.cs
- GuidelineCollection.cs
- ExeContext.cs
- HtmlControlAdapter.cs
- ScriptServiceAttribute.cs
- HtmlEmptyTagControlBuilder.cs
- DetailsViewInsertedEventArgs.cs
- Matrix3D.cs
- TableLayoutCellPaintEventArgs.cs
- DesignSurface.cs
- DesignerAttribute.cs
- VirtualizingPanel.cs
- UnknownBitmapEncoder.cs
- BezierSegment.cs
- BatchParser.cs
- MetadataItemSerializer.cs
- TypeListConverter.cs
- SimpleApplicationHost.cs
- EntityTransaction.cs
- XmlSchemaObjectTable.cs
- ZipArchive.cs
- CodeCommentStatement.cs
- ThreadStaticAttribute.cs
- IPHostEntry.cs
- FlowThrottle.cs
- ObjectDataSourceMethodEventArgs.cs
- ContextStack.cs
- LayoutEditorPart.cs
- complextypematerializer.cs
- DataComponentGenerator.cs
- InvalidComObjectException.cs
- DivideByZeroException.cs
- TraceContextEventArgs.cs
- HttpCacheVary.cs
- SQLBinary.cs
- AttachmentService.cs
- BrowserTree.cs
- SecuritySessionSecurityTokenAuthenticator.cs
- DocumentPageView.cs
- ArgIterator.cs
- FilteredSchemaElementLookUpTable.cs
- LogicalExpr.cs
- CharacterBuffer.cs
- SqlMethods.cs
- HealthMonitoringSectionHelper.cs
- ADConnectionHelper.cs
- LinkUtilities.cs
- DataViewManager.cs
- ValidationService.cs
- Effect.cs
- SetStateDesigner.cs
- KeyBinding.cs