Show / Hide Table of Contents

Struct KustoEventHubDataFormat

The data format of the message. Optionally the data format can be added to each message.

Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.ResourceManager.Kusto.dll
Syntax
public struct KustoEventHubDataFormat : IEquatable<Azure.ResourceManager.Kusto.Models.KustoEventHubDataFormat>

Constructors

KustoEventHubDataFormat(String)

Initializes a new instance of KustoEventHubDataFormat.

Declaration
public KustoEventHubDataFormat (string value);
Parameters
System.String value

Exceptions
System.ArgumentNullException

value is null.

Properties

ApacheAvro

APACHEAVRO.

Declaration
public static Azure.ResourceManager.Kusto.Models.KustoEventHubDataFormat ApacheAvro { get; }
Property Value
KustoEventHubDataFormat

Avro

AVRO.

Declaration
public static Azure.ResourceManager.Kusto.Models.KustoEventHubDataFormat Avro { get; }
Property Value
KustoEventHubDataFormat

Csv

CSV.

Declaration
public static Azure.ResourceManager.Kusto.Models.KustoEventHubDataFormat Csv { get; }
Property Value
KustoEventHubDataFormat

Json

JSON.

Declaration
public static Azure.ResourceManager.Kusto.Models.KustoEventHubDataFormat Json { get; }
Property Value
KustoEventHubDataFormat

MultiJson

MULTIJSON.

Declaration
public static Azure.ResourceManager.Kusto.Models.KustoEventHubDataFormat MultiJson { get; }
Property Value
KustoEventHubDataFormat

Orc

ORC.

Declaration
public static Azure.ResourceManager.Kusto.Models.KustoEventHubDataFormat Orc { get; }
Property Value
KustoEventHubDataFormat

Parquet

PARQUET.

Declaration
public static Azure.ResourceManager.Kusto.Models.KustoEventHubDataFormat Parquet { get; }
Property Value
KustoEventHubDataFormat

Psv

PSV.

Declaration
public static Azure.ResourceManager.Kusto.Models.KustoEventHubDataFormat Psv { get; }
Property Value
KustoEventHubDataFormat

Raw

RAW.

Declaration
public static Azure.ResourceManager.Kusto.Models.KustoEventHubDataFormat Raw { get; }
Property Value
KustoEventHubDataFormat

Scsv

SCSV.

Declaration
public static Azure.ResourceManager.Kusto.Models.KustoEventHubDataFormat Scsv { get; }
Property Value
KustoEventHubDataFormat

SingleJson

SINGLEJSON.

Declaration
public static Azure.ResourceManager.Kusto.Models.KustoEventHubDataFormat SingleJson { get; }
Property Value
KustoEventHubDataFormat

Sohsv

SOHSV.

Declaration
public static Azure.ResourceManager.Kusto.Models.KustoEventHubDataFormat Sohsv { get; }
Property Value
KustoEventHubDataFormat

Tsv

TSV.

Declaration
public static Azure.ResourceManager.Kusto.Models.KustoEventHubDataFormat Tsv { get; }
Property Value
KustoEventHubDataFormat

Tsve

TSVE.

Declaration
public static Azure.ResourceManager.Kusto.Models.KustoEventHubDataFormat Tsve { get; }
Property Value
KustoEventHubDataFormat

Txt

TXT.

Declaration
public static Azure.ResourceManager.Kusto.Models.KustoEventHubDataFormat Txt { get; }
Property Value
KustoEventHubDataFormat

W3CLogFile

W3CLOGFILE.

Declaration
public static Azure.ResourceManager.Kusto.Models.KustoEventHubDataFormat W3CLogFile { get; }
Property Value
KustoEventHubDataFormat

Methods

Equals(KustoEventHubDataFormat)

Indicates whether the current object is equal to another object of the same type.

Declaration
public bool Equals (Azure.ResourceManager.Kusto.Models.KustoEventHubDataFormat other);
Parameters
KustoEventHubDataFormat other

An object to compare with this object.

Returns
System.Boolean

true if the current object is equal to the other parameter; otherwise, false.

Equals(Object)

Indicates whether this instance and a specified object are equal.

Declaration
[System.ComponentModel.EditorBrowsable]
public override bool Equals (object obj);
Parameters
System.Object obj

The object to compare with the current instance.

Returns
System.Boolean

true if obj and this instance are the same type and represent the same value; otherwise, false.

GetHashCode()

Returns the hash code for this instance.

Declaration
[System.ComponentModel.EditorBrowsable]
public override int GetHashCode ();
Returns
System.Int32

A 32-bit signed integer that is the hash code for this instance.

ToString()

Returns the fully qualified type name of this instance.

Declaration
public override string ToString ();
Returns
System.String

The fully qualified type name.

Operators

Equality(KustoEventHubDataFormat, KustoEventHubDataFormat)

Determines if two KustoEventHubDataFormat values are the same.

Declaration
public static bool operator == (Azure.ResourceManager.Kusto.Models.KustoEventHubDataFormat left, Azure.ResourceManager.Kusto.Models.KustoEventHubDataFormat right);
Parameters
KustoEventHubDataFormat left

KustoEventHubDataFormat right

Returns
System.Boolean

Implicit(String to KustoEventHubDataFormat)

Converts a System.String to a KustoEventHubDataFormat.

Declaration
public static implicit operator Azure.ResourceManager.Kusto.Models.KustoEventHubDataFormat (string value);
Parameters
System.String value

Returns
KustoEventHubDataFormat

Inequality(KustoEventHubDataFormat, KustoEventHubDataFormat)

Determines if two KustoEventHubDataFormat values are not the same.

Declaration
public static bool operator != (Azure.ResourceManager.Kusto.Models.KustoEventHubDataFormat left, Azure.ResourceManager.Kusto.Models.KustoEventHubDataFormat right);
Parameters
KustoEventHubDataFormat left

KustoEventHubDataFormat right

Returns
System.Boolean

Back to top Azure SDK for .NET