示例#1
0
 public Pubnub(string publishKey, string subscribeKey)
 {
     pubnub = new PubnubUnity(publishKey, subscribeKey);
 }
示例#2
0
 public static DateTime TranslatePubnubUnixNanoSecondsToDateTime(long unixNanoSecondTime)
 {
     return(PubnubUnity.TranslatePubnubUnixNanoSecondsToDateTime(unixNanoSecondTime));
 }
示例#3
0
 public Pubnub(string publishKey, string subscribeKey, string secretKey, string cipherKey, bool sslOn)
 {
     pubnub = new PubnubUnity(publishKey, subscribeKey, secretKey, cipherKey, sslOn);
 }
示例#4
0
 public static long TranslateDateTimeToPubnubUnixNanoSeconds(DateTime dotNetUTCDateTime)
 {
     return(PubnubUnity.TranslateDateTimeToPubnubUnixNanoSeconds(dotNetUTCDateTime));
 }