12 references to VersionPair
WindowsBase (12)
Base\MS\Internal\IO\Packaging\CompoundFile\CompressionTransform.cs (3)
141private static readonly VersionPair _currentFeatureVersion = new VersionPair(1, 0); 142private static readonly VersionPair _minimumReaderVersion = new VersionPair(1, 0); 143private static readonly VersionPair _minimumUpdaterVersion = new VersionPair(1, 0);
Base\MS\Internal\IO\Packaging\CompoundFile\RightsManagementEncryptionTransform.cs (3)
1456private static readonly VersionPair CurrentFeatureVersion = new VersionPair(1,0); 1462private static readonly VersionPair MinimumReaderVersion = new VersionPair(1, 0); 1468private static readonly VersionPair MinimumUpdaterVersion = new VersionPair(1, 0);
Base\System\IO\Packaging\CompoundFile\DataSpaceManager.cs (3)
64private static readonly VersionPair DataSpaceCurrentWriterVersion = new VersionPair(1 /*major*/, 0 /*minor*/); 65private static readonly VersionPair DataSpaceCurrentReaderVersion = new VersionPair(1 /*major*/, 0 /*minor*/); 66private static readonly VersionPair DataSpaceCurrentUpdaterVersion = new VersionPair(1 /*major*/, 0 /*minor*/);
Base\System\IO\Packaging\CompoundFile\FormatVersion.cs (3)
485ver.ReaderVersion = new VersionPair(major, minor); 496ver.UpdaterVersion = new VersionPair(major, minor); 507ver.WriterVersion = new VersionPair(major, minor);