Specifies the properties and methods of objects
in a data file or stream.
Namespace:
Extreme.Data
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public interface IDataObject<TObject>
where TObject : Object, IDataObject<TObject>
Public Interface IDataObject(Of TObject As {Object, IDataObject(Of TObject)})
generic<typename TObject>
where TObject : Object, IDataObject<TObject>
public interface class IDataObject
type IDataObject<'TObject when 'TObject : Object and IDataObject<'TObject>> = interface end
Type Parameters
- TObject
- The base type for the object.
The IDataObjectTObject type exposes the following members.
| Name | Description |
---|
 | Children |
Enumerates the children of the object.
|
 | ElementType |
Gets the element type of the object.
|
 | HasChildren |
Gets whether the object has children.
|
 | IsDataFrame |
Gets whether the object can be converted to a vector.
|
 | IsLoaded |
Gets whether the data for the object has been loaded.
|
 | IsMatrix |
Gets whether the object can be converted to a matrix.
|
 | IsVector |
Gets whether the object can be converted to a data frame.
|
 | Kind |
Gets the kind of object.
|
 | Value |
Gets the object's data value.
|
Top
| Name | Description |
---|
 | AsMatrixT |
Attempts to convert the object to a matrix with the specified element type.
|
 | AsVectorT |
Attempts to convert the object to a vector with the specified element type.
|
 | Load |
Loads the object's data value.
|
 | ToDataFrame |
Converts the object to a data frame.
|
 | ToDataFrameR, C |
Converts the object to a data frame.
|
 | ToMatrixT |
Converts the object to a matrix with the specified element type.
|
 | ToVectorT |
Converts the object to a vector with the specified element type.
|
Top
Reference