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