示例#1
0
 private static string CreateInnerId(WebJobRunIdentifier webJobRunId, DateTimeOffset timestamp, Guid id)
 {
     return(DashboardBlobPrefixes.CreateByJobRunRelativePrefix(webJobRunId) +
            RecentInvocationEntry.CreateBlobName(timestamp, id));
 }
 private static string CreateInnerId(Guid parentId, DateTimeOffset timestamp, Guid id)
 {
     return(DashboardBlobPrefixes.CreateByParentRelativePrefix(parentId) +
            RecentInvocationEntry.CreateBlobName(timestamp, id));
 }
 private static string CreateInnerId(DateTimeOffset timestamp, Guid id)
 {
     return(RecentInvocationEntry.CreateBlobName(timestamp, id));
 }