public WeVideoMaterial(string filePath, string title, string introduction)
        {
            TkDebug.AssertArgumentNullOrEmpty(filePath, "filePath", null);
            TkDebug.AssertArgumentNullOrEmpty(title, "title", null);

            fMedia = filePath;
            fDesc = new WeVideoDescription(title, introduction);
        }
示例#2
0
        public WeVideoMaterial(string filePath, string title, string introduction)
        {
            TkDebug.AssertArgumentNullOrEmpty(filePath, "filePath", null);
            TkDebug.AssertArgumentNullOrEmpty(title, "title", null);

            fMedia = filePath;
            fDesc  = new WeVideoDescription(title, introduction);
        }