Model representing a parameter for object data source configurations.
Definition
Namespace:Telerik.WebReportDesigner.Services.Models
Assembly:Telerik.WebReportDesigner.Services.dll
Syntax:
C#
public class ObjectDataSourceParameterInfo
Inheritance: objectObjectDataSourceParameterInfo
Constructors
C#
public ObjectDataSourceParameterInfo()
Properties
DataType
Type
Gets or sets the .NET type of the parameter.
C#
public Type DataType { get; set; }
Remarks:
Specifies the expected parameter type for proper type conversion and validation during object data source operations.
Name
string
Gets or sets the name of the parameter.
C#
public string Name { get; set; }
Remarks:
Must match the parameter name expected by the target constructor or data-retrieval method.
Value
object
Gets or sets the value to be passed to the parameter.
C#
public object Value { get; set; }
Remarks:
Contains the actual value that will be passed to the object data source during initialization, can be of any supported .NET type.