Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / InvalidEnumArgumentException.cs / 1305376 / InvalidEnumArgumentException.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel { using Microsoft.Win32; using System; using System.Diagnostics; using System.Globalization; using System.Runtime.Serialization; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] [Serializable] public class InvalidEnumArgumentException : ArgumentException { ///The exception that is thrown when using invalid arguments that are enumerators. ////// public InvalidEnumArgumentException() : this(null) { } ///Initializes a new instance of the ///class without a message. /// public InvalidEnumArgumentException(string message) : base(message) { } ///Initializes a new instance of the ///class with /// the specified message. /// Initializes a new instance of the Exception class with a specified error message and a /// reference to the inner exception that is the cause of this exception. /// FxCop CA1032: Multiple constructors are required to correctly implement a custom exception. /// public InvalidEnumArgumentException( string message, Exception innerException ) : base(message, innerException) { } ////// public InvalidEnumArgumentException(string argumentName, int invalidValue, Type enumClass) : base(SR.GetString(SR.InvalidEnumArgument, argumentName, invalidValue.ToString(CultureInfo.CurrentCulture), enumClass.Name), argumentName) { } ///Initializes a new instance of the ///class with a /// message generated from the argument, invalid value, and enumeration /// class. /// Need this constructor since Exception implements ISerializable. We don't have any fields, /// so just forward this to base. /// protected InvalidEnumArgumentException(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. // //----------------------------------------------------------------------------- namespace System.ComponentModel { using Microsoft.Win32; using System; using System.Diagnostics; using System.Globalization; using System.Runtime.Serialization; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] [Serializable] public class InvalidEnumArgumentException : ArgumentException { ///The exception that is thrown when using invalid arguments that are enumerators. ////// public InvalidEnumArgumentException() : this(null) { } ///Initializes a new instance of the ///class without a message. /// public InvalidEnumArgumentException(string message) : base(message) { } ///Initializes a new instance of the ///class with /// the specified message. /// Initializes a new instance of the Exception class with a specified error message and a /// reference to the inner exception that is the cause of this exception. /// FxCop CA1032: Multiple constructors are required to correctly implement a custom exception. /// public InvalidEnumArgumentException( string message, Exception innerException ) : base(message, innerException) { } ////// public InvalidEnumArgumentException(string argumentName, int invalidValue, Type enumClass) : base(SR.GetString(SR.InvalidEnumArgument, argumentName, invalidValue.ToString(CultureInfo.CurrentCulture), enumClass.Name), argumentName) { } ///Initializes a new instance of the ///class with a /// message generated from the argument, invalid value, and enumeration /// class. /// Need this constructor since Exception implements ISerializable. We don't have any fields, /// so just forward this to base. /// protected InvalidEnumArgumentException(SerializationInfo info, StreamingContext context) : base(info, context) { } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- securestring.cs
- CodeMemberProperty.cs
- SortKey.cs
- SafeNativeMemoryHandle.cs
- GlyphManager.cs
- ToolstripProfessionalRenderer.cs
- _CommandStream.cs
- InstanceKey.cs
- CodeObject.cs
- FlagsAttribute.cs
- StringFreezingAttribute.cs
- Matrix.cs
- Vector3DKeyFrameCollection.cs
- XpsResourcePolicy.cs
- DataGridViewCellCollection.cs
- OracleDataAdapter.cs
- FloatUtil.cs
- ActiveXHost.cs
- CodeDelegateInvokeExpression.cs
- DocumentViewerBase.cs
- Connector.xaml.cs
- PhysicalAddress.cs
- ToolStripContainer.cs
- TraceLevelStore.cs
- NavigateEvent.cs
- NumberEdit.cs
- rsa.cs
- EnumerableRowCollectionExtensions.cs
- AsymmetricKeyExchangeDeformatter.cs
- FixedSOMSemanticBox.cs
- XmlILModule.cs
- ServiceHost.cs
- WSHttpBindingElement.cs
- KeyNotFoundException.cs
- SessionEndingEventArgs.cs
- TraceHandlerErrorFormatter.cs
- CollectionViewGroupInternal.cs
- HeaderedItemsControl.cs
- EntityDataSourceWrapper.cs
- IPEndPoint.cs
- SamlAuthenticationStatement.cs
- Imaging.cs
- CodeTypeDeclaration.cs
- RuntimeCompatibilityAttribute.cs
- WrapPanel.cs
- SubqueryRules.cs
- BitmapEffectrendercontext.cs
- CodeThrowExceptionStatement.cs
- DataGridViewHeaderCell.cs
- Base64Encoder.cs
- CustomValidator.cs
- GetPageCompletedEventArgs.cs
- StrokeCollection2.cs
- ObjectTypeMapping.cs
- activationcontext.cs
- AssemblyInfo.cs
- TogglePatternIdentifiers.cs
- _HeaderInfoTable.cs
- PropertyInfoSet.cs
- SessionIDManager.cs
- ADMembershipUser.cs
- ServiceOperationInfoTypeConverter.cs
- NumberSubstitution.cs
- HttpBufferlessInputStream.cs
- CodePropertyReferenceExpression.cs
- SourceChangedEventArgs.cs
- HttpSessionStateWrapper.cs
- HandleValueEditor.cs
- BindingNavigator.cs
- RuleSetDialog.Designer.cs
- DragDeltaEventArgs.cs
- SequenceNumber.cs
- DescendentsWalkerBase.cs
- AuthenticationSection.cs
- MemberDomainMap.cs
- VirtualPathProvider.cs
- DecimalAnimationBase.cs
- validation.cs
- ImageListImage.cs
- TypeSystemProvider.cs
- TableLayoutCellPaintEventArgs.cs
- MatrixCamera.cs
- MultidimensionalArrayItemReference.cs
- SqlBooleanMismatchVisitor.cs
- OracleParameterBinding.cs
- LogSwitch.cs
- FrameworkElementFactory.cs
- PageClientProxyGenerator.cs
- NumericUpDownAcceleration.cs
- Polyline.cs
- AtomEntry.cs
- BoundColumn.cs
- CollectionsUtil.cs
- DtdParser.cs
- ReadOnlyDictionary.cs
- CheckBoxList.cs
- AspCompat.cs
- IdleTimeoutMonitor.cs
- WindowsFormsHostPropertyMap.cs
- XmlSchemas.cs