LogsTableRow.GetDateTimeOffset Method
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
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
Azure SDK for .NET