versionFrom |
---|
9.0.0 |
:::note If you are using Umbraco 8 or any lower version, please refer to the LocalizationService Events article instead. :::
The LocalizationService class implements ILocalizationService. It provides access to operations involving Language and DictionaryItem.
Notification | Members | Description |
---|---|---|
LanguageSavingNotification |
|
Published when LocalizationService.Save (ILanguage overload) is called in the API. SavedEntities: Gets the collection of ILanguage objects being saved. |
LanguageSavedNotification |
|
RPublished when LocalizationService.Save (ILanguage overload) is called in the API after data has been persisted. SavedEntities: Gets the saved collection of ILanguage objects.. |
DictionaryItemSavingNotification |
|
Published when LocalizationService.Save (IDictionaryItem overload) is called in the API. SavedEntities: Gets the collection of IDictionaryItem objects being saved. |
DictionaryItemSavedNotification |
|
Published when LocalizationService.Save (IDictionaryItem overload) is called in the API and the data has been persisted. SavedEntities: Gets the saved collection of IDictionary objects. |
LanguageDeletingNotification |
|
Published when LocalizationService.Delete (ILanguage overload) is called in the API. DeletedEntities: Gets the collection of ILanguage objects being deleted. |
LanguageDeletedNotification |
|
Published when LocalizationService.Delete (ILanguage overload) is called in the API, after the languages has been deleted. DeletedEntities: Gets the collection of deleted ILanguage objects. |
DictionaryItemDeletingNotification |
|
Published when LocalizationService.Delete (IDictionaryItem overload) is called in the API. DeletedEntities: Gets the collection of IDictionaryItem objects being deleted |
DictionaryItemDeletedNotification |
|
Published when LocalizationService.Delete (IDictionaryItem overload) is called in the API, after the dictionary items has been deleted. DeletedEntities: Gets the collection of deleted IDictionaryItem objects. |