public static void show(string tag) { HZVideoAd.ShowWithOptions(new HZIncentivizedShowOptions { Tag = tag }); }
public static void show(string tag) { HZIncentivizedShowOptions showOptions = new HZIncentivizedShowOptions(); showOptions.Tag = tag; HZVideoAd.ShowWithOptions(showOptions);; }
//provided since JS can't use default parameters /// <summary> /// Shows an ad with the default options. /// </summary> public static void Show() { HZVideoAd.ShowWithOptions(null); }