Table of Contents

Class DataBlockMetadata

Namespace
Datafication.Server.Core.Registry
Assembly
Datafication.Server.Core.dll

Represents metadata associated with a registered DataBlock.

public class DataBlockMetadata
Inheritance
object
DataBlockMetadata

Properties

AccessPolicy

Gets or sets the access policy for this DataBlock.

public string? AccessPolicy { get; set; }

Property Value

string

Description

Gets or sets the description of the DataBlock.

public string? Description { get; set; }

Property Value

string

IsReadOnly

Gets or sets a value indicating whether this DataBlock is read-only.

public bool IsReadOnly { get; set; }

Property Value

bool

LastAccessedAt

Gets or sets the date and time when the DataBlock was last accessed.

public DateTime? LastAccessedAt { get; set; }

Property Value

DateTime?

Name

Gets or sets the display name for the DataBlock.

public string? Name { get; set; }

Property Value

string

Properties

Gets or sets additional custom properties.

public IDictionary<string, object> Properties { get; set; }

Property Value

IDictionary<string, object>

RegisteredAt

Gets or sets the date and time when the DataBlock was registered.

public DateTime RegisteredAt { get; set; }

Property Value

DateTime

Tags

Gets or sets the tags associated with the DataBlock.

public IEnumerable<string> Tags { get; set; }

Property Value

IEnumerable<string>