Example #1
0
 private Endpoint(TransportProfile transportProfile, Uri address, X509Certificate certificate)
 {
     this.TransportProfile = transportProfile;
     this.Address          = address;
     this.Certificate      = certificate;
 }
Example #2
0
 public static Endpoint Of(TransportProfile transportProfile, Uri address, X509Certificate certificate)
 {
     return(new Endpoint(transportProfile, address, certificate));
 }