Class ObjectDataSourceParameterInfo
Model representing a parameter for object data source configurations.
Inheritance
Namespace: Telerik.WebReportDesigner.Services.Models
Assembly: Telerik.WebReportDesigner.Services.dll
Syntax
public class ObjectDataSourceParameterInfo
Remarks
Used in the WebReportDesigner system to define parameters that will be passed to object data source constructors or data-retrieval methods during data source initialization.
Constructors
ObjectDataSourceParameterInfo()
Declaration
public ObjectDataSourceParameterInfo()
Properties
DataType
Gets or sets the .NET type of the parameter.
Declaration
public Type DataType { get; set; }
Property Value
|
System.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
|
System.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
|
System.Object
|
Remarks
Contains the actual value that will be passed to the object data source during initialization, can be of any supported .NET type.