Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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: darylo // 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) { } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ToolStripDropDown.cs
- RoleGroupCollection.cs
- ReflectPropertyDescriptor.cs
- NameValueCollection.cs
- FillBehavior.cs
- LogEntryUtils.cs
- ClientTargetCollection.cs
- EntityTypeBase.cs
- CalculatedColumn.cs
- MetadataWorkspace.cs
- SocketAddress.cs
- SeekStoryboard.cs
- ISAPIApplicationHost.cs
- DefaultBinder.cs
- ListViewDeleteEventArgs.cs
- Stackframe.cs
- TransformProviderWrapper.cs
- NavigationWindow.cs
- CompilerTypeWithParams.cs
- UnsafeNetInfoNativeMethods.cs
- FontSourceCollection.cs
- XsltQilFactory.cs
- GestureRecognitionResult.cs
- SimpleTextLine.cs
- FilterableAttribute.cs
- GlyphRunDrawing.cs
- Process.cs
- Effect.cs
- RightsManagementEncryptionTransform.cs
- DataBindingCollection.cs
- FormParameter.cs
- HtmlEncodedRawTextWriter.cs
- PageContent.cs
- SinglePageViewer.cs
- Utils.cs
- UIElementHelper.cs
- isolationinterop.cs
- ConfigurationSectionGroup.cs
- MultiByteCodec.cs
- CategoryAttribute.cs
- ErrorProvider.cs
- Socket.cs
- StrongName.cs
- CancellationTokenSource.cs
- DataGridBoundColumn.cs
- SqlTransaction.cs
- TcpHostedTransportConfiguration.cs
- EntryIndex.cs
- RegisteredScript.cs
- CatalogPartCollection.cs
- RichTextBox.cs
- GlyphTypeface.cs
- SamlAuthenticationClaimResource.cs
- ThreadStartException.cs
- PrimitiveDataContract.cs
- CodeEntryPointMethod.cs
- WebRequest.cs
- RenderData.cs
- IPAddressCollection.cs
- RankException.cs
- FlowDocumentScrollViewerAutomationPeer.cs
- Fonts.cs
- CompositionCommandSet.cs
- ToReply.cs
- PropertyValueChangedEvent.cs
- TdsParser.cs
- Baml2006KnownTypes.cs
- ClockGroup.cs
- SignatureResourceHelper.cs
- RegexInterpreter.cs
- ContentPresenter.cs
- RC2.cs
- FlowLayoutPanel.cs
- XmlReflectionMember.cs
- ButtonField.cs
- HyperLinkDesigner.cs
- Bidi.cs
- DependencyPropertyValueSerializer.cs
- Mappings.cs
- ImmComposition.cs
- ColumnResizeUndoUnit.cs
- LicFileLicenseProvider.cs
- Site.cs
- ImportStoreException.cs
- HostDesigntimeLicenseContext.cs
- xsdvalidator.cs
- MediaSystem.cs
- XmlSerializerAssemblyAttribute.cs
- ThreadSafeList.cs
- Attributes.cs
- PartitionerStatic.cs
- RouteItem.cs
- InputBindingCollection.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- EditCommandColumn.cs
- AutoResetEvent.cs
- PublisherIdentityPermission.cs
- TileBrush.cs
- XmlHierarchicalDataSourceView.cs
- BaseAutoFormat.cs