Opc.Ua.Client.NotificationEventArgs.NotificationEventArgs C# (CSharp) Method

NotificationEventArgs() private method

Creates a new instance.
private NotificationEventArgs ( Subscription subscription, NotificationMessage notificationMessage, IList stringTable ) : System
subscription Subscription
notificationMessage NotificationMessage
stringTable IList
return System
        internal NotificationEventArgs(
            Subscription          subscription,
            NotificationMessage   notificationMessage,
            IList<string>         stringTable)
        {
            m_subscription        = subscription;
            m_notificationMessage = notificationMessage;
            m_stringTable         = stringTable;
        }
        #endregion
NotificationEventArgs