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