How can I get the date/time at which the item was last published.
I tried to create object for PublishInfoData inorder to use PublishedAt.
PublishInfoData pobj = csClient.Read(pageTCMID, readoptions) as PublishInfoData;
But this gives error like cannot convert IdentifiableObjectData to PublishInfoData.
Please suggest.
This will give you all publish info:
csClient.GetListPublishInfo(pageTCMID);
And then you have to select the latest:
var publishInfo = csClient.GetListPublishInfo(pageTCMID);
var lastPublishedAt = publishInfo.OrderByDescending(pi => pi.PublishedAt).First().PublishedAt;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With