Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / clr / src / BCL / System / ArgumentException.cs / 1 / ArgumentException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** Class: ArgumentException ** ** ** Purpose: Exception class for invalid arguments to a method. ** ** =============================================================================*/ namespace System { using System; using System.Runtime.Remoting; using System.Runtime.Serialization; using System.Globalization; using System.Security.Permissions; // The ArgumentException is thrown when an argument does not meet // the contract of the method. Ideally it should give a meaningful error // message describing what was wrong and which parameter is incorrect. // [System.Runtime.InteropServices.ComVisible(true)] [Serializable()] public class ArgumentException : SystemException, ISerializable { private String m_paramName; // Creates a new ArgumentException with its message // string set to the empty string. public ArgumentException() : base(Environment.GetResourceString("Arg_ArgumentException")) { SetErrorCode(__HResults.COR_E_ARGUMENT); } // Creates a new ArgumentException with its message // string set to message. // public ArgumentException(String message) : base(message) { SetErrorCode(__HResults.COR_E_ARGUMENT); } public ArgumentException(String message, Exception innerException) : base(message, innerException) { SetErrorCode(__HResults.COR_E_ARGUMENT); } public ArgumentException(String message, String paramName, Exception innerException) : base(message, innerException) { m_paramName = paramName; SetErrorCode(__HResults.COR_E_ARGUMENT); } public ArgumentException (String message, String paramName) : base (message) { m_paramName = paramName; SetErrorCode(__HResults.COR_E_ARGUMENT); } protected ArgumentException(SerializationInfo info, StreamingContext context) : base(info, context) { m_paramName = info.GetString("ParamName"); } public override String Message { get { String s = base.Message; if (! ((m_paramName == null) || (m_paramName.Length == 0)) ) return s + Environment.NewLine + String.Format(CultureInfo.CurrentCulture, Environment.GetResourceString("Arg_ParamName_Name"), m_paramName); else return s; } } public virtual String ParamName { get { return m_paramName; } } [SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.SerializationFormatter)] public override void GetObjectData(SerializationInfo info, StreamingContext context) { if (info==null) { throw new ArgumentNullException("info"); } base.GetObjectData(info, context); info.AddValue("ParamName", m_paramName, typeof(String)); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** Class: ArgumentException ** ** ** Purpose: Exception class for invalid arguments to a method. ** ** =============================================================================*/ namespace System { using System; using System.Runtime.Remoting; using System.Runtime.Serialization; using System.Globalization; using System.Security.Permissions; // The ArgumentException is thrown when an argument does not meet // the contract of the method. Ideally it should give a meaningful error // message describing what was wrong and which parameter is incorrect. // [System.Runtime.InteropServices.ComVisible(true)] [Serializable()] public class ArgumentException : SystemException, ISerializable { private String m_paramName; // Creates a new ArgumentException with its message // string set to the empty string. public ArgumentException() : base(Environment.GetResourceString("Arg_ArgumentException")) { SetErrorCode(__HResults.COR_E_ARGUMENT); } // Creates a new ArgumentException with its message // string set to message. // public ArgumentException(String message) : base(message) { SetErrorCode(__HResults.COR_E_ARGUMENT); } public ArgumentException(String message, Exception innerException) : base(message, innerException) { SetErrorCode(__HResults.COR_E_ARGUMENT); } public ArgumentException(String message, String paramName, Exception innerException) : base(message, innerException) { m_paramName = paramName; SetErrorCode(__HResults.COR_E_ARGUMENT); } public ArgumentException (String message, String paramName) : base (message) { m_paramName = paramName; SetErrorCode(__HResults.COR_E_ARGUMENT); } protected ArgumentException(SerializationInfo info, StreamingContext context) : base(info, context) { m_paramName = info.GetString("ParamName"); } public override String Message { get { String s = base.Message; if (! ((m_paramName == null) || (m_paramName.Length == 0)) ) return s + Environment.NewLine + String.Format(CultureInfo.CurrentCulture, Environment.GetResourceString("Arg_ParamName_Name"), m_paramName); else return s; } } public virtual String ParamName { get { return m_paramName; } } [SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.SerializationFormatter)] public override void GetObjectData(SerializationInfo info, StreamingContext context) { if (info==null) { throw new ArgumentNullException("info"); } base.GetObjectData(info, context); info.AddValue("ParamName", m_paramName, typeof(String)); } } } // 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
- XComponentModel.cs
- EventLogPermissionHolder.cs
- WsdlImporter.cs
- FormCollection.cs
- ConfigurationManager.cs
- EntitySetDataBindingList.cs
- TreeChangeInfo.cs
- PropertyConverter.cs
- ErrorTolerantObjectWriter.cs
- ChannelServices.cs
- UriParserTemplates.cs
- FigureHelper.cs
- AsymmetricAlgorithm.cs
- BufferBuilder.cs
- ConsoleCancelEventArgs.cs
- PatternMatchRules.cs
- Graph.cs
- CatalogPartChrome.cs
- StylusSystemGestureEventArgs.cs
- Literal.cs
- DataError.cs
- MaskedTextBoxDesigner.cs
- RMPublishingDialog.cs
- TrackingProfileCache.cs
- RulePatternOps.cs
- InlinedLocationReference.cs
- panel.cs
- ComponentResourceKeyConverter.cs
- CollectionAdapters.cs
- EncoderExceptionFallback.cs
- TextEmbeddedObject.cs
- ExpressionsCollectionConverter.cs
- LinkArea.cs
- DataShape.cs
- SvcMapFileLoader.cs
- ConfigXmlCDataSection.cs
- diagnosticsswitches.cs
- SchemaContext.cs
- Sql8ConformanceChecker.cs
- PassportAuthenticationModule.cs
- TextRangeEditLists.cs
- TemporaryBitmapFile.cs
- WindowsStatusBar.cs
- InlineObject.cs
- CompatibleIComparer.cs
- LinqDataSourceSelectEventArgs.cs
- _HelperAsyncResults.cs
- StateInitializationDesigner.cs
- DateTimeValueSerializer.cs
- Point3DAnimationUsingKeyFrames.cs
- X509Extension.cs
- BoundsDrawingContextWalker.cs
- Tracer.cs
- GeometryCombineModeValidation.cs
- NetPeerTcpBinding.cs
- APCustomTypeDescriptor.cs
- HandledEventArgs.cs
- FlowPanelDesigner.cs
- UrlPropertyAttribute.cs
- RealizedColumnsBlock.cs
- PrintingPermissionAttribute.cs
- DataMemberAttribute.cs
- WebPartConnectionCollection.cs
- PrintPreviewDialog.cs
- QueryHandler.cs
- COM2ColorConverter.cs
- Stackframe.cs
- DataKey.cs
- SocketInformation.cs
- CompositeActivityMarkupSerializer.cs
- SystemTcpStatistics.cs
- PermissionSetEnumerator.cs
- CellRelation.cs
- TreeNodeStyle.cs
- RawStylusInput.cs
- TextDpi.cs
- SoapIgnoreAttribute.cs
- CssClassPropertyAttribute.cs
- ZipIOFileItemStream.cs
- CreateWorkflowOwnerCommand.cs
- FacetDescription.cs
- LabelInfo.cs
- IInstanceContextProvider.cs
- DesignerDataView.cs
- InputReferenceExpression.cs
- SqlUtils.cs
- StructuralCache.cs
- WorkflowStateRollbackService.cs
- AnalyzedTree.cs
- Stack.cs
- TextBox.cs
- GridSplitter.cs
- PtsPage.cs
- FunctionDetailsReader.cs
- NativeMethods.cs
- TextViewBase.cs
- PerspectiveCamera.cs
- SqlUdtInfo.cs
- Cloud.cs
- SegmentInfo.cs