...
Method name | Description | Ex. of return value |
---|---|---|
GetMediaUrl() | Returns the media URL for the source file. | /media/512ffeba519249ff866095d7a25846ec/1-source |
GetMediaUrl(string mediaFormatId, int resizeWidth = 0, int resizeHeight = 0, bool keepAspectRatio = true, bool allowUpScale = false)) | Returns a media URL for the specified quality (mediaFormatId). You have the opportunity resize the image. By default the keepAspectRation is true and allowUpScale is false. | /media/512ffeba519249ff866095d7a25846ec/1-50044/resize/100x0/options/keepaspectratio |
GetDownloadUrl() | Returns the download URL for the source file. | /media/512ffeba519249ff866095d7a25846ec/1-source/options/download |
GetDownloadUrl(string mediaFormatId) | Returns the download URL for the specified quality (mediaFormatId). | /media/512ffeba519249ff866095d7a25846ec/1-50044/options/download |
GetDigizuiteStreamingUrl(string mediaFormatId) | Returns the direct streaming URL to Digizuite. Use this for video streams, can also be used for other types. If you use it for the type image, be aware that it does not use Sitecore cache. The link will contain a access token, which will expire, the default value is 24 hours. So dont make this URL static on your pages. | https://[DIGIZUITE URL]/Dmm3BWSV3/assetstream.aspx?assetid=23&mediaformatid=50052&destinationid=10010&accesskey=f0b020bc-81e3-4824-82e3-2e6c1d8f714c |
4.
...
1 How to retrieve metadata from a Sitecore item placed in the silo bucket
In order to retrieve the metadata for the silo item, you have to call a pipeline called: DFS.GetAssetMetadata
Code Block | ||||
---|---|---|---|---|
| ||||
var renderArgs = new GetAssetMetadataArgs { AssetItemId = item.ID, ContextLanguage = Sitecore.Context.Language };
CorePipeline.Run(PipelineNames.GetAssetMetadata, renderArgs);
if (renderArgs.AssetMetadata == null)
{
return;
}
var name = renderArgs.AssetMetadata.Name; |
4.2 How to retrieve metadata for the field type Asset
Code Block | ||||
---|---|---|---|---|
| ||||
AssetField assetField = Sitecore.Context.Item.Fields["Asset"]; var name = assetField.AssetMetadata.Name; |
4.
...
3 How to retrieve metadata for the field type AssetLink
Code Block | ||||
---|---|---|---|---|
| ||||
AssetlinkField assetLinkField = Sitecore.Context.Item.Fields["AssetLink"];
var name = assetLinkField.AssetMetadata.Name;
var htmlRenderLink = assetLinkField.RenderAsset(); |
4.
...
4 How to retrieve metadata for the field type AssetList
Code Block | ||||
---|---|---|---|---|
| ||||
AssetlistField assetList = Sitecore.Context.Item.Fields["AssetList"]; if (assetList != null) { foreach (var asset in assetList.Assets) { // To request the rendering html for the asset you call the // RenderAsset method. It returns an RenderFieldResult object var renderResultItem = asset.RenderAsset(); var title = asset.AssetMetadata.Name; var id = asset.AssetMetadata.AssetId; var assetTypeId = asset.AssetMetadata.AssetTypeId; var assetTypeName = asset.AssetMetadata.AssetTypeName; // Get dynamic metadata var someDynamicMetadata = asset.AssetMetadata["50343"]; } } |
4.
...
5 Update asset metadata not supported from code
Updating an items metadata is not supported from code. Use the editor in the DAM Explorer or Asset browser.