private static string CreateInnerId(Guid parentId, DateTimeOffset timestamp, Guid id)
 {
     return(DashboardBlobPrefixes.CreateByParentRelativePrefix(parentId) +
            RecentInvocationEntry.CreateBlobName(timestamp, id));
 }
        public IResultSegment <RecentInvocationEntry> Read(Guid parentId, int maximumResults, string continuationToken)
        {
            string relativePrefix = DashboardBlobPrefixes.CreateByParentRelativePrefix(parentId);

            return(_innerReader.Read(relativePrefix, maximumResults, continuationToken));
        }