LaunchEvent 元素
将外接程序配置为基于支持的事件激活。 LaunchEvents 元素的子元素。 有关详细信息,请参阅 为基于事件的激活配置 Outlook 外接程序。
外接程序类型: 邮件
仅在以下 VersionOverrides 架构中有效:
- 邮件 1.1
有关详细信息,请参阅 仅外接程序清单中的版本替代。
语法
<ExtensionPoint xsi:type="LaunchEvent">
<LaunchEvents>
<LaunchEvent Type="OnNewMessageCompose" FunctionName="onMessageComposeHandler"/>
<LaunchEvent Type="OnNewAppointmentOrganizer" FunctionName="onAppointmentComposeHandler"/>
<LaunchEvent Type="OnMessageReadWithCustomHeader" FunctionName="onMessageReadWithCustomHeaderHandler" HeaderName="contoso-spam-simulation"/>
<LaunchEvent Type="OnMessageReadWithCustomAttachment" FunctionName="onMessageReadWithCustomAttachmentHandler">
<MessageAttachments>
<MessageAttachment AttachmentExtension="xml"/>
<MessageAttachment AttachmentExtension="json"/>
</MessageAttachments>
</LaunchEvent>
</LaunchEvents>
<!-- Identifies the runtime to be used (also referenced by the Runtime element). -->
<SourceLocation resid="WebViewRuntime.Url"/>
</ExtensionPoint>
包含于
属性
属性 | 必需 | 说明 |
---|---|---|
Type | 是 | 指定受支持的事件类型。 有关受支持的类型集,请参阅 为基于事件的激活配置 Outlook 外接程序。 |
FunctionName | 是 | 指定用于处理 属性中指定的 Type 事件的 JavaScript 函数的名称。 |
SendMode | 否 | 由 OnMessageSend 和 OnAppointmentSend 事件使用。 指定在加载项停止发送项目或加载项不可用时可供用户使用的选项。 如果未包含 SendMode 属性,则 SoftBlock 默认设置选项。 有关可用发送模式选项的列表,请参阅 可用的发送模式选项。 |
HeaderName (preview) | 否 | 指定用于标识发生事件的消息的 OnMessageReadWithCustomHeader Internet 标头名称。 属性 Type 必须设置为 OnMessageReadWithCustomHeader 。 |
子元素
元素 | 必需 | 说明 |
---|---|---|
MessageAttachments 元素 (预览) | 否 | 将基于事件的外接程序配置为在事件上 OnMessageReadWithCustomAttachment 激活。 |