Table of Contents

Interface ILocalizedNamedValue

Namespace
Sportradar.OddsFeed.SDK.Entities.Rest
Assembly
Sportradar.OddsFeed.SDK.dll

Specifies a contract implemented by classes representing values with localized / translatable descriptions

public interface ILocalizedNamedValue : INamedValue
Inherited Members

Properties

Descriptions

Gets a IReadOnlyDictionary<TKey, TValue> containing translated descriptions

IReadOnlyDictionary<CultureInfo, string> Descriptions { get; }

Property Value

IReadOnlyDictionary<CultureInfo, string>

Methods

GetDescription(CultureInfo)

Gets the description for specific locale

string GetDescription(CultureInfo culture)

Parameters

culture CultureInfo

The culture.

Returns

string

Return the Description if exists, or null.

See Also