ISubscriptionPersistence Interface
The ISubscriptionPersistence interface is called when subscriptions are written or read from the database. Implementers of this interface can modify the subscriptions before they are saved and again before they are returned to any callers when read from the subscription tables.
Namespace: Microsoft.TeamFoundation.Framework.Server
Assembly: Microsoft.TeamFoundation.Framework.Server (in Microsoft.TeamFoundation.Framework.Server.dll)
Syntax
'Declaration
<InheritedExportAttribute> _
Public Interface ISubscriptionPersistence
[InheritedExportAttribute]
public interface ISubscriptionPersistence
[InheritedExportAttribute]
public interface class ISubscriptionPersistence
[<InheritedExportAttribute>]
type ISubscriptionPersistence = interface end
public interface ISubscriptionPersistence
The ISubscriptionPersistence type exposes the following members.
Methods
Name | Description | |
---|---|---|
AfterReadSubscription | AfterReadSubscription is called after a subscription is read from the database. | |
BeforeWriteSubscription | BeforeWriteSubscription is called before a subscription will be written to the database. |
Top