bbvcommon 6.268.0.20100803
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/NET35/bbv.Common.AsyncModule.dll +0 -0
- data/lib/NET35/bbv.Common.AsyncModule.xml +893 -0
- data/lib/NET35/bbv.Common.Data.XML +245 -0
- data/lib/NET35/bbv.Common.Data.dll +0 -0
- data/lib/NET35/bbv.Common.Diagnostics.XML +102 -0
- data/lib/NET35/bbv.Common.Diagnostics.dll +0 -0
- data/lib/NET35/bbv.Common.EvaluationEngine.dll +0 -0
- data/lib/NET35/bbv.Common.EventBroker.XML +3100 -0
- data/lib/NET35/bbv.Common.EventBroker.dll +0 -0
- data/lib/NET35/bbv.Common.Formatters.dll +0 -0
- data/lib/NET35/bbv.Common.Formatters.xml +74 -0
- data/lib/NET35/bbv.Common.IO.dll +0 -0
- data/lib/NET35/bbv.Common.IO.xml +1354 -0
- data/lib/NET35/bbv.Common.RuleEngine.dll +0 -0
- data/lib/NET35/bbv.Common.RuleEngine.xml +659 -0
- data/lib/NET35/bbv.Common.Security.XML +339 -0
- data/lib/NET35/bbv.Common.Security.dll +0 -0
- data/lib/NET35/bbv.Common.StateMachine.XML +2559 -0
- data/lib/NET35/bbv.Common.StateMachine.dll +0 -0
- data/lib/NET35/bbv.Common.TestUtilities.dll +0 -0
- data/lib/NET35/bbv.Common.TestUtilities.xml +696 -0
- data/lib/NET35/bbv.Common.Threading.XML +401 -0
- data/lib/NET35/bbv.Common.Threading.dll +0 -0
- data/lib/NET35/bbv.Common.Windows.dll +0 -0
- data/lib/NET35/bbv.Common.Windows.xml +114 -0
- data/lib/NET35/bbv.Common.XML +831 -0
- data/lib/NET35/bbv.Common.dll +0 -0
- metadata +118 -0
@@ -0,0 +1,401 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<doc>
|
3
|
+
<assembly>
|
4
|
+
<name>bbv.Common.Threading</name>
|
5
|
+
</assembly>
|
6
|
+
<members>
|
7
|
+
<member name="T:bbv.Common.Threading.IUserInterfaceThreadSynchronizer">
|
8
|
+
<summary>
|
9
|
+
Provides functionality to execute operations on the user interface thread.
|
10
|
+
</summary>
|
11
|
+
</member>
|
12
|
+
<member name="M:bbv.Common.Threading.IUserInterfaceThreadSynchronizer.Execute(System.Action)">
|
13
|
+
<summary>
|
14
|
+
Executes the specified action on the user interface thread.
|
15
|
+
</summary>
|
16
|
+
<param name="action">The action.</param>
|
17
|
+
</member>
|
18
|
+
<member name="M:bbv.Common.Threading.IUserInterfaceThreadSynchronizer.Execute``1(System.Action{``0},``0)">
|
19
|
+
<summary>
|
20
|
+
Executes the specified action on the user interface thread.
|
21
|
+
</summary>
|
22
|
+
<typeparam name="T">Type of the method parameter.</typeparam>
|
23
|
+
<param name="action">The action.</param>
|
24
|
+
<param name="value">The value passed to the action as method parameter.</param>
|
25
|
+
</member>
|
26
|
+
<member name="M:bbv.Common.Threading.IUserInterfaceThreadSynchronizer.Execute``2(System.Action{``0,``1},``0,``1)">
|
27
|
+
<summary>
|
28
|
+
Executes the specified action on the user interface thread.
|
29
|
+
</summary>
|
30
|
+
<typeparam name="TParameter1">Type of the first method parameter</typeparam>
|
31
|
+
<typeparam name="TParameter2">Type of the second method parameter</typeparam>
|
32
|
+
<param name="action">The action.</param>
|
33
|
+
<param name="value1">The first method parameter.</param>
|
34
|
+
<param name="value2">The second method parameter.</param>
|
35
|
+
</member>
|
36
|
+
<member name="M:bbv.Common.Threading.IUserInterfaceThreadSynchronizer.Execute``3(System.Action{``0,``1,``2},``0,``1,``2)">
|
37
|
+
<summary>
|
38
|
+
Executes the specified action on the user interface thread.
|
39
|
+
</summary>
|
40
|
+
<typeparam name="TParameter1">Type of the first method parameter</typeparam>
|
41
|
+
<typeparam name="TParameter2">Type of the second method parameter</typeparam>
|
42
|
+
<typeparam name="TParameter3">Type of the third method parameter</typeparam>
|
43
|
+
<param name="action">The action.</param>
|
44
|
+
<param name="value1">The first method parameter.</param>
|
45
|
+
<param name="value2">The second method parameter.</param>
|
46
|
+
<param name="value3">The third method parameter.</param>
|
47
|
+
</member>
|
48
|
+
<member name="M:bbv.Common.Threading.IUserInterfaceThreadSynchronizer.Execute``4(System.Action{``0,``1,``2,``3},``0,``1,``2,``3)">
|
49
|
+
<summary>
|
50
|
+
Executes the specified action on the user interface thread.
|
51
|
+
</summary>
|
52
|
+
<typeparam name="TParameter1">Type of the first method parameter</typeparam>
|
53
|
+
<typeparam name="TParameter2">Type of the second method parameter</typeparam>
|
54
|
+
<typeparam name="TParameter3">Type of the third method parameter</typeparam>
|
55
|
+
<typeparam name="TParameter4">Type of the fourth method parameter</typeparam>
|
56
|
+
<param name="action">The action.</param>
|
57
|
+
<param name="value1">The first method parameter.</param>
|
58
|
+
<param name="value2">The second method parameter.</param>
|
59
|
+
<param name="value3">The third method parameter.</param>
|
60
|
+
<param name="value4">The fourth method parameter.</param>
|
61
|
+
</member>
|
62
|
+
<member name="M:bbv.Common.Threading.IUserInterfaceThreadSynchronizer.ExecuteAsync(System.Action)">
|
63
|
+
<summary>
|
64
|
+
Executes the specified action on the user interface thread asynchronously.
|
65
|
+
</summary>
|
66
|
+
<param name="action">The action.</param>
|
67
|
+
</member>
|
68
|
+
<member name="M:bbv.Common.Threading.IUserInterfaceThreadSynchronizer.ExecuteAsync``1(System.Action{``0},``0)">
|
69
|
+
<summary>
|
70
|
+
Executes the specified action on the user interface thread asynchronously.
|
71
|
+
</summary>
|
72
|
+
<typeparam name="T">Type of the method parameter.</typeparam>
|
73
|
+
<param name="action">The action.</param>
|
74
|
+
<param name="value">The value passed to the action as method parameter.</param>
|
75
|
+
</member>
|
76
|
+
<member name="M:bbv.Common.Threading.IUserInterfaceThreadSynchronizer.ExecuteAsync``2(System.Action{``0,``1},``0,``1)">
|
77
|
+
<summary>
|
78
|
+
Executes the specified action on the user interface thread asynchronously.
|
79
|
+
</summary>
|
80
|
+
<typeparam name="TParameter1">Type of the first method parameter</typeparam>
|
81
|
+
<typeparam name="TParameter2">Type of the second method parameter</typeparam>
|
82
|
+
<param name="action">The action.</param>
|
83
|
+
<param name="value1">The first method parameter.</param>
|
84
|
+
<param name="value2">The second method parameter.</param>
|
85
|
+
</member>
|
86
|
+
<member name="M:bbv.Common.Threading.IUserInterfaceThreadSynchronizer.ExecuteAsync``3(System.Action{``0,``1,``2},``0,``1,``2)">
|
87
|
+
<summary>
|
88
|
+
Executes the specified action on the user interface thread asynchronously.
|
89
|
+
</summary>
|
90
|
+
<typeparam name="TParameter1">Type of the first method parameter</typeparam>
|
91
|
+
<typeparam name="TParameter2">Type of the second method parameter</typeparam>
|
92
|
+
<typeparam name="TParameter3">Type of the third method parameter</typeparam>
|
93
|
+
<param name="action">The action.</param>
|
94
|
+
<param name="value1">The first method parameter.</param>
|
95
|
+
<param name="value2">The second method parameter.</param>
|
96
|
+
<param name="value3">The third method parameter.</param>
|
97
|
+
</member>
|
98
|
+
<member name="M:bbv.Common.Threading.IUserInterfaceThreadSynchronizer.ExecuteAsync``4(System.Action{``0,``1,``2,``3},``0,``1,``2,``3)">
|
99
|
+
<summary>
|
100
|
+
Executes the specified action on the user interface thread asynchronously.
|
101
|
+
</summary>
|
102
|
+
<typeparam name="TParameter1">Type of the first method parameter</typeparam>
|
103
|
+
<typeparam name="TParameter2">Type of the second method parameter</typeparam>
|
104
|
+
<typeparam name="TParameter3">Type of the third method parameter</typeparam>
|
105
|
+
<typeparam name="TParameter4">Type of the fourth method parameter</typeparam>
|
106
|
+
<param name="action">The action.</param>
|
107
|
+
<param name="value1">The first method parameter.</param>
|
108
|
+
<param name="value2">The second method parameter.</param>
|
109
|
+
<param name="value3">The third method parameter.</param>
|
110
|
+
<param name="value4">The fourth method parameter.</param>
|
111
|
+
</member>
|
112
|
+
<member name="M:bbv.Common.Threading.IUserInterfaceThreadSynchronizer.Execute``1(System.Func{``0})">
|
113
|
+
<summary>
|
114
|
+
Executes the specified action on the user interface thread.
|
115
|
+
</summary>
|
116
|
+
<typeparam name="TResult">The type of the result.</typeparam>
|
117
|
+
<param name="action">The action.</param>
|
118
|
+
<returns>The result of the action.</returns>
|
119
|
+
</member>
|
120
|
+
<member name="M:bbv.Common.Threading.IUserInterfaceThreadSynchronizer.Execute``2(System.Func{``1,``0},``1)">
|
121
|
+
<summary>
|
122
|
+
Executes the specified action on the user interface thread asynchronously.
|
123
|
+
</summary>
|
124
|
+
<typeparam name="TResult">The type of the result.</typeparam>
|
125
|
+
<typeparam name="TParameter1">Type of the first method parameter</typeparam>
|
126
|
+
<param name="action">The action.</param>
|
127
|
+
<param name="value1">The first method parameter.</param>
|
128
|
+
<returns>The result of the action.</returns>
|
129
|
+
</member>
|
130
|
+
<member name="M:bbv.Common.Threading.IUserInterfaceThreadSynchronizer.Execute``3(System.Func{``1,``2,``0},``1,``2)">
|
131
|
+
<summary>
|
132
|
+
Executes the specified action on the user interface thread asynchronously.
|
133
|
+
</summary>
|
134
|
+
<typeparam name="TResult">The type of the result.</typeparam>
|
135
|
+
<typeparam name="TParameter1">Type of the first method parameter</typeparam>
|
136
|
+
<typeparam name="TParameter2">Type of the second method parameter</typeparam>
|
137
|
+
<param name="action">The action.</param>
|
138
|
+
<param name="value1">The first method parameter.</param>
|
139
|
+
<param name="value2">The second method parameter.</param>
|
140
|
+
<returns>The result of the action.</returns>
|
141
|
+
</member>
|
142
|
+
<member name="M:bbv.Common.Threading.IUserInterfaceThreadSynchronizer.Execute``4(System.Func{``1,``2,``3,``0},``1,``2,``3)">
|
143
|
+
<summary>
|
144
|
+
Executes the specified action on the user interface thread asynchronously.
|
145
|
+
</summary>
|
146
|
+
<typeparam name="TResult">The type of the result.</typeparam>
|
147
|
+
<typeparam name="TParameter1">Type of the first method parameter</typeparam>
|
148
|
+
<typeparam name="TParameter2">Type of the second method parameter</typeparam>
|
149
|
+
<typeparam name="TParameter3">Type of the third method parameter</typeparam>
|
150
|
+
<param name="action">The action.</param>
|
151
|
+
<param name="value1">The first method parameter.</param>
|
152
|
+
<param name="value2">The second method parameter.</param>
|
153
|
+
<param name="value3">The third method parameter.</param>
|
154
|
+
<returns>The result of the action.</returns>
|
155
|
+
</member>
|
156
|
+
<member name="M:bbv.Common.Threading.IUserInterfaceThreadSynchronizer.Execute``5(System.Func{``1,``2,``3,``4,``0},``1,``2,``3,``4)">
|
157
|
+
<summary>
|
158
|
+
Executes the specified action on the user interface thread asynchronously.
|
159
|
+
</summary>
|
160
|
+
<typeparam name="TResult">The type of the result.</typeparam>
|
161
|
+
<typeparam name="TParameter1">Type of the first method parameter</typeparam>
|
162
|
+
<typeparam name="TParameter2">Type of the second method parameter</typeparam>
|
163
|
+
<typeparam name="TParameter3">Type of the third method parameter</typeparam>
|
164
|
+
<typeparam name="TParameter4">Type of the fourth method parameter</typeparam>
|
165
|
+
<param name="action">The action.</param>
|
166
|
+
<param name="value1">The first method parameter.</param>
|
167
|
+
<param name="value2">The second method parameter.</param>
|
168
|
+
<param name="value3">The third method parameter.</param>
|
169
|
+
<param name="value4">The fourth method parameter.</param>
|
170
|
+
<returns>The result of the action.</returns>
|
171
|
+
</member>
|
172
|
+
<member name="T:bbv.Common.Threading.ThreadHelper">
|
173
|
+
<summary>
|
174
|
+
Provides functionality to use usage of <see cref="T:System.Threading.Thread"/>s.
|
175
|
+
</summary>
|
176
|
+
</member>
|
177
|
+
<member name="M:bbv.Common.Threading.ThreadHelper.SleepRandomly(System.Int32)">
|
178
|
+
<summary>
|
179
|
+
Sleeps a random time but max. the specified number of milliSeconds
|
180
|
+
</summary>
|
181
|
+
<param name="maxMilliseconds">Number of milliseconds to sleep.</param>
|
182
|
+
</member>
|
183
|
+
<member name="T:bbv.Common.Threading.UserInterfaceThreadSynchronizer">
|
184
|
+
<summary>
|
185
|
+
Executes operations on the user interface thread.
|
186
|
+
</summary>
|
187
|
+
</member>
|
188
|
+
<member name="F:bbv.Common.Threading.UserInterfaceThreadSynchronizer.log">
|
189
|
+
<summary>
|
190
|
+
The logger of this class.
|
191
|
+
</summary>
|
192
|
+
</member>
|
193
|
+
<member name="F:bbv.Common.Threading.UserInterfaceThreadSynchronizer.synchronizationContext">
|
194
|
+
<summary>
|
195
|
+
The synchronization context used to switch threads.
|
196
|
+
</summary>
|
197
|
+
</member>
|
198
|
+
<member name="M:bbv.Common.Threading.UserInterfaceThreadSynchronizer.#ctor(System.Threading.SynchronizationContext)">
|
199
|
+
<summary>
|
200
|
+
Initializes a new instance of the <see cref="T:bbv.Common.Threading.UserInterfaceThreadSynchronizer"/> class.
|
201
|
+
</summary>
|
202
|
+
<param name="synchronizationContext">The synchronization context. Has to be a <c>WindowsFormsSynchronizationContext</c> in real application.
|
203
|
+
Can be a normal <see cref="T:System.Threading.SynchronizationContext"/> for tests.</param>
|
204
|
+
</member>
|
205
|
+
<member name="M:bbv.Common.Threading.UserInterfaceThreadSynchronizer.Execute(System.Action)">
|
206
|
+
<summary>
|
207
|
+
Executes the specified action on the user interface thread.
|
208
|
+
</summary>
|
209
|
+
<param name="action">The action.</param>
|
210
|
+
</member>
|
211
|
+
<member name="M:bbv.Common.Threading.UserInterfaceThreadSynchronizer.Execute``1(System.Action{``0},``0)">
|
212
|
+
<summary>
|
213
|
+
Executes the specified action on the user interface thread.
|
214
|
+
</summary>
|
215
|
+
<typeparam name="T">Type of the method parameter.</typeparam>
|
216
|
+
<param name="action">The action.</param>
|
217
|
+
<param name="value">The value passed to the action as method parameter.</param>
|
218
|
+
</member>
|
219
|
+
<member name="M:bbv.Common.Threading.UserInterfaceThreadSynchronizer.Execute``2(System.Action{``0,``1},``0,``1)">
|
220
|
+
<summary>
|
221
|
+
Executes the specified action.
|
222
|
+
</summary>
|
223
|
+
<typeparam name="TParameter1">The type of the 1.</typeparam>
|
224
|
+
<typeparam name="TParameter2">The type of the 2.</typeparam>
|
225
|
+
<param name="action">The action.</param>
|
226
|
+
<param name="value1">The value1.</param>
|
227
|
+
<param name="value2">The value2.</param>
|
228
|
+
</member>
|
229
|
+
<member name="M:bbv.Common.Threading.UserInterfaceThreadSynchronizer.Execute``3(System.Action{``0,``1,``2},``0,``1,``2)">
|
230
|
+
<summary>
|
231
|
+
Executes the specified action.
|
232
|
+
</summary>
|
233
|
+
<typeparam name="TParameter1">The type of the 1.</typeparam>
|
234
|
+
<typeparam name="TParameter2">The type of the 2.</typeparam>
|
235
|
+
<typeparam name="TParameter3">The type of the 3.</typeparam>
|
236
|
+
<param name="action">The action.</param>
|
237
|
+
<param name="value1">The value1.</param>
|
238
|
+
<param name="value2">The value2.</param>
|
239
|
+
<param name="value3">The value3.</param>
|
240
|
+
</member>
|
241
|
+
<member name="M:bbv.Common.Threading.UserInterfaceThreadSynchronizer.Execute``4(System.Action{``0,``1,``2,``3},``0,``1,``2,``3)">
|
242
|
+
<summary>
|
243
|
+
Executes the specified action.
|
244
|
+
</summary>
|
245
|
+
<typeparam name="TParameter1">The type of the 1.</typeparam>
|
246
|
+
<typeparam name="TParameter2">The type of the 2.</typeparam>
|
247
|
+
<typeparam name="TParameter3">The type of the 3.</typeparam>
|
248
|
+
<typeparam name="TParameter4">The type of the 4.</typeparam>
|
249
|
+
<param name="action">The action.</param>
|
250
|
+
<param name="value1">The value1.</param>
|
251
|
+
<param name="value2">The value2.</param>
|
252
|
+
<param name="value3">The value3.</param>
|
253
|
+
<param name="value4">The value4.</param>
|
254
|
+
</member>
|
255
|
+
<member name="M:bbv.Common.Threading.UserInterfaceThreadSynchronizer.ExecuteAsync(System.Action)">
|
256
|
+
<summary>
|
257
|
+
Executes the specified action on the user interface thread asynchronously.
|
258
|
+
</summary>
|
259
|
+
<param name="action">The action.</param>
|
260
|
+
</member>
|
261
|
+
<member name="M:bbv.Common.Threading.UserInterfaceThreadSynchronizer.ExecuteAsync``1(System.Action{``0},``0)">
|
262
|
+
<summary>
|
263
|
+
Executes the specified action on the user interface thread asynchronously.
|
264
|
+
</summary>
|
265
|
+
<typeparam name="T">Type of the method parameter.</typeparam>
|
266
|
+
<param name="action">The action.</param>
|
267
|
+
<param name="value">The value passed to the action as method parameter.</param>
|
268
|
+
</member>
|
269
|
+
<member name="M:bbv.Common.Threading.UserInterfaceThreadSynchronizer.ExecuteAsync``2(System.Action{``0,``1},``0,``1)">
|
270
|
+
<summary>
|
271
|
+
Executes the specified action on the user interface thread asynchronously.
|
272
|
+
</summary>
|
273
|
+
<typeparam name="TParameter1">Type of the first method parameter</typeparam>
|
274
|
+
<typeparam name="TParameter2">Type of the second method parameter</typeparam>
|
275
|
+
<param name="action">The action.</param>
|
276
|
+
<param name="value1">The first method parameter.</param>
|
277
|
+
<param name="value2">The second method parameter.</param>
|
278
|
+
</member>
|
279
|
+
<member name="M:bbv.Common.Threading.UserInterfaceThreadSynchronizer.ExecuteAsync``3(System.Action{``0,``1,``2},``0,``1,``2)">
|
280
|
+
<summary>
|
281
|
+
Executes the specified action on the user interface thread asynchronously.
|
282
|
+
</summary>
|
283
|
+
<typeparam name="TParameter1">Type of the first method parameter</typeparam>
|
284
|
+
<typeparam name="TParameter2">Type of the second method parameter</typeparam>
|
285
|
+
<typeparam name="TParameter3">Type of the third method parameter</typeparam>
|
286
|
+
<param name="action">The action.</param>
|
287
|
+
<param name="value1">The first method parameter.</param>
|
288
|
+
<param name="value2">The second method parameter.</param>
|
289
|
+
<param name="value3">The third method parameter.</param>
|
290
|
+
</member>
|
291
|
+
<member name="M:bbv.Common.Threading.UserInterfaceThreadSynchronizer.ExecuteAsync``4(System.Action{``0,``1,``2,``3},``0,``1,``2,``3)">
|
292
|
+
<summary>
|
293
|
+
Executes the specified action on the user interface thread asynchronously.
|
294
|
+
</summary>
|
295
|
+
<typeparam name="TParameter1">Type of the first method parameter</typeparam>
|
296
|
+
<typeparam name="TParameter2">Type of the second method parameter</typeparam>
|
297
|
+
<typeparam name="TParameter3">Type of the third method parameter</typeparam>
|
298
|
+
<typeparam name="TParameter4">Type of the fourth method parameter</typeparam>
|
299
|
+
<param name="action">The action.</param>
|
300
|
+
<param name="value1">The first method parameter.</param>
|
301
|
+
<param name="value2">The second method parameter.</param>
|
302
|
+
<param name="value3">The third method parameter.</param>
|
303
|
+
<param name="value4">The fourth method parameter.</param>
|
304
|
+
</member>
|
305
|
+
<member name="M:bbv.Common.Threading.UserInterfaceThreadSynchronizer.Execute``1(System.Func{``0})">
|
306
|
+
<summary>
|
307
|
+
Executes the specified action.
|
308
|
+
</summary>
|
309
|
+
<typeparam name="TResult">The type of the result.</typeparam>
|
310
|
+
<param name="action">The action.</param>
|
311
|
+
<returns>The result of the action.</returns>
|
312
|
+
</member>
|
313
|
+
<member name="M:bbv.Common.Threading.UserInterfaceThreadSynchronizer.Execute``2(System.Func{``1,``0},``1)">
|
314
|
+
<summary>
|
315
|
+
Executes the specified action on the user interface thread asynchronously.
|
316
|
+
</summary>
|
317
|
+
<typeparam name="TResult">The type of the result.</typeparam>
|
318
|
+
<typeparam name="TParameter1">Type of the first method parameter</typeparam>
|
319
|
+
<param name="action">The action.</param>
|
320
|
+
<param name="value1">The first method parameter.</param>
|
321
|
+
<returns>The result of the action.</returns>
|
322
|
+
</member>
|
323
|
+
<member name="M:bbv.Common.Threading.UserInterfaceThreadSynchronizer.Execute``3(System.Func{``1,``2,``0},``1,``2)">
|
324
|
+
<summary>
|
325
|
+
Executes the specified action on the user interface thread asynchronously.
|
326
|
+
</summary>
|
327
|
+
<typeparam name="TResult">The type of the result.</typeparam>
|
328
|
+
<typeparam name="TParameter1">Type of the first method parameter</typeparam>
|
329
|
+
<typeparam name="TParameter2">Type of the second method parameter</typeparam>
|
330
|
+
<param name="action">The action.</param>
|
331
|
+
<param name="value1">The first method parameter.</param>
|
332
|
+
<param name="value2">The second method parameter.</param>
|
333
|
+
<returns>The result of the action.</returns>
|
334
|
+
</member>
|
335
|
+
<member name="M:bbv.Common.Threading.UserInterfaceThreadSynchronizer.Execute``4(System.Func{``1,``2,``3,``0},``1,``2,``3)">
|
336
|
+
<summary>
|
337
|
+
Executes the specified action on the user interface thread asynchronously.
|
338
|
+
</summary>
|
339
|
+
<typeparam name="TResult">The type of the result.</typeparam>
|
340
|
+
<typeparam name="TParameter1">Type of the first method parameter</typeparam>
|
341
|
+
<typeparam name="TParameter2">Type of the second method parameter</typeparam>
|
342
|
+
<typeparam name="TParameter3">Type of the third method parameter</typeparam>
|
343
|
+
<param name="action">The action.</param>
|
344
|
+
<param name="value1">The first method parameter.</param>
|
345
|
+
<param name="value2">The second method parameter.</param>
|
346
|
+
<param name="value3">The third method parameter.</param>
|
347
|
+
<returns>The result of the action.</returns>
|
348
|
+
</member>
|
349
|
+
<member name="M:bbv.Common.Threading.UserInterfaceThreadSynchronizer.Execute``5(System.Func{``1,``2,``3,``4,``0},``1,``2,``3,``4)">
|
350
|
+
<summary>
|
351
|
+
Executes the specified action on the user interface thread asynchronously.
|
352
|
+
</summary>
|
353
|
+
<typeparam name="TResult">The type of the result.</typeparam>
|
354
|
+
<typeparam name="TParameter1">Type of the first method parameter</typeparam>
|
355
|
+
<typeparam name="TParameter2">Type of the second method parameter</typeparam>
|
356
|
+
<typeparam name="TParameter3">Type of the third method parameter</typeparam>
|
357
|
+
<typeparam name="TParameter4">Type of the fourth method parameter</typeparam>
|
358
|
+
<param name="action">The action.</param>
|
359
|
+
<param name="value1">The first method parameter.</param>
|
360
|
+
<param name="value2">The second method parameter.</param>
|
361
|
+
<param name="value3">The third method parameter.</param>
|
362
|
+
<param name="value4">The fourth method parameter.</param>
|
363
|
+
<returns>The result of the action.</returns>
|
364
|
+
</member>
|
365
|
+
<member name="M:bbv.Common.Threading.UserInterfaceThreadSynchronizer.LogSynchronous(System.Delegate,System.Int32,System.String)">
|
366
|
+
<summary>
|
367
|
+
Logs a synchronous operation.
|
368
|
+
</summary>
|
369
|
+
<param name="action">The action.</param>
|
370
|
+
<param name="threadId">The source thread id.</param>
|
371
|
+
<param name="threadName">Name of the source thread.</param>
|
372
|
+
</member>
|
373
|
+
<member name="M:bbv.Common.Threading.UserInterfaceThreadSynchronizer.LogSynchronous``1(System.Delegate,System.Int32,System.String,``0)">
|
374
|
+
<summary>
|
375
|
+
Logs the synchronous operation with result.
|
376
|
+
</summary>
|
377
|
+
<typeparam name="TResult">The type of the result.</typeparam>
|
378
|
+
<param name="action">The action.</param>
|
379
|
+
<param name="threadId">The source thread id.</param>
|
380
|
+
<param name="threadName">Name of the source thread.</param>
|
381
|
+
<param name="result">The result.</param>
|
382
|
+
</member>
|
383
|
+
<member name="M:bbv.Common.Threading.UserInterfaceThreadSynchronizer.LogAsynchronous(System.Delegate,System.Int32,System.String)">
|
384
|
+
<summary>
|
385
|
+
Logs the asynchronous.
|
386
|
+
</summary>
|
387
|
+
<param name="action">The action.</param>
|
388
|
+
<param name="threadId">The source thread id.</param>
|
389
|
+
<param name="threadName">Name of the source thread.</param>
|
390
|
+
</member>
|
391
|
+
<member name="M:bbv.Common.Threading.UserInterfaceThreadSynchronizer.Log(System.String,System.Int32,System.String,System.Delegate)">
|
392
|
+
<summary>
|
393
|
+
Logs the specified message.
|
394
|
+
</summary>
|
395
|
+
<param name="message">The message.</param>
|
396
|
+
<param name="threadId">The source thread id.</param>
|
397
|
+
<param name="threadName">Name of the source thread.</param>
|
398
|
+
<param name="action">The action.</param>
|
399
|
+
</member>
|
400
|
+
</members>
|
401
|
+
</doc>
|
Binary file
|
Binary file
|
@@ -0,0 +1,114 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<doc>
|
3
|
+
<assembly>
|
4
|
+
<name>bbv.Common.Windows</name>
|
5
|
+
</assembly>
|
6
|
+
<members>
|
7
|
+
<member name="T:bbv.Common.Windows.GraphicHelper">
|
8
|
+
<summary>
|
9
|
+
Provides functionality for access graphical information.
|
10
|
+
</summary>
|
11
|
+
</member>
|
12
|
+
<member name="M:bbv.Common.Windows.GraphicHelper.GetDpi">
|
13
|
+
<summary>
|
14
|
+
Calculates the DPI of the windows desktop.
|
15
|
+
</summary>
|
16
|
+
<returns></returns>
|
17
|
+
</member>
|
18
|
+
<member name="T:bbv.Common.Windows.WindowsHelper">
|
19
|
+
<summary>
|
20
|
+
Provides functionality to interact with Windows (OS).
|
21
|
+
</summary>
|
22
|
+
</member>
|
23
|
+
<member name="M:bbv.Common.Windows.WindowsHelper.ExitSystem(bbv.Common.Windows.WindowsHelper.EWX_ENUM)">
|
24
|
+
<summary>
|
25
|
+
Shuts down the machine according the given value.
|
26
|
+
</summary>
|
27
|
+
<param name="ewx_value">Set of flags defined in EWX_ENUM</param>
|
28
|
+
</member>
|
29
|
+
<member name="T:bbv.Common.Windows.WindowsHelper.EWX_ENUM">
|
30
|
+
<summary>
|
31
|
+
Flags to tell <see cref="M:bbv.Common.Windows.WindowsHelper.ExitSystem(bbv.Common.Windows.WindowsHelper.EWX_ENUM)"/> how to Exit the system.
|
32
|
+
</summary>
|
33
|
+
</member>
|
34
|
+
<member name="F:bbv.Common.Windows.WindowsHelper.EWX_ENUM.EWX_LOGOFF">
|
35
|
+
<summary>
|
36
|
+
Shuts down all processes running in the logon session of the process that called the ExitWindowsEx function.
|
37
|
+
Then it logs the user off. This flag can be used only by processes running in an interactive user's logon session.
|
38
|
+
</summary>
|
39
|
+
</member>
|
40
|
+
<member name="F:bbv.Common.Windows.WindowsHelper.EWX_ENUM.EWX_SHUTDOWN">
|
41
|
+
<summary>
|
42
|
+
Shuts down the system to a point at which it is safe to turn off the power. All file buffers have been flushed to disk, and all running processes have stopped.
|
43
|
+
The calling process must have the SE_SHUTDOWN_NAME privilege. For more information, see the following Remarks section.
|
44
|
+
Specifying this flag will not turn off the power even if the system supports the power-off feature. You must specify EWX_POWEROFF to do this.
|
45
|
+
Windows XP SP1: If the system supports the power-off feature, specifying this flag turns off the power.
|
46
|
+
</summary>
|
47
|
+
</member>
|
48
|
+
<member name="F:bbv.Common.Windows.WindowsHelper.EWX_ENUM.EWX_REBOOT">
|
49
|
+
<summary>
|
50
|
+
Shuts down the system and then restarts the system.
|
51
|
+
The calling process must have the SE_SHUTDOWN_NAME privilege. For more information, see the following Remarks section.
|
52
|
+
</summary>
|
53
|
+
</member>
|
54
|
+
<member name="F:bbv.Common.Windows.WindowsHelper.EWX_ENUM.EWX_POWEROFF">
|
55
|
+
<summary>
|
56
|
+
Shuts down the system and turns off the power. The system must support the power-off feature.
|
57
|
+
The calling process must have the SE_SHUTDOWN_NAME privilege. For more information, see the following Remarks section.
|
58
|
+
</summary>
|
59
|
+
</member>
|
60
|
+
<member name="F:bbv.Common.Windows.WindowsHelper.EWX_ENUM.EWX_FORCE">
|
61
|
+
<summary>
|
62
|
+
Forces processes to terminate. When this flag is set, the system does not send the WM_QUERYENDSESSION and WM_ENDSESSION messages. This can cause the applications to lose data. Therefore, you should only use this flag in an emergency.
|
63
|
+
Windows XP: If the computer is locked and this flag is not specified, the shutdown process will fail.
|
64
|
+
</summary>
|
65
|
+
</member>
|
66
|
+
<member name="F:bbv.Common.Windows.WindowsHelper.EWX_ENUM.EWX_FORCEIFHUNG">
|
67
|
+
<summary>
|
68
|
+
Forces processes to terminate if they do not respond to the WM_QUERYENDSESSION or WM_ENDSESSION message within the
|
69
|
+
timeout interval. For more information, see the Remarks. This flag is ignored if EWX_FORCE is used.
|
70
|
+
Windows NT and Windows Me/98/95: This value is not supported.
|
71
|
+
</summary>
|
72
|
+
</member>
|
73
|
+
<member name="F:bbv.Common.Windows.WindowsHelper.EWX_ENUM.EWX_FORCEREBOOT">
|
74
|
+
<summary>
|
75
|
+
EWX_REBOOT | EWX_FORCE
|
76
|
+
</summary>
|
77
|
+
</member>
|
78
|
+
<member name="F:bbv.Common.Windows.WindowsHelper.EWX_ENUM.EWX_FORCEIFHUNGREBOOT">
|
79
|
+
<summary>
|
80
|
+
EWX_REBOOT | EWX_FORCEIFHUNG
|
81
|
+
</summary>
|
82
|
+
</member>
|
83
|
+
<member name="F:bbv.Common.Windows.WindowsHelper.EWX_ENUM.EWX_FORCESHUTDOWN">
|
84
|
+
<summary>
|
85
|
+
EWX_SHUTDOWN | EWX_FORCE
|
86
|
+
</summary>
|
87
|
+
</member>
|
88
|
+
<member name="F:bbv.Common.Windows.WindowsHelper.EWX_ENUM.EWX_FORCEIFHUNGSHUTDOWN">
|
89
|
+
<summary>
|
90
|
+
EWX_SHUTDOWN | EWX_FORCEIFHUNG
|
91
|
+
</summary>
|
92
|
+
</member>
|
93
|
+
<member name="F:bbv.Common.Windows.WindowsHelper.EWX_ENUM.EWX_FORCEPOWEROFF">
|
94
|
+
<summary>
|
95
|
+
EWX_POWEROFF | EWX_FORCE
|
96
|
+
</summary>
|
97
|
+
</member>
|
98
|
+
<member name="F:bbv.Common.Windows.WindowsHelper.EWX_ENUM.EWX_FORCEIFHUNGPOWEROFF">
|
99
|
+
<summary>
|
100
|
+
EWX_POWEROFF | EWX_FORCEIFHUNG
|
101
|
+
</summary>
|
102
|
+
</member>
|
103
|
+
<member name="F:bbv.Common.Windows.WindowsHelper.EWX_ENUM.EWX_FORCELOGOFF">
|
104
|
+
<summary>
|
105
|
+
EWX_LOGOFF | EWX_FORCE
|
106
|
+
</summary>
|
107
|
+
</member>
|
108
|
+
<member name="F:bbv.Common.Windows.WindowsHelper.EWX_ENUM.EWX_FORCEIFHUNGLOGOFF">
|
109
|
+
<summary>
|
110
|
+
EWX_LOGOFF | EWX_FORCEIFHUNG
|
111
|
+
</summary>
|
112
|
+
</member>
|
113
|
+
</members>
|
114
|
+
</doc>
|