Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / Reflection / TargetParameterCountException.cs / 1 / TargetParameterCountException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// // // TargetParameterCountException is thrown when the number of parameter to an // invocation doesn't match the number expected. // // // // namespace System.Reflection { using System; using SystemException = System.SystemException; using System.Runtime.Serialization; [Serializable()] [System.Runtime.InteropServices.ComVisible(true)] public sealed class TargetParameterCountException : ApplicationException { public TargetParameterCountException() : base(Environment.GetResourceString("Arg_TargetParameterCountException")) { SetErrorCode(__HResults.COR_E_TARGETPARAMCOUNT); } public TargetParameterCountException(String message) : base(message) { SetErrorCode(__HResults.COR_E_TARGETPARAMCOUNT); } public TargetParameterCountException(String message, Exception inner) : base(message, inner) { SetErrorCode(__HResults.COR_E_TARGETPARAMCOUNT); } internal TargetParameterCountException(SerializationInfo info, StreamingContext context) : base (info, context) { } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- EnumDataContract.cs
- LocatorGroup.cs
- LogLogRecordHeader.cs
- UdpSocket.cs
- ThumbButtonInfo.cs
- PersonalizationStateInfoCollection.cs
- TriggerAction.cs
- SchemaNamespaceManager.cs
- KeyManager.cs
- ParentControlDesigner.cs
- DataObject.cs
- ToolZoneDesigner.cs
- IntranetCredentialPolicy.cs
- WebPartUtil.cs
- TextBoxRenderer.cs
- ADConnectionHelper.cs
- EventWaitHandleSecurity.cs
- TextBox.cs
- Matrix.cs
- ActivityBindForm.Designer.cs
- GridViewColumn.cs
- AdjustableArrowCap.cs
- EmissiveMaterial.cs
- ScriptingScriptResourceHandlerSection.cs
- CodeIndexerExpression.cs
- GraphicsContainer.cs
- ColorPalette.cs
- RequiredAttributeAttribute.cs
- PrimitiveXmlSerializers.cs
- AppSettingsExpressionEditor.cs
- PointLight.cs
- LinqDataSourceUpdateEventArgs.cs
- DriveInfo.cs
- HandledMouseEvent.cs
- AliasedSlot.cs
- List.cs
- NullRuntimeConfig.cs
- SqlFunctionAttribute.cs
- XmlSchemaAll.cs
- ObjectNotFoundException.cs
- AdRotator.cs
- CodeAttachEventStatement.cs
- FilterRepeater.cs
- DirectoryLocalQuery.cs
- InfoCardTrace.cs
- ServiceHttpModule.cs
- UnknownBitmapDecoder.cs
- DoubleStorage.cs
- TextRunCache.cs
- WindowHelperService.cs
- ResXBuildProvider.cs
- AccessText.cs
- TransformerConfigurationWizardBase.cs
- MatrixStack.cs
- _ProxyChain.cs
- ToolStripItemTextRenderEventArgs.cs
- GiveFeedbackEvent.cs
- MinimizableAttributeTypeConverter.cs
- CapabilitiesUse.cs
- VirtualPath.cs
- CodeStatementCollection.cs
- NCryptSafeHandles.cs
- BufferedGraphics.cs
- Help.cs
- FacetEnabledSchemaElement.cs
- RoutedPropertyChangedEventArgs.cs
- ListBase.cs
- UIElementHelper.cs
- TransactionInterop.cs
- _BufferOffsetSize.cs
- Util.cs
- TabControlCancelEvent.cs
- SystemBrushes.cs
- XPathDocumentNavigator.cs
- IPHostEntry.cs
- Convert.cs
- ConnectionManagementSection.cs
- ReferenceConverter.cs
- RedirectionProxy.cs
- DrawingAttributesDefaultValueFactory.cs
- SHA1Managed.cs
- UseAttributeSetsAction.cs
- SecurityNegotiationException.cs
- DivideByZeroException.cs
- xml.cs
- LineVisual.cs
- BindingNavigator.cs
- InheritanceContextChangedEventManager.cs
- CookielessHelper.cs
- DecimalAnimation.cs
- AudioFormatConverter.cs
- DbDataSourceEnumerator.cs
- WebPartDescription.cs
- XmlSchemaDatatype.cs
- Errors.cs
- RunInstallerAttribute.cs
- ServiceDocumentFormatter.cs
- CheckBoxDesigner.cs
- TouchPoint.cs
- Frame.cs