Search Results for

    Show / Hide Table of Contents

    Struct RelationMessageColumn

    Represents a column in a Logical Replication Protocol relation message

    Inherited Members
    ValueType.Equals(Object)
    ValueType.GetHashCode()
    ValueType.ToString()
    Object.Equals(Object, Object)
    Object.GetType()
    Object.ReferenceEquals(Object, Object)
    Namespace: Npgsql.Replication.PgOutput.Messages
    Assembly: Npgsql.dll
    Syntax
    public readonly struct RelationMessageColumn

    Properties

    ColumnName

    Name of the column.

    Declaration
    public readonly string ColumnName { get; }
    Property Value
    Type Description
    String

    DataTypeId

    ID of the column's data type.

    Declaration
    public readonly uint DataTypeId { get; }
    Property Value
    Type Description
    UInt32

    Flags

    Flags for the column. Currently can be either 0 for no flags or 1 which marks the column as part of the key.

    Declaration
    public readonly byte Flags { get; }
    Property Value
    Type Description
    Byte

    TypeModifier

    Type modifier of the column (atttypmod).

    Declaration
    public readonly int TypeModifier { get; }
    Property Value
    Type Description
    Int32
    In This Article
    Back to top © Copyright 2022 The Npgsql Development Team