public void SetTaskId(UInt32 taskId)
        {
            _taskId = taskId;
            ISourceValuePointer sv = _methodPointer as ISourceValuePointer;

            if (sv != null)
            {
                sv.SetTaskId(taskId);
            }
        }
Exemplo n.º 2
0
        public void SetTaskId(UInt32 taskId)
        {
            _taskId = taskId;
            ISourceValuePointer sp = _valuePointer as ISourceValuePointer;

            if (sp != null)
            {
                sp.SetTaskId(taskId);
            }
        }