Opc.Ua.Server.DiagnosticsNodeManager.OnConditionRefresh C# (CSharp) Method

OnConditionRefresh() private method

Handles a request to refresh conditions for a subscription.
private OnConditionRefresh ( ISystemContext context, MethodState method, NodeId objectId, uint subscriptionId ) : ServiceResult
context ISystemContext
method MethodState
objectId NodeId
subscriptionId uint
return ServiceResult
        private ServiceResult OnConditionRefresh(
            ISystemContext context,
            MethodState method,
            NodeId objectId,
            uint subscriptionId)
        {
            ServerSystemContext systemContext = context as ServerSystemContext;

            if (systemContext == null)
            {
                systemContext = this.SystemContext;
            }

            Server.ConditionRefresh(systemContext.OperationContext, subscriptionId);

            return ServiceResult.Good;
        }