I got below code snippet from Quick start sample code:
Date = new DSDate()
{
Kind = DSDateKind.TimeSeries,
Start = "-30D",
End = "-10D",
Frequency = DSDateFrequencyNames.D.ToString()
}
But I want to make a request for a single date.
I found below examples from the link http://product.datastream.com/dswsclient/Docs/AboutNetApi.aspx
// Date (Snapshot) // An absolute date var date1 = new DSSnapshotDate(DSDateType.Absolute(DateTime.Now));
But I dont have DSSnapshotDate class in my datastream service reference.
Is there any other way by which I can make a single request for (Today-1) date using the 1st example that was mentioned in Quick start sample code ?