Table of Contents

Class DataBlockSnapshot

Namespace
Datafication.Core.Data
Assembly
Datafication.Core.dll

Represents a serializable snapshot of a DataBlock's structure and data.

[Serializable]
[DataContract]
public class DataBlockSnapshot
Inheritance
object
DataBlockSnapshot

Constructors

DataBlockSnapshot()

Initializes a new instance of the DataBlockSnapshot class.

public DataBlockSnapshot()

DataBlockSnapshot(DataBlock)

Initializes a new instance of the DataBlockSnapshot class from an existing DataBlock.

public DataBlockSnapshot(DataBlock dataBlock)

Parameters

dataBlock DataBlock

The DataBlock to create a snapshot from.

Properties

Column

Gets or sets the list of columns in the snapshot.

[DataMember]
public List<DataColumn> Column { get; set; }

Property Value

List<DataColumn>