Opc.Ua.Server.Session.OnUpdateSecurityDiagnostics C# (CSharp) Méthode

OnUpdateSecurityDiagnostics() private méthode

Returns a copy of the current security diagnostics.
private OnUpdateSecurityDiagnostics ( ISystemContext context, NodeState node, object &value ) : ServiceResult
context ISystemContext
node NodeState
value object
Résultat ServiceResult
        private ServiceResult OnUpdateSecurityDiagnostics(
            ISystemContext context,
            NodeState node,
            ref object value)
        {
            lock (m_diagnostics)
            {
                value = Utils.Clone(m_securityDiagnostics);
            }

            return ServiceResult.Good;
        }