public Pubnub(string publishKey, string subscribeKey) { pubnub = new PubnubUnity(publishKey, subscribeKey); }
public static DateTime TranslatePubnubUnixNanoSecondsToDateTime(long unixNanoSecondTime) { return(PubnubUnity.TranslatePubnubUnixNanoSecondsToDateTime(unixNanoSecondTime)); }
public Pubnub(string publishKey, string subscribeKey, string secretKey, string cipherKey, bool sslOn) { pubnub = new PubnubUnity(publishKey, subscribeKey, secretKey, cipherKey, sslOn); }
public static long TranslateDateTimeToPubnubUnixNanoSeconds(DateTime dotNetUTCDateTime) { return(PubnubUnity.TranslateDateTimeToPubnubUnixNanoSeconds(dotNetUTCDateTime)); }