Advertisement
Guest User

binding

a guest
Apr 10th, 2013
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. namespace SIFOBindingiOS
  2. {
  3. [BaseType (typeof (NSObject))]
  4. interface TSMobileTagging {
  5. [Static]
  6. [Export ("createInstanceWithCPID:applicationName:")]
  7. TSMobileTagging CreateInstanceWithCPIDapplicationName (string CPID, string applicationName);
  8.  
  9. [Static]
  10. [NullAllowed]
  11. [IsThreadStatic]
  12. [Export ("getInstance")]
  13. TSMobileTagging Instance { get; }
  14.  
  15. [Export ("sendTagWithCategory:")]
  16. int SendTagWithCategory (string category);
  17.  
  18. [Static]
  19. [Export ("setLogPrintsActivated:")]
  20. void SetLogPrintsActivated (bool activated);
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement