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