IFileFacade Interface
Interface that provides a common facade over file information.
Properties
| Property | Description | 
|---|---|
| AssemblyNameSymbols | Assembly names found in the file. | 
| ComponentRef | Component containing the file. | 
| Compressed | Indicates whether the file is compressed. | 
| DiskId | Disk Id for the file. | 
| FileName | Name of the file. | 
| FileSize | Size of the file. | 
| Id | Helper accessor for the Id of the Identifier. | 
| Identifier | Underlying identifier of the file. | 
| Language | Language of the file. | 
| MsiFileHashSymbol | Calculated hash of the file. | 
| PatchGroup | Optional patch group for the file. | 
| Sequence | Sequence of the file. | 
| SourceLineNumber | Source line number that define the file. | 
| SourcePath | Source to the file. | 
| Uncompressed | Indicates whether the file is to be uncompressed. | 
| Version | Version of the file. | 
WixToolset.Extensibility.dll version 6.0.0+8c7432e50072e009353ea5f2c956ccf453476f71
AssemblyNameSymbols Property
Assembly names found in the file.
Declaration
public System.Collections.Generic.ICollection<WixToolset.Data.Symbols.MsiAssemblyNameSymbol> AssemblyNameSymbols { get; set; } 
ComponentRef Property
Component containing the file.
Declaration
public string ComponentRef { get; set; } 
Compressed Property
Indicates whether the file is compressed.
Declaration
public bool Compressed { get; set; } 
DiskId Property
Disk Id for the file.
Declaration
public int DiskId { get; set; } 
FileName Property
Name of the file.
Declaration
public string FileName { get; set; } 
FileSize Property
Size of the file.
Declaration
public int FileSize { get; set; } 
Id Property
Helper accessor for the Id of the Identifier.
Declaration
public string Id { get; set; } 
Identifier Property
Underlying identifier of the file.
Declaration
public WixToolset.Data.Identifier Identifier { get; set; } 
Language Property
Language of the file.
Declaration
public string Language { get; set; } 
MsiFileHashSymbol Property
Calculated hash of the file.
Declaration
public WixToolset.Data.Symbols.MsiFileHashSymbol MsiFileHashSymbol { get; set; } 
PatchGroup Property
Optional patch group for the file.
Declaration
public System.Nullable<System.Int32> PatchGroup { get; set; } 
Sequence Property
Sequence of the file.
Declaration
public int Sequence { get; set; } 
SourceLineNumber Property
Source line number that define the file.
Declaration
public WixToolset.Data.SourceLineNumber SourceLineNumber { get; set; } 
SourcePath Property
Source to the file.
Declaration
public string SourcePath { get; set; } 
Uncompressed Property
Indicates whether the file is to be uncompressed.
Declaration
public bool Uncompressed { get; set; } 
Version Property
Version of the file.
Declaration
public string Version { get; set; }