Skip to content

Instantly share code, notes, and snippets.

@RyanABailey
Created September 23, 2015 00:56
Show Gist options
  • Select an option

  • Save RyanABailey/15a4789b90edc293c9f0 to your computer and use it in GitHub Desktop.

Select an option

Save RyanABailey/15a4789b90edc293c9f0 to your computer and use it in GitHub Desktop.
Sitecore get media item
var item = Sitecore.Context.Database.GetItem(mediaItemID);
if (item.Paths.IsMediaItem)
{
var mediaItem = new MediaItem(item);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment