Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / EntryPointNotFoundException.cs / 1 / EntryPointNotFoundException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** Class: EntryPointNotFoundException ** ** ** 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 EntryPointNotFoundException : TypeLoadException { public EntryPointNotFoundException() : base(Environment.GetResourceString("Arg_EntryPointNotFoundException")) { SetErrorCode(__HResults.COR_E_ENTRYPOINTNOTFOUND); } public EntryPointNotFoundException(String message) : base(message) { SetErrorCode(__HResults.COR_E_ENTRYPOINTNOTFOUND); } public EntryPointNotFoundException(String message, Exception inner) : base(message, inner) { SetErrorCode(__HResults.COR_E_ENTRYPOINTNOTFOUND); } protected EntryPointNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DispatcherSynchronizationContext.cs
- ExceptionCollection.cs
- TextTreeText.cs
- GPRECT.cs
- GcHandle.cs
- DomainConstraint.cs
- WebPartExportVerb.cs
- Privilege.cs
- DispatcherEventArgs.cs
- ReachDocumentReferenceCollectionSerializer.cs
- TempFiles.cs
- ResourceReader.cs
- EntityProviderServices.cs
- XmlSerializerObjectSerializer.cs
- GridViewRowEventArgs.cs
- ScriptHandlerFactory.cs
- AppDomainEvidenceFactory.cs
- GenericRootAutomationPeer.cs
- AssemblyCacheEntry.cs
- ValuePatternIdentifiers.cs
- FunctionParameter.cs
- List.cs
- PrincipalPermission.cs
- TableStyle.cs
- DoubleCollectionConverter.cs
- PolicyException.cs
- MimeFormatExtensions.cs
- XpsS0ValidatingLoader.cs
- RawAppCommandInputReport.cs
- XmlSerializerNamespaces.cs
- ImplicitInputBrush.cs
- ComponentRenameEvent.cs
- TraceUtils.cs
- EditorZoneBase.cs
- ResourceDescriptionAttribute.cs
- DynamicRenderer.cs
- Debug.cs
- SqlReferenceCollection.cs
- TypeUnloadedException.cs
- GraphicsPathIterator.cs
- ValueType.cs
- RootCodeDomSerializer.cs
- HtmlControlPersistable.cs
- SqlConnection.cs
- ComponentEvent.cs
- AuthenticationSchemesHelper.cs
- BaseTreeIterator.cs
- GridViewSortEventArgs.cs
- BinaryReader.cs
- TrustLevelCollection.cs
- ProfessionalColorTable.cs
- AudioSignalProblemOccurredEventArgs.cs
- SelectorAutomationPeer.cs
- HwndSubclass.cs
- ToolStripMenuItem.cs
- Executor.cs
- MILUtilities.cs
- RemoteWebConfigurationHostStream.cs
- XhtmlBasicLiteralTextAdapter.cs
- PropertyPath.cs
- RadioButton.cs
- CodeConditionStatement.cs
- _NtlmClient.cs
- CompiledQuery.cs
- RegisteredExpandoAttribute.cs
- SqlCacheDependencySection.cs
- DataPagerCommandEventArgs.cs
- ControlCachePolicy.cs
- LinqExpressionNormalizer.cs
- EdmSchemaAttribute.cs
- TagPrefixAttribute.cs
- PathSegment.cs
- TrackingMemoryStreamFactory.cs
- Label.cs
- ControlValuePropertyAttribute.cs
- SoapAttributeAttribute.cs
- DataGridTextColumn.cs
- TemplateControl.cs
- TypeElement.cs
- DependencyPropertyKey.cs
- parserscommon.cs
- DataGridRowClipboardEventArgs.cs
- Columns.cs
- XPathCompiler.cs
- ImageBrush.cs
- LayoutInformation.cs
- RequestDescription.cs
- DataPager.cs
- WebConvert.cs
- LongTypeConverter.cs
- Console.cs
- _DigestClient.cs
- AffineTransform3D.cs
- ValueOfAction.cs
- MetadataProperty.cs
- UrlParameterWriter.cs
- Decorator.cs
- MouseEventArgs.cs
- OperationAbortedException.cs
- NumericUpDownAccelerationCollection.cs