ArgusTV.Recorders.Common.RecordingThreadBase.RecordingThreadBase C# (CSharp) Method

RecordingThreadBase() public method

public RecordingThreadBase ( System.Guid recorderTunerId, string serverHostName, int serverTcpPort, ArgusTV.DataContracts.CardChannelAllocation channelAllocation, System.DateTime startTimeUtc, System.DateTime stopTimeUtc, ArgusTV.DataContracts.UpcomingProgram recordingProgram, bool okToRenameRecordedFiles ) : System
recorderTunerId System.Guid
serverHostName string
serverTcpPort int
channelAllocation ArgusTV.DataContracts.CardChannelAllocation
startTimeUtc System.DateTime
stopTimeUtc System.DateTime
recordingProgram ArgusTV.DataContracts.UpcomingProgram
okToRenameRecordedFiles bool
return System
        public RecordingThreadBase(Guid recorderTunerId, string serverHostName, int serverTcpPort, CardChannelAllocation channelAllocation,
            DateTime startTimeUtc, DateTime stopTimeUtc, UpcomingProgram recordingProgram, bool okToRenameRecordedFiles)
            : base("Record")
        {
            _recorderTunerId = recorderTunerId;
            _serverHostName = serverHostName;
            _serverTcpPort = serverTcpPort;
            _channelAllocation = channelAllocation;
            _startTimeUtc = startTimeUtc;
            _stopTimeUtc = stopTimeUtc;
            _recordingProgram = recordingProgram;
            _okToRenameRecordedFiles = okToRenameRecordedFiles;
        }