コード例 #1
0
ファイル: Pubnub.cs プロジェクト: thomasderoo4/c-sharp
 public Pubnub(string publishKey, string subscribeKey)
 {
     pubnub = new PubnubUnity(publishKey, subscribeKey);
 }
コード例 #2
0
ファイル: Pubnub.cs プロジェクト: thomasderoo4/c-sharp
 public static DateTime TranslatePubnubUnixNanoSecondsToDateTime(long unixNanoSecondTime)
 {
     return(PubnubUnity.TranslatePubnubUnixNanoSecondsToDateTime(unixNanoSecondTime));
 }
コード例 #3
0
ファイル: Pubnub.cs プロジェクト: thomasderoo4/c-sharp
 public Pubnub(string publishKey, string subscribeKey, string secretKey, string cipherKey, bool sslOn)
 {
     pubnub = new PubnubUnity(publishKey, subscribeKey, secretKey, cipherKey, sslOn);
 }
コード例 #4
0
ファイル: Pubnub.cs プロジェクト: thomasderoo4/c-sharp
 public static long TranslateDateTimeToPubnubUnixNanoSeconds(DateTime dotNetUTCDateTime)
 {
     return(PubnubUnity.TranslateDateTimeToPubnubUnixNanoSeconds(dotNetUTCDateTime));
 }