Udostępnij za pośrednictwem


LogsTableRow.GetBoolean Method

Definition

Overloads

GetBoolean(Int32)

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

GetBoolean(String)

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

GetBoolean(Int32)

Source:
LogsTableRow.cs
Source:
LogsTableRow.cs

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

public bool? GetBoolean (int index);
member this.GetBoolean : int -> Nullable<bool>
Public Function GetBoolean (index As Integer) As Nullable(Of Boolean)

Parameters

index
Int32

The column index.

Returns

The Nullable<T> value of the column.

Applies to

GetBoolean(String)

Source:
LogsTableRow.cs
Source:
LogsTableRow.cs

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

public bool? GetBoolean (string name);
member this.GetBoolean : string -> Nullable<bool>
Public Function GetBoolean (name As String) As Nullable(Of Boolean)

Parameters

name
String

The column name.

Returns

The Nullable<T> value of the column.

Applies to