Show / Hide Table of Contents

    Class StoredOffset

    The entity stored in the offset storage table.

    Inheritance
    object
    StoredOffset
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Silverback.Database.Model
    Assembly: Silverback.Integration.dll
    Syntax
    public class StoredOffset

    Properties

    | Improve this doc View source

    ClrType

    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
    | Improve this doc View source

    Key

    Gets or sets the offset key.

    Declaration
    [Key]
    [MaxLength(300)]
    public string Key { get; set; }
    Property Value
    Type Description
    string
    | Improve this doc View source

    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.

    | Improve this doc View source

    Value

    Gets or sets the offset value.

    Declaration
    [MaxLength(300)]
    public string? Value { get; set; }
    Property Value
    Type Description
    string
    • Improve this doc
    • View source
    GitHub E-Mail
    ↑ Back to top © 2020 Sergio Aquilini