You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When setting MillisecondsInTimeStamp to false it will affect inner time stamps only like SendingTime
However it will not affect any application level timestamp
For example in FIX4.2 :
var request = new OrderCancelRequest();
// Ignores the millisecond directive
request.SetField(new TransactTime(DateTime.Now));
// A workaround --> override the millisecond directive
request.SetField(new TransactTime(DateTime.Now, false));
The text was updated successfully, but these errors were encountered:
When setting MillisecondsInTimeStamp to false it will affect inner time stamps only like SendingTime
However it will not affect any application level timestamp
For example in FIX4.2 :
var request = new OrderCancelRequest();
// Ignores the millisecond directive
request.SetField(new TransactTime(DateTime.Now));
// A workaround --> override the millisecond directive
request.SetField(new TransactTime(DateTime.Now, false));
The text was updated successfully, but these errors were encountered: