Skip to content

Commit

Permalink
make internal ctor of sessionconfiguration public (#2488)
Browse files Browse the repository at this point in the history
so a custom implementation of session can call the constructor
  • Loading branch information
KircMax authored Feb 1, 2024
1 parent b88ba00 commit ee38c34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Libraries/Opc.Ua.Client/SessionConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class SessionConfiguration
/// <summary>
/// Creates a session configuration
/// </summary>
internal SessionConfiguration(ISession session, byte[] serverNonce, NodeId authenthicationToken)
public SessionConfiguration(ISession session, byte[] serverNonce, NodeId authenthicationToken)
{
Timestamp = DateTime.UtcNow;
SessionName = session.SessionName;
Expand Down

0 comments on commit ee38c34

Please sign in to comment.