Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Routing to BLOB properties is an implementation of partial routing which makes it possible to extend routing beyond pages. The URL pattern to route to a BLOB property is <content url>/BlobPropertyName.
Consider a content model as follows:
/// <summary>
/// Base class for content types which should be handled as images by the system.
/// </summary>
public class ImageData : MediaData
{
/// <summary>
/// Gets or sets the generated thumbnail for this media.
/// </summary>
[ImageDescriptor(Width = 48, Height = 48)]
public override Blob Thumbnail
{
get { return base.Thumbnail; }
set { base.Thumbnail = value; }
}
}
Say then that there is an image created in CMS with an URL like http://site/GlobalMedia/Images/someimage.png. It is then possible to route to the thumbnail BLOB property on the image by the URL http://site/GlobalMedia/Images/someimage.png/thumbnail. Since the property has the attribute ImageDescriptor the Thumbnail BLOB will be automatically generated if it is null.
Last updated: Feb 23, 2015