Skip to content

Commit

Permalink
make the ctors of the eventargs in session public (#2483)
Browse files Browse the repository at this point in the history
so a custom implementation of session can use it
  • Loading branch information
KircMax authored Feb 1, 2024
1 parent ee38c34 commit ff298be
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Libraries/Opc.Ua.Client/Session.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6298,7 +6298,7 @@ public class KeepAliveEventArgs : EventArgs
/// <summary>
/// Creates a new instance.
/// </summary>
internal KeepAliveEventArgs(
public KeepAliveEventArgs(
ServiceResult status,
ServerState currentState,
DateTime currentTime)
Expand Down Expand Up @@ -6354,7 +6354,7 @@ public class NotificationEventArgs : EventArgs
/// <summary>
/// Creates a new instance.
/// </summary>
internal NotificationEventArgs(
public NotificationEventArgs(
Subscription subscription,
NotificationMessage notificationMessage,
IList<string> stringTable)
Expand Down Expand Up @@ -6400,7 +6400,7 @@ public class PublishErrorEventArgs : EventArgs
/// <summary>
/// Creates a new instance.
/// </summary>
internal PublishErrorEventArgs(ServiceResult status)
public PublishErrorEventArgs(ServiceResult status)
{
m_status = status;
}
Expand Down Expand Up @@ -6458,7 +6458,7 @@ public class PublishSequenceNumbersToAcknowledgeEventArgs : EventArgs
/// <summary>
/// Creates a new instance.
/// </summary>
internal PublishSequenceNumbersToAcknowledgeEventArgs(
public PublishSequenceNumbersToAcknowledgeEventArgs(
SubscriptionAcknowledgementCollection acknowledgementsToSend,
SubscriptionAcknowledgementCollection deferredAcknowledgementsToSend)
{
Expand Down

0 comments on commit ff298be

Please sign in to comment.