예제 #1
0
파일: frmMain.cs 프로젝트: CarverLab/Oyster
        private string RecordingURL(OCL.Recording recording)
        {
            string ReturnValue = null;
            //			OCL.VideoStorageServer VSS2 = recording.CurrentVideoStorageServer;
            //			OCL.VideoStorageServerType VST2 = VSS2.CurrentVideoStorageServerType;
            //
            //			if(VST2.Description == "Windows Media Server")
            //			{
            //				ReturnValue = (VST2.StreamHeader + VSS2.ControlAddress +
            //					@"\" + VSS2.StorageDirectory + @"\" + recording.Description).Replace('\\','/');
            //			}
            ReturnValue = (recording.RecordingUrl(LUser)).Replace('\\','/');

            return ReturnValue;
        }