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; }