Notitie
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen u aan te melden of de directory te wijzigen.
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen de mappen te wijzigen.
A generic delegate that is a callback for service subscriptions.
Namespace: Microsoft.Windows.Design
Assembly: Microsoft.Windows.Design (in Microsoft.Windows.Design.dll)
Syntax
'Declaration
Public Delegate Sub SubscribeServiceCallback(Of ServiceType) ( _
serviceInstance As ServiceType _
)
'Usage
Dim instance As New SubscribeServiceCallback(Of ServiceType)(AddressOf HandlerMethod)
public delegate void SubscribeServiceCallback<ServiceType>(
ServiceType serviceInstance
)
generic<typename ServiceType>
public delegate void SubscribeServiceCallback(
ServiceType serviceInstance
)
JScript does not support generic types or methods.
Type Parameters
- ServiceType
Parameters
serviceInstance
Type: ServiceTypeThe instance of the service.
Remarks
Use the Subscribe method to subscribe to a service.
See Also
Reference
Microsoft.Windows.Design Namespace