Class StoredOffset
The entity stored in the offset storage table.
Inheritance
System.Object
StoredOffset
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
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 |
---|---|
System.String |
Key
Gets or sets the offset key.
Declaration
[Key]
[MaxLength(300)]
public string Key { get; set; }
Property Value
Type | Description |
---|---|
System.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 |
---|---|
System.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 |
---|---|
System.String |