Summary
    Supplies a range of values to an individual parameter of a parameterized test.
    
		- Namespace
- TCLite
- Interfaces
- Base Types
- 
									- object
- Attribute
- TCLiteAttribute
- DataParamAttribute
 
							graph BT
	Type-->Base0["DataParamAttribute"]
	click Base0 "/tc-lite/api/TCLite/DataParamAttribute"
	Base0-->Base1["TCLiteAttribute"]
	click Base1 "/tc-lite/api/TCLite/TCLiteAttribute"
	Base1-->Base2["Attribute"]
	Base2-->Base3["object"]
	Type-.->Interface0["IParameterDataSource"]
	click Interface0 "/tc-lite/api/TCLite.Interfaces/IParameterDataSource"
	Type["RangeAttribute"]
class Type type-node
						
					Syntax
[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = true, Inherited = false)]
public class RangeAttribute : DataParamAttribute, IParameterDataSourceAttributes
| Type | Description | 
|---|---|
| Attribute | 
Constructors
| Name | Summary | 
|---|---|
| RangeAttribute | Constructs a range of doublevalues with the specified step size. | 
| RangeAttribute | Constructs a range of floatvalues with the specified step size. | 
| RangeAttribute | Constructs a range of intvalues with the specified step size. | 
| RangeAttribute | Constructs a range of intvalues using the default step of 1. | 
| RangeAttribute | Constructs a range of System.Int64values with the specified step size. | 
| RangeAttribute | Constructs a range of longvalues using a default step of 1. | 
| RangeAttribute | Constructs a range of System.UInt32values with the specified step size. | 
| RangeAttribute | Constructs a range of uintvalues using the default step of 1. | 
| RangeAttribute | Constructs a range of ulongvalues with the specified step size. | 
| RangeAttribute | Constructs a range of ulongvalues using the default step of 1. | 
Methods
| Name | Value | Summary | 
|---|---|---|
| Convert | object | 
    Converts a single value to the targetType, if it is supported.
     Inherited from DataParamAttribute static | 
| ConvertData | IEnumerable | 
    Converts an array of objects to the targetType, if it is supported.
     Inherited from DataParamAttribute static | 
| GetData | IEnumerable | 
    Retrieves a list of arguments which can be passed to the specified parameter.
     | 
| ToString | string | Returns a string that represents the current object. | 
| TryConvert | bool | 
    Performs several special conversions allowed by NUnit in order to
    permit arguments with types that cannot be used in the constructor
    of an Attribute such as TestCaseAttribute or to simplify their use.
     Inherited from DataParamAttribute static | 
