public static void show(string tag)
 {
     HZVideoAd.ShowWithOptions(new HZIncentivizedShowOptions
     {
         Tag = tag
     });
 }
Exemplo n.º 2
0
        public static void show(string tag)
        {
            HZIncentivizedShowOptions showOptions = new HZIncentivizedShowOptions();

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