Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ObjectState.cs
1
using
Waher.Persistence.Attributes
;
2
using
Waher.Persistence.Serialization
;
3
4
namespace
Waher.Persistence.NeuroLedger
5
{
9
[TypeName(
TypeNameSerialization
.FullName)]
10
public
class
ObjectState
11
{
12
private
EntryType
type;
13
private
GenericObject
obj;
14
18
public
ObjectState
()
19
{
20
}
21
27
public
ObjectState
(
EntryType
Type
,
GenericObject
Object
)
28
{
29
this.type =
Type
;
30
this.obj =
Object
;
31
}
32
36
public
EntryType
Type
37
{
38
get
=> this.type;
39
set
=> this.type = value;
40
}
41
45
public
GenericObject
Object
46
{
47
get
=> this.obj;
48
set
=> this.obj = value;
49
}
50
}
51
}
Waher.Persistence.NeuroLedger.ObjectState
Represents an object state.
Definition:
ObjectState.cs:11
Waher.Persistence.NeuroLedger.ObjectState.Type
EntryType Type
Entry type
Definition:
ObjectState.cs:37
Waher.Persistence.NeuroLedger.ObjectState.ObjectState
ObjectState()
Represents an object state.
Definition:
ObjectState.cs:18
Waher.Persistence.NeuroLedger.ObjectState.ObjectState
ObjectState(EntryType Type, GenericObject Object)
Represents an object state.
Definition:
ObjectState.cs:27
Waher.Persistence.NeuroLedger.ObjectState.Object
GenericObject Object
Object
Definition:
ObjectState.cs:46
Waher.Persistence.Serialization.GenericObject
Generic object. Contains a sequence of properties.
Definition:
GenericObject.cs:13
Waher.Persistence.Attributes
Definition:
ArchivingTimeAttribute.cs:4
Waher.Persistence.Attributes.TypeNameSerialization
TypeNameSerialization
How the type name should be serialized.
Definition:
TypeNameAttribute.cs:9
Waher.Persistence.NeuroLedger
Definition:
BlockEnumerator.cs:5
Waher.Persistence.Serialization
Definition:
BinaryDeserializer.cs:5
Waher.Persistence.EntryType
EntryType
Ledger entry type.
Definition:
ILedgerEntry.cs:9
Neuro-Ledger
Waher.Persistence.NeuroLedger
ObjectState.cs
Generated by
1.9.5