Column Constructors

Definition

Overloads

Column()

Initializes a new instance of the Column class.

Column(String, ColumnDataType)

Initializes a new instance of the Column class.

Column()

Initializes a new instance of the Column class.

public Column ();
Public Sub New ()

Applies to

Column(String, ColumnDataType)

Initializes a new instance of the Column class.

public Column (string name, Microsoft.Azure.Management.ResourceGraph.Models.ColumnDataType type);
new Microsoft.Azure.Management.ResourceGraph.Models.Column : string * Microsoft.Azure.Management.ResourceGraph.Models.ColumnDataType -> Microsoft.Azure.Management.ResourceGraph.Models.Column
Public Sub New (name As String, type As ColumnDataType)

Parameters

name
String

Column name.

type
ColumnDataType

Column data type. Possible values include: 'string', 'integer', 'number', 'boolean', 'object'

Applies to