IDataObject

Wisej.Web.IDataObject

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Provides a format-independent mechanism for transferring data.

public interface IDataObject

Methods

Retrieves the data associated with the specified data format, using autoConvert to determine whether to convert the data to the format.

ParameterTypeDescription

format

autoConvert

Returns: Object.

Retrieves the data associated with the specified data format.

ParameterTypeDescription

format

Returns: Object.

Retrieves the data associated with the specified class type format.

ParameterTypeDescription

format

Returns: Object.

Determines whether data stored in this instance is associated with the specified format, using autoConvert to determine whether to convert the data to the format.

ParameterTypeDescription

format

autoConvert

Returns: Boolean.

Determines whether data stored in this instance is associated with, or can be converted to, the specified format.

ParameterTypeDescription

format

Returns: Boolean.

Determines whether data stored in this instance is associated with, or can be converted to, the specified format.

ParameterTypeDescription

format

Returns: Boolean.

Gets a list of all formats that data stored in this instance is associated with or can be converted to, using autoConvert to determine whether to retrieve all formats that the data can be converted to or' only native data formats.

ParameterTypeDescription

autoConvert

Returns: String[].

Gets a list of all formats that data stored in this instance is associated with or can be converted to.

Returns: String[].

Stores the specified data and its associated format in this instance, using autoConvert to specify whether the data can be converted to another format.

ParameterTypeDescription

format

autoConvert

data

Stores the specified data and its associated format in this instance.

ParameterTypeDescription

format

data

Stores the specified data and its associated class type in this instance.

ParameterTypeDescription

format

data

Stores the specified data in this instance, using the class of the data for the format.

ParameterTypeDescription

data

Implemented By

NameDescription

Implements a basic data transfer mechanism.

Last updated