Class StoredOffset
The entity stored in the offset storage table.
Inherited Members
Namespace: Silverback.Database.Model
Assembly: Silverback.Integration.dll
Syntax
public class StoredOffset
Properties
| Improve this doc View sourceClrType
Gets or sets the assembly qualified name of the stored offset class.
Declaration
[MaxLength(300)]
public string? ClrType { get; set; }
Property Value
Type | Description |
---|---|
string |
Key
Gets or sets the offset key.
Declaration
[Key]
[MaxLength(300)]
public string Key { get; set; }
Property Value
Type | Description |
---|---|
string |
Offset
Gets or sets the serialized offset.
Declaration
[MaxLength(500)]
[Obsolete("Replaced by ClrType and Value.")]
public string? Offset { get; set; }
Property Value
Type | Description |
---|---|
string |
Remarks
This field is no longer used (replaced by ClrType and Value) and will be removed with the next major release.
Value
Gets or sets the offset value.
Declaration
[MaxLength(300)]
public string? Value { get; set; }
Property Value
Type | Description |
---|---|
string |