CCT.NUI.HandTracking.Persistence.TestFrameRepository.Load C# (CSharp) Method

Load() public method

public Load ( string path ) : TestFrameEntity
path string
return TestFrameEntity
        public TestFrameEntity Load(string path)
        {
            using (var stream = File.Open(path, FileMode.Open))
            {
                return (TestFrameEntity) this.serializer.Deserialize(stream);
            }
        }