BlobService.Get Method
- Namespace:
- Weavy.Core.Services
- Assembly:
- Weavy.Core.dll
Overloads
Get(IEnumerable |
Get meta data for the specified blobs. |
Get(int, bool) | Get meta data for the specified blob. |
Get(string, bool) | Get meta data for the specified blob. |
Get(IEnumerable, bool)
Get meta data for the specified blobs.
public static IEnumerable<Blob> Get(IEnumerable<int> ids, bool sudo = false)
Parameters
- ids
- System.Collections.Generic.IEnumerable
Ids of the blobs.
- sudo
- bool
true
to perform action as super user, otherwise false
.
Returns
System.Collections.Generic.IEnumerable
A list of Blob objects.
Get(int, bool)
Get meta data for the specified blob.
public static Blob Get(int id, bool sudo = false)
Parameters
- id
- int
Id of the blob.
- sudo
- bool
true
to perform action as super user, otherwise false
.
Returns
Get(string, bool)
Get meta data for the specified blob.
public static Blob Get(string etag, bool sudo = false)
Parameters
- etag
- string
ETag of the blob.
- sudo
- bool
true
to perform action as super user, otherwise false
.