Ejemplo n.º 1
0
 public static string GetKey(this Blob document) => (document.FolderName + "/" + document.OwnerId()).KeepReplacing("//", "/").TrimStart("/");
Ejemplo n.º 2
0
 /// <summary>
 /// Determines whether this blob is an image.
 /// </summary>
 public static bool IsImage(this Blob doc)
 {
     return doc.FileExtension.ToLower().TrimStart(".")
         .IsAnyOf("jpg", "jpeg", "png", "bmp", "gif", "webp", "tiff", "svg");
 }