 | NotificationActivatorBaseRegisterComType Method |
[This is preliminary documentation and is subject to change.]
Register COM class type.
Namespace:
DesktopToast
Assembly:
DesktopToast (in DesktopToast.dll) Version: 0.7.0.0 (0.7.0.0)
Syntaxpublic static void RegisterComType(
Type activatorType,
Action<string, Dictionary<string, string>> action
)
Public Shared Sub RegisterComType (
activatorType As Type,
action As Action(Of String, Dictionary(Of String, String))
)
public:
static void RegisterComType(
Type^ activatorType,
Action<String^, Dictionary<String^, String^>^>^ action
)
static member RegisterComType :
activatorType : Type *
action : Action<string, Dictionary<string, string>> -> unit
Parameters
- activatorType
- Type: SystemType
Notification activator type - action
- Type: SystemActionString, DictionaryString, String
Action to be invoked when Activate callback method is called
RemarksNotification activator must inherit from this class.
See Also