Search Results for

    Show / Hide Table of Contents

    Class ReplicationSystemIdentification

    Contains server identification information returned from IdentifySystem(CancellationToken).

    Inheritance
    object
    ReplicationSystemIdentification
    Namespace: Npgsql.Replication
    Assembly: Npgsql.dll
    Syntax
    public class ReplicationSystemIdentification

    Properties

    | Improve this Doc View Source

    DbName

    Database connected to.

    Declaration
    public string? DbName { get; }
    Property Value
    Type Description
    string?
    | Improve this Doc View Source

    SystemId

    The unique system identifier identifying the cluster. This can be used to check that the base backup used to initialize the standby came from the same cluster.

    Declaration
    public string SystemId { get; }
    Property Value
    Type Description
    string
    | Improve this Doc View Source

    Timeline

    Current timeline ID. Also useful to check that the standby is consistent with the master.

    Declaration
    public uint Timeline { get; }
    Property Value
    Type Description
    uint
    | Improve this Doc View Source

    XLogPos

    Current WAL flush location. Useful to get a known location in the write-ahead log where streaming can start.

    Declaration
    public NpgsqlLogSequenceNumber XLogPos { get; }
    Property Value
    Type Description
    NpgsqlLogSequenceNumber
    • Improve this Doc
    • View Source
    In This Article
    Back to top © Copyright 2023 The Npgsql Development Team