ISettingsManagerHost Interface
Functionality provided by the application that creates an ISettingsManager viaSettingsManagerFactory.CreateInstance.
Assembly: Microsoft.VisualStudio.Utilities (in Microsoft.VisualStudio.Utilities.dll)
| Name | Description | |
|---|---|---|
![]() | AppInitCompletionTask | Optional task indicating the host is finished starting. The settings manager will defer resource-intensive tasks until after this task completes. |
![]() | Logger | Gets a logger for error telemetry. |
![]() | NameTranslator | Gets an optional translator between private and shared setting names. |
![]() | PrivateStorage | Gets the backing store for private settings. |
| Name | Description | |
|---|---|---|
![]() | IsSharedOrRoamedSetting(String) | Determines whether a setting is private vs. shared/roamed. |
![]() | RetrieveHubService() | Provides the hub service for the settings manager to communicate with the VS hub for sharing and roaming settings. |
| Name | Description | |
|---|---|---|
![]() | HostShuttingDown | Raised when the host is about to shut down, to give the settings manager an opportunity to release resources, finish or cancel async tasks, etc. The host should wait until the async event handler is complete (e.g. using theRaiseEventAsync<T> extension method) before continuing. |
![]() | IdleStateChanged | Raised when the host application goes idle or becomes active again, to enable reduced resource usage during the idle period. |


