Class DataSourceInfo
Model for serializing data source information including type and instance data.
Inheritance
Namespace: Telerik.WebReportDesigner.Services.Models
Assembly: Telerik.WebReportDesigner.Services.dll
Syntax
public class DataSourceInfo
Remarks
Used primarily with object data sources to preserve .NET type information and the actual data source instance during serialization and deserialization operations in the WebReportDesigner system.
Constructors
DataSourceInfo()
Declaration
public DataSourceInfo()
Properties
DataSource
Gets or sets the data source instance object.
Declaration
public object DataSource { get; set; }
Property Value
|
System.Object
|
Remarks
Contains the actual data source object that will be serialized/deserialized, typically used with object data sources and other custom data providers.
NetType
Gets or sets the .NET type name of the data source.
Declaration
public string NetType { get; set; }
Property Value
|
System.String
|
Remarks
Contains the fully qualified type name used for proper deserialization and type identification of the data source object.