confluent-ksqldb-dotnet
Show / Hide Table of Contents

Class Schema

This class represents the schema of a response returned by the ksqlDB Server. This includes columns and each of their types.

Inheritance
System.Object
Schema
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)
Namespace: Confluent.KsqlDB.types
Assembly: cs.temp.dll.dll
Syntax
public class Schema

Constructors

Schema(IList<Column>)

Creates a new schema object with the given columns.

Declaration
public Schema(IList<Column> columns)
Parameters
Type Name Description
IList<Column> columns

The columns which represent the schema

Properties

Columns

The columns and their metadata

Declaration
public IList<Column> Columns { get; }
Property Value
Type Description
IList<Column>

Methods

ToString()

String form of the Schema

Declaration
public override string ToString()
Returns
Type Description
System.String

The string form of the schema

Overrides
System.Object.ToString()
In This Article