This documentation is archived and is not being maintained.

ITeamFoundationRegistryService Interface

Namespace:  Microsoft.TeamFoundation.Framework.Server
Assembly:  Microsoft.TeamFoundation.Framework.Server (in Microsoft.TeamFoundation.Framework.Server.dll)

[DefaultServiceImplementationAttribute(typeof(TeamFoundationRegistryService))]
public interface class ITeamFoundationRegistryService : ITeamFoundationService

The ITeamFoundationRegistryService type exposes the following members.

  NameDescription
Public methodDeleteEntriesDelete registry entries by path pattern
Public methodGetValue(TeamFoundationRequestContext, String)Retrieves the value for the specified path.
Public methodGetValue<T>(TeamFoundationRequestContext, String, T)GetValue&amp;lt;T&amp;gt;() will retrieve the value for the specified path. It will then be converted to the type specified by T.
Public methodGetValue<T>(TeamFoundationRequestContext, String, Boolean, T)GetValue&amp;lt;T&amp;gt;() will retrieve the value for the specified path. It will then be converted to the type specified by T.
Public methodReadEntriesFallThruReadEntries 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
Public methodRegisterNotification(TeamFoundationRequestContext, RegistrySettingsChangedCallback, array<String>)Register a callback method which will be invoked whenever registry paths matching the given filters has changed
Public methodRegisterNotification(TeamFoundationRequestContext, RegistrySettingsChangedCallback, Boolean, array<String>)Register a callback method which will be invoked whenever registry paths matching the given filters has changed
Public methodServiceEndServiceEnd is called when the Host is being Shutdown and this service should free all resources it is holding onto. (Inherited from ITeamFoundationService.)
Public methodServiceStartServiceStart 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.)
Public methodSetValue<T>
Public methodUnregisterNotification(TeamFoundationRequestContext, RegistrySettingsChangedCallback)Unregisters the given callback to stop receiving notifications
Public methodUnregisterNotification(TeamFoundationRequestContext, RegistrySettingsChangedCallback, Boolean)Unregisters the given callback to stop receiving notifications
Public methodWriteEntriesWrite registry entries
Top
Show: