Class ReferenceNotResolvedEventArgs
- Namespace
- Tlumach
- Assembly
- Tlumach.dll
Contains the arguments of the ReferenceNotResolved event.
public class ReferenceNotResolvedEventArgs : EventArgs
- Inheritance
-
ReferenceNotResolvedEventArgs
- Inherited Members
Constructors
ReferenceNotResolvedEventArgs(CultureInfo, string, string)
public ReferenceNotResolvedEventArgs(CultureInfo culture, string key, string reference)
Parameters
cultureCultureInfokeystringreferencestring
Properties
Culture
Gets a reference to the culture, for which the text is needed.
public CultureInfo Culture { get; }
Property Value
Key
Gets the key of the requested translation entry.
public string Key { get; }
Property Value
Reference
Gets the reference that has not been resolved.
public string Reference { get; }
Property Value
Text
Should be set to the text value that corresponds to the specified Key and Culture.
public string? Text { get; set; }