您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 35 個字
 
 
 

30 行
723 B

  1. using System;
  2. namespace CI.WSANative.Advertising
  3. {
  4. public static class WSANativeMediatorAd
  5. {
  6. public static Action AdRefreshed { get; set; }
  7. public static Action<string> ErrorOccurred { get; set; }
  8. public static void CreatAd(string wAppid, string wAdUnitId, string adDuplexAppKey, string adDuplexAdUnitId, int adDuplexWeight, int width, int height, WSAAdVerticalPlacement verticalPlacement, WSAAdHorizontalPlacement horizontalPlacement)
  9. {
  10. }
  11. public static void SetAdVisibility(bool visible)
  12. {
  13. }
  14. public static void DestroyAd()
  15. {
  16. }
  17. public static Action<WSAMediatorAdSettings> Create;
  18. public static Action<bool> SetVisiblity;
  19. public static Action Destroy;
  20. }
  21. }