Table of Contents

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

culture CultureInfo
key string
reference string

Properties

Culture

Gets a reference to the culture, for which the text is needed.

public CultureInfo Culture { get; }

Property Value

CultureInfo

Key

Gets the key of the requested translation entry.

public string Key { get; }

Property Value

string

Reference

Gets the reference that has not been resolved.

public string Reference { get; }

Property Value

string

Text

Should be set to the text value that corresponds to the specified Key and Culture.

public string? Text { get; set; }

Property Value

string