Kinect.KinectManager.GetSensorPlatform C# (CSharp) Method

GetSensorPlatform() public method

Gets the selected depth-sensor platform.
public GetSensorPlatform ( ) : KinectInterop.DepthSensorPlatform
return KinectInterop.DepthSensorPlatform
        public KinectInterop.DepthSensorPlatform GetSensorPlatform()
        {
            if (sensorData != null && sensorData.sensorInterface != null)
            {
                return sensorData.sensorInterface.GetSensorPlatform();
            }

            return KinectInterop.DepthSensorPlatform.None;
        }
KinectManager