-
Notifications
You must be signed in to change notification settings - Fork 24
/
ContentFormSubmitEventArgs.cs
55 lines (49 loc) · 1.84 KB
/
ContentFormSubmitEventArgs.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
using System;
using System.Collections.Generic;
namespace SiteServer.Plugin
{
/// <summary>
/// 为内容编辑(新增)页面的提交事件提供数据。
/// </summary>
public class ContentFormSubmitEventArgs : EventArgs
{
/// <summary>
/// 初始化 <see cref="T:SiteServer.Plugin.ContentFormSubmitEventArgs" /> 类的新实例。
/// </summary>
/// <param name="siteId">站点Id。</param>
/// <param name="channelId">栏目Id。</param>
/// <param name="contentId">内容Id。</param>
/// <param name="form">表单数据。</param>
/// <param name="contentInfo">内容对象。</param>
public ContentFormSubmitEventArgs(int siteId, int channelId, int contentId, IDictionary<string, object> form,
IContentInfo contentInfo)
{
SiteId = siteId;
ChannelId = channelId;
ContentId = contentId;
Form = form;
ContentInfo = contentInfo;
}
/// <summary>
/// 站点Id。
/// </summary>
public int SiteId { get; }
/// <summary>
/// 栏目Id。
/// </summary>
public int ChannelId { get; }
/// <summary>
/// 内容Id。
/// 如果内容Id为0,则表示当前载入的页面为内容添加页面,否则当前载入的页面为内容编辑页面。
/// </summary>
public int ContentId { get; }
/// <summary>
/// 表单数据。
/// </summary>
public IDictionary<string, object> Form { get; }
/// <summary>
/// 即将保存至数据库的内容对象,可以从表单数据 <see cref="T:SiteServer.Plugin.IAttributes" /> 中获取属性值并设置到内容对象中。
/// </summary>
public IContentInfo ContentInfo { get; }
}
}