Kinect.KinectManager.IsUserTracked C# (CSharp) Method

IsUserTracked() public method

Determines whether the user with the specified userId is in the list of tracked users or not.
public IsUserTracked ( Int64 userId ) : bool
userId Int64 User identifier.
return bool
        public bool IsUserTracked(Int64 userId)
        {
            return dictUserIdToIndex.ContainsKey(userId);
        }
KinectManager