forwardTryGetHighResolutionTimeSpan Method    Table of ContentTryGetInteger Method forward
Group.TryGetHighResolutionTimestamp Method
Converts the field value with the given format to its HighResolutionTimestamp equivalent. A returned value indicates whether the operation succeeded.

Namespace:  FIXForge.NET.FIX
Assembly:  FIXForge.NET.FIX.Engine-net-4.8_x64 (in FIXForge.NET.FIX.Engine-net-4.8_x64.dll) Version: 4.10.1.0
Syntax
C#
public bool TryGetHighResolutionTimestamp(
	int tag,
	int repeatingGroupEntryIndex,
	TimestampFormat format,
	out HighResolutionTimestamp result
)

Parameters

tag
Type: System.Int32
Tag number.
repeatingGroupEntryIndex
Type: System.Int32
Index of the repeating group entry (starts at 0).
format
Type: FIXForge.NET.FIX.TimestampFormat
Timestamp format.
result
Type: FIXForge.NET.FIX.HighResolutionTimestamp
When this method returns, contains the DateTime equivalent to the field value, if the conversion succeeded, or an undefined value if the conversion failed. The conversion fails if the field value is absent or its length is not 1. This parameter is passed uninitialized.

Return Value

Type: Boolean
true if the field value was converted successfully; otherwise - false.
See Also