public string GetBrandImageFileUrl(CobrandingAssetKey assetKey)
        {
            string @string = this.GetString(assetKey);

            if (string.IsNullOrEmpty(@string))
            {
                return(null);
            }
            return(this.GetBrandResourceUrlString() + @string);
        }
Ejemplo n.º 2
0
 public override string GetString(CobrandingAssetKey assetKey)
 {
     return(this.GetString(CobrandingAssetKeys.GetAssetKeyString(assetKey)));
 }
Ejemplo n.º 3
0
 public static string GetAssetKeyString(CobrandingAssetKey assetKey)
 {
     return(CobrandingAssetKeys.CobrandingAssetKeyMap[(int)assetKey]);
 }
 public abstract string GetString(CobrandingAssetKey assetKey);
 public bool HasAssetValue(CobrandingAssetKey assetKey)
 {
     return(!string.IsNullOrEmpty(this.GetString(assetKey)));
 }