confluent-ksqldb-dotnet
Show / Hide Table of Contents

Class MapSqlType

Represents a map type from ksqlDB.

Inheritance
System.Object
MapSqlType
Implements
SqlType
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.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Confluent.KsqlDB.types
Assembly: cs.temp.dll.dll
Syntax
public class MapSqlType : SqlType

Constructors

MapSqlType(SqlType, SqlType)

Creates a map SQL type.

Declaration
public MapSqlType(SqlType keyType, SqlType valueType)
Parameters
Type Name Description
SqlType keyType
SqlType valueType

Properties

KeyType

The key type of the map objects

Declaration
public SqlType KeyType { get; }
Property Value
Type Description
SqlType

ValueType

The value type of the map objects

Declaration
public SqlType ValueType { get; }
Property Value
Type Description
SqlType

Explicit Interface Implementations

SqlType.SqlTypeEnum

Declaration
SqlTypeEnum SqlType.SqlTypeEnum { get; }
Returns
Type Description
SqlTypeEnum

Implements

SqlType
In This Article