Skip to main content
.NET 6.0+

Guard.CreateArgumentOutOfRangeException(Object, String) Method

Initializes a new ArgumentOutOfRangeException class with the specified argument name and value.

Namespace: DevExpress.ExpressApp.Utils

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public static ArgumentOutOfRangeException CreateArgumentOutOfRangeException(
    object argumentValue,
    string argumentName
)

Parameters

Name Type Description
argumentValue Object

An object representing the value of the argument that causes the exception.

argumentName String

A string holding the name of the argument that caused the exception.

Returns

Type Description
ArgumentOutOfRangeException

An ArgumentOutOfRangeException object representing the initialized exception.

See Also