-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathWebModuleUnit.dfm
54 lines (54 loc) · 1.22 KB
/
WebModuleUnit.dfm
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
object WebModule1: TWebModule1
Actions = <
item
Default = True
Name = 'DefaultHandler'
PathInfo = '/'
OnAction = WebModule1DefaultHandlerAction
end
item
MethodType = mtGet
Name = 'NumberAction'
PathInfo = '/Number'
OnAction = WebModule1NumberActionAction
end
item
MethodType = mtGet
Name = 'Information'
PathInfo = '/Info'
OnAction = WebModule1InformationAction
end
item
MethodType = mtGet
Name = 'GetKeyValue'
PathInfo = '/KeyValue*'
OnAction = WebModule1GetKeyValueAction
end
item
MethodType = mtPost
Name = 'PostKeyValue'
PathInfo = '/KeyValue*'
OnAction = WebModule1PosttKeyValueAction
end
item
MethodType = mtPut
Name = 'PutKeyValue'
PathInfo = '/KeyValue*'
OnAction = WebModule1PutKeyValueAction
end
item
MethodType = mtDelete
Name = 'DeleteValue'
PathInfo = '/KeyValue*'
OnAction = WebModule1DeleteValueAction
end
item
MethodType = mtGet
Name = 'JavaScript'
PathInfo = '/javascript'
OnAction = WebModule1JavaScriptAction
end>
Height = 230
Width = 415
PixelsPerInch = 96
end