Class FileContentNeededEventArgs
Contains the arguments of the FileContentsNeeded event.
Inheritance
FileContentNeededEventArgs
Assembly: Tlumach.dll
Syntax
public class FileContentNeededEventArgs : EventArgs
Constructors
FileContentNeededEventArgs(Assembly?, string, CultureInfo)
Declaration
public FileContentNeededEventArgs(Assembly? assembly, string fileName, CultureInfo culture)
Parameters
Properties
Assembly
Declaration
public Assembly? Assembly { get; }
Property Value
Content
The placeholder for the content of the file. If it is set to any non-empty value, no attempt to load a file by other means will be done.
Declaration
public string Content { get; set; }
Property Value
Culture
The culture, for which the file is needed.
Declaration
public CultureInfo Culture { get; }
Property Value
FileName
The name of the default file as determined from the configuration and known to the translation unit.
Declaration
public string FileName { get; }
Property Value