Interface IBlobUriResolver
Can be implmented by a ContentProvider that supports versioned content. When implemented can blobs that are no longer used (because the version that referenced the blob has been deleted) be deleted.
Namespace: EPiServer.Core
Assembly: EPiServer.dll
Version: 12.0.3Syntax
public interface IBlobUriResolver
Methods
ListVersionsForBlobUris(IEnumerable<Uri>)
Should return all references to all versions that has a reference to specified blob uris.
Declaration
IEnumerable<BlobUriReference> ListVersionsForBlobUris(IEnumerable<Uri> blobUris)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Collections.Generic.IEnumerable<System.Uri> | blobUris | The blob uris to check versions for |
Returns
| Type | Description |
|---|---|
| System.Collections.Generic.IEnumerable<BlobUriReference> | A list of versions referencing the uris |