INamedDataFileObject<TObject> Interface

Specifies the properties and methods of objects in a data file.

Definition

Namespace: Extreme.Data
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
C#
public interface INamedDataFileObject<TObject> : IDataObject<TObject>
where TObject : Object, IDataObject<TObject>
Implements
IDataObject<TObject>

Type Parameters

TObject
The base type for the object.

Properties

Children Enumerates the children of the object.
(Inherited from IDataObject<TObject>)
ElementType Gets the element type of the object.
(Inherited from IDataObject<TObject>)
HasChildren Gets whether the object has children.
(Inherited from IDataObject<TObject>)
IsDataFrame Gets whether the object can be converted to a vector.
(Inherited from IDataObject<TObject>)
IsLoaded Gets whether the data for the object has been loaded.
(Inherited from IDataObject<TObject>)
IsMatrix Gets whether the object can be converted to a matrix.
(Inherited from IDataObject<TObject>)
IsVector Gets whether the object can be converted to a data frame.
(Inherited from IDataObject<TObject>)
Kind Gets the kind of object.
(Inherited from IDataObject<TObject>)
Name Gets the name of the object.
Value Gets the object's data value.
(Inherited from IDataObject<TObject>)

Methods

AsMatrix<T> Attempts to convert the object to a matrix with the specified element type.
(Inherited from IDataObject<TObject>)
AsVector<T> Attempts to convert the object to a vector with the specified element type.
(Inherited from IDataObject<TObject>)
Load Loads the object's data value.
(Inherited from IDataObject<TObject>)
ToDataFrame() Converts the object to a data frame.
(Inherited from IDataObject<TObject>)
ToMatrix<T> Converts the object to a matrix with the specified element type.
(Inherited from IDataObject<TObject>)
ToVector<T> Converts the object to a vector with the specified element type.
(Inherited from IDataObject<TObject>)

See Also