Example #1
0
 public static string GetTitle(ITitleComponent that) => that.Value <string>("title");
Example #2
0
 /// <summary>Static getter for Title</summary>
 public static string GetTitle(ITitleComponent that)
 {
     return(that.GetPropertyValue <string>("title"));
 }
Example #3
0
 public static IHtmlString GetSubTitle(ITitleComponent that) => that.Value <IHtmlString>("subTitle");
Example #4
0
 /// <summary>Static getter for Subtitle</summary>
 public static IHtmlString GetSubtitle(ITitleComponent that)
 {
     return(that.GetPropertyValue <IHtmlString>("subtitle"));
 }