ITeamFoundationRegistryService Interface
Namespace: Microsoft.TeamFoundation.Framework.Server
Assembly: Microsoft.TeamFoundation.Framework.Server (in Microsoft.TeamFoundation.Framework.Server.dll)
Syntax
'Declaration
<DefaultServiceImplementationAttribute(GetType(TeamFoundationRegistryService))> _
Public Interface ITeamFoundationRegistryService _
Inherits ITeamFoundationService
[DefaultServiceImplementationAttribute(typeof(TeamFoundationRegistryService))]
public interface ITeamFoundationRegistryService : ITeamFoundationService
[DefaultServiceImplementationAttribute(typeof(TeamFoundationRegistryService))]
public interface class ITeamFoundationRegistryService : ITeamFoundationService
[<DefaultServiceImplementationAttribute(typeof(TeamFoundationRegistryService))>]
type ITeamFoundationRegistryService =
interface
interface ITeamFoundationService
end
public interface ITeamFoundationRegistryService extends ITeamFoundationService
The ITeamFoundationRegistryService type exposes the following members.
Methods
Name | Description | |
---|---|---|
![]() |
DeleteEntries | Delete registry entries by path pattern |
![]() |
GetValue(TeamFoundationRequestContext, String) | Retrieves the value for the specified path. |
![]() |
GetValue<T>(TeamFoundationRequestContext, String, T) | GetValue&lt;T&gt;() will retrieve the value for the specified path. It will then be converted to the type specified by T. |
![]() |
GetValue<T>(TeamFoundationRequestContext, String, Boolean, T) | GetValue&lt;T&gt;() will retrieve the value for the specified path. It will then be converted to the type specified by T. |
![]() |
ReadEntriesFallThru | ReadEntries is used to read multiple registry values in a single call Values from the fallthru registry are included where they do not exist in this registry |
![]() |
RegisterNotification(TeamFoundationRequestContext, RegistrySettingsChangedCallback, array<String[]) | Register a callback method which will be invoked whenever registry paths matching the given filters has changed |
![]() |
RegisterNotification(TeamFoundationRequestContext, RegistrySettingsChangedCallback, Boolean, array<String[]) | Register a callback method which will be invoked whenever registry paths matching the given filters has changed |
![]() |
ServiceEnd | ServiceEnd is called when the Host is being Shutdown and this service should free all resources it is holding onto. (Inherited from ITeamFoundationService.) |
![]() |
ServiceStart | ServiceStart is called when the service is initialized. If the service is intialized asynchronously it must implement Service_Ready which is used to determine when the service is ready for users to access it. (Inherited from ITeamFoundationService.) |
![]() |
SetValue<T> | |
![]() |
UnregisterNotification(TeamFoundationRequestContext, RegistrySettingsChangedCallback) | Unregisters the given callback to stop receiving notifications |
![]() |
UnregisterNotification(TeamFoundationRequestContext, RegistrySettingsChangedCallback, Boolean) | Unregisters the given callback to stop receiving notifications |
![]() |
WriteEntries | Write registry entries |
Top