Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- StrongName.cs
- Panel.cs
- HitTestParameters3D.cs
- XsdBuildProvider.cs
- TableColumn.cs
- _FtpControlStream.cs
- HttpResponseWrapper.cs
- TerminateWorkflow.cs
- FieldDescriptor.cs
- BamlLocalizableResourceKey.cs
- TextRangeEdit.cs
- SqlExpander.cs
- WindowCollection.cs
- RelatedView.cs
- SharedUtils.cs
- ReliableSession.cs
- TextBreakpoint.cs
- ConstructorExpr.cs
- BinHexEncoding.cs
- EmbeddedObject.cs
- ObjectItemLoadingSessionData.cs
- SessionStateContainer.cs
- DbException.cs
- XmlSignatureManifest.cs
- ObfuscationAttribute.cs
- mediaeventshelper.cs
- WebPartVerbsEventArgs.cs
- AuthenticationModulesSection.cs
- Int64Converter.cs
- DiscoveryCallbackBehavior.cs
- ReachPageContentCollectionSerializerAsync.cs
- UriParserTemplates.cs
- AppDomainFactory.cs
- TimeSpan.cs
- SmiXetterAccessMap.cs
- HebrewCalendar.cs
- StringSorter.cs
- NativeMethods.cs
- StringTraceRecord.cs
- Application.cs
- Underline.cs
- DataSourceSerializationException.cs
- KerberosRequestorSecurityToken.cs
- EventLogTraceListener.cs
- OdbcException.cs
- MetadataArtifactLoaderFile.cs
- OleDbDataAdapter.cs
- DataColumnChangeEvent.cs
- ExtendedProtectionPolicyElement.cs
- PersonalizationStateQuery.cs
- SQLGuid.cs
- Inflater.cs
- DocumentCollection.cs
- AvTrace.cs
- TextTrailingCharacterEllipsis.cs
- UnsafeNativeMethodsPenimc.cs
- SByteStorage.cs
- FontStyles.cs
- DurableErrorHandler.cs
- SQLCharsStorage.cs
- COM2ComponentEditor.cs
- GenericEnumerator.cs
- BooleanProjectedSlot.cs
- IndexingContentUnit.cs
- StorageConditionPropertyMapping.cs
- DbDeleteCommandTree.cs
- DataRowView.cs
- TraceSection.cs
- Calendar.cs
- BitmapEffectGeneralTransform.cs
- _CookieModule.cs
- StreamResourceInfo.cs
- CompilerHelpers.cs
- PersonalizableAttribute.cs
- DataBoundControlAdapter.cs
- BrushProxy.cs
- ProfilePropertyNameValidator.cs
- Frame.cs
- BamlTreeMap.cs
- Parsers.cs
- RuntimeCompatibilityAttribute.cs
- CornerRadius.cs
- FtpWebRequest.cs
- HttpInputStream.cs
- DictationGrammar.cs
- PrinterSettings.cs
- InternalUserCancelledException.cs
- PaintValueEventArgs.cs
- BindingOperations.cs
- Contracts.cs
- XmlReflectionMember.cs
- WebPartTransformer.cs
- DesignerHelpers.cs
- SmiConnection.cs
- ToolCreatedEventArgs.cs
- BorderGapMaskConverter.cs
- SchemaConstraints.cs
- AssociatedControlConverter.cs
- DeviceContext2.cs
- NullableIntAverageAggregationOperator.cs