File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -89,6 +89,7 @@ public class ConnectionParameters : ICloneable
89
89
private ushort m_requestedChannelMax = DefaultChannelMax ;
90
90
private uint m_requestedFrameMax = DefaultFrameMax ;
91
91
private ushort m_requestedHeartbeat = DefaultHeartbeat ;
92
+ private SslOption m_ssl = new SslOption ( ) ;
92
93
93
94
///<summary>Construct a fresh instance, with all fields set to
94
95
///their respective defaults.</summary>
@@ -136,6 +137,13 @@ public ushort RequestedHeartbeat
136
137
set { m_requestedHeartbeat = value ; }
137
138
}
138
139
140
+ ///<summary>Ssl options setting</summary>
141
+ public SslOption Ssl
142
+ {
143
+ get { return m_ssl ; }
144
+ set { m_ssl = value ; }
145
+ }
146
+
139
147
///<summary>Implement ICloneable.Clone by delegating to our type-safe variant.</summary>
140
148
object ICloneable . Clone ( )
141
149
{
You can’t perform that action at this time.
0 commit comments