C# Класс WPFLocalizeExtension.Providers.CSVLocalizationProviderBase

The base for CSV file providers.
Наследование: System.Windows.DependencyObject, ILocalizationProvider
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
AvailableCultureListLock object
ResourceManagerList ResourceManager>.Dictionary
ResourceManagerListLock object

Открытые методы

Метод Описание
GetFullyQualifiedResourceKey ( String key, DependencyObject target ) : FullyQualifiedResourceKeyBase

Uses the key and target to build a fully qualified resource key (Assembly, Dictionary, Key)

GetLocalizedObject ( string key, DependencyObject target, CultureInfo culture ) : object

Get the localized object.

ParseKey ( string inKey, string &outAssembly, string &outDict, string &outKey ) : void

Parses a key ([[Assembly:]Dict:]Key and return the parts of it.

Защищенные методы

Метод Описание
AddCulture ( CultureInfo c ) : void

Thread-safe access to the AvailableCultures list.

GetAssembly ( DependencyObject target ) : string

Get the assembly from the context, if possible.

GetAssemblyName ( Assembly assembly ) : string

Returns the AssemblyName of the passed assembly instance

GetDictionary ( DependencyObject target ) : string

Get the dictionary from the context, if possible.

OnProviderChanged ( DependencyObject target ) : void

Calls the ILocalizationProvider.ProviderChanged event.

OnProviderError ( DependencyObject target, string key, string message ) : void

Calls the ILocalizationProvider.ProviderError event.

OnValueChanged ( string key, object value, object tag ) : void

Calls the ILocalizationProvider.ValueChanged event.

Описание методов

AddCulture() защищенный Метод

Thread-safe access to the AvailableCultures list.
protected AddCulture ( CultureInfo c ) : void
c System.Globalization.CultureInfo The CultureInfo.
Результат void

GetAssembly() защищенный абстрактный Метод

Get the assembly from the context, if possible.
protected abstract GetAssembly ( DependencyObject target ) : string
target System.Windows.DependencyObject The target object.
Результат string

GetAssemblyName() защищенный Метод

Returns the AssemblyName of the passed assembly instance
protected GetAssemblyName ( Assembly assembly ) : string
assembly System.Reflection.Assembly The Assembly where to get the name from
Результат string

GetDictionary() защищенный абстрактный Метод

Get the dictionary from the context, if possible.
protected abstract GetDictionary ( DependencyObject target ) : string
target System.Windows.DependencyObject The target object.
Результат string

GetFullyQualifiedResourceKey() публичный Метод

Uses the key and target to build a fully qualified resource key (Assembly, Dictionary, Key)
public GetFullyQualifiedResourceKey ( String key, DependencyObject target ) : FullyQualifiedResourceKeyBase
key String Key used as a base to find the full key
target System.Windows.DependencyObject Target used to help determine key information
Результат FullyQualifiedResourceKeyBase

GetLocalizedObject() публичный Метод

Get the localized object.
public GetLocalizedObject ( string key, DependencyObject target, CultureInfo culture ) : object
key string The key to the value.
target System.Windows.DependencyObject The target object.
culture System.Globalization.CultureInfo The culture to use.
Результат object

OnProviderChanged() защищенный Метод

Calls the ILocalizationProvider.ProviderChanged event.
protected OnProviderChanged ( DependencyObject target ) : void
target System.Windows.DependencyObject The target object.
Результат void

OnProviderError() защищенный Метод

Calls the ILocalizationProvider.ProviderError event.
protected OnProviderError ( DependencyObject target, string key, string message ) : void
target System.Windows.DependencyObject The target object.
key string The key.
message string The error message.
Результат void

OnValueChanged() защищенный Метод

Calls the ILocalizationProvider.ValueChanged event.
protected OnValueChanged ( string key, object value, object tag ) : void
key string The key where the value was changed.
value object The new value.
tag object A custom tag.
Результат void

ParseKey() публичный статический Метод

Parses a key ([[Assembly:]Dict:]Key and return the parts of it.
public static ParseKey ( string inKey, string &outAssembly, string &outDict, string &outKey ) : void
inKey string The key to parse.
outAssembly string The found or default assembly.
outDict string The found or default dictionary.
outKey string The found or default key.
Результат void

Описание свойств

AvailableCultureListLock защищенное свойство

Lock object for concurrent access to the available culture list.
protected object AvailableCultureListLock
Результат object

ResourceManagerList защищенное свойство

Gets the used ResourceManagers with their corresponding namespaces.
protected Dictionary ResourceManagerList
Результат ResourceManager>.Dictionary

ResourceManagerListLock защищенное свойство

Lock object for concurrent access to the resource manager list.
protected object ResourceManagerListLock
Результат object