Show / Hide Table of Contents

Class CsvFormatAttribute

The CSV format attribute.

Inheritance
object
AbstractFormatAttribute
CsvFormatAttribute
Inherited Members
AbstractFormatAttribute.IsFilePattern
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DataintegrationService.Models
Assembly: OCI.DotNetSDK.Dataintegration.dll
Syntax
public class CsvFormatAttribute : AbstractFormatAttribute

Properties

Delimiter

Declaration
[JsonProperty(PropertyName = "delimiter")]
public string Delimiter { get; set; }
Property Value
Type Description
string

The delimiter for the CSV format.

Encoding

Declaration
[JsonProperty(PropertyName = "encoding")]
public string Encoding { get; set; }
Property Value
Type Description
string

The encoding for the file.

EscapeCharacter

Declaration
[JsonProperty(PropertyName = "escapeCharacter")]
public string EscapeCharacter { get; set; }
Property Value
Type Description
string

The escape character for the CSV format.

HasHeader

Declaration
[JsonProperty(PropertyName = "hasHeader")]
public bool? HasHeader { get; set; }
Property Value
Type Description
bool?

Defines whether the file has a header row.

QuoteCharacter

Declaration
[JsonProperty(PropertyName = "quoteCharacter")]
public string QuoteCharacter { get; set; }
Property Value
Type Description
string

The quote character for the CSV format.

TimestampFormat

Declaration
[JsonProperty(PropertyName = "timestampFormat")]
public string TimestampFormat { get; set; }
Property Value
Type Description
string

Format for timestamp information.

In this article
Back to top