Exemplo n.º 1
0
 public ResponseBuilder(PNConfiguration pubnubConfig, IJsonPluggableLibrary jsonPluggableLibrary, IPubnubLog log)
 {
     this.config    = pubnubConfig;
     this.jsonLib   = jsonPluggableLibrary;
     this.pubnubLog = log;
 }
Exemplo n.º 2
0
 public PubnubHttp(PNConfiguration config, IJsonPluggableLibrary jsonPluggableLibrary, IPubnubLog log, EndPoint.TelemetryManager telemetryManager, HttpClient refHttpClientSubscribe, HttpClient refHttpClientNonsubscribe)
Exemplo n.º 3
0
 public StatusBuilder(PNConfiguration pubnubConfig, IJsonPluggableLibrary jsonPluggableLibrary)
 {
     config      = pubnubConfig;
     jsonLibrary = jsonPluggableLibrary;
 }
Exemplo n.º 4
0
 public PubnubHttp(PNConfiguration config, IJsonPluggableLibrary jsonPluggableLibrary)
 {
     pubnubConfig = config;
     jsonLib      = jsonPluggableLibrary;
 }
Exemplo n.º 5
0
 public ResponseBuilder(PNConfiguration pubnubConfig, IJsonPluggableLibrary jsonPluggableLibrary)
 {
     this.config  = pubnubConfig;
     this.jsonLib = jsonPluggableLibrary;
 }
Exemplo n.º 6
0
 public PubnubHttp(PNConfiguration config, IJsonPluggableLibrary jsonPluggableLibrary, IPubnubLog log, HttpClient refHttpClientSubscribe, HttpClient refHttpClientNonsubscribe)
Exemplo n.º 7
0
 public PubnubCrypto(string cipher_key, PNConfiguration pubnubConfig)
     : base(cipher_key)
 {
     this.config = pubnubConfig;
 }
Exemplo n.º 8
0
 public PubnubCrypto(string cipher_key, PNConfiguration pubnubConfig, IPubnubLog log)
     : base(cipher_key)
 {
     this.config    = pubnubConfig;
     this.pubnubLog = log;
 }
Exemplo n.º 9
0
 public ClientNetworkStatus(PNConfiguration config, IJsonPluggableLibrary jsonPluggableLibrary, IPubnubUnitTest pubnubUnit, IPubnubLog log, HttpClient refHttpClient)
Exemplo n.º 10
0
 public UrlRequestBuilder(PNConfiguration config, IJsonPluggableLibrary jsonPluggableLibrary)
 {
     this.pubnubConfig = config;
     this.jsonLib      = jsonPluggableLibrary;
 }
Exemplo n.º 11
0
 public UrlRequestBuilder(PNConfiguration config, IJsonPluggableLibrary jsonPluggableLibrary, IPubnubUnitTest pubnubUnitTest)
 {
     this.pubnubConfig   = config;
     this.jsonLib        = jsonPluggableLibrary;
     this.pubnubUnitTest = pubnubUnitTest;
 }
Exemplo n.º 12
0
 public UrlRequestBuilder(PNConfiguration config)
 {
     this.pubnubConfig = config;
 }
Exemplo n.º 13
0
 protected PubnubCryptoBase(string cipher_key)
 {
     this.cipherKey = cipher_key;
     this.config    = null;
 }
Exemplo n.º 14
0
 protected PubnubCryptoBase(string cipher_key, PNConfiguration pubnubConfig)
 {
     this.cipherKey = cipher_key;
     this.config    = pubnubConfig;
 }
Exemplo n.º 15
0
 public ClientNetworkStatus(PNConfiguration config, IJsonPluggableLibrary jsonPluggableLibrary, IPubnubUnitTest pubnubUnit)
 {
     pubnubConfig = config;
     jsonLib      = jsonPluggableLibrary;
     unit         = pubnubUnit;
 }
Exemplo n.º 16
0
 public ClientNetworkStatus(PNConfiguration config, IJsonPluggableLibrary jsonPluggableLibrary)
 {
     pubnubConfig = config;
     jsonLib      = jsonPluggableLibrary;
 }