コード例 #1
0
 public IsoStorageMediumDecoder(
     IIsoPrimaryVolumeDescriptorDecoder isoPrimaryVolumeDescriptorDecoder,
     IIsoBootRecordDecoder isoBootRecordDecoder,
     IIsoDescriptorSectorFinder isoDescriptorSectorFinder)
 {
     _isoPrimaryVolumeDescriptorDecoder = isoPrimaryVolumeDescriptorDecoder;
     _isoBootRecordDecoder      = isoBootRecordDecoder;
     _isoDescriptorSectorFinder = isoDescriptorSectorFinder;
 }
コード例 #2
0
 public IsoCdFileDecoder(
     IIsoStorageMediumDecoder isoStorageMediumDecoder,
     IIsoSectorInfoDecoder isoSectorInfoDecoder,
     IIsoDescriptorSectorFinder isoDescriptorSectorFinder,
     IIsoPathTableDecoder isoPathTableDecoder,
     IIsoSectorStreamFactory isoSectorStreamFactory,
     IIsoDirectoryTableDecoder isoDirectoryTableDecoder)
 {
     _isoStorageMediumDecoder   = isoStorageMediumDecoder;
     _isoSectorInfoDecoder      = isoSectorInfoDecoder;
     _isoDescriptorSectorFinder = isoDescriptorSectorFinder;
     _isoPathTableDecoder       = isoPathTableDecoder;
     _isoSectorStreamFactory    = isoSectorStreamFactory;
     _isoDirectoryTableDecoder  = isoDirectoryTableDecoder;
 }