ArgusTV.Recorder.MediaPortalTvServer.RecordingThread.RecordingThread C# (CSharp) Method

RecordingThread() public method

public RecordingThread ( System.Guid recorderTunerId, string serverHostName, int tcpPort, ArgusTV.DataContracts.CardChannelAllocation channelAllocation, System.DateTime startTimeUtc, System.DateTime stopTimeUtc, ArgusTV.DataContracts.UpcomingProgram recordingProgram, string suggestedBaseFileName, TvDatabase recordOnCard, TvDatabase channel ) : System
recorderTunerId System.Guid
serverHostName string
tcpPort int
channelAllocation ArgusTV.DataContracts.CardChannelAllocation
startTimeUtc System.DateTime
stopTimeUtc System.DateTime
recordingProgram ArgusTV.DataContracts.UpcomingProgram
suggestedBaseFileName string
recordOnCard TvDatabase
channel TvDatabase
return System
        public RecordingThread(Guid recorderTunerId, string serverHostName, int tcpPort, CardChannelAllocation channelAllocation,
            DateTime startTimeUtc, DateTime stopTimeUtc, UpcomingProgram recordingProgram, string suggestedBaseFileName,
            TvDatabase.Card recordOnCard, TvDatabase.Channel channel)
            : base(recorderTunerId, serverHostName, tcpPort, channelAllocation, startTimeUtc, stopTimeUtc, recordingProgram, true)
        {
            _suggestedBaseFileName = suggestedBaseFileName;
            _recordOnCard = recordOnCard;
            _channel = channel;
        }