File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Libraries/Opc.Ua.Client/Session Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1445,7 +1445,7 @@ public async Task UpdateSessionAsync(
14451445 identity . TokenType ,
14461446 identity . IssuedTokenType ,
14471447 securityPolicyUri ,
1448- [ .. m_configuration . SecurityConfiguration . SupportedSecurityPolicies ] )
1448+ [ .. m_configuration . SecurityConfiguration . SupportedSecurityPolicies ?? [ ] ] )
14491449 ?? throw ServiceResultException . Create (
14501450 StatusCodes . BadIdentityTokenRejected ,
14511451 "Endpoint does not support the user identity type provided." ) ;
@@ -2326,7 +2326,7 @@ public async Task ReconnectAsync(
23262326 m_identity . TokenType ,
23272327 m_identity . IssuedTokenType ,
23282328 endpoint . SecurityPolicyUri ,
2329- [ .. m_configuration . SecurityConfiguration . SupportedSecurityPolicies ] ) ;
2329+ [ .. m_configuration . SecurityConfiguration . SupportedSecurityPolicies ?? [ ] ] ) ;
23302330
23312331 if ( identityPolicy == null )
23322332 {
@@ -3794,7 +3794,7 @@ private void OpenValidateIdentity(
37943794 identity . TokenType ,
37953795 identity . IssuedTokenType ,
37963796 securityPolicyUri ,
3797- [ .. m_configuration . SecurityConfiguration . SupportedSecurityPolicies ] ) ;
3797+ [ .. m_configuration . SecurityConfiguration . SupportedSecurityPolicies ?? [ ] ] ) ;
37983798
37993799 if ( identityPolicy == null )
38003800 {
You can’t perform that action at this time.
0 commit comments