confluent-ksqldb-dotnet
Show / Hide Table of Contents

Class Field

Represents a field of a struct.

Inheritance
System.Object
Field
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 Field

Constructors

Field(SqlType, String)

Creates a new field

Declaration
public Field(SqlType sqlType, string name)
Parameters
Type Name Description
SqlType sqlType

The type of the field

System.String name

The same of the field

Properties

Name

The name of the field.

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

SqlType

The type of the field.

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