Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / clr / src / BCL / System / DllNotFoundException.cs / 1 / DllNotFoundException.cs
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*==============================================================================
**
** Class: DllNotFoundException
**
**
** Purpose: The exception class for some failed P/Invoke calls.
**
**
=============================================================================*/
namespace System {
using System;
using System.Runtime.Serialization;
[System.Runtime.InteropServices.ComVisible(true)]
[Serializable] public class DllNotFoundException : TypeLoadException {
public DllNotFoundException()
: base(Environment.GetResourceString("Arg_DllNotFoundException")) {
SetErrorCode(__HResults.COR_E_DLLNOTFOUND);
}
public DllNotFoundException(String message)
: base(message) {
SetErrorCode(__HResults.COR_E_DLLNOTFOUND);
}
public DllNotFoundException(String message, Exception inner)
: base(message, inner) {
SetErrorCode(__HResults.COR_E_DLLNOTFOUND);
}
protected DllNotFoundException(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
- EventListener.cs
- Timer.cs
- PortCache.cs
- OrderByExpression.cs
- ExtendedPropertyDescriptor.cs
- EntityDescriptor.cs
- BlurBitmapEffect.cs
- LeaseManager.cs
- ErrorTolerantObjectWriter.cs
- StoreItemCollection.cs
- DefaultPrintController.cs
- SettingsSection.cs
- DefaultObjectMappingItemCollection.cs
- ResourceKey.cs
- AudioBase.cs
- InputBuffer.cs
- DataRowChangeEvent.cs
- CanonicalizationDriver.cs
- DelegatingTypeDescriptionProvider.cs
- TabItemAutomationPeer.cs
- DrawingCollection.cs
- WindowsImpersonationContext.cs
- BuildManager.cs
- HostSecurityManager.cs
- LoadWorkflowByInstanceKeyCommand.cs
- EncryptedReference.cs
- DrawingGroup.cs
- XamlTypeMapper.cs
- SecureUICommand.cs
- TabControlEvent.cs
- EntityViewGenerator.cs
- _ConnectOverlappedAsyncResult.cs
- EntryWrittenEventArgs.cs
- VSWCFServiceContractGenerator.cs
- XMLDiffLoader.cs
- BackgroundWorker.cs
- PageVisual.cs
- TransformerInfo.cs
- RawStylusActions.cs
- NameHandler.cs
- UrlPropertyAttribute.cs
- BaseDataList.cs
- BitmapEffectGeneralTransform.cs
- MeasureData.cs
- BaseValidator.cs
- CalculatedColumn.cs
- EncryptedXml.cs
- StatusBarPanel.cs
- TypeUtils.cs
- GroupItem.cs
- UniqueIdentifierService.cs
- RenderDataDrawingContext.cs
- RSAPKCS1SignatureDeformatter.cs
- GifBitmapEncoder.cs
- WebPartMovingEventArgs.cs
- _HTTPDateParse.cs
- CompilationUnit.cs
- ThreadPool.cs
- DiscoveryDocument.cs
- ControlType.cs
- Rule.cs
- XmlElementAttribute.cs
- ListDictionary.cs
- PolicyStatement.cs
- NamedPermissionSet.cs
- SeverityFilter.cs
- TextOptionsInternal.cs
- Line.cs
- DefaultValueTypeConverter.cs
- SpeechEvent.cs
- LazyTextWriterCreator.cs
- CodeGotoStatement.cs
- SerializationHelper.cs
- Vector3DKeyFrameCollection.cs
- TableLayoutPanelCellPosition.cs
- ForEachAction.cs
- TextParagraphProperties.cs
- DropSourceBehavior.cs
- BackgroundWorker.cs
- MediaSystem.cs
- AliasGenerator.cs
- ObjectTokenCategory.cs
- DropDownHolder.cs
- PenLineCapValidation.cs
- TrailingSpaceComparer.cs
- XmlWriterSettings.cs
- Rotation3DKeyFrameCollection.cs
- EntityDataSourceDesignerHelper.cs
- SoapRpcServiceAttribute.cs
- ScaleTransform3D.cs
- XmlNamedNodeMap.cs
- SecurityDocument.cs
- Thread.cs
- HandledMouseEvent.cs
- DetailsViewPageEventArgs.cs
- LayoutEditorPart.cs
- VScrollProperties.cs
- ImageUrlEditor.cs
- LoadedEvent.cs
- TaskForm.cs