-
Notifications
You must be signed in to change notification settings - Fork 1
/
Unit2.dfm
37 lines (37 loc) · 812 Bytes
/
Unit2.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
object Form2: TForm2
Left = 0
Top = 0
Caption = 'Form2'
ClientHeight = 553
ClientWidth = 782
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -15
Font.Name = 'Segoe UI'
Font.Style = []
OnCreate = FormCreate
OnDestroy = FormDestroy
PixelsPerInch = 120
TextHeight = 20
object RESTClient1: TRESTClient
Params = <>
SecureProtocols = [TLS12, TLS13]
ProxyPort = 8888
ProxyServer = 'localhost'
SynchronizedEvents = False
end
object RESTRequest1: TRESTRequest
AssignedValues = [rvConnectTimeout, rvReadTimeout]
Client = RESTClient1
Params = <>
Response = RESTResponse1
SynchronizedEvents = False
Left = 10
Top = 10
end
object RESTResponse1: TRESTResponse
Left = 20
Top = 20
end
end