Class BlobQueryArrowField
Describe a field in BlobQueryArrowOptions.
Inheritance
System.Object
BlobQueryArrowField
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Storage.Blobs.dll
Syntax
public class BlobQueryArrowField
Constructors
BlobQueryArrowField()
Declaration
public BlobQueryArrowField ();
Properties
Name
The name of the field. Optional.
Declaration
public string Name { get; set; }
Property Value
System.String
|
Precision
The precision of the field. Required if Type is Decimal.
Declaration
public int Precision { get; set; }
Property Value
System.Int32
|
Scale
The scale of the field. Required if Type is Decimal.
Declaration
public int Scale { get; set; }
Property Value
System.Int32
|
Type
The type of the field. Required.
Declaration
public Azure.Storage.Blobs.Models.BlobQueryArrowFieldType Type { get; set; }
Property Value
BlobQueryArrowFieldType
|