Udostępnij za pośrednictwem


LogsTableRow.GetDateTimeOffset Method

Definition

Overloads

GetDateTimeOffset(Int32)

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

GetDateTimeOffset(String)

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

GetDateTimeOffset(Int32)

Source:
LogsTableRow.cs
Source:
LogsTableRow.cs

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

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

Parameters

index
Int32

The column index.

Returns

The Nullable<T> value of the column.

Applies to

GetDateTimeOffset(String)

Source:
LogsTableRow.cs
Source:
LogsTableRow.cs

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

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

Parameters

name
String

The column name.

Returns

The Nullable<T> value of the column.

Applies to