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,831 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<doc>
|
3
|
+
<assembly>
|
4
|
+
<name>bbv.Common</name>
|
5
|
+
</assembly>
|
6
|
+
<members>
|
7
|
+
<member name="T:bbv.Common.Async.AsyncResult">
|
8
|
+
<summary>
|
9
|
+
Result for asynchronous tasks
|
10
|
+
</summary>
|
11
|
+
</member>
|
12
|
+
<member name="F:bbv.Common.Async.AsyncResult.DefaultInitialLeaseTime">
|
13
|
+
<summary>
|
14
|
+
The default value for the InitialLeaseTime for ISponsor in seconds
|
15
|
+
</summary>
|
16
|
+
</member>
|
17
|
+
<member name="F:bbv.Common.Async.AsyncResult.DefaultSponsorshipTimeout">
|
18
|
+
<summary>
|
19
|
+
The default value for the Sponsorship Timeout for ISponsor in seconds
|
20
|
+
</summary>
|
21
|
+
</member>
|
22
|
+
<member name="F:bbv.Common.Async.AsyncResult.asyncCallback">
|
23
|
+
<summary>
|
24
|
+
The callback function that is executed after completion.
|
25
|
+
</summary>
|
26
|
+
</member>
|
27
|
+
<member name="F:bbv.Common.Async.AsyncResult.asyncState">
|
28
|
+
<summary>
|
29
|
+
A user-defined object that qualifies or contains information about an asynchronous operation.
|
30
|
+
</summary>
|
31
|
+
</member>
|
32
|
+
<member name="F:bbv.Common.Async.AsyncResult.initialLeaseTime">
|
33
|
+
<summary>
|
34
|
+
The initial lease time for the ISponsor
|
35
|
+
</summary>
|
36
|
+
</member>
|
37
|
+
<member name="F:bbv.Common.Async.AsyncResult.sponsorshipTimeout">
|
38
|
+
<summary>
|
39
|
+
The sponsor ship timeout
|
40
|
+
</summary>
|
41
|
+
</member>
|
42
|
+
<member name="F:bbv.Common.Async.AsyncResult.completionState">
|
43
|
+
<summary>
|
44
|
+
The current state of the asynchronous operation.
|
45
|
+
</summary>
|
46
|
+
</member>
|
47
|
+
<member name="F:bbv.Common.Async.AsyncResult.asyncWaitHandle">
|
48
|
+
<summary>
|
49
|
+
Wait handle for waiting for completion of the operation.
|
50
|
+
</summary>
|
51
|
+
</member>
|
52
|
+
<member name="F:bbv.Common.Async.AsyncResult.exception">
|
53
|
+
<summary>
|
54
|
+
The exception that occurred during execution of the operation.
|
55
|
+
</summary>
|
56
|
+
</member>
|
57
|
+
<member name="F:bbv.Common.Async.AsyncResult.disposed">
|
58
|
+
<summary>
|
59
|
+
Indicated if the object has been disposed
|
60
|
+
</summary>
|
61
|
+
</member>
|
62
|
+
<member name="F:bbv.Common.Async.AsyncResult.data">
|
63
|
+
<summary>
|
64
|
+
A dictionary that is used to store user defined data.
|
65
|
+
</summary>
|
66
|
+
</member>
|
67
|
+
<member name="M:bbv.Common.Async.AsyncResult.#ctor(System.AsyncCallback,System.Object)">
|
68
|
+
<summary>
|
69
|
+
Initializes a new instance of the <see cref="T:bbv.Common.Async.AsyncResult"/> class.
|
70
|
+
</summary>
|
71
|
+
<param name="asyncCallback">The callback function that is called after the task has completed.</param>
|
72
|
+
<param name="state">A user-defined object that qualifies or contains information about an asynchronous
|
73
|
+
operation.</param>
|
74
|
+
</member>
|
75
|
+
<member name="M:bbv.Common.Async.AsyncResult.#ctor(System.AsyncCallback,System.Object,System.TimeSpan,System.TimeSpan)">
|
76
|
+
<summary>
|
77
|
+
Initializes a new instance of the <see cref="T:bbv.Common.Async.AsyncResult"/> class.
|
78
|
+
</summary>
|
79
|
+
<param name="asyncCallback">The callback function that is called after the task has completed.</param>
|
80
|
+
<param name="state">A user-defined object that qualifies or contains information about an asynchronous
|
81
|
+
operation.</param>
|
82
|
+
<param name="initialLeaseTime">The initial sponsor lease time.</param>
|
83
|
+
<param name="sponsorshipTimeout">The sponsorship timeout.</param>
|
84
|
+
</member>
|
85
|
+
<member name="M:bbv.Common.Async.AsyncResult.IsDisposed">
|
86
|
+
<summary>
|
87
|
+
Determines whether this instance is disposed.
|
88
|
+
</summary>
|
89
|
+
<returns>
|
90
|
+
<c>true</c> if this instance is disposed; otherwise, <c>false</c>.
|
91
|
+
</returns>
|
92
|
+
</member>
|
93
|
+
<member name="M:bbv.Common.Async.AsyncResult.SetAsCompleted(System.Exception,System.Boolean)">
|
94
|
+
<summary>
|
95
|
+
Sets the task to the completed state.
|
96
|
+
</summary>
|
97
|
+
<param name="occurredException">An exception that occurred while executing the task. Passing null for
|
98
|
+
exception means no error occurred. This is the common case.</param>
|
99
|
+
<param name="completedSynchronously">True if the task run synchronously.</param>
|
100
|
+
</member>
|
101
|
+
<member name="M:bbv.Common.Async.AsyncResult.EndInvoke">
|
102
|
+
<summary>
|
103
|
+
Waits until the task has completed. If an exception occurred it is re thrown.
|
104
|
+
</summary>
|
105
|
+
</member>
|
106
|
+
<member name="M:bbv.Common.Async.AsyncResult.Dispose">
|
107
|
+
<summary>
|
108
|
+
Releases lifetime service.
|
109
|
+
</summary>
|
110
|
+
</member>
|
111
|
+
<member name="M:bbv.Common.Async.AsyncResult.InitializeLifetimeService">
|
112
|
+
<summary>
|
113
|
+
Obtains a lifetime service object to control the lifetime policy for this instance.
|
114
|
+
</summary>
|
115
|
+
<returns>
|
116
|
+
An object of type <see cref="T:System.Runtime.Remoting.Lifetime.ILease"></see> used to control the
|
117
|
+
lifetime policy for this instance. This is the current lifetime service object for this instance if
|
118
|
+
one exists; otherwise, a new lifetime service object initialized to the value of the
|
119
|
+
<see cref="P:System.Runtime.Remoting.Lifetime.LifetimeServices.LeaseManagerPollTime"></see> property.
|
120
|
+
</returns>
|
121
|
+
<exception cref="T:System.Security.SecurityException">The immediate caller does not have infrastructure
|
122
|
+
permission. </exception>
|
123
|
+
<PermissionSet><IPermission class="System.Security.Permissions.SecurityPermission, mscorlib,
|
124
|
+
Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1"
|
125
|
+
Flags="RemotingConfiguration, Infrastructure"/></PermissionSet>
|
126
|
+
</member>
|
127
|
+
<member name="M:bbv.Common.Async.AsyncResult.Renewal(System.Runtime.Remoting.Lifetime.ILease)">
|
128
|
+
<summary>
|
129
|
+
Requests a sponsoring client to renew the lease for the specified object.
|
130
|
+
</summary>
|
131
|
+
<param name="lease">The lifetime lease of the object that requires lease renewal.</param>
|
132
|
+
<returns>
|
133
|
+
The additional lease time for the specified object.
|
134
|
+
</returns>
|
135
|
+
<exception cref="T:System.Security.SecurityException">The immediate caller makes the call through
|
136
|
+
a reference to the interface and does not have infrastructure permission. </exception>
|
137
|
+
<PermissionSet><IPermission class="System.Security.Permissions.SecurityPermission, mscorlib,
|
138
|
+
Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure"/>
|
139
|
+
</PermissionSet>
|
140
|
+
</member>
|
141
|
+
<member name="P:bbv.Common.Async.AsyncResult.AsyncState">
|
142
|
+
<summary>
|
143
|
+
Gets a user-defined object that qualifies or contains information about an asynchronous operation.
|
144
|
+
</summary>
|
145
|
+
<value></value>
|
146
|
+
<returns>A user-defined object that qualifies or contains information about an asynchronous
|
147
|
+
operation.</returns>
|
148
|
+
</member>
|
149
|
+
<member name="P:bbv.Common.Async.AsyncResult.CompletedSynchronously">
|
150
|
+
<summary>
|
151
|
+
Gets a value indicating whether the asynchronous operation completed synchronously.
|
152
|
+
</summary>
|
153
|
+
<value></value>
|
154
|
+
<returns>true if the asynchronous operation completed synchronously; otherwise, false.</returns>
|
155
|
+
</member>
|
156
|
+
<member name="P:bbv.Common.Async.AsyncResult.AsyncWaitHandle">
|
157
|
+
<summary>
|
158
|
+
Gets a <see cref="T:System.Threading.WaitHandle"></see> that is used to wait for an asynchronous
|
159
|
+
operation to complete.
|
160
|
+
</summary>
|
161
|
+
<value></value>
|
162
|
+
<returns>A <see cref="T:System.Threading.WaitHandle"></see> that is used to wait for an asynchronous
|
163
|
+
operation to complete.</returns>
|
164
|
+
</member>
|
165
|
+
<member name="P:bbv.Common.Async.AsyncResult.IsCompleted">
|
166
|
+
<summary>
|
167
|
+
Gets a value indicating whether the asynchronous operation has completed.
|
168
|
+
</summary>
|
169
|
+
<value></value>
|
170
|
+
<returns>true if the operation is complete; otherwise, false.</returns>
|
171
|
+
</member>
|
172
|
+
<member name="P:bbv.Common.Async.AsyncResult.Data">
|
173
|
+
<summary>
|
174
|
+
Gets a dictionary that can be used to store user defined data.
|
175
|
+
</summary>
|
176
|
+
</member>
|
177
|
+
<member name="T:bbv.Common.Async.AsyncResult.CompletionState">
|
178
|
+
<summary>
|
179
|
+
The possible states of the asynchronous operation.
|
180
|
+
</summary>
|
181
|
+
</member>
|
182
|
+
<member name="F:bbv.Common.Async.AsyncResult.CompletionState.Pending">
|
183
|
+
<summary>
|
184
|
+
Operation is not finished yet
|
185
|
+
</summary>
|
186
|
+
</member>
|
187
|
+
<member name="F:bbv.Common.Async.AsyncResult.CompletionState.CompletedSynchronously">
|
188
|
+
<summary>
|
189
|
+
Operation was executed synchronously
|
190
|
+
</summary>
|
191
|
+
</member>
|
192
|
+
<member name="F:bbv.Common.Async.AsyncResult.CompletionState.CompletedAsynchronously">
|
193
|
+
<summary>
|
194
|
+
Operation was executed asynchronously
|
195
|
+
</summary>
|
196
|
+
</member>
|
197
|
+
<member name="T:bbv.Common.Async.AsyncWorker">
|
198
|
+
<summary>
|
199
|
+
The <see cref="T:bbv.Common.Async.AsyncWorker"/> is a small wrapper around the <see cref="T:System.ComponentModel.BackgroundWorker"/> for easier usage
|
200
|
+
outside of UI components.
|
201
|
+
The async worker has to be created on the UI thread.
|
202
|
+
</summary>
|
203
|
+
</member>
|
204
|
+
<member name="T:bbv.Common.Async.IAsyncWorker">
|
205
|
+
<summary>
|
206
|
+
The <see cref="T:bbv.Common.Async.AsyncWorker"/> is a small wrapper around the <see cref="T:System.ComponentModel.BackgroundWorker"/> for easier usage
|
207
|
+
outside of UI components.
|
208
|
+
</summary>
|
209
|
+
</member>
|
210
|
+
<member name="M:bbv.Common.Async.IAsyncWorker.RunWorkerAsync">
|
211
|
+
<summary>
|
212
|
+
Starts execution of a background operation.
|
213
|
+
</summary>
|
214
|
+
</member>
|
215
|
+
<member name="M:bbv.Common.Async.IAsyncWorker.RunWorkerAsync(System.Object)">
|
216
|
+
<summary>
|
217
|
+
Starts execution of a background operation.
|
218
|
+
</summary>
|
219
|
+
<param name="argument">The argument passed to the worker.</param>
|
220
|
+
</member>
|
221
|
+
<member name="M:bbv.Common.Async.IAsyncWorker.CancelAsync">
|
222
|
+
<summary>
|
223
|
+
Cancels the operation.
|
224
|
+
</summary>
|
225
|
+
</member>
|
226
|
+
<member name="M:bbv.Common.Async.IAsyncWorker.ReportProgress(System.Int32,System.Object)">
|
227
|
+
<summary>
|
228
|
+
Raises the <see cref="M:bbv.Common.Async.AsyncWorker.ProgressChanged(System.Object,System.ComponentModel.ProgressChangedEventArgs)"/> event.
|
229
|
+
</summary>
|
230
|
+
<param name="percentProgress">The percent progress.</param>
|
231
|
+
<param name="userState">State of the user.</param>
|
232
|
+
</member>
|
233
|
+
<member name="P:bbv.Common.Async.IAsyncWorker.IsBusy">
|
234
|
+
<summary>
|
235
|
+
Gets a value indicating whether an asynchronous operation is running.
|
236
|
+
</summary>
|
237
|
+
</member>
|
238
|
+
<member name="P:bbv.Common.Async.IAsyncWorker.CancellationPending">
|
239
|
+
<summary>
|
240
|
+
Gets a value indicating whether the operation should be canceled.
|
241
|
+
</summary>
|
242
|
+
</member>
|
243
|
+
<member name="P:bbv.Common.Async.IAsyncWorker.WorkerReportsProgress">
|
244
|
+
<summary>
|
245
|
+
Gets or sets a value indicating whether progress can be reported.
|
246
|
+
</summary>
|
247
|
+
</member>
|
248
|
+
<member name="P:bbv.Common.Async.IAsyncWorker.WorkerSupportsCancellation">
|
249
|
+
<summary>
|
250
|
+
Gets or sets a value indicating whether cancellation of asynchronous operation is supported.
|
251
|
+
</summary>
|
252
|
+
</member>
|
253
|
+
<member name="F:bbv.Common.Async.AsyncWorker.completed">
|
254
|
+
<summary>The completed delegate.</summary>
|
255
|
+
</member>
|
256
|
+
<member name="F:bbv.Common.Async.AsyncWorker.name">
|
257
|
+
<summary>
|
258
|
+
The name of this worker. Used in log messages.
|
259
|
+
</summary>
|
260
|
+
</member>
|
261
|
+
<member name="F:bbv.Common.Async.AsyncWorker.backgroundWorker">
|
262
|
+
<summary>The background worker to execute the operation.</summary>
|
263
|
+
</member>
|
264
|
+
<member name="F:bbv.Common.Async.AsyncWorker.worker">
|
265
|
+
<summary>The worker delegate.</summary>
|
266
|
+
</member>
|
267
|
+
<member name="F:bbv.Common.Async.AsyncWorker.progress">
|
268
|
+
<summary>The progress delegate.</summary>
|
269
|
+
</member>
|
270
|
+
<member name="F:bbv.Common.Async.AsyncWorker.log">
|
271
|
+
<summary>
|
272
|
+
Logger of this class.
|
273
|
+
</summary>
|
274
|
+
</member>
|
275
|
+
<member name="M:bbv.Common.Async.AsyncWorker.#ctor(System.ComponentModel.DoWorkEventHandler)">
|
276
|
+
<summary>
|
277
|
+
Initializes a new instance of the <see cref="T:bbv.Common.Async.AsyncWorker"/> class.
|
278
|
+
</summary>
|
279
|
+
<param name="worker">The worker delegate.</param>
|
280
|
+
</member>
|
281
|
+
<member name="M:bbv.Common.Async.AsyncWorker.#ctor(System.String,System.ComponentModel.DoWorkEventHandler)">
|
282
|
+
<summary>
|
283
|
+
Initializes a new instance of the <see cref="T:bbv.Common.Async.AsyncWorker"/> class.
|
284
|
+
</summary>
|
285
|
+
<param name="name">The name used in log messages.</param>
|
286
|
+
<param name="worker">The worker delegate.</param>
|
287
|
+
</member>
|
288
|
+
<member name="M:bbv.Common.Async.AsyncWorker.#ctor(System.ComponentModel.DoWorkEventHandler,System.ComponentModel.RunWorkerCompletedEventHandler)">
|
289
|
+
<summary>
|
290
|
+
Initializes a new instance of the <see cref="T:bbv.Common.Async.AsyncWorker"/> class.
|
291
|
+
</summary>
|
292
|
+
<param name="worker">The worker delegate.</param>
|
293
|
+
<param name="completed">The completed delegate.</param>
|
294
|
+
</member>
|
295
|
+
<member name="M:bbv.Common.Async.AsyncWorker.#ctor(System.String,System.ComponentModel.DoWorkEventHandler,System.ComponentModel.RunWorkerCompletedEventHandler)">
|
296
|
+
<summary>
|
297
|
+
Initializes a new instance of the <see cref="T:bbv.Common.Async.AsyncWorker"/> class.
|
298
|
+
</summary>
|
299
|
+
<param name="name">The name used in log messages.</param>
|
300
|
+
<param name="worker">The worker delegate.</param>
|
301
|
+
<param name="completed">The completed delegate.</param>
|
302
|
+
</member>
|
303
|
+
<member name="M:bbv.Common.Async.AsyncWorker.#ctor(System.ComponentModel.DoWorkEventHandler,System.ComponentModel.ProgressChangedEventHandler,System.ComponentModel.RunWorkerCompletedEventHandler)">
|
304
|
+
<summary>
|
305
|
+
Initializes a new instance of the <see cref="T:bbv.Common.Async.AsyncWorker"/> class.
|
306
|
+
</summary>
|
307
|
+
<param name="worker">The worker delegate.</param>
|
308
|
+
<param name="progress">The progress delegate.</param>
|
309
|
+
<param name="completed">The completed delegate.</param>
|
310
|
+
</member>
|
311
|
+
<member name="M:bbv.Common.Async.AsyncWorker.#ctor(System.String,System.ComponentModel.DoWorkEventHandler,System.ComponentModel.ProgressChangedEventHandler,System.ComponentModel.RunWorkerCompletedEventHandler)">
|
312
|
+
<summary>
|
313
|
+
Initializes a new instance of the <see cref="T:bbv.Common.Async.AsyncWorker"/> class.
|
314
|
+
</summary>
|
315
|
+
<param name="name">The name used in log messages.</param>
|
316
|
+
<param name="worker">The worker delegate.</param>
|
317
|
+
<param name="progress">The progress delegate.</param>
|
318
|
+
<param name="completed">The completed delegate.</param>
|
319
|
+
</member>
|
320
|
+
<member name="M:bbv.Common.Async.AsyncWorker.RunWorkerAsync">
|
321
|
+
<summary>
|
322
|
+
Starts execution of a background operation.
|
323
|
+
</summary>
|
324
|
+
</member>
|
325
|
+
<member name="M:bbv.Common.Async.AsyncWorker.RunWorkerAsync(System.Object)">
|
326
|
+
<summary>
|
327
|
+
Starts execution of a background operation.
|
328
|
+
</summary>
|
329
|
+
<param name="argument">The argument passed to the worker delegate.</param>
|
330
|
+
</member>
|
331
|
+
<member name="M:bbv.Common.Async.AsyncWorker.CancelAsync">
|
332
|
+
<summary>
|
333
|
+
Cancels the operation.
|
334
|
+
</summary>
|
335
|
+
</member>
|
336
|
+
<member name="M:bbv.Common.Async.AsyncWorker.ReportProgress(System.Int32,System.Object)">
|
337
|
+
<summary>
|
338
|
+
Raises the <see cref="M:bbv.Common.Async.AsyncWorker.ProgressChanged(System.Object,System.ComponentModel.ProgressChangedEventArgs)"/> event.
|
339
|
+
</summary>
|
340
|
+
<param name="percentProgress">The percent progress.</param>
|
341
|
+
<param name="userState">State of the user.</param>
|
342
|
+
</member>
|
343
|
+
<member name="M:bbv.Common.Async.AsyncWorker.ToString">
|
344
|
+
<summary>
|
345
|
+
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
|
346
|
+
</summary>
|
347
|
+
<returns>
|
348
|
+
A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
|
349
|
+
</returns>
|
350
|
+
</member>
|
351
|
+
<member name="M:bbv.Common.Async.AsyncWorker.Completed(System.Object,System.ComponentModel.RunWorkerCompletedEventArgs)">
|
352
|
+
<summary>
|
353
|
+
Calls the completed delegate if there is any. If no completed delegate is defined and there exists an exception then an exception is thrown.
|
354
|
+
</summary>
|
355
|
+
<param name="sender">The sender.</param>
|
356
|
+
<param name="e">An <see cref="T:System.EventArgs"></see> that contains the event data.</param>
|
357
|
+
</member>
|
358
|
+
<member name="M:bbv.Common.Async.AsyncWorker.DoWork(System.Object,System.ComponentModel.DoWorkEventArgs)">
|
359
|
+
<summary>
|
360
|
+
Calls the worker delegate.
|
361
|
+
</summary>
|
362
|
+
<param name="sender">The sender.</param>
|
363
|
+
<param name="e">The <see cref="T:System.ComponentModel.DoWorkEventArgs"/> instance containing the event data.</param>
|
364
|
+
</member>
|
365
|
+
<member name="M:bbv.Common.Async.AsyncWorker.ProgressChanged(System.Object,System.ComponentModel.ProgressChangedEventArgs)">
|
366
|
+
<summary>
|
367
|
+
Calls the progress delegate.
|
368
|
+
</summary>
|
369
|
+
<param name="sender">The sender.</param>
|
370
|
+
<param name="e">The <see cref="T:System.ComponentModel.ProgressChangedEventArgs"/> instance containing the event data.</param>
|
371
|
+
</member>
|
372
|
+
<member name="M:bbv.Common.Async.AsyncWorker.LogOperationCompleted(System.ComponentModel.RunWorkerCompletedEventArgs)">
|
373
|
+
<summary>
|
374
|
+
Logs that the operation completed.
|
375
|
+
</summary>
|
376
|
+
<param name="e">The <see cref="T:System.ComponentModel.RunWorkerCompletedEventArgs"/> instance containing the event data.</param>
|
377
|
+
</member>
|
378
|
+
<member name="M:bbv.Common.Async.AsyncWorker.LogOperationCompletedWithoutException">
|
379
|
+
<summary>
|
380
|
+
Logs that the operation completed without an exception.
|
381
|
+
</summary>
|
382
|
+
</member>
|
383
|
+
<member name="M:bbv.Common.Async.AsyncWorker.LogOperationCompletedWithException(System.Exception)">
|
384
|
+
<summary>
|
385
|
+
Logs that the operation completed with an exception.
|
386
|
+
</summary>
|
387
|
+
<param name="exception">The exception.</param>
|
388
|
+
</member>
|
389
|
+
<member name="P:bbv.Common.Async.AsyncWorker.IsBusy">
|
390
|
+
<summary>
|
391
|
+
Gets a value indicating whether an asynchronous operation is running.
|
392
|
+
</summary>
|
393
|
+
</member>
|
394
|
+
<member name="P:bbv.Common.Async.AsyncWorker.CancellationPending">
|
395
|
+
<summary>
|
396
|
+
Gets a value indicating whether the operation should be canceled.
|
397
|
+
</summary>
|
398
|
+
</member>
|
399
|
+
<member name="P:bbv.Common.Async.AsyncWorker.WorkerReportsProgress">
|
400
|
+
<summary>
|
401
|
+
Gets or sets a value indicating whether progress can be reported.
|
402
|
+
</summary>
|
403
|
+
</member>
|
404
|
+
<member name="P:bbv.Common.Async.AsyncWorker.WorkerSupportsCancellation">
|
405
|
+
<summary>
|
406
|
+
Gets or sets a value indicating whether cancellation of asynchronous operation is supported.
|
407
|
+
</summary>
|
408
|
+
</member>
|
409
|
+
<member name="T:bbv.Common.Async.AsyncWorkerException">
|
410
|
+
<summary>
|
411
|
+
This exception is thrown if an error occurs in the asynchronous operation and there is no completed event handler.
|
412
|
+
</summary>
|
413
|
+
</member>
|
414
|
+
<member name="M:bbv.Common.Async.AsyncWorkerException.#ctor">
|
415
|
+
<summary>
|
416
|
+
Initializes a new instance of the <see cref="T:bbv.Common.Async.AsyncWorkerException"/> class.
|
417
|
+
</summary>
|
418
|
+
</member>
|
419
|
+
<member name="M:bbv.Common.Async.AsyncWorkerException.#ctor(System.String)">
|
420
|
+
<summary>
|
421
|
+
Initializes a new instance of the <see cref="T:bbv.Common.Async.AsyncWorkerException"/> class.
|
422
|
+
</summary>
|
423
|
+
<param name="message">The message.</param>
|
424
|
+
</member>
|
425
|
+
<member name="M:bbv.Common.Async.AsyncWorkerException.#ctor(System.String,System.Exception)">
|
426
|
+
<summary>
|
427
|
+
Initializes a new instance of the <see cref="T:bbv.Common.Async.AsyncWorkerException"/> class.
|
428
|
+
</summary>
|
429
|
+
<param name="message">The message.</param>
|
430
|
+
<param name="innerException">The inner exception.</param>
|
431
|
+
</member>
|
432
|
+
<member name="M:bbv.Common.Async.AsyncWorkerException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
433
|
+
<summary>
|
434
|
+
Initializes a new instance of the <see cref="T:bbv.Common.Async.AsyncWorkerException"/> class.
|
435
|
+
</summary>
|
436
|
+
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
|
437
|
+
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
|
438
|
+
<exception cref="T:System.ArgumentNullException">
|
439
|
+
The <paramref name="info"/> parameter is null.
|
440
|
+
</exception>
|
441
|
+
<exception cref="T:System.Runtime.Serialization.SerializationException">
|
442
|
+
The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0).
|
443
|
+
</exception>
|
444
|
+
</member>
|
445
|
+
<member name="T:bbv.Common.Async.AsyncResult`1">
|
446
|
+
<summary>
|
447
|
+
Result for asynchronous tasks with a return value.
|
448
|
+
</summary>
|
449
|
+
<typeparam name="TResult">The result type</typeparam>
|
450
|
+
</member>
|
451
|
+
<member name="F:bbv.Common.Async.AsyncResult`1.resultValue">
|
452
|
+
<summary>
|
453
|
+
The result of the asynchronous operation. It is set when the operation is completed.
|
454
|
+
</summary>
|
455
|
+
</member>
|
456
|
+
<member name="M:bbv.Common.Async.AsyncResult`1.#ctor(System.AsyncCallback,System.Object)">
|
457
|
+
<summary>
|
458
|
+
Initializes a new instance of the <see cref="T:bbv.Common.Async.AsyncResult`1"/> class.
|
459
|
+
</summary>
|
460
|
+
<param name="asyncCallback">The callback function that is called after the task has completed.</param>
|
461
|
+
<param name="state">A user-defined object that qualifies or contains information about an asynchronous
|
462
|
+
operation.</param>
|
463
|
+
</member>
|
464
|
+
<member name="M:bbv.Common.Async.AsyncResult`1.SetAsCompleted(`0,System.Boolean)">
|
465
|
+
<summary>
|
466
|
+
Sets the task to completed with a result.
|
467
|
+
</summary>
|
468
|
+
<param name="result">The return value of the task.</param>
|
469
|
+
<param name="completedSynchronously">true if the task run synchronously.</param>
|
470
|
+
</member>
|
471
|
+
<member name="M:bbv.Common.Async.AsyncResult`1.EndInvoke">
|
472
|
+
<summary>
|
473
|
+
Waits until the task has completed.
|
474
|
+
</summary>
|
475
|
+
<returns>The return value of the task.</returns>
|
476
|
+
</member>
|
477
|
+
<member name="T:bbv.Common.DateTimeProvider">
|
478
|
+
<summary>
|
479
|
+
The date time provider implements <see cref="T:bbv.Common.IDateTimeProvider"/> to return date and time information.
|
480
|
+
The date time provider can be used to abstract access to the <see cref="T:System.DateTime"/> class to support
|
481
|
+
better testability by mocking e.g. <see cref="P:System.DateTime.Now"/>.
|
482
|
+
</summary>
|
483
|
+
</member>
|
484
|
+
<member name="T:bbv.Common.IDateTimeProvider">
|
485
|
+
<summary>
|
486
|
+
The date time provider returns date and time information.
|
487
|
+
The date time provider can be used to abstract access to the <see cref="T:System.DateTime"/> class to support
|
488
|
+
better testability by mocking e.g. <see cref="P:System.DateTime.Now"/>.
|
489
|
+
</summary>
|
490
|
+
</member>
|
491
|
+
<member name="P:bbv.Common.IDateTimeProvider.Now">
|
492
|
+
<summary>
|
493
|
+
Gets a <see cref="T:System.DateTime"/> representing now
|
494
|
+
</summary>
|
495
|
+
</member>
|
496
|
+
<member name="P:bbv.Common.IDateTimeProvider.Today">
|
497
|
+
<summary>
|
498
|
+
Gets a <see cref="T:System.DateTime"/> representing today
|
499
|
+
</summary>
|
500
|
+
</member>
|
501
|
+
<member name="P:bbv.Common.DateTimeProvider.Now">
|
502
|
+
<summary>
|
503
|
+
Gets a <see cref="T:System.DateTime"/> representing actual date and time. Returns <see cref="P:System.DateTime.Now"/>
|
504
|
+
</summary>
|
505
|
+
</member>
|
506
|
+
<member name="P:bbv.Common.DateTimeProvider.Today">
|
507
|
+
<summary>
|
508
|
+
Gets a <see cref="T:System.DateTime"/> representing today. Returns <see cref="P:System.DateTime.Today"/>
|
509
|
+
</summary>
|
510
|
+
</member>
|
511
|
+
<member name="T:bbv.Common.IO.StreamHelper">
|
512
|
+
<summary>
|
513
|
+
Class to help with stream handling that is not covered by .NET.
|
514
|
+
</summary>
|
515
|
+
</member>
|
516
|
+
<member name="M:bbv.Common.IO.StreamHelper.CopyStream(System.IO.Stream,System.IO.Stream)">
|
517
|
+
<summary>
|
518
|
+
Copies the input stream to the output stream.
|
519
|
+
</summary>
|
520
|
+
<param name="input">The input stream.</param><param name="output">The output stream.</param><exception cref="T:System.ArgumentNullException"><paramref name="input"/> or <paramref name="output"/> are null.
|
521
|
+
</exception><exception cref="T:System.ArgumentException"><paramref name="input"/>is not readable or <paramref name="output"/> is
|
522
|
+
not writable.</exception>
|
523
|
+
</member>
|
524
|
+
<member name="M:bbv.Common.IO.StreamHelper.CompareStreamContents(System.IO.Stream,System.IO.Stream)">
|
525
|
+
<summary>
|
526
|
+
Compares the contents of the streams given.
|
527
|
+
</summary>
|
528
|
+
<param name="expected">The expected.</param><param name="actual">The actual.</param><returns>
|
529
|
+
True if the stream contents are equal, else false.
|
530
|
+
</returns>
|
531
|
+
<exception cref="T:System.ArgumentException"></exception>
|
532
|
+
</member>
|
533
|
+
<member name="T:bbv.Common.Resources.EmbeddedResourceLoader">
|
534
|
+
<summary>
|
535
|
+
Implements the <see cref="T:bbv.Common.Resources.IResourceLoader"/> to load embedded resources from assemblies
|
536
|
+
</summary>
|
537
|
+
</member>
|
538
|
+
<member name="T:bbv.Common.Resources.IResourceLoader">
|
539
|
+
<summary>
|
540
|
+
Provides functionality to load resources.
|
541
|
+
</summary>
|
542
|
+
</member>
|
543
|
+
<member name="M:bbv.Common.Resources.IResourceLoader.LoadResourceAsXml(System.Type,System.String)">
|
544
|
+
<summary>
|
545
|
+
Loads an XML file into an <see cref="T:System.Xml.XmlNode"/>
|
546
|
+
</summary>
|
547
|
+
<param name="type">The type to find the assembly and namespace containing the resource</param>
|
548
|
+
<param name="resourceName">The name of the resource relative to the namespace of <paramref name="type"/>.</param>
|
549
|
+
<returns>A <see cref="T:System.Xml.XPath.IXPathNavigable"/> containing the contents of the embedded XML file</returns>
|
550
|
+
</member>
|
551
|
+
<member name="M:bbv.Common.Resources.IResourceLoader.LoadResourceAsXml(System.Reflection.Assembly,System.String)">
|
552
|
+
<summary>
|
553
|
+
Loads an embedded XML file into a<see cref="T:System.Xml.XmlNode"/>
|
554
|
+
</summary>
|
555
|
+
<param name="assembly">The Assembly to look for the resource.</param>
|
556
|
+
<param name="resourceName">The full name including the namespace of the resource.</param>
|
557
|
+
<returns>
|
558
|
+
A<see cref="T:System.Xml.XPath.IXPathNavigable"/>containing the contents of the embedded XML file
|
559
|
+
</returns>
|
560
|
+
</member>
|
561
|
+
<member name="M:bbv.Common.Resources.IResourceLoader.LoadResourceAsString(System.Type,System.String)">
|
562
|
+
<summary>
|
563
|
+
Loads an embedded file into a <see cref="T:System.String"/>
|
564
|
+
</summary>
|
565
|
+
<param name="type">The type to find the assembly containing the resource</param>
|
566
|
+
<param name="resourceName">The name of the resource relative to the namespace of <paramref name="type"/>.</param>
|
567
|
+
<returns>A <see cref="T:System.String"/> containing the contents of the embedded resource file</returns>
|
568
|
+
</member>
|
569
|
+
<member name="M:bbv.Common.Resources.IResourceLoader.LoadResourceAsString(System.Reflection.Assembly,System.String)">
|
570
|
+
<summary>
|
571
|
+
Loads an embedded file into a <see cref="T:System.String"/>
|
572
|
+
</summary>
|
573
|
+
<param name="assembly">The Assembly to look for the resource.</param>
|
574
|
+
<param name="resourceName">The full name including the namespace of the resource.</param>
|
575
|
+
<returns>A <see cref="T:System.String"/> containing the contents of the embedded resource file</returns>
|
576
|
+
</member>
|
577
|
+
<member name="M:bbv.Common.Resources.IResourceLoader.LoadResourceAsStream(System.Type,System.String)">
|
578
|
+
<summary>
|
579
|
+
Loads an embedded file into a <see cref="T:System.IO.Stream"/>
|
580
|
+
</summary>
|
581
|
+
<param name="type">The type to find the assembly containing the resource</param>
|
582
|
+
<param name="resourceName">The name of the resource relative to the namespace of <paramref name="type"/>./// </param>
|
583
|
+
<returns>A <see cref="T:System.IO.Stream"/> containing the contents of the embedded resource file</returns>
|
584
|
+
</member>
|
585
|
+
<member name="M:bbv.Common.Resources.IResourceLoader.LoadResourceAsStream(System.Reflection.Assembly,System.String)">
|
586
|
+
<summary>
|
587
|
+
Loads an embedded file into a <see cref="T:System.IO.Stream"/>
|
588
|
+
</summary>
|
589
|
+
<param name="assembly">The Assembly to look for the resource.</param>
|
590
|
+
<param name="resourceName">The full name including the namespace of the resource.</param>
|
591
|
+
<returns>A <see cref="T:System.IO.Stream"/> containing the contents of the embedded resource file</returns>
|
592
|
+
</member>
|
593
|
+
<member name="M:bbv.Common.Resources.EmbeddedResourceLoader.LoadResourceAsXml(System.Type,System.String)">
|
594
|
+
<summary>
|
595
|
+
Loads an XML file into an <see cref="T:System.Xml.XmlNode"/>
|
596
|
+
</summary>
|
597
|
+
<param name="type">The type to find the assembly and namespace containing the resource</param>
|
598
|
+
<param name="resourceName">The name of the resource relative to the namespace of <paramref name="type"/>.</param>
|
599
|
+
<returns>
|
600
|
+
A <see cref="T:System.Xml.XPath.IXPathNavigable"/> containing the contents of the embedded XML file
|
601
|
+
</returns>
|
602
|
+
<exception cref="T:System.ArgumentException"><paramref name="resourceName"/> does not exist</exception>
|
603
|
+
</member>
|
604
|
+
<member name="M:bbv.Common.Resources.EmbeddedResourceLoader.LoadResourceAsXml(System.Reflection.Assembly,System.String)">
|
605
|
+
<summary>
|
606
|
+
Loads an embedded XML file into a<see cref="T:System.Xml.XmlNode"/>
|
607
|
+
</summary>
|
608
|
+
<param name="assembly">The Assembly to look for the resource.</param>
|
609
|
+
<param name="resourceName">The full name including the namespace of the resource.</param>
|
610
|
+
<returns>
|
611
|
+
A<see cref="T:System.Xml.XPath.IXPathNavigable"/>containing the contents of the embedded XML file
|
612
|
+
</returns>
|
613
|
+
</member>
|
614
|
+
<member name="M:bbv.Common.Resources.EmbeddedResourceLoader.LoadResourceAsString(System.Type,System.String)">
|
615
|
+
<summary>
|
616
|
+
Loads an embedded file into a <see cref="T:System.String"/>
|
617
|
+
</summary>
|
618
|
+
<param name="type">The type to find the assembly containing the resource</param>
|
619
|
+
<param name="resourceName">The name of the resource relative to the namespace of <paramref name="type"/>.</param>
|
620
|
+
<returns>
|
621
|
+
A <see cref="T:System.String"/> containing the contents of the embedded resource file
|
622
|
+
</returns>
|
623
|
+
</member>
|
624
|
+
<member name="M:bbv.Common.Resources.EmbeddedResourceLoader.LoadResourceAsString(System.Reflection.Assembly,System.String)">
|
625
|
+
<summary>
|
626
|
+
Loads an embedded file into a <see cref="T:System.String"/>
|
627
|
+
</summary>
|
628
|
+
<param name="assembly">The Assembly to look for the resource.</param>
|
629
|
+
<param name="resourceName">The full name including the namespace of the resource.</param>
|
630
|
+
<returns>
|
631
|
+
A <see cref="T:System.String"/> containing the contents of the embedded resource file
|
632
|
+
</returns>
|
633
|
+
</member>
|
634
|
+
<member name="M:bbv.Common.Resources.EmbeddedResourceLoader.LoadResourceAsStream(System.Type,System.String)">
|
635
|
+
<summary>
|
636
|
+
Loads an embedded file into a <see cref="T:System.IO.Stream"/>
|
637
|
+
</summary>
|
638
|
+
<param name="type">The type to find the assembly containing the resource</param>
|
639
|
+
<param name="resourceName">The name of the resource relative to the namespace of <paramref name="type"/>.///</param>
|
640
|
+
<returns>
|
641
|
+
A <see cref="T:System.IO.Stream"/> containing the contents of the embedded resource file
|
642
|
+
</returns>
|
643
|
+
</member>
|
644
|
+
<member name="M:bbv.Common.Resources.EmbeddedResourceLoader.LoadResourceAsStream(System.Reflection.Assembly,System.String)">
|
645
|
+
<summary>
|
646
|
+
Loads an embedded file into a <see cref="T:System.IO.Stream"/>
|
647
|
+
</summary>
|
648
|
+
<param name="assembly">The Assembly to look for the resource.</param>
|
649
|
+
<param name="resourceName">The full name including the namespace of the resource.</param>
|
650
|
+
<returns>
|
651
|
+
A <see cref="T:System.IO.Stream"/> containing the contents of the embedded resource file
|
652
|
+
</returns>
|
653
|
+
</member>
|
654
|
+
<member name="T:bbv.Common.Events.EventArgs`1">
|
655
|
+
<summary>
|
656
|
+
Generic EventArgs
|
657
|
+
Use like : event EventHandler<EventArgs<int>> clickedyclick
|
658
|
+
</summary>
|
659
|
+
<typeparam name="T">Type of the contained value.</typeparam>
|
660
|
+
</member>
|
661
|
+
<member name="F:bbv.Common.Events.EventArgs`1.value">
|
662
|
+
<summary>
|
663
|
+
The contained value.
|
664
|
+
</summary>
|
665
|
+
</member>
|
666
|
+
<member name="M:bbv.Common.Events.EventArgs`1.#ctor(`0)">
|
667
|
+
<summary>
|
668
|
+
Initializes a new instance of the <see cref="T:bbv.Common.Events.EventArgs`1"/> class.
|
669
|
+
</summary>
|
670
|
+
<param name="value">The value.</param>
|
671
|
+
</member>
|
672
|
+
<member name="P:bbv.Common.Events.EventArgs`1.Value">
|
673
|
+
<summary>
|
674
|
+
Gets the contained value.
|
675
|
+
</summary>
|
676
|
+
</member>
|
677
|
+
<member name="T:bbv.Common.Events.EventFilter`1">
|
678
|
+
<summary>
|
679
|
+
Filter for events that occurs consecutive in short time and only the last one of the series is important.
|
680
|
+
</summary>
|
681
|
+
<typeparam name="TEventArgs">The type of the event args.</typeparam>
|
682
|
+
</member>
|
683
|
+
<member name="T:bbv.Common.Events.IEventFilter`1">
|
684
|
+
<summary>
|
685
|
+
Defines functions for a filter that filters events who occurs consecutive in short time, only the last one
|
686
|
+
of the series is important.
|
687
|
+
</summary>
|
688
|
+
<typeparam name="TEventArgs">The type of the event args.</typeparam>
|
689
|
+
</member>
|
690
|
+
<member name="M:bbv.Common.Events.IEventFilter`1.HandleOriginalEvent(System.Object,`0)">
|
691
|
+
<summary>
|
692
|
+
Receiver of the to filter event
|
693
|
+
</summary>
|
694
|
+
<param name="sender">Source of the Event.</param>
|
695
|
+
<param name="e">The Event Args.</param>
|
696
|
+
<remarks>
|
697
|
+
The method can direct used as the event handler method, but it can also called from the original event
|
698
|
+
handler method
|
699
|
+
</remarks>
|
700
|
+
</member>
|
701
|
+
<member name="E:bbv.Common.Events.IEventFilter`1.FilteredEventRaised">
|
702
|
+
<summary>
|
703
|
+
This event accurs if in the defined time window no new 'original' event occurs.
|
704
|
+
</summary>
|
705
|
+
</member>
|
706
|
+
<member name="F:bbv.Common.Events.EventFilter`1.DefaultTimeWindow">
|
707
|
+
<summary>
|
708
|
+
Default time to wait since last event from observee until event is fired to observer
|
709
|
+
</summary>
|
710
|
+
</member>
|
711
|
+
<member name="F:bbv.Common.Events.EventFilter`1.log">
|
712
|
+
<summary>
|
713
|
+
Logger of this class.
|
714
|
+
</summary>
|
715
|
+
</member>
|
716
|
+
<member name="F:bbv.Common.Events.EventFilter`1.timer">
|
717
|
+
<summary>
|
718
|
+
Timer used to wait for timeout.
|
719
|
+
</summary>
|
720
|
+
</member>
|
721
|
+
<member name="F:bbv.Common.Events.EventFilter`1.pendingSender">
|
722
|
+
<summary>
|
723
|
+
Last received sender.
|
724
|
+
</summary>
|
725
|
+
</member>
|
726
|
+
<member name="F:bbv.Common.Events.EventFilter`1.pendingEventArgs">
|
727
|
+
<summary>
|
728
|
+
Last received event args.
|
729
|
+
</summary>
|
730
|
+
</member>
|
731
|
+
<member name="M:bbv.Common.Events.EventFilter`1.#ctor">
|
732
|
+
<summary>
|
733
|
+
Initializes a new instance of the <see cref="T:bbv.Common.Events.EventFilter`1"/> class.
|
734
|
+
</summary>
|
735
|
+
</member>
|
736
|
+
<member name="M:bbv.Common.Events.EventFilter`1.#ctor(System.Int32)">
|
737
|
+
<summary>
|
738
|
+
Initializes a new instance of the <see cref="T:bbv.Common.Events.EventFilter`1"/> class.
|
739
|
+
</summary>
|
740
|
+
<param name="timeWindow">The filter time window.</param>
|
741
|
+
</member>
|
742
|
+
<member name="M:bbv.Common.Events.EventFilter`1.HandleOriginalEvent(System.Object,`0)">
|
743
|
+
<summary>
|
744
|
+
Receiver of the to filter event
|
745
|
+
</summary>
|
746
|
+
<param name="sender">Source of the Event.</param>
|
747
|
+
<param name="e">The Event Args.</param>
|
748
|
+
<remarks>
|
749
|
+
The method can direct used as the event handler method, but it can also called from the original event
|
750
|
+
handler method
|
751
|
+
</remarks>
|
752
|
+
</member>
|
753
|
+
<member name="M:bbv.Common.Events.EventFilter`1.OnTimerElapsed(System.Object,System.EventArgs)">
|
754
|
+
<summary>
|
755
|
+
Called when timer elapsed.
|
756
|
+
</summary>
|
757
|
+
<param name="sender">The sender.</param>
|
758
|
+
<param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
|
759
|
+
</member>
|
760
|
+
<member name="E:bbv.Common.Events.EventFilter`1.FilteredEventRaised">
|
761
|
+
<summary>
|
762
|
+
This event accurs if in the defined time window no new 'original' event occurs.
|
763
|
+
</summary>
|
764
|
+
</member>
|
765
|
+
<member name="T:bbv.Common.Resources.FileResourceLoader">
|
766
|
+
<summary>
|
767
|
+
Implements the <see cref="T:bbv.Common.Resources.IResourceLoader"/> to load resources from file system
|
768
|
+
</summary>
|
769
|
+
</member>
|
770
|
+
<member name="M:bbv.Common.Resources.FileResourceLoader.LoadResourceAsXml(System.Type,System.String)">
|
771
|
+
<summary>
|
772
|
+
Loads an XML file into an <see cref="T:System.Xml.XmlNode"/>
|
773
|
+
</summary>
|
774
|
+
<param name="type">The type to find the assembly and namespace containing the resource</param>
|
775
|
+
<param name="resourceName">The name of the resource relative to the namespace of <paramref name="type"/>.</param>
|
776
|
+
<returns>
|
777
|
+
A <see cref="T:System.Xml.XPath.IXPathNavigable"/> containing the contents of the embedded XML file
|
778
|
+
</returns>
|
779
|
+
</member>
|
780
|
+
<member name="M:bbv.Common.Resources.FileResourceLoader.LoadResourceAsXml(System.Reflection.Assembly,System.String)">
|
781
|
+
<summary>
|
782
|
+
Loads an embedded XML file into a<see cref="T:System.Xml.XmlNode"/>
|
783
|
+
</summary>
|
784
|
+
<param name="assembly">The Assembly to look for the resource.</param>
|
785
|
+
<param name="resourceName">The full name including the namespace of the resource.</param>
|
786
|
+
<returns>
|
787
|
+
A<see cref="T:System.Xml.XPath.IXPathNavigable"/>containing the contents of the embedded XML file
|
788
|
+
</returns>
|
789
|
+
</member>
|
790
|
+
<member name="M:bbv.Common.Resources.FileResourceLoader.LoadResourceAsString(System.Type,System.String)">
|
791
|
+
<summary>
|
792
|
+
Loads an embedded file into a <see cref="T:System.String"/>
|
793
|
+
</summary>
|
794
|
+
<param name="type">The type to find the assembly containing the resource</param>
|
795
|
+
<param name="resourceName">The name of the resource relative to the namespace of <paramref name="type"/>.</param>
|
796
|
+
<returns>
|
797
|
+
A <see cref="T:System.String"/> containing the contents of the embedded resource file
|
798
|
+
</returns>
|
799
|
+
</member>
|
800
|
+
<member name="M:bbv.Common.Resources.FileResourceLoader.LoadResourceAsString(System.Reflection.Assembly,System.String)">
|
801
|
+
<summary>
|
802
|
+
Loads an embedded file into a <see cref="T:System.String"/>
|
803
|
+
</summary>
|
804
|
+
<param name="assembly">The Assembly to look for the resource.</param>
|
805
|
+
<param name="resourceName">The full name including the namespace of the resource.</param>
|
806
|
+
<returns>
|
807
|
+
A <see cref="T:System.String"/> containing the contents of the embedded resource file
|
808
|
+
</returns>
|
809
|
+
</member>
|
810
|
+
<member name="M:bbv.Common.Resources.FileResourceLoader.LoadResourceAsStream(System.Type,System.String)">
|
811
|
+
<summary>
|
812
|
+
Loads an embedded file into a <see cref="T:System.IO.Stream"/>
|
813
|
+
</summary>
|
814
|
+
<param name="type">The type to find the assembly containing the resource</param>
|
815
|
+
<param name="resourceName">The name of the resource relative to the namespace of <paramref name="type"/>.///</param>
|
816
|
+
<returns>
|
817
|
+
A <see cref="T:System.IO.Stream"/> containing the contents of the embedded resource file
|
818
|
+
</returns>
|
819
|
+
</member>
|
820
|
+
<member name="M:bbv.Common.Resources.FileResourceLoader.LoadResourceAsStream(System.Reflection.Assembly,System.String)">
|
821
|
+
<summary>
|
822
|
+
Loads an embedded file into a <see cref="T:System.IO.Stream"/>
|
823
|
+
</summary>
|
824
|
+
<param name="assembly">The Assembly to look for the resource.</param>
|
825
|
+
<param name="resourceName">The full name including the namespace of the resource.</param>
|
826
|
+
<returns>
|
827
|
+
A <see cref="T:System.IO.Stream"/> containing the contents of the embedded resource file
|
828
|
+
</returns>
|
829
|
+
</member>
|
830
|
+
</members>
|
831
|
+
</doc>
|