Table of Contents

Class TypeArgumentOutOfRangeException

Namespace
Cuemon
Assembly
Cuemon.Core.dll

The exception that is thrown when the value of an type argument is outside the allowable range of values as defined by the invoked method.

public class TypeArgumentOutOfRangeException : ArgumentOutOfRangeException, ISerializable
Inheritance
Object
Exception
SystemException
ArgumentException
ArgumentOutOfRangeException
TypeArgumentOutOfRangeException
Implements
ISerializable
Inherited Members
ArgumentOutOfRangeException.ThrowIfEqual<T>(T, T, String)
ArgumentOutOfRangeException.ThrowIfGreaterThan<T>(T, T, String)
ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual<T>(T, T, String)
ArgumentOutOfRangeException.ThrowIfLessThan<T>(T, T, String)
ArgumentOutOfRangeException.ThrowIfLessThanOrEqual<T>(T, T, String)
ArgumentOutOfRangeException.ThrowIfNegative<T>(T, String)
ArgumentOutOfRangeException.ThrowIfNegativeOrZero<T>(T, String)
ArgumentOutOfRangeException.ThrowIfNotEqual<T>(T, T, String)
ArgumentOutOfRangeException.ThrowIfZero<T>(T, String)
ArgumentOutOfRangeException.ActualValue
ArgumentOutOfRangeException.Message
ArgumentException.ThrowIfNullOrEmpty(String, String)
ArgumentException.ThrowIfNullOrWhiteSpace(String, String)
ArgumentException.ParamName
Exception.GetBaseException()
Exception.GetType()
Exception.ToString()
Exception.Data
Exception.HelpLink
Exception.HResult
Exception.InnerException
Exception.Source
Exception.StackTrace
Exception.TargetSite
Exception.SerializeObjectState

Constructors

TypeArgumentOutOfRangeException()

Initializes a new instance of the TypeArgumentOutOfRangeException class.

public TypeArgumentOutOfRangeException()

TypeArgumentOutOfRangeException(String)

Initializes a new instance of the TypeArgumentOutOfRangeException class.

public TypeArgumentOutOfRangeException(string typeParamName)

Parameters

typeParamName String

The name of the type parameter that caused the exception.

TypeArgumentOutOfRangeException(String, Exception)

Initializes a new instance of the TypeArgumentOutOfRangeException class.

public TypeArgumentOutOfRangeException(string message, Exception innerException)

Parameters

message String

The message that describes the error.

innerException Exception

The exception that is the cause of the current exception. If the innerException parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.

TypeArgumentOutOfRangeException(String, Object, String)

Initializes a new instance of the TypeArgumentOutOfRangeException class.

public TypeArgumentOutOfRangeException(string typeParamName, object actualValue, string message)

Parameters

typeParamName String

The name of the type parameter that caused the exception.

actualValue Object

The value of the argument that causes this exception.

message String

The message that describes the error.

TypeArgumentOutOfRangeException(String, String)

Initializes a new instance of the TypeArgumentOutOfRangeException class.

public TypeArgumentOutOfRangeException(string typeParamName, string message)

Parameters

typeParamName String

The name of the type parameter that caused the exception.

message String

The message that describes the error.