Code:
/ DotNET / DotNET / 8.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
- SelectionProviderWrapper.cs
- SchemaInfo.cs
- InputGestureCollection.cs
- WindowProviderWrapper.cs
- SQLInt64.cs
- UserControlCodeDomTreeGenerator.cs
- TracingConnectionInitiator.cs
- SetStateEventArgs.cs
- ListParagraph.cs
- VectorCollection.cs
- DefaultWorkflowSchedulerService.cs
- SoapServerMessage.cs
- StorageMappingFragment.cs
- ImportDesigner.xaml.cs
- LineServicesRun.cs
- MonthCalendar.cs
- DataSourceSelectArguments.cs
- XmlTextReaderImpl.cs
- BoolExpr.cs
- HttpModulesSection.cs
- EnumerableRowCollectionExtensions.cs
- Function.cs
- WebPartManagerInternals.cs
- SolidColorBrush.cs
- IteratorDescriptor.cs
- PeerServiceMessageContracts.cs
- CatalogZone.cs
- ControlValuePropertyAttribute.cs
- ExternalException.cs
- WindowsButton.cs
- DataGridPageChangedEventArgs.cs
- SizeKeyFrameCollection.cs
- Content.cs
- PopupRoot.cs
- ViewManager.cs
- SystemColors.cs
- _BufferOffsetSize.cs
- Char.cs
- ImageKeyConverter.cs
- DocumentsTrace.cs
- HwndTarget.cs
- PaperSource.cs
- PermissionSet.cs
- Odbc32.cs
- WebPart.cs
- TypedRowGenerator.cs
- AffineTransform3D.cs
- Keyboard.cs
- ExtensionSimplifierMarkupObject.cs
- DialogDivider.cs
- AtomMaterializerLog.cs
- TableProviderWrapper.cs
- MarkupWriter.cs
- MatrixCamera.cs
- XmlBinaryReaderSession.cs
- DurableInstancingOptions.cs
- SchemaMerger.cs
- BuildManager.cs
- ApplicationManager.cs
- IdentityReference.cs
- InvalidFilterCriteriaException.cs
- MessageCredentialType.cs
- ConnectionManagementSection.cs
- TaskFileService.cs
- XmlSchemaInfo.cs
- SafeCryptoHandles.cs
- HttpContextServiceHost.cs
- BitmapEffectInput.cs
- TableCell.cs
- WebResourceAttribute.cs
- DataGridViewCellLinkedList.cs
- WindowsFormsHost.cs
- NodeLabelEditEvent.cs
- CompiledIdentityConstraint.cs
- SelectedPathEditor.cs
- OletxTransactionHeader.cs
- FileSecurity.cs
- CodeCatchClauseCollection.cs
- Calendar.cs
- BitmapMetadataBlob.cs
- PreProcessInputEventArgs.cs
- XamlWriter.cs
- XmlTextReaderImpl.cs
- ToolStripItemRenderEventArgs.cs
- DataServiceHost.cs
- DataGridViewColumnDesignTimeVisibleAttribute.cs
- XmlAnyElementAttribute.cs
- XamlRtfConverter.cs
- StrongNameMembershipCondition.cs
- WebPartAddingEventArgs.cs
- MatrixCamera.cs
- EUCJPEncoding.cs
- PasswordRecoveryDesigner.cs
- XmlWriterTraceListener.cs
- EncoderExceptionFallback.cs
- SchemaComplexType.cs
- Converter.cs
- MultilineStringConverter.cs
- DesignerDataTable.cs
- AsymmetricKeyExchangeFormatter.cs