/// <summary>Static getter for Meta description</summary> public static string GetMetaDescription(ISeo that) { return(that.GetPropertyValue <string>("metaDescription")); }
/// <summary>Static getter for Page Title</summary> public static string GetPageTitle(ISeo that) { return(that.GetPropertyValue <string>("pageTitle")); }
/// <summary>Static getter for Meta title</summary> public static string GetMetaTitle(ISeo that) { return(that.GetPropertyValue <string>("metaTitle")); }
/// <summary>Static getter for Open Graph image</summary> public static string GetOgImage(ISeo that) { return(that.GetPropertyValue <string>("ogImage")); }
/// <summary>Static getter for No index</summary> public static bool GetNoIndex(ISeo that) { return(that.GetPropertyValue <bool>("noIndex")); }