File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
projects/client/Unit/src/unit Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ namespace RabbitMQ.Client
15
15
public int Port { get; set; }
16
16
public RabbitMQ.Client.IProtocol Protocol { get; }
17
17
public RabbitMQ.Client.SslOption Ssl { get; set; }
18
+ public RabbitMQ.Client.SslOption Tls { get; set; }
18
19
public object Clone() { }
19
20
public RabbitMQ.Client.AmqpTcpEndpoint CloneWithHostname(string hostname) { }
20
21
public override bool Equals(object obj) { }
@@ -112,6 +113,7 @@ namespace RabbitMQ.Client
112
113
public System.TimeSpan SocketReadTimeout { get; set; }
113
114
public System.TimeSpan SocketWriteTimeout { get; set; }
114
115
public RabbitMQ.Client.SslOption Ssl { get; set; }
116
+ public RabbitMQ.Client.SslOption Tls { get; set; }
115
117
public bool TopologyRecoveryEnabled { get; set; }
116
118
public System.Uri Uri { get; set; }
117
119
public bool UseBackgroundThreadsForIO { get; set; }
@@ -548,7 +550,7 @@ namespace RabbitMQ.Client
548
550
}
549
551
public class SslHelper
550
552
{
551
- public static System.IO.Stream TcpUpgrade(System.IO.Stream tcpStream, RabbitMQ.Client.SslOption sslOption ) { }
553
+ public static System.IO.Stream TcpUpgrade(System.IO.Stream tcpStream, RabbitMQ.Client.SslOption options ) { }
552
554
}
553
555
public class SslOption
554
556
{
You can’t perform that action at this time.
0 commit comments