Share via


LogsTableRow.GetInt64 Method

Definition

Overloads

GetInt64(Int32)

Gets the value of the column at the specified index as Int64.

GetInt64(String)

Gets the value of the column with the specified name as Int64.

GetInt64(Int32)

Source:
LogsTableRow.cs
Source:
LogsTableRow.cs

Gets the value of the column at the specified index as Int64.

public long? GetInt64 (int index);
member this.GetInt64 : int -> Nullable<int64>
Public Function GetInt64 (index As Integer) As Nullable(Of Long)

Parameters

index
Int32

The column index.

Returns

The Nullable<T> value of the column.

Applies to

GetInt64(String)

Source:
LogsTableRow.cs
Source:
LogsTableRow.cs

Gets the value of the column with the specified name as Int64.

public long? GetInt64 (string name);
member this.GetInt64 : string -> Nullable<int64>
Public Function GetInt64 (name As String) As Nullable(Of Long)

Parameters

name
String

The column name.

Returns

The Nullable<T> value of the column.

Applies to