View.retrieve

Retrieves the generated result of a view. This should generally only be used to render partial views into another view.

  1. string retrieve(string name, string sectionName)
    class View
    final
    string
    retrieve
    (
    string name
    ,
    string sectionName = ""
    )
  2. string retrieve(string sectionName)

Parameters

name string

The name of the view to generate the result of.

sectionName string

The name of the setion to retrieve the generated result of.

Return Value

Type: string

A string qeuivalent to the generated result.

Meta