Skip to content

Instantly share code, notes, and snippets.

@mskutta
Created April 17, 2015 18:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mskutta/dbaf9709e9415983af69 to your computer and use it in GitHub Desktop.
Save mskutta/dbaf9709e9415983af69 to your computer and use it in GitHub Desktop.
Loading a media item from a Sitecore field.
Sitecore.Data.Fields.FileField file = item.Fields[<FieldName>];
if (file != null)
{
var mediaItem = file.MediaItem;
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment