您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

22 行
449 B

  1. using System;
  2. using System.Collections.Generic;
  3. namespace CI.WSANative.Engagement
  4. {
  5. public static class WSANativeEngagement
  6. {
  7. public static bool IsFeedbackHubSupported()
  8. {
  9. return false;
  10. }
  11. public static void ShowFeedbackHub(Dictionary<string, string> feedbackProperties = null)
  12. {
  13. }
  14. public static Action<Dictionary<string, string>> _ShowFeedbackHub;
  15. public static Func<bool> _IsFeedbackHubSupported;
  16. }
  17. }