Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / clr / src / BCL / System / Reflection / TargetInvocationException.cs / 1 / TargetInvocationException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// // // TargetInvocationException is used to report an exception that was thrown // by the target of an invocation. // // // // namespace System.Reflection { using System; using System.Runtime.Serialization; [Serializable()] [System.Runtime.InteropServices.ComVisible(true)] public sealed class TargetInvocationException : ApplicationException { // This exception is not creatable without specifying the // inner exception. private TargetInvocationException() : base(Environment.GetResourceString("Arg_TargetInvocationException")) { SetErrorCode(__HResults.COR_E_TARGETINVOCATION); } // This is called from within the runtime. private TargetInvocationException(String message) : base(message) { SetErrorCode(__HResults.COR_E_TARGETINVOCATION); } public TargetInvocationException(System.Exception inner) : base(Environment.GetResourceString("Arg_TargetInvocationException"), inner) { SetErrorCode(__HResults.COR_E_TARGETINVOCATION); } public TargetInvocationException(String message, Exception inner) : base(message, inner) { SetErrorCode(__HResults.COR_E_TARGETINVOCATION); } internal TargetInvocationException(SerializationInfo info, StreamingContext context) : base (info, context) { } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ConstructorBuilder.cs
- AppliesToBehaviorDecisionTable.cs
- DataGridTableCollection.cs
- EmptyControlCollection.cs
- DynamicContractTypeBuilder.cs
- ErrorFormatter.cs
- xamlnodes.cs
- CompilationUtil.cs
- PropertyGridView.cs
- TextSimpleMarkerProperties.cs
- StrokeNode.cs
- JsonFormatWriterGenerator.cs
- ContractSearchPattern.cs
- ComplexBindingPropertiesAttribute.cs
- Int64AnimationBase.cs
- processwaithandle.cs
- SQLInt32.cs
- DataTableCollection.cs
- QuaternionAnimation.cs
- BaseCAMarshaler.cs
- ClientRoleProvider.cs
- WebPartZone.cs
- IntSecurity.cs
- PersistencePipeline.cs
- EventMappingSettings.cs
- CharacterMetricsDictionary.cs
- DataControlFieldTypeEditor.cs
- HttpCachePolicy.cs
- XmlSchemaInferenceException.cs
- SimpleMailWebEventProvider.cs
- ServiceCredentialsElement.cs
- HuffCodec.cs
- DeclarativeConditionsCollection.cs
- KeyedPriorityQueue.cs
- MailWebEventProvider.cs
- CardSpaceSelector.cs
- SoapMessage.cs
- FixedDocumentPaginator.cs
- figurelength.cs
- ProfilePropertyNameValidator.cs
- ExeContext.cs
- ThicknessAnimationUsingKeyFrames.cs
- MissingManifestResourceException.cs
- Bidi.cs
- MsmqHostedTransportManager.cs
- SessionSwitchEventArgs.cs
- XmlParser.cs
- PlacementWorkspace.cs
- CommonObjectSecurity.cs
- SQLBytes.cs
- MessageBox.cs
- SettingsAttributeDictionary.cs
- TypeConstant.cs
- XmlSchemaAnnotation.cs
- ObjectMemberMapping.cs
- GroupBoxAutomationPeer.cs
- Directory.cs
- ByteKeyFrameCollection.cs
- WebEventTraceProvider.cs
- SoapAttributes.cs
- OdbcEnvironmentHandle.cs
- Executor.cs
- FlowDocumentScrollViewer.cs
- WebAdminConfigurationHelper.cs
- WebPartTracker.cs
- ExpressionVisitorHelpers.cs
- ObjectDataSourceMethodEventArgs.cs
- Timer.cs
- ProfileProvider.cs
- RadioButton.cs
- Tile.cs
- ColumnWidthChangingEvent.cs
- WebServiceClientProxyGenerator.cs
- PhoneCall.cs
- SvcMapFileLoader.cs
- ADConnectionHelper.cs
- DistinctQueryOperator.cs
- ToolStripArrowRenderEventArgs.cs
- CookieParameter.cs
- ToolboxItemAttribute.cs
- MdImport.cs
- PropertyGeneratedEventArgs.cs
- RuntimeUtils.cs
- InputLanguageManager.cs
- ComProxy.cs
- TrackingDataItem.cs
- XmlNamespaceMappingCollection.cs
- XPathItem.cs
- QueryableFilterRepeater.cs
- EditorZoneBase.cs
- CompilationUtil.cs
- ToolStripContainerDesigner.cs
- TextPointerBase.cs
- VectorValueSerializer.cs
- DoubleAnimation.cs
- Subtree.cs
- DeferredElementTreeState.cs
- webeventbuffer.cs
- CachedPathData.cs
- InternalTypeHelper.cs