Column Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Column() |
Initializes a new instance of the Column class. |
Column(String, String, String, String, String, Nullable<Boolean>, Nullable<Boolean>) |
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, String, String, String, String, Nullable<Boolean>, Nullable<Boolean>)
Initializes a new instance of the Column class.
public Column (string name = default, string type = default, string dataTypeHint = default, string displayName = default, string description = default, bool? isDefaultDisplay = default, bool? isHidden = default);
new Microsoft.Azure.Management.OperationalInsights.Models.Column : string * string * string * string * string * Nullable<bool> * Nullable<bool> -> Microsoft.Azure.Management.OperationalInsights.Models.Column
Public Sub New (Optional name As String = Nothing, Optional type As String = Nothing, Optional dataTypeHint As String = Nothing, Optional displayName As String = Nothing, Optional description As String = Nothing, Optional isDefaultDisplay As Nullable(Of Boolean) = Nothing, Optional isHidden As Nullable(Of Boolean) = Nothing)
Parameters
- name
- String
Column name.
- type
- String
Column data type. Possible values include: 'string', 'int', 'long', 'real', 'boolean', 'dateTime', 'guid', 'dynamic'
- dataTypeHint
- String
Column data type logical hint. Possible values include: 'uri', 'guid', 'armPath', 'ip'
- displayName
- String
Column display name.
- description
- String
Column description.
Applies to
Azure SDK for .NET