Code:
/ FX-1434 / FX-1434 / 1.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
- SerializableAttribute.cs
- TagMapCollection.cs
- Descriptor.cs
- StylusDownEventArgs.cs
- ChooseAction.cs
- dbdatarecord.cs
- SafeCryptContextHandle.cs
- OLEDB_Util.cs
- XmlAggregates.cs
- Stylesheet.cs
- StackSpiller.Bindings.cs
- SchemaImporter.cs
- CustomCategoryAttribute.cs
- DrawingContextWalker.cs
- COM2ExtendedBrowsingHandler.cs
- ExpressionConverter.cs
- ParagraphVisual.cs
- RegularExpressionValidator.cs
- HostingPreferredMapPath.cs
- RtfToken.cs
- remotingproxy.cs
- SchemaImporter.cs
- MediaEntryAttribute.cs
- PrintPreviewDialog.cs
- DataServiceExpressionVisitor.cs
- FileUpload.cs
- XmlNodeReader.cs
- NativeMethods.cs
- RegexParser.cs
- Transaction.cs
- Track.cs
- SafeLocalMemHandle.cs
- SortedSetDebugView.cs
- XmlSerializerFaultFormatter.cs
- ContextMarshalException.cs
- RuleSet.cs
- SoapIncludeAttribute.cs
- DocumentPageView.cs
- PackagePart.cs
- VirtualPath.cs
- TraceXPathNavigator.cs
- BitmapEffectState.cs
- FunctionNode.cs
- ImageIndexConverter.cs
- SqlUserDefinedAggregateAttribute.cs
- ContainerFilterService.cs
- RectKeyFrameCollection.cs
- ObjectListDesigner.cs
- SerialReceived.cs
- ReferenceAssemblyAttribute.cs
- ListDataHelper.cs
- RenderTargetBitmap.cs
- WebPartCollection.cs
- TableItemStyle.cs
- OdbcConnection.cs
- MasterPage.cs
- HuffmanTree.cs
- RuntimeVariableList.cs
- CodeDelegateInvokeExpression.cs
- NotifyIcon.cs
- SQLBytes.cs
- WebZone.cs
- KeyEvent.cs
- EntityDataSource.cs
- UInt64.cs
- TextSelectionHighlightLayer.cs
- RuntimeCompatibilityAttribute.cs
- AuthenticatingEventArgs.cs
- LinkConverter.cs
- SyntaxCheck.cs
- ExpressionPrefixAttribute.cs
- Matrix3DStack.cs
- OdbcTransaction.cs
- EditCommandColumn.cs
- PageWrapper.cs
- SQLUtility.cs
- XmlAttributeOverrides.cs
- VirtualStackFrame.cs
- StreamingContext.cs
- Version.cs
- XmlIterators.cs
- HttpCacheParams.cs
- GridViewRowPresenter.cs
- RegionInfo.cs
- HiddenFieldPageStatePersister.cs
- ManagementOptions.cs
- AppDomainShutdownMonitor.cs
- HierarchicalDataSourceControl.cs
- Utils.cs
- HttpListener.cs
- FillRuleValidation.cs
- XmlLoader.cs
- ConfigurationManagerInternalFactory.cs
- HitTestDrawingContextWalker.cs
- DataGridColumnReorderingEventArgs.cs
- SocketElement.cs
- SuppressedPackageProperties.cs
- Point3D.cs
- PrePrepareMethodAttribute.cs
- RewritingValidator.cs