Gets the value for the specified key converted to a DateTimeOffset
. This method never throws an exception. It will return the specified
default value if the key is not found.
Syntax
public static DateTimeOffset GetDateTimeOffset(this IMetadata metadata, string key, in DateTimeOffset defaultValue = default(DateTimeOffset))
Parameters
Name |
Type |
Description |
metadata |
IMetadata |
The metadata instance. |
key |
string |
The key of the value to get. |
defaultValue |
DateTimeOffset |
The default value to use if the key is not found or cannot be converted to a DateTimeOffset . |
Return Value
Type |
Description |
DateTimeOffset |
The value for the specified key converted to a DateTimeOffset or the specified default value. |