9 references to FileName
WindowsBase (9)
Base\MS\Internal\IO\Zip\ZipFileInfo.cs (1)
69return _fileBlock.FileName;
Base\MS\Internal\IO\Zip\ZipIOBlockManager.cs (2)
336Debug.Assert(CentralDirectoryBlock.FileExists(localFileBlock.FileName), 344CentralDirectoryBlock.RemoveFileBlock(localFileBlock.FileName);
Base\MS\Internal\IO\Zip\ZipIOCentralDirectoryBlock.cs (2)
195Debug.Assert(CentralDirectoryDictionary.Contains(localFileBlock.FileName)); 198(ZipIOCentralDirectoryFileHeader)CentralDirectoryDictionary[localFileBlock.FileName];
Base\MS\Internal\IO\Zip\ZipIOCentralDirectoryFileHeader.cs (4)
395_fileNameLength = (UInt16)fileBlock.FileName.Length; // this is safe cast as file name is always validate for size 396_fileName = _encoding.GetBytes(fileBlock.FileName); 397_stringFileName = fileBlock.FileName; 439Debug.Assert(String.CompareOrdinal(_stringFileName, fileBlock.FileName) == 0);