Class ObjectDataSourceInfo
Represents an object data source model.
Inheritance
Namespace: Telerik.WebReportDesigner.Services.Models
Assembly: Telerik.WebReportDesigner.Services.dll
Syntax
public class ObjectDataSourceInfo
Constructors
ObjectDataSourceInfo()
Declaration
public ObjectDataSourceInfo()
Properties
DataMember
Gets or sets the name of the data-retrieval member. If omitted, the type ctor will be used instead.
Declaration
public string DataMember { get; set; }
Property Value
System.String
|
DataSource
Gets or sets the assembly-qualified name of the type used as a data source.
Declaration
public string DataSource { get; set; }
Property Value
System.String
|
JsonParameters
Gets or sets the JSON-friendly representation of the data source parameters that will be passed to the data-retrieval member/constructor.
Declaration
public List<ObjectDataSourceParameterInfo> JsonParameters { get; set; }
Property Value
System.Collections.Generic.List<ObjectDataSourceParameterInfo>
|