#LocalizationService Events#
The LocalizationService class implements ILocalizationService. It provides easy access to operations involving Language and DictionaryItem.
Event | Signature | Description |
---|---|---|
SavingLanguage | (ILocalizationService sender, SaveEventArgs<ILanguage> e) |
Raised when LocalizationService.Save (ILanguage overload) is called in the API. "sender" will be the current ILocalizationService object. "e" will provide:
|
SavedLanguage | (ILocalizationService sender, SaveEventArgs<ILanguage> e) |
Raised when LocalizationService.Save (ILanguage overload) is called in the API and after data has been persisted. "sender" will be the current ILocalizationService object. "e" will provide:
|
SavingDictionaryItem | (ILocalizationService sender, SaveEventArgs<IDictionaryItem> e) |
Raised when LocalizationService.Save (IDictionaryItem overload) is called in the API. "sender" will be the current ILocalizationService object. "e" will provide:
|
SavedDictionaryItem | (ILocalizationService sender, SaveEventArgs<IDictionaryItem> e) |
Raised when LocalizationService.Save (IDictionaryItem overload) is called in the API and after data has been persisted. "sender" will be the current ILocalizationService object. "e" will provide:
|
DeletingLanguage | (ILocalizationService sender, DeleteEventArgs<ILanguage> e) |
Raised when LocalizationService.Delete (ILanguage overload) is called in the API. "sender" will be the current ILocalizationService object. "e" will provide:
|
DeletedLanguage | (ILocalizationService sender, DeleteEventArgs<ILanguage> e) |
Raised when LocalizationService.Delete (ILanguage overload) is called in the API. "sender" will be the current ILocalizationService object. "e" will provide:
|
DeletingDictionaryItem | (ILocalizationService sender, DeleteEventArgs<IDictionaryItem> e) |
Raised when LocalizationService.Delete (IDictionaryItem overload) is called in the API. "sender" will be the current ILocalizationService object. "e" will provide:
|
DeletedDictionaryItem | (ILocalizationService sender, DeleteEventArgs<IDictionaryItem> e) |
Raised when LocalizationService.Delete (IDictionaryItem overload) is called in the API. "sender" will be the current ILocalizationService object. "e" will provide:
|