Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / clr / src / BCL / System / Reflection / CustomAttributeFormatException.cs / 1 / CustomAttributeFormatException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// // // CustomAttributeFormatException is thrown when the binary format of a // custom attribute is invalid. // //Author: [....] // Date: March 98 // namespace System.Reflection { using System; using ApplicationException = System.ApplicationException; using System.Runtime.Serialization; [Serializable()] [System.Runtime.InteropServices.ComVisible(true)] public class CustomAttributeFormatException : FormatException { public CustomAttributeFormatException() : base(Environment.GetResourceString("Arg_CustomAttributeFormatException")) { SetErrorCode(__HResults.COR_E_CUSTOMATTRIBUTEFORMAT); } public CustomAttributeFormatException(String message) : base(message) { SetErrorCode(__HResults.COR_E_CUSTOMATTRIBUTEFORMAT); } public CustomAttributeFormatException(String message, Exception inner) : base(message, inner) { SetErrorCode(__HResults.COR_E_CUSTOMATTRIBUTEFORMAT); } protected CustomAttributeFormatException(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
- RequestCachePolicy.cs
- StringBlob.cs
- TraceLevelStore.cs
- TaskExtensions.cs
- XmlElementAttribute.cs
- AsymmetricKeyExchangeFormatter.cs
- TransactionsSectionGroup.cs
- HwndSource.cs
- CqlLexer.cs
- ComEventsHelper.cs
- columnmapfactory.cs
- ObfuscateAssemblyAttribute.cs
- ParallelEnumerable.cs
- SystemIPInterfaceProperties.cs
- TableLayoutStyle.cs
- InstanceLockedException.cs
- ImageList.cs
- Polygon.cs
- GlyphRunDrawing.cs
- SimpleHandlerFactory.cs
- LinqTreeNodeEvaluator.cs
- RoleManagerEventArgs.cs
- SystemInformation.cs
- TrackBar.cs
- NoResizeSelectionBorderGlyph.cs
- NotificationContext.cs
- shaper.cs
- MemberDomainMap.cs
- KeyedPriorityQueue.cs
- ReflectionHelper.cs
- CommandEventArgs.cs
- FormsAuthenticationUser.cs
- DecimalAnimationUsingKeyFrames.cs
- ObjectContext.cs
- EventWaitHandleSecurity.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- ping.cs
- HandleRef.cs
- Point.cs
- TextParagraphProperties.cs
- IgnoreFlushAndCloseStream.cs
- InternalControlCollection.cs
- UrlParameterReader.cs
- ObjectComplexPropertyMapping.cs
- SQLByteStorage.cs
- XmlDataImplementation.cs
- DecoderNLS.cs
- StateInitialization.cs
- XmlDataCollection.cs
- Figure.cs
- CatalogPartCollection.cs
- ToolStripDropDownButton.cs
- thaishape.cs
- ObjectDataSourceFilteringEventArgs.cs
- ToolStripDesignerAvailabilityAttribute.cs
- PreProcessor.cs
- ListSortDescriptionCollection.cs
- PrePrepareMethodAttribute.cs
- CustomAttribute.cs
- GPRECTF.cs
- TrayIconDesigner.cs
- WebPartsPersonalization.cs
- ConnectionManagementElementCollection.cs
- MenuItemStyleCollection.cs
- PriorityBinding.cs
- ArraySortHelper.cs
- WmlTextViewAdapter.cs
- CompositeFontFamily.cs
- Vector3DIndependentAnimationStorage.cs
- ContextMenuAutomationPeer.cs
- ProcessManager.cs
- ISFClipboardData.cs
- CodeAttributeDeclaration.cs
- TimeSpanParse.cs
- MultipleViewProviderWrapper.cs
- NextPreviousPagerField.cs
- AbsoluteQuery.cs
- RegexFCD.cs
- SafeNativeMethods.cs
- SQLMembershipProvider.cs
- Substitution.cs
- OverlappedAsyncResult.cs
- CompiledRegexRunnerFactory.cs
- ProxyFragment.cs
- QualificationDataAttribute.cs
- EncoderBestFitFallback.cs
- ClassicBorderDecorator.cs
- XmlMapping.cs
- PeekCompletedEventArgs.cs
- VirtualPathUtility.cs
- PointAnimationUsingPath.cs
- SessionEndingEventArgs.cs
- FileDialogPermission.cs
- DemultiplexingClientMessageFormatter.cs
- MethodAccessException.cs
- IncrementalReadDecoders.cs
- BamlReader.cs
- HierarchicalDataTemplate.cs
- DescendantBaseQuery.cs
- TypedCompletedAsyncResult.cs