File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ public async Task VauHttpClientHandlerDoesDecryptionAndEncryptionWhenCallingAnAp
5757 }
5858
5959 [ Test ]
60- public void UsageWitIHttpClientFactory ( )
60+ public void UsageWithIHttpClientFactory ( )
6161 {
6262 var services = new ServiceCollection ( ) ;
6363 services . AddTransient < VauHttpClientHandler > ( ) ;
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ namespace lib_vau_csharp.data
2222{
2323 public class ConnectionId
2424 {
25- public string Cid { get ; private set ; }
25+ public string Cid { get ; }
2626 public ConnectionId ( string cid )
2727 {
2828 Cid = cid ;
@@ -32,6 +32,8 @@ public static ConnectionId CreateRandom()
3232 {
3333 return new ConnectionId ( ( DateTime . Now . Ticks / TimeSpan . TicksPerMillisecond ) . ToString ( ) ) ;
3434 }
35+
36+ public override string ToString ( ) => Cid ;
3537 }
3638
3739}
You can’t perform that action at this time.
0 commit comments