ClassObjectDataSourceParameterInfo
Model representing a parameter for object data source configurations.
Definition
Namespace:Telerik.WebReportDesigner.Services.Models
Assembly:Telerik.WebReportDesigner.Services.dll
Syntax:
public class ObjectDataSourceParameterInfo
Inheritance: objectObjectDataSourceParameterInfo
Constructors
ObjectDataSourceParameterInfo()
Declaration
public ObjectDataSourceParameterInfo()
Properties
DataType
Gets or sets the .NET type of the parameter.
Declaration
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
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
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.