Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Reflection / AmbiguousMatchException.cs / 1305376 / AmbiguousMatchException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// // // AmbiguousMatchException is thrown when binding to a method results in more // //[....] // than one method matching the binding criteria. This exception is thrown in // general when something is Ambiguous. // // // // namespace System.Reflection { using System; using SystemException = System.SystemException; using System.Runtime.Serialization; [Serializable] [System.Runtime.InteropServices.ComVisible(true)] public sealed class AmbiguousMatchException : SystemException { public AmbiguousMatchException() : base(Environment.GetResourceString("RFLCT.Ambiguous")) { SetErrorCode(__HResults.COR_E_AMBIGUOUSMATCH); } public AmbiguousMatchException(String message) : base(message) { SetErrorCode(__HResults.COR_E_AMBIGUOUSMATCH); } public AmbiguousMatchException(String message, Exception inner) : base(message, inner) { SetErrorCode(__HResults.COR_E_AMBIGUOUSMATCH); } internal AmbiguousMatchException(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
- RowToFieldTransformer.cs
- HttpPostedFile.cs
- WindowsGraphics2.cs
- MemberAssignment.cs
- RelAssertionDirectKeyIdentifierClause.cs
- OutputScopeManager.cs
- LinearGradientBrush.cs
- FormParameter.cs
- TextEditorCharacters.cs
- PeerContact.cs
- CodeValidator.cs
- DesigntimeLicenseContextSerializer.cs
- URLString.cs
- _Rfc2616CacheValidators.cs
- RectangleHotSpot.cs
- DirectoryInfo.cs
- XmlFormatExtensionPointAttribute.cs
- RuleSet.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- CalendarDateRange.cs
- TraceListeners.cs
- DataService.cs
- TypeBuilder.cs
- PassportAuthenticationModule.cs
- XsltInput.cs
- SqlConnectionFactory.cs
- DataRowView.cs
- MatrixStack.cs
- BridgeDataReader.cs
- CreateUserWizardDesigner.cs
- OleDbConnection.cs
- MimeFormImporter.cs
- MsmqIntegrationAppDomainProtocolHandler.cs
- SafeReadContext.cs
- ParserContext.cs
- XmlSchemaNotation.cs
- BamlReader.cs
- DeferredReference.cs
- PropertyGeneratedEventArgs.cs
- PipelineModuleStepContainer.cs
- NavigatingCancelEventArgs.cs
- TypeForwardedToAttribute.cs
- TrustManager.cs
- ImplicitInputBrush.cs
- BidPrivateBase.cs
- columnmapkeybuilder.cs
- CacheAxisQuery.cs
- ContentValidator.cs
- CurrentChangedEventManager.cs
- Size.cs
- Sql8ConformanceChecker.cs
- SafeBitVector32.cs
- MessageSecurityOverTcpElement.cs
- XmlUtil.cs
- BStrWrapper.cs
- SubpageParagraph.cs
- EntityAdapter.cs
- BindUriHelper.cs
- MemberInfoSerializationHolder.cs
- XPathSelfQuery.cs
- DefaultAsyncDataDispatcher.cs
- BinaryParser.cs
- SmtpException.cs
- BufferedGraphics.cs
- SystemIPGlobalStatistics.cs
- XPathNodeIterator.cs
- InputQueue.cs
- KeyFrames.cs
- StringResourceManager.cs
- ItemMap.cs
- ItemMap.cs
- EmptyQuery.cs
- TabControl.cs
- WebProxyScriptElement.cs
- AssociationSet.cs
- MsmqInputChannelBase.cs
- WebServiceEndpoint.cs
- DesignerTransactionCloseEvent.cs
- Rotation3DAnimationUsingKeyFrames.cs
- HttpServerVarsCollection.cs
- OdbcError.cs
- ScriptingProfileServiceSection.cs
- SafePointer.cs
- RoleService.cs
- KnowledgeBase.cs
- XPathMessageContext.cs
- EntityCodeGenerator.cs
- UnknownMessageReceivedEventArgs.cs
- MarkupCompilePass1.cs
- XhtmlConformanceSection.cs
- LogLogRecord.cs
- BuilderPropertyEntry.cs
- StringConverter.cs
- FontEmbeddingManager.cs
- DBConnection.cs
- _HeaderInfo.cs
- TrackBar.cs
- ListItemParagraph.cs
- RSAOAEPKeyExchangeDeformatter.cs
- XmlSerializerAssemblyAttribute.cs