Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / IO / DriveNotFoundException.cs / 1305376 / DriveNotFoundException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //============================================================ // // Class: DriveNotFoundException // //[....] // // Purpose: Exception for accessing a drive that is not available. // // //=========================================================== using System; using System.Runtime.Serialization; namespace System.IO { //Thrown when trying to access a drive that is not availabe. [Serializable] [System.Runtime.InteropServices.ComVisible(true)] public class DriveNotFoundException : IOException { public DriveNotFoundException() : base(Environment.GetResourceString("Arg_DriveNotFoundException")) { SetErrorCode(__HResults.COR_E_DIRECTORYNOTFOUND); } public DriveNotFoundException(String message) : base(message) { SetErrorCode(__HResults.COR_E_DIRECTORYNOTFOUND); } public DriveNotFoundException(String message, Exception innerException) : base(message, innerException) { SetErrorCode(__HResults.COR_E_DIRECTORYNOTFOUND); } [System.Security.SecuritySafeCritical] // auto-generated protected DriveNotFoundException(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
- EditorZoneBase.cs
- TextPenaltyModule.cs
- EventMappingSettingsCollection.cs
- TextEditorCopyPaste.cs
- AliasExpr.cs
- StdValidatorsAndConverters.cs
- DetailsViewAutoFormat.cs
- ChineseLunisolarCalendar.cs
- TreeViewDataItemAutomationPeer.cs
- Annotation.cs
- ConfigurationManager.cs
- TemplatedMailWebEventProvider.cs
- DetailsViewPagerRow.cs
- HttpCapabilitiesSectionHandler.cs
- ProxyWebPartManager.cs
- MultiAsyncResult.cs
- CompatibleIComparer.cs
- EventLogPermissionEntry.cs
- FileReader.cs
- Size3D.cs
- TextEditorTyping.cs
- XamlTreeBuilderBamlRecordWriter.cs
- ColumnCollection.cs
- LoginView.cs
- IndicShape.cs
- ISO2022Encoding.cs
- ExtentCqlBlock.cs
- WebPartCatalogAddVerb.cs
- Input.cs
- NotificationContext.cs
- NativeObjectSecurity.cs
- ManipulationCompletedEventArgs.cs
- ToggleButtonAutomationPeer.cs
- ADMembershipProvider.cs
- EncoderFallback.cs
- StringPropertyBuilder.cs
- VisualTarget.cs
- SHA512.cs
- XmlDesigner.cs
- OutputCacheProfile.cs
- TextSerializer.cs
- XmlHelper.cs
- FileDetails.cs
- LineUtil.cs
- ProxyFragment.cs
- OleDbConnectionFactory.cs
- SafeRegistryHandle.cs
- XPathNode.cs
- XmlQueryContext.cs
- SiteMapNodeItemEventArgs.cs
- WindowsListViewSubItem.cs
- XPathNode.cs
- URLString.cs
- DBCommand.cs
- NativeMethods.cs
- SingleObjectCollection.cs
- SiteMap.cs
- Thread.cs
- FullTextBreakpoint.cs
- StrokeSerializer.cs
- ObjectListGeneralPage.cs
- _ProxyChain.cs
- AssociationSetMetadata.cs
- TemplateNameScope.cs
- GridViewDeleteEventArgs.cs
- TreeNodeConverter.cs
- DebugInfoGenerator.cs
- TextTrailingWordEllipsis.cs
- Parser.cs
- ExportException.cs
- ApplicationException.cs
- EdmSchemaAttribute.cs
- DictionaryBase.cs
- _WinHttpWebProxyDataBuilder.cs
- SerializationStore.cs
- MenuScrollingVisibilityConverter.cs
- HMACMD5.cs
- BackgroundFormatInfo.cs
- SafeSecurityHandles.cs
- IBuiltInEvidence.cs
- ListSourceHelper.cs
- TdsEnums.cs
- DateTimeParse.cs
- Compensate.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- DesignerCatalogPartChrome.cs
- StylusSystemGestureEventArgs.cs
- WizardPanelChangingEventArgs.cs
- FrameworkElementAutomationPeer.cs
- ConfigurationStrings.cs
- BitmapCodecInfo.cs
- ContentHostHelper.cs
- StsCommunicationException.cs
- XmlQualifiedName.cs
- ConfigurationSchemaErrors.cs
- AsymmetricKeyExchangeFormatter.cs
- PopupEventArgs.cs
- ListBoxDesigner.cs
- AuditLogLocation.cs
- SmiEventSink_Default.cs