Created
July 14, 2015 23:01
-
-
Save tmsimont/3a8dffd617d5f681cec4 to your computer and use it in GitHub Desktop.
Sitefinity Feather dump available variables in razor template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foreach (var item in Model.Items) | |
{ | |
PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(item.DataItem); | |
<ul> | |
foreach (PropertyDescriptor property in properties) | |
{ | |
<li>@property.Name</li> | |
} | |
</ul> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment