CCT.NUI.TestDataCollector.VideoViewModel.CaptureFrame C# (CSharp) Method

CaptureFrame() private method

private CaptureFrame ( ) : void
return void
        private void CaptureFrame()
        {
            var frame = this.depthFrameFactory.Create(dataSourceFactory.GetDepthGenerator().DataPtr);

            if (this.NewFrameCaptured != null)
            {
                this.NewFrameCaptured(frame);
            }
        }