2 instantiations of PieceInfo
WindowsBase (2)
Base\MS\Internal\IO\Packaging\PieceDirectory.cs (1)
480new PieceInfo(
Base\MS\Internal\IO\Packaging\PieceNameHelper.cs (1)
219pieceInfo = new PieceInfo(zipFileInfo,
29 references to PieceInfo
WindowsBase (29)
Base\MS\Internal\IO\Packaging\InterleavedZipPartStream.cs (1)
70internal InterleavedZipPartStream(string partName, List<PieceInfo> sortedPieceInfoList,
Base\MS\Internal\IO\Packaging\PieceDirectory.cs (2)
163internal PieceDirectory(List<PieceInfo> sortedPieceInfoList, FileMode mode, FileAccess access) 533private List<PieceInfo> _sortedPieceInfoList;
Base\MS\Internal\IO\Packaging\PieceNameHelper.cs (5)
206internal static bool TryCreatePieceInfo(ZipFileInfo zipFileInfo, out PieceInfo pieceInfo) 440internal sealed class PieceNameComparer : IComparer<PieceInfo> 448int IComparer<PieceInfo>.Compare(PieceInfo pieceInfoA, PieceInfo pieceInfoB)
Base\System\IO\Packaging\ZipPackage.cs (18)
191List<PieceInfo> pieceDescriptors = partToDelete.PieceDescriptors; 235SortedDictionary<PieceInfo, Object> pieceDictionary = new SortedDictionary<PieceInfo, Object>(PieceNameHelper.PieceNameComparer); 257PieceInfo pieceInfo; 628private static void DeleteInterleavedPartOrStream(List<PieceInfo> sortedPieceInfoList) 634foreach (PieceInfo pieceInfo in sortedPieceInfoList) 655private void ProcessPieces(SortedDictionary<PieceInfo, Object> pieceDictionary, List<PackagePart> parts) 670List<PieceInfo> pieces = new List<PieceInfo>(pieceDictionary.Keys); 771List<PieceInfo> pieces, 1201SortedDictionary<PieceInfo, ZipFileInfo> contentTypeStreamPieces = null; 1207PieceInfo pieceInfo; 1220contentTypeStreamPieces = new SortedDictionary<PieceInfo, ZipFileInfo>(PieceNameHelper.PieceNameComparer); 1228List<PieceInfo> pieces = null; 1235pieces = new List<PieceInfo>(contentTypeStreamPieces.Keys); 1518private List<PieceInfo> _contentTypeStreamPieces; 1609internal void AddItemForStrayPiece(PieceInfo pieceInfo) 1623internal void AddItemsForInvalidSequence(string normalizedPrefixNameForThisSequence, List<PieceInfo> pieces, int startIndex, int count)
Base\System\IO\Packaging\ZipPackagePart.cs (3)
157List<PieceInfo> pieces, 180internal List<PieceInfo> PieceDescriptors 231private List<PieceInfo> _pieces;