Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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) { } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BamlResourceContent.cs
- RegexCharClass.cs
- SimpleRecyclingCache.cs
- SoapParser.cs
- OutputCacheModule.cs
- CookielessHelper.cs
- PriorityBinding.cs
- BamlTreeNode.cs
- FileDialogCustomPlacesCollection.cs
- ToolStripManager.cs
- Crypto.cs
- IgnoreSectionHandler.cs
- Substitution.cs
- RequestNavigateEventArgs.cs
- DataTrigger.cs
- MessageFilterTable.cs
- Pair.cs
- UrlPath.cs
- TextServicesDisplayAttributePropertyRanges.cs
- InstalledVoice.cs
- PeerName.cs
- XmlAnyElementAttributes.cs
- PointAnimation.cs
- HtmlTitle.cs
- WindowsGraphicsCacheManager.cs
- MouseGestureValueSerializer.cs
- AddInContractAttribute.cs
- ServiceMetadataContractBehavior.cs
- OLEDB_Util.cs
- StandardToolWindows.cs
- DataGridViewCellEventArgs.cs
- ClientFormsAuthenticationCredentials.cs
- ImplicitInputBrush.cs
- DataContractSerializer.cs
- AttributeEmitter.cs
- SelectionRangeConverter.cs
- FileNotFoundException.cs
- SystemIPGlobalProperties.cs
- DispatcherTimer.cs
- XmlDataImplementation.cs
- Rule.cs
- DataGridViewBand.cs
- AccessDataSource.cs
- LocalFileSettingsProvider.cs
- ReadOnlyCollectionBase.cs
- PlaceHolder.cs
- TranslateTransform.cs
- LayoutTableCell.cs
- GroupItem.cs
- Size3DValueSerializer.cs
- TextBoxBase.cs
- DrawItemEvent.cs
- NotCondition.cs
- UnmanagedMarshal.cs
- WindowVisualStateTracker.cs
- ClientTargetCollection.cs
- DependencySource.cs
- MethodCallTranslator.cs
- DefaultAssemblyResolver.cs
- DataGridColumn.cs
- DoubleUtil.cs
- DynamicDocumentPaginator.cs
- GenericTextProperties.cs
- ConfigXmlReader.cs
- XmlValidatingReaderImpl.cs
- TemplateInstanceAttribute.cs
- DataGridAutoFormatDialog.cs
- HttpApplicationFactory.cs
- QilTernary.cs
- RegistrationServices.cs
- MetadataItem_Static.cs
- ToolStripItem.cs
- AttributeAction.cs
- Column.cs
- Validator.cs
- RectangleHotSpot.cs
- HeaderCollection.cs
- CorePropertiesFilter.cs
- Helper.cs
- UriExt.cs
- RequestStatusBarUpdateEventArgs.cs
- PresentationSource.cs
- XamlSerializationHelper.cs
- sqlpipe.cs
- ProjectionPruner.cs
- CodeArrayIndexerExpression.cs
- FormatterServices.cs
- ProcessModule.cs
- ProxyOperationRuntime.cs
- DataGridColumnHeadersPresenterAutomationPeer.cs
- SpotLight.cs
- EdmConstants.cs
- HttpApplication.cs
- InstanceHandleConflictException.cs
- WebServiceMethodData.cs
- HtmlUtf8RawTextWriter.cs
- DataRecordInternal.cs
- _TransmitFileOverlappedAsyncResult.cs
- NameNode.cs
- IdentityReference.cs