Class Render
Block-Rendering system. It's responsible for taking a Block and delivering HTML for the output. 
It's used for InnerContent, so that Razor-Code can easily render additional content blocks. 
See also Inner Content (Content Within Other Content)
[InternalApi_DoNotUse_MayChangeWithoutNotice]
[Obsolete("Deprecated in v12 - please use IRenderService instead - will not work in v12 Base classes like Razor12")]
public class Render
  - Inheritance
 - 
      objectRender
 
Methods
All(DynamicEntity, NoParamOrder, string, string, int, string)
Render content-blocks into a larger html-block containing placeholders
public static IRawHtmlString All(DynamicEntity parent, NoParamOrder noParamOrder = default, string field = null, string apps = null, int max = 100, string merge = null)
  Parameters
parentDynamicEntityThe parent-item containing the content-blocks and providing edit-context
noParamOrderNoParamOrderfieldstringRequired: Field containing the content-blocks.
appsstringBETA / WIP
maxintBETA / WIP
mergestringOptional: html-text containing special placeholders.
Returns
- IRawHtmlString
 
Remarks
- Changed result object to 
IRawHtmlStringin v16.02 fromIHybridHtmlString 
One(DynamicEntity, NoParamOrder, ICanBeEntity, string, Guid?)
Render one content block This is accessed through DynamicEntity.Render() At the moment it MUST stay internal, as it's not clear what API we want to surface
public static IRawHtmlString One(DynamicEntity parent, NoParamOrder noParamOrder = default, ICanBeEntity item = null, string field = null, Guid? newGuid = null)
  Parameters
parentDynamicEntityThe parent-item containing the content-blocks and providing edit-context
noParamOrderNoParamOrderitemICanBeEntityThe content-block item to render. Optional, by default the same item is used as the context.
fieldstringOptional:
newGuidGuid?Internal: this is the guid given to the item when being created in this block. Important for the inner-content functionality to work.
Returns
- IRawHtmlString
 
Remarks
- Changed result object to 
IRawHtmlStringin v16.02 fromIHybridHtmlString