25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

22 lines
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. }