/// <summary>Static getter for Meta Name</summary>
 public static string GetMetaName(IMetaDataControls that)
 {
     return(that.GetPropertyValue <string>("metaName"));
 }
 /// <summary>Static getter for Meta Description</summary>
 public static string GetMetaDescription(IMetaDataControls that)
 {
     return(that.GetPropertyValue <string>("metaDescription"));
 }
 /// <summary>Static getter for Meta Keywords</summary>
 public static IEnumerable <string> GetMetaKeywords(IMetaDataControls that)
 {
     return(that.GetPropertyValue <IEnumerable <string> >("metaKeywords"));
 }