Class
ObjectDataSourceParameterInfo

Model representing a parameter for object data source configurations.

Definition

Namespace:Telerik.WebReportDesigner.Services.Models

Assembly:Telerik.WebReportDesigner.Services.dll

Syntax:

cs-api-definition
public class ObjectDataSourceParameterInfo

Inheritance: objectObjectDataSourceParameterInfo

Constructors

ObjectDataSourceParameterInfo()

Declaration

cs-api-definition
public ObjectDataSourceParameterInfo()

Properties

DataType

Gets or sets the .NET type of the parameter.

Declaration

cs-api-definition
public Type DataType { get; set; }

Property Value

Type

Remarks

Specifies the expected parameter type for proper type conversion and validation during object data source operations.

Name

Gets or sets the name of the parameter.

Declaration

cs-api-definition
public string Name { get; set; }

Property Value

string

Remarks

Must match the parameter name expected by the target constructor or data-retrieval method.

Value

Gets or sets the value to be passed to the parameter.

Declaration

cs-api-definition
public object Value { get; set; }

Property Value

object

Remarks

Contains the actual value that will be passed to the object data source during initialization, can be of any supported .NET type.