Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
TokenReferences.cs
1using System;
3
5{
10 [TypeName(TypeNameSerialization.FullName)]
11 public class TokenReferences
12 {
16 public const int MaxReferences= 100;
17
23 {
24 }
25
29 public uint LastBlock { get; set; }
30
34 public ulong[] ObjectReferences { get; set; }
35
39 public uint[] Counts { get; set; }
40
44 public DateTime[] Timestamps { get; set; }
45 }
46}
Contains a sequence of object references that include the token in its indexed text properties.
DateTime[] Timestamps
Timestamps when corresponding object refernces were indexed.
uint[] Counts
Token counts for respective object reference.
ulong[] ObjectReferences
References to objects containing the token.
uint LastBlock
Index to last block in index representing the same token.
const int MaxReferences
Maximum amount of references in a block (100).
TokenReferences()
Contains a sequence of object references that include the token in its indexed text properties.
TypeNameSerialization
How the type name should be serialized.