How to query last modified video across libraries

Posted by Community Admin on 04-Aug-2018 12:56

How to query last modified video across libraries

All Replies

Posted by Community Admin on 09-Apr-2013 00:00

Hi,
Please help me to query last modified video across libraries.

Thanks,
Parimal

Posted by Community Admin on 12-Apr-2013 00:00

Hi Parimal,

You can use our Videos API to achieve the desired functionality, for example:

var allVideos = App.WorkWith().Videos().Get();
            if (allVideos != null)
            
                var lastModifiedVideo = allVideos.OrderBy(v => v.LastModified).First();
            


All the best,
Boyan Barnev
the Telerik team
Do you want to have your say in the Sitefinity development roadmap? Do you want to know when a feature you requested is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items

This thread is closed