System.Collections.ArrayList groups = VideoOS.Platform.Log.LogClient.Instance.ReadGroups(VideoOS.Platform.EnvironmentManager.Instance.MasterSite.ServerId);
VideoOS.Platform.Log.LogClient.Instance.ReadLog(
VideoOS.Platform.EnvironmentManager.Instance.MasterSite.ServerId,
i,
out _result,
out _names,
"Audit", fromDate.ToUniversalTime(),
toDate.ToUniversalTime());
var r = _result;
var n = _names;
totalResult.AddRange(_result);
When i get audit log from This code in component integration Local time field is in dd/MM/yyyy HH:mm:ss
But in Management client it is in dd-MM-yyyy HH:mm:ss
I want to create a date object by using this string. So how can i know what is the date format i will get in MIP SDK
Pls help