Exemplo n.º 1
0
 public RestNode(string certFile, string certPassword, NetworkPredefinedPorts networkId, string address)
     : base(certFile, certPassword, networkId, address)
 {
 }
Exemplo n.º 2
0
 public RestAbstractNode(string certFile, string certPassword, NetworkPredefinedPorts networkId = NetworkPredefinedPorts.MainNet, string address = "localhost")
     : this(certFile, certPassword, (ushort)networkId, address)
 {
 }
Exemplo n.º 3
0
 public RestNode(X509Certificate2 x509Certificate, NetworkPredefinedPorts networkId, string address)
     : base(x509Certificate, networkId, address)
 {
 }
Exemplo n.º 4
0
 public RestAbstractNode(X509Certificate2 x509Certificate, NetworkPredefinedPorts networkId = NetworkPredefinedPorts.MainNet, string address = "localhost")
     : this(x509Certificate, (ushort)networkId, address)
 {
 }