Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / Reflection / AmbiguousMatchException.cs / 1 / 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("Arg_AmbiguousMatchException")) { 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) { } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- IsolatedStorageFileStream.cs
- PasswordPropertyTextAttribute.cs
- CatalogPartChrome.cs
- IndexedGlyphRun.cs
- DataSourceHelper.cs
- SoapHeader.cs
- SerialErrors.cs
- CharEntityEncoderFallback.cs
- FixedSOMImage.cs
- ProfileInfo.cs
- TextBox.cs
- DataListItemCollection.cs
- ImagingCache.cs
- BitmapEffect.cs
- SessionStateItemCollection.cs
- AlternationConverter.cs
- HexParser.cs
- BaseUriHelper.cs
- DataPointer.cs
- SelectionService.cs
- CachedPathData.cs
- CachedRequestParams.cs
- RootProjectionNode.cs
- PolygonHotSpot.cs
- ProviderConnectionPoint.cs
- RegexStringValidatorAttribute.cs
- DashStyle.cs
- UnescapedXmlDiagnosticData.cs
- SemanticAnalyzer.cs
- FontStretchConverter.cs
- AmbientLight.cs
- RenderDataDrawingContext.cs
- ToolStripSeparatorRenderEventArgs.cs
- WebPartDescriptionCollection.cs
- StyleXamlParser.cs
- DataErrorValidationRule.cs
- CodeParameterDeclarationExpression.cs
- LineInfo.cs
- SharingService.cs
- LowerCaseStringConverter.cs
- HttpChannelFactory.cs
- DataGrid.cs
- Parser.cs
- AnnotationAuthorChangedEventArgs.cs
- RouteItem.cs
- Section.cs
- Char.cs
- listitem.cs
- Timeline.cs
- GradientBrush.cs
- XmlDownloadManager.cs
- HtmlTableCellCollection.cs
- TransactionsSectionGroup.cs
- NavigationService.cs
- IDataContractSurrogate.cs
- ConnectionsZoneAutoFormat.cs
- Header.cs
- SelectingProviderEventArgs.cs
- TreeNodeStyleCollection.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- UnauthorizedAccessException.cs
- TextRunCacheImp.cs
- PermissionSet.cs
- SHA256.cs
- ClientTargetSection.cs
- WindowsRebar.cs
- InputLanguageEventArgs.cs
- IndentedTextWriter.cs
- XmlILAnnotation.cs
- AlgoModule.cs
- SharedUtils.cs
- KeyFrames.cs
- EdmRelationshipNavigationPropertyAttribute.cs
- DbParameterCollectionHelper.cs
- Size.cs
- Encoding.cs
- DataGridDesigner.cs
- TableItemPatternIdentifiers.cs
- RepeaterItemEventArgs.cs
- CachedFontFace.cs
- TableHeaderCell.cs
- XmlQueryStaticData.cs
- TdsEnums.cs
- InnerItemCollectionView.cs
- AdornerHitTestResult.cs
- CheckBox.cs
- DataGridPagingPage.cs
- DataGridViewTextBoxColumn.cs
- CodeCatchClause.cs
- FilteredReadOnlyMetadataCollection.cs
- CodePropertyReferenceExpression.cs
- NullableBoolConverter.cs
- Geometry.cs
- IfAction.cs
- DocumentAutomationPeer.cs
- Random.cs
- SourceLineInfo.cs
- WebPartZoneCollection.cs
- activationcontext.cs
- ActivityInstance.cs