Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- SecurityTokenResolver.cs
- CodeMemberProperty.cs
- AdCreatedEventArgs.cs
- Authorization.cs
- Part.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- TextPenaltyModule.cs
- StreamHelper.cs
- Section.cs
- PerspectiveCamera.cs
- DataGridViewCellMouseEventArgs.cs
- AliasGenerator.cs
- EntityReference.cs
- AddInPipelineAttributes.cs
- ScrollBarRenderer.cs
- TemplatedAdorner.cs
- QueryExpr.cs
- PackageFilter.cs
- SimpleApplicationHost.cs
- DataGridViewComboBoxCell.cs
- DateTimeSerializationSection.cs
- ImpersonationContext.cs
- MachineKeyConverter.cs
- Command.cs
- TextInfo.cs
- DoubleLinkList.cs
- FileRecordSequenceHelper.cs
- ZipArchive.cs
- EntitySqlQueryBuilder.cs
- XmlValidatingReader.cs
- KeyEvent.cs
- XmlNotation.cs
- SslStream.cs
- EastAsianLunisolarCalendar.cs
- BooleanProjectedSlot.cs
- SystemMulticastIPAddressInformation.cs
- ManifestResourceInfo.cs
- AnnouncementEndpoint.cs
- Int32Animation.cs
- UriScheme.cs
- MULTI_QI.cs
- PopOutPanel.cs
- WebDescriptionAttribute.cs
- MetadataItem_Static.cs
- CallbackValidatorAttribute.cs
- DPCustomTypeDescriptor.cs
- Scripts.cs
- OrderedDictionary.cs
- UrlMappingCollection.cs
- lengthconverter.cs
- httpapplicationstate.cs
- VarRemapper.cs
- CheckBoxPopupAdapter.cs
- InternalBufferOverflowException.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- OdbcInfoMessageEvent.cs
- XmlSchemaNotation.cs
- Nullable.cs
- XsdCachingReader.cs
- MimeWriter.cs
- EncryptedXml.cs
- RowType.cs
- FormViewModeEventArgs.cs
- Currency.cs
- GeometryDrawing.cs
- PropertyMapper.cs
- FixedBufferAttribute.cs
- DbConnectionPoolCounters.cs
- ControlCachePolicy.cs
- NetTcpSection.cs
- DataGridViewTextBoxCell.cs
- StructuredType.cs
- ReturnEventArgs.cs
- WeakEventManager.cs
- ConfigsHelper.cs
- ClientTarget.cs
- AliasedSlot.cs
- QuaternionValueSerializer.cs
- ListViewItemSelectionChangedEvent.cs
- PropertyEmitterBase.cs
- DataGridCaption.cs
- EventLogPermissionEntry.cs
- FontFamilyValueSerializer.cs
- AppDomainFactory.cs
- DataBindingCollection.cs
- InvokeAction.cs
- TemplateComponentConnector.cs
- ArrayList.cs
- AspNetSynchronizationContext.cs
- InvalidDataException.cs
- ParallelTimeline.cs
- LocalizableResourceBuilder.cs
- LassoSelectionBehavior.cs
- UnsafeNativeMethodsMilCoreApi.cs
- ClientCredentials.cs
- WmlImageAdapter.cs
- HtmlButton.cs
- CapiSymmetricAlgorithm.cs
- EdmValidator.cs
- SQLInt64.cs