Offer.GetLogo C# (CSharp) Method

GetLogo() public method

public GetLogo ( ) : string
return string
    public string GetLogo()
    {
        return logo;
    }

Usage Example

    public void SetOffer(Offer offer)
    {
        title.text = offer.GetName();
        type.text = "Type: " + offer.GetType();
        points.text = Convert.ToString(offer.GetPoints());

        if(offer.GetTier() != null) {
            tier.text = "Tier: " + offer.GetTier();
        }

        StartCoroutine (DownloadImage (offer.GetLogo()));
    }