confluent-ksqldb-dotnet
Show / Hide Table of Contents

Interface IBatchedQueryResult

The result returned from issuing a query.

Namespace: Confluent.KsqlDb
Assembly: cs.temp.dll.dll
Syntax
public interface IBatchedQueryResult

Properties

QueryId

The query id for this particular query

Declaration
string QueryId { get; }
Property Value
Type Description
System.String

Rows

The resulting rows returned in a list

Declaration
IList<IRow> Rows { get; }
Property Value
Type Description
IList<IRow>

Schema

The schema for this query's result.

Declaration
Schema Schema { get; }
Property Value
Type Description
Schema
In This Article