SalesBuy
1-855-856-7678
Technical SupportSupport
The From property specifies the start time for a time period from which to return diagnostic data, in UTC. For example, the following code snippet specifies a From time of one hour in the past:
// Specify the on-demand transfer options for the diagnostic data. OnDemandTransferOptions transferOptions = new OnDemandTransferOptions(); // Get data starting from an hour ago until now. transferOptions.From = DateTime.UtcNow.AddHours(1.0); transferOptions.To = DateTime.UtcNow;