コード例 #1
0
ファイル: Pubnub.cs プロジェクト: Schonhoffer/Flannel
 public Pubnub(string publishKey, string subscribeKey, string secretKey, bool enableSsl)
     : this()
 {
     PubnubConfiguration = new PubnubConfiguration
     {
         PublishKey = publishKey,
         SubscribeKey = subscribeKey,
         SecretKey = secretKey,
         EnableSsl = enableSsl
     };
 }
コード例 #2
0
ファイル: Pubnub.cs プロジェクト: Schonhoffer/Flannel
 public Pubnub(PubnubConfiguration configuration)
     : this()
 {
     PubnubConfiguration = configuration;
 }