bbvcommon 6.268.0.20100803

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,245 @@
1
+ <?xml version="1.0"?>
2
+ <doc>
3
+ <assembly>
4
+ <name>bbv.Common.Data</name>
5
+ </assembly>
6
+ <members>
7
+ <member name="T:bbv.Common.Data.CsvParseException">
8
+ <summary>
9
+ Exception thrown when a parse exception occurs within the <see cref="T:bbv.Common.Data.CsvParser"/>.
10
+ </summary>
11
+ </member>
12
+ <member name="F:bbv.Common.Data.CsvParseException.position">
13
+ <summary>
14
+ Where the exception occurred.
15
+ </summary>
16
+ </member>
17
+ <member name="F:bbv.Common.Data.CsvParseException.line">
18
+ <summary>
19
+ The line that was parsed.
20
+ </summary>
21
+ </member>
22
+ <member name="M:bbv.Common.Data.CsvParseException.#ctor(System.String,System.Int32,System.String)">
23
+ <summary>
24
+ Initializes a new instance of the <see cref="T:bbv.Common.Data.CsvParseException"/> class.
25
+ </summary>
26
+ <param name="line">The line that was parsed.</param>
27
+ <param name="position">The position on which the exception occurred.</param>
28
+ <param name="message">The exception message.</param>
29
+ </member>
30
+ <member name="P:bbv.Common.Data.CsvParseException.Line">
31
+ <summary>
32
+ Gets the line that was parsed.
33
+ </summary>
34
+ <value>The line parsed.</value>
35
+ </member>
36
+ <member name="P:bbv.Common.Data.CsvParseException.Position">
37
+ <summary>
38
+ Gets the position where the exception occurred.
39
+ </summary>
40
+ <value>The position.</value>
41
+ </member>
42
+ <member name="T:bbv.Common.Data.CsvParser">
43
+ <summary>
44
+ Parser for CSV files.
45
+ </summary>
46
+ </member>
47
+ <member name="M:bbv.Common.Data.CsvParser.Parse(System.String)">
48
+ <summary>
49
+ Parses a csv string line.
50
+ </summary>
51
+ <param name="line">A csv line.</param>
52
+ <returns>A string array with the parsed values.</returns>
53
+ </member>
54
+ <member name="M:bbv.Common.Data.CsvParser.Parse(System.String,System.Char)">
55
+ <summary>
56
+ Parses a csv string line.
57
+ ┌────────┐
58
+ "┌─────────────────────────│ Start │──────┐*
59
+ ┌──┐ │ └────────┘ │ ┌──┐
60
+ │ │* │ │ │ │ │*
61
+ ▼ │ ▼ │ ▼ ▼ │
62
+ ┌───────────────────┐ " │ ┌──────────────────┐
63
+ │ ColumnStartString │◄───────────────────┐ │ │ ColumnStartValue │
64
+ └───────────────────┘ │ │ └──────────────────┘
65
+ │ ▲ │ │ ▲
66
+ │EOL|EOF │" │ │,|EOL|EOF │
67
+ ▼ ▼ │ ▼ │*
68
+ ┌────────┐ * ┌─────────────┐,|EOL|EOF ┌───────────┐◄───────────┘
69
+ │ Error │◄────── │ " in string │─────────►│ ColumnEnd │,|EOL|EOF
70
+ └────────┘ └─────────────┘ └───────────┘
71
+ Null│ │ ▲
72
+ ▼ │ │,|EOL|EOF
73
+ ┌────────┐ └─┘
74
+ │ Finish │
75
+ └────────┘
76
+ </summary>
77
+ <param name="line">A csv line.</param>
78
+ <param name="separator">The separator of this line. As example coma.</param>
79
+ <returns>A string array with the parsed values.</returns>
80
+ </member>
81
+ <member name="T:bbv.Common.Data.CsvParser.State">
82
+ <summary>
83
+ The state the parser is in.
84
+ </summary>
85
+ </member>
86
+ <member name="F:bbv.Common.Data.CsvParser.State.Start">
87
+ <summary>Start state</summary>
88
+ </member>
89
+ <member name="F:bbv.Common.Data.CsvParser.State.ColumnStartString">
90
+ <summary>A string contained in " detected.</summary>
91
+ </member>
92
+ <member name="F:bbv.Common.Data.CsvParser.State.ColumnStartValue">
93
+ <summary>A simple value detected</summary>
94
+ </member>
95
+ <member name="F:bbv.Common.Data.CsvParser.State.Quote">
96
+ <summary>Parsed a quote.</summary>
97
+ </member>
98
+ <member name="F:bbv.Common.Data.CsvParser.State.ColumnEnd">
99
+ <summary>End of column reached.</summary>
100
+ </member>
101
+ <member name="F:bbv.Common.Data.CsvParser.State.Error">
102
+ <summary>Parse error.</summary>
103
+ </member>
104
+ <member name="T:bbv.Common.Data.CsvWriter">
105
+ <summary>
106
+ Writer for csv files.
107
+ Takes care of quoting values if needed.
108
+ </summary>
109
+ </member>
110
+ <member name="F:bbv.Common.Data.CsvWriter.specialChars">
111
+ <summary>
112
+ List of special characters that need the value to be quoted.
113
+ </summary>
114
+ </member>
115
+ <member name="M:bbv.Common.Data.CsvWriter.Write(System.String[])">
116
+ <summary>
117
+ Returns a line containing the specified values formatted as csv.
118
+ </summary>
119
+ <param name="values">The values.</param>
120
+ <returns>A line containing the specified values formatted as csv.</returns>
121
+ </member>
122
+ <member name="M:bbv.Common.Data.CsvWriter.Write(System.String[],System.String)">
123
+ <summary>
124
+ Returns a line containing the specified values formatted as csv.
125
+ </summary>
126
+ <param name="values">The values.</param>
127
+ <param name="delimiter">The delimiter used to separate the values.</param>
128
+ <returns>
129
+ A line containing the specified values formatted as csv.
130
+ </returns>
131
+ </member>
132
+ <member name="M:bbv.Common.Data.CsvWriter.WriteValue(System.Text.StringBuilder,System.String)">
133
+ <summary>
134
+ Writes a value to a line. Encloses the value into " " if necessary.
135
+ </summary>
136
+ <param name="line">The line to write the value to.</param>
137
+ <param name="value">The value.</param>
138
+ </member>
139
+ <member name="T:bbv.Common.Data.DatasetHelper">
140
+ <summary>
141
+ Contains static methods helping to work with Datasets
142
+ </summary>
143
+ </member>
144
+ <member name="M:bbv.Common.Data.DatasetHelper.CreateTableFromView(System.Data.DataView)">
145
+ <summary>
146
+ Creates a new DataTable from the rows currently active in the given view.
147
+ </summary>
148
+ <param name="dataView">DataView to create the table from.</param>
149
+ <returns>
150
+ Returns a new DataTable with the same schema as the table,
151
+ which the view is based on.
152
+ </returns>
153
+ </member>
154
+ <member name="M:bbv.Common.Data.DatasetHelper.CloneView(System.Data.DataView)">
155
+ <summary>
156
+ Creates a DataView showing the same entries as the original View
157
+ </summary>
158
+ <param name="originalView">the original view from which the new View is created</param>
159
+ <returns>the created new View</returns>
160
+ </member>
161
+ <member name="M:bbv.Common.Data.DatasetHelper.GetChangedColumns(System.Data.DataRow)">
162
+ <summary>
163
+ Returns the columns that were changed in the row.
164
+ </summary>
165
+ <param name="row">the row to be examined</param>
166
+ <returns>the changed columns</returns>
167
+ </member>
168
+ <member name="M:bbv.Common.Data.DatasetHelper.HasColumnChanged(System.Data.DataColumn[],System.Data.DataRow)">
169
+ <summary>
170
+ Checks if certain Columns in a row have a changed value.
171
+ </summary>
172
+ <param name="columns">a list of the columns to be checked</param>
173
+ <param name="row">the row to be analyzed</param>
174
+ <returns>true if any of that columns in the row has changed</returns>
175
+ </member>
176
+ <member name="M:bbv.Common.Data.DatasetHelper.UpdateColumnsIfDifferent(System.Data.DataRow,System.Data.DataRow,System.String[])">
177
+ <summary>
178
+ Updates columns in <paramref name="columnsToUpdate"/> of <paramref name="destinationRow"/>
179
+ that are different from <paramref name="sourceRow"/>.
180
+ </summary>
181
+ <param name="sourceRow">Row to compare with</param>
182
+ <param name="destinationRow">Ro to update</param>
183
+ <param name="columnsToUpdate">Columns to verify</param>
184
+ </member>
185
+ <member name="T:bbv.Common.Data.DateTimeHelper">
186
+ <summary>
187
+ Provides functionality for <see cref="T:System.DateTime"/>s.
188
+ </summary>
189
+ </member>
190
+ <member name="F:bbv.Common.Data.DateTimeHelper.InternationalDateTimeFormat">
191
+ <summary>
192
+ Returns the international Date Time Format for selecting
193
+ DateTime values from DataTables.
194
+ </summary>
195
+ </member>
196
+ <member name="F:bbv.Common.Data.DateTimeHelper.InternationalDateTimeFormatwithFraction">
197
+ <summary>
198
+ Same as InternationalDateTimeFormat but with the fraction of
199
+ a second.
200
+ </summary>
201
+ </member>
202
+ <member name="M:bbv.Common.Data.DateTimeHelper.CompareDay(System.Int32,System.Int32,System.Int32,System.DateTime)">
203
+ <summary>
204
+ Compares two dates with the resolution of one day.
205
+ if both dates are in the same day the method returns 0,
206
+ if date 1 is older than date 2 the method returns a value
207
+ smaller 0 and vice versa
208
+ </summary>
209
+ <param name="day1">
210
+ day of date 1
211
+ </param>
212
+ <param name="month1">
213
+ month of date 1
214
+ </param>
215
+ <param name="year1">
216
+ year of date 1
217
+ </param>
218
+ <param name="date2">
219
+ date 2 to be compared
220
+ </param>
221
+ <returns>
222
+ returns 0 if both dates are in the same day, smaller 0 if date1 is at least
223
+ one day older than date2 and vice versa
224
+ </returns>
225
+ </member>
226
+ <member name="M:bbv.Common.Data.DateTimeHelper.CompareDay(System.DateTime,System.DateTime)">
227
+ <summary>
228
+ Compares two dates with the resolution of one day.
229
+ if both dates are in the same day the method returns 0,
230
+ if date 1 is older than date 2 the method returns a value
231
+ smaller 0 and vice versa
232
+ </summary>
233
+ <param name="date1">
234
+ date 1 to be compared
235
+ </param>
236
+ <param name="date2">
237
+ date 2 to be compared
238
+ </param>
239
+ <returns>
240
+ returns 0 if both dates are in the same day, smaller 0 if date1 is at least
241
+ one day older than date2 and vice versa
242
+ </returns>
243
+ </member>
244
+ </members>
245
+ </doc>
@@ -0,0 +1,102 @@
1
+ <?xml version="1.0"?>
2
+ <doc>
3
+ <assembly>
4
+ <name>bbv.Common.Diagnostics</name>
5
+ </assembly>
6
+ <members>
7
+ <member name="T:bbv.Common.Diagnostics.ApplicationHelper">
8
+ <summary>
9
+ Provides functionality in the scope of applications.
10
+ </summary>
11
+ </member>
12
+ <member name="M:bbv.Common.Diagnostics.ApplicationHelper.CheckApplicationAlreadyRunning(System.Boolean)">
13
+ <summary>
14
+ Checks whether another instance of the same application is already running.
15
+ </summary>
16
+ <param name="switchToAlreadyRunningProcess">Whether the already running process is flashed and brought to front.</param>
17
+ <returns>Whether another instance of the application is already running.</returns>
18
+ </member>
19
+ <member name="M:bbv.Common.Diagnostics.ApplicationHelper.SwitchToThisWindow(System.IntPtr,System.Boolean)">
20
+ <summary>
21
+ EXTERN
22
+ The SwitchToThisWindow function is called to switch focus to a specified window and bring it to the foreground.
23
+ </summary>
24
+ <param name="hWnd">Handle to the window being switched to.</param>
25
+ <param name="fAltTab">A TRUE for this parameter indicates that the window is being switched to using the Alt/Ctl+Tab key sequence. This parameter should be FALSE otherwise.</param>
26
+ </member>
27
+ <member name="M:bbv.Common.Diagnostics.ApplicationHelper.ShowWindowAsync(System.IntPtr,System.Int32)">
28
+ <summary>
29
+ The ShowWindowAsync function sets the show state of a window created by a different thread.
30
+ </summary>
31
+ <param name="hWnd">Handle to the window.</param>
32
+ <param name="swCommand">Specifies how the window is to be shown. For a list of possible values, see the description of the ShowWindow function.</param>
33
+ <returns></returns>
34
+ </member>
35
+ <member name="M:bbv.Common.Diagnostics.ApplicationHelper.IsWindowVisible(System.IntPtr)">
36
+ <summary>
37
+ The IsWindowVisible function retrieves the visibility state of the specified window.
38
+ </summary>
39
+ <param name="hwnd">Handle to the window to test.</param>
40
+ <returns>
41
+ If the specified window, its parent window, its parent's parent window, and so forth, have the WS_VISIBLE style, the return value is nonzero.
42
+ Otherwise, the return value is zero. Because the return value specifies whether the window has the WS_VISIBLE style, it may be nonzero even if
43
+ the window is totally obscured by other windows.
44
+ </returns>
45
+ </member>
46
+ <member name="T:bbv.Common.Diagnostics.HighResolutionStopWatch">
47
+ <summary>
48
+ The <see cref="T:bbv.Common.Diagnostics.HighResolutionStopWatch"/> is used to meassure time between the calls to Start and Stop.
49
+ </summary>
50
+ <example>
51
+ <code>
52
+ PerformanceTimer pt = new PerformanceTimer();
53
+ pt.Start();
54
+ //do something
55
+ pt.Stop();
56
+ Console.WriteLine(pt.ElapsedTimeMilliseconds);
57
+ </code>
58
+ </example>
59
+ </member>
60
+ <member name="M:bbv.Common.Diagnostics.HighResolutionStopWatch.#ctor">
61
+ <summary>
62
+ Initializes a new instance of the <see cref="T:bbv.Common.Diagnostics.HighResolutionStopWatch"/> class and initializes
63
+ the <see cref="P:bbv.Common.Diagnostics.HighResolutionStopWatch.Frequency"/> of the high-resolution performance counter.
64
+ </summary>
65
+ </member>
66
+ <member name="M:bbv.Common.Diagnostics.HighResolutionStopWatch.Start">
67
+ <summary>
68
+ Starts the performance measuring.
69
+ </summary>
70
+ </member>
71
+ <member name="M:bbv.Common.Diagnostics.HighResolutionStopWatch.Stop">
72
+ <summary>
73
+ Stops the performance measuring.
74
+ </summary>
75
+ </member>
76
+ <member name="M:bbv.Common.Diagnostics.HighResolutionStopWatch.Reset">
77
+ <summary>
78
+ Resets all internal variables.
79
+ </summary>
80
+ </member>
81
+ <member name="P:bbv.Common.Diagnostics.HighResolutionStopWatch.Elapsed">
82
+ <summary>
83
+ Gets the elapsed counts of the last performance measure.
84
+ </summary>
85
+ </member>
86
+ <member name="P:bbv.Common.Diagnostics.HighResolutionStopWatch.Seconds">
87
+ <summary>
88
+ Gets the elapsed seconds of the last performance measure.
89
+ </summary>
90
+ </member>
91
+ <member name="P:bbv.Common.Diagnostics.HighResolutionStopWatch.Milliseconds">
92
+ <summary>
93
+ Gets the elapsed milliseconds of the last performance measure.
94
+ </summary>
95
+ </member>
96
+ <member name="P:bbv.Common.Diagnostics.HighResolutionStopWatch.Frequency">
97
+ <summary>
98
+ Gets the Frequency of of the high-resolution performance counter.
99
+ </summary>
100
+ </member>
101
+ </members>
102
+ </doc>
@@ -0,0 +1,3100 @@
1
+ <?xml version="1.0"?>
2
+ <doc>
3
+ <assembly>
4
+ <name>bbv.Common.EventBroker</name>
5
+ </assembly>
6
+ <members>
7
+ <member name="T:bbv.Common.EventBroker.Extensions.EventBrokerExtensionBase">
8
+ <summary>
9
+ Base class for <see cref="T:bbv.Common.EventBroker.IEventBrokerExtension"/>s that implements all members as virtual methods.
10
+ Derive from this class if you want to override only a few of the methods provided by <see cref="T:bbv.Common.EventBroker.IEventBrokerExtension"/>.
11
+ </summary>
12
+ </member>
13
+ <member name="T:bbv.Common.EventBroker.IEventBrokerExtension">
14
+ <summary>
15
+ Interface for implementing event broker extensions.
16
+ </summary>
17
+ </member>
18
+ <member name="M:bbv.Common.EventBroker.IEventBrokerExtension.FiringEvent(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication,System.Object,System.EventArgs)">
19
+ <summary>
20
+ Called when an event is fired.
21
+ </summary>
22
+ <param name="eventTopic">The event topic.</param>
23
+ <param name="publication">The publication.</param>
24
+ <param name="sender">The sender.</param>
25
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
26
+ </member>
27
+ <member name="M:bbv.Common.EventBroker.IEventBrokerExtension.FiredEvent(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication,System.Object,System.EventArgs)">
28
+ <summary>
29
+ Called when the event was fired (processing completed).
30
+ </summary>
31
+ <param name="eventTopic">The event topic.</param>
32
+ <param name="publication">The publication.</param>
33
+ <param name="sender">The sender.</param>
34
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
35
+ </member>
36
+ <member name="M:bbv.Common.EventBroker.IEventBrokerExtension.RegisteredItem(System.Object)">
37
+ <summary>
38
+ Called when an item was registered.
39
+ </summary>
40
+ <param name="item">The item that was registered.</param>
41
+ </member>
42
+ <member name="M:bbv.Common.EventBroker.IEventBrokerExtension.UnregisteredItem(System.Object)">
43
+ <summary>
44
+ Called when an item was unregistered.
45
+ </summary>
46
+ <param name="item">The item that was unregistered.</param>
47
+ </member>
48
+ <member name="M:bbv.Common.EventBroker.IEventBrokerExtension.ProcessedPublisher(System.Object,System.Boolean,bbv.Common.EventBroker.Internals.IEventTopicHost)">
49
+ <summary>
50
+ Called after a (potential) publisher was processed.
51
+ </summary>
52
+ <param name="publisher">The publisher.</param>
53
+ <param name="register">Whether the publisher is registered; or unregistered.</param>
54
+ <param name="eventTopicHost">The event topic host.</param>
55
+ </member>
56
+ <member name="M:bbv.Common.EventBroker.IEventBrokerExtension.ProcessedSubscriber(System.Object,System.Boolean,bbv.Common.EventBroker.Internals.IEventTopicHost)">
57
+ <summary>
58
+ Called after a (potential) subscriber was processed.
59
+ </summary>
60
+ <param name="subscriber">The subscriber.</param>
61
+ <param name="register">Whether the subscriber is registered; or unregistered.</param>
62
+ <param name="eventTopicHost">The event topic host.</param>
63
+ </member>
64
+ <member name="M:bbv.Common.EventBroker.IEventBrokerExtension.CreatedTopic(bbv.Common.EventBroker.Internals.IEventTopic)">
65
+ <summary>
66
+ Called after an event topic was created.
67
+ </summary>
68
+ <param name="eventTopic">The event topic.</param>
69
+ </member>
70
+ <member name="M:bbv.Common.EventBroker.IEventBrokerExtension.CreatedPublication(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication)">
71
+ <summary>
72
+ Called after a publication was created.
73
+ </summary>
74
+ <param name="eventTopic">The event topic.</param>
75
+ <param name="publication">The publication.</param>
76
+ </member>
77
+ <member name="M:bbv.Common.EventBroker.IEventBrokerExtension.CreatedSubscription(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.ISubscription)">
78
+ <summary>
79
+ Called after a subscription was created.
80
+ </summary>
81
+ <param name="eventTopic">The event topic.</param>
82
+ <param name="subscription">The subscription.</param>
83
+ </member>
84
+ <member name="M:bbv.Common.EventBroker.IEventBrokerExtension.AddedPublication(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication)">
85
+ <summary>
86
+ Called after a publication was added to an event topic.
87
+ </summary>
88
+ <param name="eventTopic">The event topic.</param>
89
+ <param name="publication">The publication.</param>
90
+ </member>
91
+ <member name="M:bbv.Common.EventBroker.IEventBrokerExtension.RemovedPublication(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication)">
92
+ <summary>
93
+ Called after a publication was removed from an event topic.
94
+ </summary>
95
+ <param name="eventTopic">The event topic. Null if removed by code.</param>
96
+ <param name="publication">The publication.</param>
97
+ </member>
98
+ <member name="M:bbv.Common.EventBroker.IEventBrokerExtension.AddedSubscription(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.ISubscription)">
99
+ <summary>
100
+ Called after a subscription was added to an event topic.
101
+ </summary>
102
+ <param name="eventTopic">The event topic.</param>
103
+ <param name="subscription">The subscription.</param>
104
+ </member>
105
+ <member name="M:bbv.Common.EventBroker.IEventBrokerExtension.RemovedSubscription(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.ISubscription)">
106
+ <summary>
107
+ Called after a subscription was removed from an event topic.
108
+ </summary>
109
+ <param name="eventTopic">The event topic.</param>
110
+ <param name="subscription">The subscription.</param>
111
+ </member>
112
+ <member name="M:bbv.Common.EventBroker.IEventBrokerExtension.Disposed(bbv.Common.EventBroker.Internals.IEventTopic)">
113
+ <summary>
114
+ Called after an event topic was disposed.
115
+ </summary>
116
+ <param name="eventTopic">The event topic.</param>
117
+ </member>
118
+ <member name="M:bbv.Common.EventBroker.IEventBrokerExtension.SubscriberExceptionsOccurred(bbv.Common.EventBroker.Internals.IEventTopic,System.Collections.Generic.IEnumerable{System.Exception})">
119
+ <summary>
120
+ Called when exceptions occurred during event handling by subscribers.
121
+ </summary>
122
+ <param name="eventTopic">The event topic.</param>
123
+ <param name="exceptions">The exceptions.</param>
124
+ </member>
125
+ <member name="M:bbv.Common.EventBroker.IEventBrokerExtension.RelayingEvent(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication,bbv.Common.EventBroker.Internals.ISubscription,bbv.Common.EventBroker.IHandler,System.Object,System.EventArgs)">
126
+ <summary>
127
+ Called before an event is relayed from the publication to the subscribers.
128
+ </summary>
129
+ <param name="eventTopic">The event topic.</param>
130
+ <param name="publication">The publication.</param>
131
+ <param name="subscription">The subscription.</param>
132
+ <param name="handler">The handler.</param>
133
+ <param name="sender">The sender.</param>
134
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
135
+ </member>
136
+ <member name="M:bbv.Common.EventBroker.IEventBrokerExtension.RelayedEvent(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication,bbv.Common.EventBroker.Internals.ISubscription,bbv.Common.EventBroker.IHandler,System.Object,System.EventArgs,System.Exception)">
137
+ <summary>
138
+ Called after the event was relayed from the publication to the subscribers.
139
+ </summary>
140
+ <param name="eventTopic">The event topic.</param>
141
+ <param name="publication">The publication.</param>
142
+ <param name="subscription">The subscription.</param>
143
+ <param name="handler">The handler.</param>
144
+ <param name="sender">The sender.</param>
145
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
146
+ <param name="exception">The exception that occurred during handling of the event by the subscriber.</param>
147
+ </member>
148
+ <member name="M:bbv.Common.EventBroker.IEventBrokerExtension.SkippedEvent(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication,bbv.Common.EventBroker.Internals.ISubscription,System.Object,System.EventArgs)">
149
+ <summary>
150
+ Called when a publication or subscription matcher did not match and the event was not relayed to a subscription.
151
+ </summary>
152
+ <param name="eventTopic">The event topic.</param>
153
+ <param name="publication">The publication.</param>
154
+ <param name="subscription">The subscription.</param>
155
+ <param name="sender">The sender.</param>
156
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
157
+ </member>
158
+ <member name="M:bbv.Common.EventBroker.Extensions.EventBrokerExtensionBase.FiringEvent(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication,System.Object,System.EventArgs)">
159
+ <summary>
160
+ Called when an event is fired.
161
+ </summary>
162
+ <param name="eventTopic">The event topic.</param>
163
+ <param name="publication">The publication.</param>
164
+ <param name="sender">The sender.</param>
165
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
166
+ </member>
167
+ <member name="M:bbv.Common.EventBroker.Extensions.EventBrokerExtensionBase.FiredEvent(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication,System.Object,System.EventArgs)">
168
+ <summary>
169
+ Called when the event was fired (processing completed).
170
+ </summary>
171
+ <param name="eventTopic">The event topic.</param>
172
+ <param name="publication">The publication.</param>
173
+ <param name="sender">The sender.</param>
174
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
175
+ </member>
176
+ <member name="M:bbv.Common.EventBroker.Extensions.EventBrokerExtensionBase.RegisteredItem(System.Object)">
177
+ <summary>
178
+ Called when an item was registered.
179
+ </summary>
180
+ <param name="item">The item that was registered.</param>
181
+ </member>
182
+ <member name="M:bbv.Common.EventBroker.Extensions.EventBrokerExtensionBase.UnregisteredItem(System.Object)">
183
+ <summary>
184
+ Called when an item was unregistered.
185
+ </summary>
186
+ <param name="item">The item that was unregistered.</param>
187
+ </member>
188
+ <member name="M:bbv.Common.EventBroker.Extensions.EventBrokerExtensionBase.ProcessedPublisher(System.Object,System.Boolean,bbv.Common.EventBroker.Internals.IEventTopicHost)">
189
+ <summary>
190
+ Called after a (potential) publisher was processed.
191
+ </summary>
192
+ <param name="publisher">The publisher.</param>
193
+ <param name="register">Whether the publisher is registered; or unregistered.</param>
194
+ <param name="eventTopicHost">The event topic host.</param>
195
+ </member>
196
+ <member name="M:bbv.Common.EventBroker.Extensions.EventBrokerExtensionBase.ProcessedSubscriber(System.Object,System.Boolean,bbv.Common.EventBroker.Internals.IEventTopicHost)">
197
+ <summary>
198
+ Called after a (potential) subscriber was processed.
199
+ </summary>
200
+ <param name="subscriber">The subscriber.</param>
201
+ <param name="register">Whether the subscriber is registered; or unregistered.</param>
202
+ <param name="eventTopicHost">The event topic host.</param>
203
+ </member>
204
+ <member name="M:bbv.Common.EventBroker.Extensions.EventBrokerExtensionBase.CreatedTopic(bbv.Common.EventBroker.Internals.IEventTopic)">
205
+ <summary>
206
+ Called after an event topic was created.
207
+ </summary>
208
+ <param name="eventTopic">The event topic.</param>
209
+ </member>
210
+ <member name="M:bbv.Common.EventBroker.Extensions.EventBrokerExtensionBase.CreatedPublication(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication)">
211
+ <summary>
212
+ Called after a publication was created.
213
+ </summary>
214
+ <param name="eventTopic">The event topic.</param>
215
+ <param name="publication">The publication.</param>
216
+ </member>
217
+ <member name="M:bbv.Common.EventBroker.Extensions.EventBrokerExtensionBase.CreatedSubscription(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.ISubscription)">
218
+ <summary>
219
+ Called after a subscription was created.
220
+ </summary>
221
+ <param name="eventTopic">The event topic.</param>
222
+ <param name="subscription">The subscription.</param>
223
+ </member>
224
+ <member name="M:bbv.Common.EventBroker.Extensions.EventBrokerExtensionBase.AddedPublication(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication)">
225
+ <summary>
226
+ Called after a publication was added to an event topic.
227
+ </summary>
228
+ <param name="eventTopic">The event topic.</param>
229
+ <param name="publication">The publication.</param>
230
+ </member>
231
+ <member name="M:bbv.Common.EventBroker.Extensions.EventBrokerExtensionBase.RemovedPublication(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication)">
232
+ <summary>
233
+ Called after a publication was removed from an event topic.
234
+ </summary>
235
+ <param name="eventTopic">The event topic. Null if removed by code.</param>
236
+ <param name="publication">The publication.</param>
237
+ </member>
238
+ <member name="M:bbv.Common.EventBroker.Extensions.EventBrokerExtensionBase.AddedSubscription(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.ISubscription)">
239
+ <summary>
240
+ Called after a subscription was added to an event topic.
241
+ </summary>
242
+ <param name="eventTopic">The event topic.</param>
243
+ <param name="subscription">The subscription.</param>
244
+ </member>
245
+ <member name="M:bbv.Common.EventBroker.Extensions.EventBrokerExtensionBase.RemovedSubscription(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.ISubscription)">
246
+ <summary>
247
+ Called after a subscription was removed from an event topic.
248
+ </summary>
249
+ <param name="eventTopic">The event topic.</param>
250
+ <param name="subscription">The subscription.</param>
251
+ </member>
252
+ <member name="M:bbv.Common.EventBroker.Extensions.EventBrokerExtensionBase.Disposed(bbv.Common.EventBroker.Internals.IEventTopic)">
253
+ <summary>
254
+ Called after an event topic was disposed.
255
+ </summary>
256
+ <param name="eventTopic">The event topic.</param>
257
+ </member>
258
+ <member name="M:bbv.Common.EventBroker.Extensions.EventBrokerExtensionBase.SubscriberExceptionsOccurred(bbv.Common.EventBroker.Internals.IEventTopic,System.Collections.Generic.IEnumerable{System.Exception})">
259
+ <summary>
260
+ Called when exceptions occurred during event handling by subscribers.
261
+ </summary>
262
+ <param name="eventTopic">The event topic.</param>
263
+ <param name="exceptions">The exceptions.</param>
264
+ </member>
265
+ <member name="M:bbv.Common.EventBroker.Extensions.EventBrokerExtensionBase.RelayingEvent(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication,bbv.Common.EventBroker.Internals.ISubscription,bbv.Common.EventBroker.IHandler,System.Object,System.EventArgs)">
266
+ <summary>
267
+ Called before an event is relayed from the publication to the subscribers.
268
+ </summary>
269
+ <param name="eventTopic">The event topic.</param>
270
+ <param name="publication">The publication.</param>
271
+ <param name="subscription">The subscription.</param>
272
+ <param name="handler">The handler.</param>
273
+ <param name="sender">The sender.</param>
274
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
275
+ </member>
276
+ <member name="M:bbv.Common.EventBroker.Extensions.EventBrokerExtensionBase.RelayedEvent(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication,bbv.Common.EventBroker.Internals.ISubscription,bbv.Common.EventBroker.IHandler,System.Object,System.EventArgs,System.Exception)">
277
+ <summary>
278
+ Called after the event was relayed from the publication to the subscribers.
279
+ </summary>
280
+ <param name="eventTopic">The event topic.</param>
281
+ <param name="publication">The publication.</param>
282
+ <param name="subscription">The subscription.</param>
283
+ <param name="handler">The handler.</param>
284
+ <param name="sender">The sender.</param>
285
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
286
+ <param name="exception">The exception that occurred during handling of the event by the subscriber.</param>
287
+ </member>
288
+ <member name="M:bbv.Common.EventBroker.Extensions.EventBrokerExtensionBase.SkippedEvent(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication,bbv.Common.EventBroker.Internals.ISubscription,System.Object,System.EventArgs)">
289
+ <summary>
290
+ Called when a publication or subscription matcher did not match and the event was not relayed to a subscription.
291
+ </summary>
292
+ <param name="eventTopic">The event topic.</param>
293
+ <param name="publication">The publication.</param>
294
+ <param name="subscription">The subscription.</param>
295
+ <param name="sender">The sender.</param>
296
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
297
+ </member>
298
+ <member name="T:bbv.Common.EventBroker.Internals.CodePublication`1">
299
+ <summary>
300
+ Publication that was registered by code.
301
+ </summary>
302
+ <typeparam name="TEventArgs">The type of the event arguments.</typeparam>
303
+ </member>
304
+ <member name="T:bbv.Common.EventBroker.Internals.Publication">
305
+ <summary>
306
+ Represents a topic publication.
307
+ </summary>
308
+ </member>
309
+ <member name="T:bbv.Common.EventBroker.Internals.IPublication">
310
+ <summary>
311
+ Defines a publication. Either a real <see cref="T:bbv.Common.EventBroker.Internals.Publication"/> or a <see cref="T:bbv.Common.EventBroker.Internals.SpontaneousPublication"/>.
312
+ </summary>
313
+ </member>
314
+ <member name="M:bbv.Common.EventBroker.Internals.IPublication.DescribeTo(System.IO.TextWriter)">
315
+ <summary>
316
+ Describes this publication
317
+ name, scope, event handler.
318
+ </summary>
319
+ <param name="writer">The writer.</param>
320
+ </member>
321
+ <member name="P:bbv.Common.EventBroker.Internals.IPublication.Publisher">
322
+ <summary>
323
+ Gets the publisher of the event.
324
+ </summary>
325
+ </member>
326
+ <member name="P:bbv.Common.EventBroker.Internals.IPublication.PublicationMatchers">
327
+ <summary>
328
+ Gets the publication matchers.
329
+ </summary>
330
+ <value>The publication matchers.</value>
331
+ </member>
332
+ <member name="P:bbv.Common.EventBroker.Internals.IPublication.HandlerRestriction">
333
+ <summary>
334
+ Gets the subscriber handler restriction.
335
+ </summary>
336
+ <value>The subscriber handler restriction.</value>
337
+ </member>
338
+ <member name="P:bbv.Common.EventBroker.Internals.IPublication.EventName">
339
+ <summary>
340
+ Gets the name of the event on the <see cref="P:bbv.Common.EventBroker.Internals.Publication.Publisher"/>.
341
+ </summary>
342
+ </member>
343
+ <member name="P:bbv.Common.EventBroker.Internals.IPublication.EventHandlerType">
344
+ <summary>
345
+ Gets the type of the event handler.
346
+ </summary>
347
+ <value>The type of the event handler.</value>
348
+ </member>
349
+ <member name="F:bbv.Common.EventBroker.Internals.Publication.topic">
350
+ <summary>
351
+ The event topic this publication is registered on.
352
+ </summary>
353
+ </member>
354
+ <member name="F:bbv.Common.EventBroker.Internals.Publication.publisher">
355
+ <summary>
356
+ Weak reference to the publisher.
357
+ </summary>
358
+ </member>
359
+ <member name="F:bbv.Common.EventBroker.Internals.Publication.publicationMatchers">
360
+ <summary>
361
+ The matchers used on this publication.
362
+ </summary>
363
+ </member>
364
+ <member name="F:bbv.Common.EventBroker.Internals.Publication.handlerRestriction">
365
+ <summary>
366
+ Restriction of this publication for its subscription handlers.
367
+ </summary>
368
+ </member>
369
+ <member name="M:bbv.Common.EventBroker.Internals.Publication.#ctor(bbv.Common.EventBroker.Internals.IEventTopic,System.Object,bbv.Common.EventBroker.HandlerRestriction,System.Collections.Generic.IList{bbv.Common.EventBroker.Matchers.IPublicationMatcher})">
370
+ <summary>
371
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Internals.Publication"/> class.
372
+ </summary>
373
+ <param name="topic">The event topic this publication belongs to.</param>
374
+ <param name="publisher">The publisher.</param>
375
+ <param name="handlerRestriction">The handler restriction.</param>
376
+ <param name="publicationMatchers">The publication matchers.</param>
377
+ </member>
378
+ <member name="M:bbv.Common.EventBroker.Internals.Publication.DescribeTo(System.IO.TextWriter)">
379
+ <summary>
380
+ Describes this publication
381
+ name, scope, event handler.
382
+ </summary>
383
+ <param name="writer">The writer.</param>
384
+ </member>
385
+ <member name="M:bbv.Common.EventBroker.Internals.Publication.Dispose">
386
+ <summary>
387
+ See <see cref="M:System.IDisposable.Dispose"/> for more information.
388
+ </summary>
389
+ </member>
390
+ <member name="M:bbv.Common.EventBroker.Internals.Publication.Dispose(System.Boolean)">
391
+ <summary>
392
+ Implementation of the disposable pattern.
393
+ </summary>
394
+ <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
395
+ </member>
396
+ <member name="M:bbv.Common.EventBroker.Internals.Publication.Fire(System.Object,System.EventArgs)">
397
+ <summary>
398
+ Fires the event publication.
399
+ </summary>
400
+ <param name="sender">The sender.</param>
401
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
402
+ </member>
403
+ <member name="P:bbv.Common.EventBroker.Internals.Publication.Publisher">
404
+ <summary>
405
+ Gets the publisher of the event.
406
+ </summary>
407
+ </member>
408
+ <member name="P:bbv.Common.EventBroker.Internals.Publication.EventName">
409
+ <summary>
410
+ Gets the name of the event on the <see cref="P:bbv.Common.EventBroker.Internals.Publication.Publisher"/>.
411
+ </summary>
412
+ <value></value>
413
+ </member>
414
+ <member name="P:bbv.Common.EventBroker.Internals.Publication.HandlerRestriction">
415
+ <summary>
416
+ Gets the subscriber handler restriction.
417
+ </summary>
418
+ <value>The subscriber handler restriction.</value>
419
+ </member>
420
+ <member name="P:bbv.Common.EventBroker.Internals.Publication.PublicationMatchers">
421
+ <summary>
422
+ Gets the publication matchers.
423
+ </summary>
424
+ <value>The publication matcher.</value>
425
+ </member>
426
+ <member name="P:bbv.Common.EventBroker.Internals.Publication.EventHandlerType">
427
+ <summary>
428
+ Gets the type of the event handler.
429
+ </summary>
430
+ <value>The type of the event handler.</value>
431
+ </member>
432
+ <member name="P:bbv.Common.EventBroker.Internals.Publication.IsPublisherAlive">
433
+ <summary>
434
+ Gets a value indicating whether the publisher is alive (not garbage collected).
435
+ </summary>
436
+ <value><c>true</c> if the publisher is alive; otherwise, <c>false</c>.
437
+ </value>
438
+ </member>
439
+ <member name="F:bbv.Common.EventBroker.Internals.CodePublication`1.EventNameOfCodePublication">
440
+ <summary>
441
+ This name is used for events of publications made in code. The real name cannot be accessed through the event handler.
442
+ </summary>
443
+ </member>
444
+ <member name="F:bbv.Common.EventBroker.Internals.CodePublication`1.eventHandlerType">
445
+ <summary>
446
+ Type of the event handler of the published event.
447
+ </summary>
448
+ </member>
449
+ <member name="M:bbv.Common.EventBroker.Internals.CodePublication`1.#ctor(bbv.Common.EventBroker.Internals.IEventTopic,System.Object,System.EventHandler@,bbv.Common.EventBroker.HandlerRestriction,System.Collections.Generic.IList{bbv.Common.EventBroker.Matchers.IPublicationMatcher})">
450
+ <summary>
451
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Internals.CodePublication`1"/> class.
452
+ </summary>
453
+ <param name="topic">The topic.</param>
454
+ <param name="publisher">The publisher.</param>
455
+ <param name="eventHandler">The event handler.</param>
456
+ <param name="handlerRestriction">The handler restriction.</param>
457
+ <param name="publicationMatchers">The publication matchers.</param>
458
+ </member>
459
+ <member name="M:bbv.Common.EventBroker.Internals.CodePublication`1.#ctor(bbv.Common.EventBroker.Internals.IEventTopic,System.Object,System.EventHandler{`0}@,bbv.Common.EventBroker.HandlerRestriction,System.Collections.Generic.IList{bbv.Common.EventBroker.Matchers.IPublicationMatcher})">
460
+ <summary>
461
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Internals.CodePublication`1"/> class.
462
+ </summary>
463
+ <param name="topic">The topic.</param>
464
+ <param name="publisher">The publisher.</param>
465
+ <param name="eventHandler">The event handler.</param>
466
+ <param name="handlerRestriction">The handler restriction.</param>
467
+ <param name="publicationMatchers">The publication matchers.</param>
468
+ </member>
469
+ <member name="M:bbv.Common.EventBroker.Internals.CodePublication`1.Unregister(System.EventHandler@)">
470
+ <summary>
471
+ Unregisters the specified published event.
472
+ </summary>
473
+ <param name="publishedEvent">The published event.</param>
474
+ </member>
475
+ <member name="M:bbv.Common.EventBroker.Internals.CodePublication`1.Unregister(System.EventHandler{`0}@)">
476
+ <summary>
477
+ Unregisters the specified published event.
478
+ </summary>
479
+ <param name="publishedEvent">The published event.</param>
480
+ </member>
481
+ <member name="M:bbv.Common.EventBroker.Internals.CodePublication`1.Dispose(System.Boolean)">
482
+ <summary>
483
+ Implementation of the disposable pattern.
484
+ </summary>
485
+ <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
486
+ </member>
487
+ <member name="M:bbv.Common.EventBroker.Internals.CodePublication`1.PublicationHandler(System.Object,System.EventArgs)">
488
+ <summary>
489
+ Fires the event publication. This method is registered to the event on the publisher.
490
+ </summary>
491
+ <param name="sender">The sender.</param>
492
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
493
+ </member>
494
+ <member name="P:bbv.Common.EventBroker.Internals.CodePublication`1.EventName">
495
+ <summary>
496
+ Gets the name of the event on the <see cref="P:bbv.Common.EventBroker.Internals.Publication.Publisher"/>.
497
+ </summary>
498
+ </member>
499
+ <member name="P:bbv.Common.EventBroker.Internals.CodePublication`1.EventHandlerType">
500
+ <summary>
501
+ Gets the type of the event handler.
502
+ </summary>
503
+ <value>The type of the event handler.</value>
504
+ </member>
505
+ <member name="T:bbv.Common.EventBroker.EventBroker">
506
+ <summary>
507
+ The <see cref="T:bbv.Common.EventBroker.EventBroker"/> is the facade component to the event broker framework.
508
+ It provides the registration and unregistration functionality for event publisher and subscribers.
509
+ </summary>
510
+ </member>
511
+ <member name="T:bbv.Common.EventBroker.IEventBroker">
512
+ <summary>
513
+ Interface for <see cref="T:bbv.Common.EventBroker.EventBroker"/>.
514
+ Use this interface to reference the event broker from your classes. This gives you the possibility to
515
+ mock it.
516
+ </summary>
517
+ </member>
518
+ <member name="M:bbv.Common.EventBroker.IEventBroker.DescribeTo(System.IO.TextWriter)">
519
+ <summary>
520
+ Describes all event topics of this event broker:
521
+ publications, subscriptions, names, thread options, scopes, event args.
522
+ </summary>
523
+ <param name="writer">The writer.</param>
524
+ </member>
525
+ <member name="M:bbv.Common.EventBroker.IEventBroker.Fire(System.String,System.Object,bbv.Common.EventBroker.HandlerRestriction,System.Object,System.EventArgs)">
526
+ <summary>
527
+ Fires the specified topic directly on the <see cref="T:bbv.Common.EventBroker.IEventBroker"/> without a real publisher.
528
+ This is useful when temporarily created objects need to fire events.
529
+ The event is fired globally but can be subscribed with <see cref="T:bbv.Common.EventBroker.Matchers.ISubscriptionMatcher"/>.
530
+ </summary>
531
+ <param name="topic">The topic URI.</param>
532
+ <param name="publisher">The publisher (for event flow and logging).</param>
533
+ <param name="handlerRestriction">The handler restriction.</param>
534
+ <param name="sender">The sender (passed to the event handler).</param>
535
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
536
+ </member>
537
+ <member name="M:bbv.Common.EventBroker.IEventBroker.AddExtension(bbv.Common.EventBroker.IEventBrokerExtension)">
538
+ <summary>
539
+ Adds the extension.
540
+ </summary>
541
+ <param name="extension">The extension.</param>
542
+ </member>
543
+ <member name="M:bbv.Common.EventBroker.IEventBroker.RegisterEvent(System.String,System.Object,System.String,bbv.Common.EventBroker.HandlerRestriction,bbv.Common.EventBroker.Matchers.IPublicationMatcher[])">
544
+ <summary>
545
+ Registers the event as publication.
546
+ </summary>
547
+ <param name="topic">The topic.</param>
548
+ <param name="publisher">The publisher.</param>
549
+ <param name="eventName">Name of the event.</param>
550
+ <param name="handlerRestriction">The handler restriction.</param>
551
+ <param name="matchers">The matchers.</param>
552
+ </member>
553
+ <member name="M:bbv.Common.EventBroker.IEventBroker.RegisterHandlerMethod(System.String,System.Object,System.EventHandler,bbv.Common.EventBroker.IHandler,bbv.Common.EventBroker.Matchers.ISubscriptionMatcher[])">
554
+ <summary>
555
+ Registers a handler method.
556
+ </summary>
557
+ <param name="topic">The topic.</param>
558
+ <param name="subscriber">The subscriber.</param>
559
+ <param name="handlerMethod">The handler method.</param>
560
+ <param name="handler">The handler.</param>
561
+ <param name="matchers">The matchers.</param>
562
+ </member>
563
+ <member name="M:bbv.Common.EventBroker.IEventBroker.RegisterHandlerMethod``1(System.String,System.Object,System.EventHandler{``0},bbv.Common.EventBroker.IHandler,bbv.Common.EventBroker.Matchers.ISubscriptionMatcher[])">
564
+ <summary>
565
+ Registers a handler method.
566
+ </summary>
567
+ <typeparam name="TEventArgs">The type of the event arguments.</typeparam>
568
+ <param name="topic">The topic.</param>
569
+ <param name="subscriber">The subscriber.</param>
570
+ <param name="handlerMethod">The handler method.</param>
571
+ <param name="handler">The handler.</param>
572
+ <param name="matchers">The matchers.</param>
573
+ </member>
574
+ <member name="M:bbv.Common.EventBroker.IEventBroker.RemoveExtension(bbv.Common.EventBroker.IEventBrokerExtension)">
575
+ <summary>
576
+ Removes the specified extension.
577
+ </summary>
578
+ <param name="extension">The extension.</param>
579
+ </member>
580
+ <member name="M:bbv.Common.EventBroker.IEventBroker.ClearExtensions">
581
+ <summary>
582
+ Clears all extensions, including the default logger extension.
583
+ </summary>
584
+ </member>
585
+ <member name="M:bbv.Common.EventBroker.IEventBroker.Register(System.Object)">
586
+ <summary>
587
+ Registers an item with this event broker.
588
+ </summary>
589
+ <remarks>
590
+ The item is scanned for publications and subscriptions and wired to the corresponding invokers and handlers.
591
+ </remarks>
592
+ <param name="item">Item to register with the event broker.</param>
593
+ </member>
594
+ <member name="M:bbv.Common.EventBroker.IEventBroker.Unregister(System.Object)">
595
+ <summary>
596
+ Unregisters the specified item from this event broker.
597
+ </summary>
598
+ <param name="item">The item to unregister.</param>
599
+ </member>
600
+ <member name="T:bbv.Common.EventBroker.IEventRegisterer">
601
+ <summary>
602
+ This interface is passed to the registered publishers and subscribers so that they can register publications
603
+ and subscriptions by code.
604
+ </summary>
605
+ </member>
606
+ <member name="M:bbv.Common.EventBroker.IEventRegisterer.AddPublication(System.String,System.Object,System.EventHandler@,bbv.Common.EventBroker.Matchers.IPublicationMatcher[])">
607
+ <summary>
608
+ Adds a publication with no handler restriction. Use this to register publications by code instead of using attributes.
609
+ </summary>
610
+ <param name="topic">The topic.</param>
611
+ <param name="publisher">The publisher.</param>
612
+ <param name="publishedEvent">The published event of the <paramref name="publisher"/>.</param>>
613
+ <param name="matchers">The matchers.</param>
614
+ </member>
615
+ <member name="M:bbv.Common.EventBroker.IEventRegisterer.AddPublication(System.String,System.Object,System.EventHandler@,bbv.Common.EventBroker.HandlerRestriction,bbv.Common.EventBroker.Matchers.IPublicationMatcher[])">
616
+ <summary>
617
+ Adds a publication. Use this to register publications by code instead of using attributes.
618
+ </summary>
619
+ <param name="topic">The topic.</param>
620
+ <param name="publisher">The publisher.</param>
621
+ <param name="publishedEvent">The published event of the <paramref name="publisher"/>.</param>
622
+ <param name="handlerRestriction">The handler restriction.</param>
623
+ <param name="matchers">The matchers.</param>
624
+ </member>
625
+ <member name="M:bbv.Common.EventBroker.IEventRegisterer.AddPublication``1(System.String,System.Object,System.EventHandler{``0}@,bbv.Common.EventBroker.Matchers.IPublicationMatcher[])">
626
+ <summary>
627
+ Adds a publication with no handler restriction. Use this to register publications by code instead of using attributes.
628
+ </summary>
629
+ <typeparam name="TEventArgs">The type of the event args.</typeparam>
630
+ <param name="topic">The topic.</param>
631
+ <param name="publisher">The publisher.</param>
632
+ <param name="publishedEvent">The published event.</param>
633
+ <param name="matchers">The matchers.</param>
634
+ </member>
635
+ <member name="M:bbv.Common.EventBroker.IEventRegisterer.AddPublication``1(System.String,System.Object,System.EventHandler{``0}@,bbv.Common.EventBroker.HandlerRestriction,bbv.Common.EventBroker.Matchers.IPublicationMatcher[])">
636
+ <summary>
637
+ Adds a publication. Use this to register publications by code instead of using attributes.
638
+ </summary>
639
+ <typeparam name="TEventArgs">The type of the event args.</typeparam>
640
+ <param name="topic">The topic.</param>
641
+ <param name="publisher">The publisher.</param>
642
+ <param name="publishedEvent">The published event.</param>
643
+ <param name="handlerRestriction">The handler restriction.</param>
644
+ <param name="matchers">The matchers.</param>
645
+ </member>
646
+ <member name="M:bbv.Common.EventBroker.IEventRegisterer.RemovePublication(System.String,System.Object,System.EventHandler@)">
647
+ <summary>
648
+ Removes a publication. Publications added with <see cref="M:bbv.Common.EventBroker.IEventRegisterer.AddPublication(System.String,System.Object,System.EventHandler@,bbv.Common.EventBroker.Matchers.IPublicationMatcher[])"/> have to be removed in order that the event broker can be disposed.
649
+ </summary>
650
+ <param name="topic">The topic.</param>
651
+ <param name="publisher">The publisher.</param>
652
+ <param name="publishedEvent">The published event.</param>
653
+ </member>
654
+ <member name="M:bbv.Common.EventBroker.IEventRegisterer.AddSubscription(System.String,System.Object,System.EventHandler,bbv.Common.EventBroker.IHandler,bbv.Common.EventBroker.Matchers.ISubscriptionMatcher[])">
655
+ <summary>
656
+ Adds a subscription. Use this to register subscriptions by code instead of using attributes.
657
+ </summary>
658
+ <param name="topic">The topic.</param>
659
+ <param name="subscriber">The subscriber.</param>
660
+ <param name="handlerMethod">The handler method.</param>
661
+ <param name="handler">The handler.</param>
662
+ <param name="matchers">The subscription matchers.</param>
663
+ </member>
664
+ <member name="M:bbv.Common.EventBroker.IEventRegisterer.AddSubscription``1(System.String,System.Object,System.EventHandler{``0},bbv.Common.EventBroker.IHandler,bbv.Common.EventBroker.Matchers.ISubscriptionMatcher[])">
665
+ <summary>
666
+ Adds a subscription. Use this to register subscriptions by code instead of using attributes.
667
+ </summary>
668
+ <typeparam name="TEventArgs">The type of the event args.</typeparam>
669
+ <param name="topic">The topic.</param>
670
+ <param name="subscriber">The subscriber.</param>
671
+ <param name="handlerMethod">The handler method.</param>
672
+ <param name="handler">The handler.</param>
673
+ <param name="matchers">The subscription matchers.</param>
674
+ </member>
675
+ <member name="M:bbv.Common.EventBroker.IEventRegisterer.RemoveSubscription(System.String,System.Object,System.EventHandler)">
676
+ <summary>
677
+ Removes a subscription.
678
+ </summary>
679
+ <param name="topic">The topic.</param>
680
+ <param name="subscriber">The subscriber.</param>
681
+ <param name="handlerMethod">The handler method.</param>
682
+ </member>
683
+ <member name="M:bbv.Common.EventBroker.IEventRegisterer.RemoveSubscription``1(System.String,System.Object,System.EventHandler{``0})">
684
+ <summary>
685
+ Removes a subscription.
686
+ </summary>
687
+ <typeparam name="TEventArgs">The type of the event args.</typeparam>
688
+ <param name="topic">The topic.</param>
689
+ <param name="subscriber">The subscriber.</param>
690
+ <param name="handlerMethod">The handler method.</param>
691
+ </member>
692
+ <member name="M:bbv.Common.EventBroker.IEventRegisterer.RegisterEvent(System.String,System.Object,System.String,bbv.Common.EventBroker.HandlerRestriction,bbv.Common.EventBroker.Matchers.IPublicationMatcher[])">
693
+ <summary>
694
+ Registers the event as publication.
695
+ </summary>
696
+ <param name="topic">The topic.</param>
697
+ <param name="publisher">The publisher.</param>
698
+ <param name="eventName">Name of the event.</param>
699
+ <param name="handlerRestriction">The handler restriction.</param>
700
+ <param name="matchers">The matchers.</param>
701
+ </member>
702
+ <member name="M:bbv.Common.EventBroker.IEventRegisterer.RegisterHandlerMethod(System.String,System.Object,System.EventHandler,bbv.Common.EventBroker.IHandler,bbv.Common.EventBroker.Matchers.ISubscriptionMatcher[])">
703
+ <summary>
704
+ Registers a handler method.
705
+ </summary>
706
+ <param name="topic">The topic.</param>
707
+ <param name="subscriber">The subscriber.</param>
708
+ <param name="handlerMethod">The handler method.</param>
709
+ <param name="handler">The handler.</param>
710
+ <param name="matchers">The matchers.</param>
711
+ </member>
712
+ <member name="M:bbv.Common.EventBroker.IEventRegisterer.RegisterHandlerMethod``1(System.String,System.Object,System.EventHandler{``0},bbv.Common.EventBroker.IHandler,bbv.Common.EventBroker.Matchers.ISubscriptionMatcher[])">
713
+ <summary>
714
+ Registers a handler method.
715
+ </summary>
716
+ <typeparam name="TEventArgs">The type of the event arguments.</typeparam>
717
+ <param name="topic">The topic.</param>
718
+ <param name="subscriber">The subscriber.</param>
719
+ <param name="handlerMethod">The handler method.</param>
720
+ <param name="handler">The handler.</param>
721
+ <param name="matchers">The matchers.</param>
722
+ </member>
723
+ <member name="M:bbv.Common.EventBroker.IEventRegisterer.Register(System.Object)">
724
+ <summary>
725
+ Registers an item with this event broker.
726
+ </summary>
727
+ <remarks>
728
+ The item is scanned for publications and subscriptions and wired to the corresponding invokers and handlers.
729
+ </remarks>
730
+ <param name="item">Item to register with the event broker.</param>
731
+ </member>
732
+ <member name="M:bbv.Common.EventBroker.IEventRegisterer.Unregister(System.Object)">
733
+ <summary>
734
+ Unregisters the specified item from this event broker.
735
+ </summary>
736
+ <param name="item">The item to unregister.</param>
737
+ </member>
738
+ <member name="T:bbv.Common.EventBroker.Internals.IExtensionHost">
739
+ <summary>
740
+ Interface to execute actions on all extensions of the event broker.
741
+ </summary>
742
+ </member>
743
+ <member name="M:bbv.Common.EventBroker.Internals.IExtensionHost.ForEach(System.Action{bbv.Common.EventBroker.IEventBrokerExtension})">
744
+ <summary>
745
+ Executes the specified action for all extensions.
746
+ </summary>
747
+ <param name="action">The action to execute.</param>
748
+ </member>
749
+ <member name="F:bbv.Common.EventBroker.EventBroker.eventInspector">
750
+ <summary>
751
+ The inspector used to find publications and subscription within a class.
752
+ </summary>
753
+ </member>
754
+ <member name="F:bbv.Common.EventBroker.EventBroker.eventTopicHost">
755
+ <summary>
756
+ The event topic host that holds all event topics of this event broker.
757
+ </summary>
758
+ </member>
759
+ <member name="F:bbv.Common.EventBroker.EventBroker.factory">
760
+ <summary>
761
+ The factory used to create event broker related instances.
762
+ </summary>
763
+ </member>
764
+ <member name="F:bbv.Common.EventBroker.EventBroker.extensions">
765
+ <summary>
766
+ List of all extensions for this event broker.
767
+ </summary>
768
+ </member>
769
+ <member name="M:bbv.Common.EventBroker.EventBroker.#ctor">
770
+ <summary>
771
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.EventBroker"/> class.
772
+ The <see cref="T:bbv.Common.EventBroker.StandardFactory"/> is used to create <see cref="T:bbv.Common.EventBroker.IHandler"/>s <see cref="T:bbv.Common.EventBroker.Matchers.IPublicationMatcher"/>s and
773
+ <see cref="T:bbv.Common.EventBroker.Matchers.ISubscriptionMatcher"/>s.
774
+ </summary>
775
+ </member>
776
+ <member name="M:bbv.Common.EventBroker.EventBroker.#ctor(bbv.Common.EventBroker.IFactory)">
777
+ <summary>
778
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.EventBroker"/> class.
779
+ </summary>
780
+ <param name="factory">The factory.</param>
781
+ </member>
782
+ <member name="M:bbv.Common.EventBroker.EventBroker.Register(System.Object)">
783
+ <summary>
784
+ Registers an item with this event broker.
785
+ </summary>
786
+ <remarks>
787
+ The item is scanned for publications and subscriptions and wired to the corresponding invokers and handlers.
788
+ </remarks>
789
+ <param name="item">Item to register with the event broker.</param>
790
+ </member>
791
+ <member name="M:bbv.Common.EventBroker.EventBroker.Unregister(System.Object)">
792
+ <summary>
793
+ Unregisters the specified item from this event broker.
794
+ </summary>
795
+ <param name="item">The item to unregister.</param>
796
+ </member>
797
+ <member name="M:bbv.Common.EventBroker.EventBroker.RegisterEvent(System.String,System.Object,System.String,bbv.Common.EventBroker.HandlerRestriction,bbv.Common.EventBroker.Matchers.IPublicationMatcher[])">
798
+ <summary>
799
+ Registers the event as publication.
800
+ </summary>
801
+ <param name="topic">The topic.</param>
802
+ <param name="publisher">The publisher.</param>
803
+ <param name="eventName">Name of the event.</param>
804
+ <param name="handlerRestriction">The handler restriction.</param>
805
+ <param name="matchers">The matchers.</param>
806
+ </member>
807
+ <member name="M:bbv.Common.EventBroker.EventBroker.RegisterHandlerMethod(System.String,System.Object,System.EventHandler,bbv.Common.EventBroker.IHandler,bbv.Common.EventBroker.Matchers.ISubscriptionMatcher[])">
808
+ <summary>
809
+ Registers a handler method.
810
+ </summary>
811
+ <param name="topic">The topic.</param>
812
+ <param name="subscriber">The subscriber.</param>
813
+ <param name="handlerMethod">The handler method.</param>
814
+ <param name="handler">The handler.</param>
815
+ <param name="matchers">The matchers.</param>
816
+ </member>
817
+ <member name="M:bbv.Common.EventBroker.EventBroker.RegisterHandlerMethod``1(System.String,System.Object,System.EventHandler{``0},bbv.Common.EventBroker.IHandler,bbv.Common.EventBroker.Matchers.ISubscriptionMatcher[])">
818
+ <summary>
819
+ Registers a handler method.
820
+ </summary>
821
+ <typeparam name="TEventArgs">The type of the event arguments.</typeparam>
822
+ <param name="topic">The topic.</param>
823
+ <param name="subscriber">The subscriber.</param>
824
+ <param name="handlerMethod">The handler method.</param>
825
+ <param name="handler">The handler.</param>
826
+ <param name="matchers">The matchers.</param>
827
+ </member>
828
+ <member name="M:bbv.Common.EventBroker.EventBroker.Fire(System.String,System.Object,bbv.Common.EventBroker.HandlerRestriction,System.Object,System.EventArgs)">
829
+ <summary>
830
+ Fires the specified topic directly on the <see cref="T:bbv.Common.EventBroker.IEventBroker"/> without a real publisher.
831
+ This is useful when temporarily created objects need to fire events.
832
+ The event is fired globally but can be subscribed with <see cref="T:bbv.Common.EventBroker.Matchers.ISubscriptionMatcher"/>.
833
+ </summary>
834
+ <param name="topic">The topic URI.</param>
835
+ <param name="publisher">The publisher (for event flow and logging).</param>
836
+ <param name="handlerRestriction">The handler restriction.</param>
837
+ <param name="sender">The sender (passed to the event handler).</param>
838
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
839
+ </member>
840
+ <member name="M:bbv.Common.EventBroker.EventBroker.DescribeTo(System.IO.TextWriter)">
841
+ <summary>
842
+ Describes all event topics of this event broker:
843
+ publications, subscriptions, names, thread options, scopes, event arguments.
844
+ </summary>
845
+ <param name="writer">The writer.</param>
846
+ </member>
847
+ <member name="M:bbv.Common.EventBroker.EventBroker.AddPublication(System.String,System.Object,System.EventHandler@,bbv.Common.EventBroker.Matchers.IPublicationMatcher[])">
848
+ <summary>
849
+ Adds a publication with no handler restriction. Use this to register publications by code instead of using attributes.
850
+ </summary>
851
+ <param name="topic">The topic.</param>
852
+ <param name="publisher">The publisher.</param>
853
+ <param name="publishedEvent">The published event of the <paramref name="publisher"/>.</param>
854
+ <param name="matchers">The matchers.</param>
855
+ </member>
856
+ <member name="M:bbv.Common.EventBroker.EventBroker.AddPublication(System.String,System.Object,System.EventHandler@,bbv.Common.EventBroker.HandlerRestriction,bbv.Common.EventBroker.Matchers.IPublicationMatcher[])">
857
+ <summary>
858
+ Adds a publication. Use this to register publications by code instead of using attributes.
859
+ </summary>
860
+ <param name="topic">The topic.</param>
861
+ <param name="publisher">The publisher.</param>
862
+ <param name="publishedEvent">The published event of the <paramref name="publisher"/>.</param>
863
+ <param name="handlerRestriction">The handler restriction.</param>
864
+ <param name="matchers">The matchers.</param>
865
+ </member>
866
+ <member name="M:bbv.Common.EventBroker.EventBroker.AddPublication``1(System.String,System.Object,System.EventHandler{``0}@,bbv.Common.EventBroker.Matchers.IPublicationMatcher[])">
867
+ <summary>
868
+ Adds a publication with no handler restriction. Use this to register publications by code instead of using attributes.
869
+ </summary>
870
+ <typeparam name="TEventArgs">The type of the event arguments.</typeparam>
871
+ <param name="topic">The topic.</param>
872
+ <param name="publisher">The publisher.</param>
873
+ <param name="publishedEvent">The published event.</param>
874
+ <param name="matchers">The matchers.</param>
875
+ </member>
876
+ <member name="M:bbv.Common.EventBroker.EventBroker.AddPublication``1(System.String,System.Object,System.EventHandler{``0}@,bbv.Common.EventBroker.HandlerRestriction,bbv.Common.EventBroker.Matchers.IPublicationMatcher[])">
877
+ <summary>
878
+ Adds a publication. Use this to register publications by code instead of using attributes.
879
+ </summary>
880
+ <typeparam name="TEventArgs">The type of the event arguments.</typeparam>
881
+ <param name="topic">The topic.</param>
882
+ <param name="publisher">The publisher.</param>
883
+ <param name="publishedEvent">The published event.</param>
884
+ <param name="handlerRestriction">The handler restriction.</param>
885
+ <param name="matchers">The matchers.</param>
886
+ </member>
887
+ <member name="M:bbv.Common.EventBroker.EventBroker.RemovePublication(System.String,System.Object,System.EventHandler@)">
888
+ <summary>
889
+ Removes a publication. Publications added with <see cref="M:bbv.Common.EventBroker.EventBroker.AddPublication(System.String,System.Object,System.EventHandler@,bbv.Common.EventBroker.HandlerRestriction,bbv.Common.EventBroker.Matchers.IPublicationMatcher[])"/> have to be removed in order that the event broker can be disposed.
890
+ </summary>
891
+ <param name="topic">The topic.</param>
892
+ <param name="publisher">The publisher.</param>
893
+ <param name="publishedEvent">The published event.</param>
894
+ </member>
895
+ <member name="M:bbv.Common.EventBroker.EventBroker.AddSubscription(System.String,System.Object,System.EventHandler,bbv.Common.EventBroker.IHandler,bbv.Common.EventBroker.Matchers.ISubscriptionMatcher[])">
896
+ <summary>
897
+ Adds a subscription. Use this to register subscriptions by code instead of using attributes.
898
+ </summary>
899
+ <param name="topic">The topic.</param>
900
+ <param name="subscriber">The subscriber.</param>
901
+ <param name="handlerMethod">The handler method.</param>
902
+ <param name="handler">The handler.</param>
903
+ <param name="matchers">The subscription matchers.</param>
904
+ </member>
905
+ <member name="M:bbv.Common.EventBroker.EventBroker.AddSubscription``1(System.String,System.Object,System.EventHandler{``0},bbv.Common.EventBroker.IHandler,bbv.Common.EventBroker.Matchers.ISubscriptionMatcher[])">
906
+ <summary>
907
+ Adds a subscription. Use this to register subscriptions by code instead of using attributes.
908
+ </summary>
909
+ <typeparam name="TEventArgs">The type of the event arguments.</typeparam>
910
+ <param name="topic">The topic.</param>
911
+ <param name="subscriber">The subscriber.</param>
912
+ <param name="handlerMethod">The handler method.</param>
913
+ <param name="handler">The handler.</param>
914
+ <param name="matchers">The subscription matchers.</param>
915
+ </member>
916
+ <member name="M:bbv.Common.EventBroker.EventBroker.RemoveSubscription(System.String,System.Object,System.EventHandler)">
917
+ <summary>
918
+ Removes a subscription.
919
+ </summary>
920
+ <param name="topic">The topic.</param>
921
+ <param name="subscriber">The subscriber.</param>
922
+ <param name="handlerMethod">The handler method.</param>
923
+ </member>
924
+ <member name="M:bbv.Common.EventBroker.EventBroker.RemoveSubscription``1(System.String,System.Object,System.EventHandler{``0})">
925
+ <summary>
926
+ Removes a subscription.
927
+ </summary>
928
+ <typeparam name="TEventArgs">The type of the event arguments.</typeparam>
929
+ <param name="topic">The topic.</param>
930
+ <param name="subscriber">The subscriber.</param>
931
+ <param name="handlerMethod">The handler method.</param>
932
+ </member>
933
+ <member name="M:bbv.Common.EventBroker.EventBroker.AddExtension(bbv.Common.EventBroker.IEventBrokerExtension)">
934
+ <summary>
935
+ Adds the specified extension. The extension will be considered in any future operation.
936
+ </summary>
937
+ <param name="extension">The extension.</param>
938
+ </member>
939
+ <member name="M:bbv.Common.EventBroker.EventBroker.RemoveExtension(bbv.Common.EventBroker.IEventBrokerExtension)">
940
+ <summary>
941
+ Removes the specified extension.
942
+ </summary>
943
+ <param name="extension">The extension.</param>
944
+ </member>
945
+ <member name="M:bbv.Common.EventBroker.EventBroker.ClearExtensions">
946
+ <summary>
947
+ Clears all extensions, including the default logger extension.
948
+ </summary>
949
+ </member>
950
+ <member name="M:bbv.Common.EventBroker.EventBroker.bbv#Common#EventBroker#Internals#IExtensionHost#ForEach(System.Action{bbv.Common.EventBroker.IEventBrokerExtension})">
951
+ <summary>
952
+ Executes the specified action for all extensions.
953
+ </summary>
954
+ <param name="action">The action to execute.</param>
955
+ </member>
956
+ <member name="M:bbv.Common.EventBroker.EventBroker.Dispose">
957
+ <summary>
958
+ See <see cref="M:System.IDisposable.Dispose"/> for more information.
959
+ </summary>
960
+ </member>
961
+ <member name="M:bbv.Common.EventBroker.EventBroker.Dispose(System.Boolean)">
962
+ <summary>
963
+ Implementation of the disposable pattern.
964
+ </summary>
965
+ <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
966
+ <remarks>
967
+ Unregisters the event handler of all topics
968
+ </remarks>
969
+ </member>
970
+ <member name="T:bbv.Common.EventBroker.Internals.EventInspector">
971
+ <summary>
972
+ The <see cref="T:bbv.Common.EventBroker.Internals.EventInspector"/> scans classes for publications or subscriptions.
973
+ </summary>
974
+ </member>
975
+ <member name="T:bbv.Common.EventBroker.Internals.IEventInspector">
976
+ <summary>
977
+ An event inspector inspects objects for publications and subscriptions and creates <see cref="T:bbv.Common.EventBroker.Internals.IEventTopic"/>s
978
+ for them on the <see cref="T:bbv.Common.EventBroker.Internals.IEventTopicHost"/>
979
+ </summary>
980
+ </member>
981
+ <member name="M:bbv.Common.EventBroker.Internals.IEventInspector.ProcessPublisher(System.Object,System.Boolean,bbv.Common.EventBroker.Internals.IEventTopicHost)">
982
+ <summary>
983
+ Processes a publishers.
984
+ </summary>
985
+ <param name="publisher">The publisher.</param>
986
+ <param name="register">true to register publications, false to unregister them.</param>
987
+ <param name="eventTopicHost">The event topic host.</param>
988
+ <remarks>Scans the members of the <paramref name="publisher"/> and registers or unregisters publications.</remarks>
989
+ </member>
990
+ <member name="M:bbv.Common.EventBroker.Internals.IEventInspector.ProcessSubscriber(System.Object,System.Boolean,bbv.Common.EventBroker.Internals.IEventTopicHost)">
991
+ <summary>
992
+ Processes the subscriber.
993
+ </summary>
994
+ <param name="subscriber">The subscriber.</param>
995
+ <param name="register">true to register subscriptions, false to unregister them.</param>
996
+ <param name="eventTopicHost">The event topic host.</param>
997
+ <remarks>Scans the members of the <paramref name="subscriber"/> and registers or unregisters subscriptions.</remarks>
998
+ </member>
999
+ <member name="M:bbv.Common.EventBroker.Internals.IEventInspector.ProcessPublisher(System.String,System.Object,System.String,bbv.Common.EventBroker.HandlerRestriction,System.Collections.Generic.IList{bbv.Common.EventBroker.Matchers.IPublicationMatcher},System.Boolean,bbv.Common.EventBroker.Internals.IEventTopicHost)">
1000
+ <summary>
1001
+ Processes the publisher.
1002
+ </summary>
1003
+ <param name="topic">The topic.</param>
1004
+ <param name="publisher">The publisher.</param>
1005
+ <param name="eventName">Name of the event.</param>
1006
+ <param name="handlerRestriction">The handler restriction.</param>
1007
+ <param name="matchers">The matchers.</param>
1008
+ <param name="register">true to register publications, false to unregister them.</param>
1009
+ <param name="eventTopicHost">The event topic host.</param>
1010
+ </member>
1011
+ <member name="M:bbv.Common.EventBroker.Internals.IEventInspector.ProcessSubscriber(System.String,System.Object,System.EventHandler,bbv.Common.EventBroker.IHandler,bbv.Common.EventBroker.Matchers.ISubscriptionMatcher[],System.Boolean,bbv.Common.EventBroker.Internals.IEventTopicHost)">
1012
+ <summary>
1013
+ Processes the subscriber.
1014
+ </summary>
1015
+ <param name="topic">The topic.</param>
1016
+ <param name="subscriber">The subscriber.</param>
1017
+ <param name="handlerMethod">The handler method.</param>
1018
+ <param name="handler">The handler.</param>
1019
+ <param name="matchers">The matchers.</param>
1020
+ <param name="register">true to register subscriptions, false to unregister them.</param>
1021
+ <param name="eventTopicHost">The event topic host.</param>
1022
+ </member>
1023
+ <member name="M:bbv.Common.EventBroker.Internals.IEventInspector.ProcessSubscriber``1(System.String,System.Object,System.EventHandler{``0},bbv.Common.EventBroker.IHandler,bbv.Common.EventBroker.Matchers.ISubscriptionMatcher[],System.Boolean,bbv.Common.EventBroker.Internals.IEventTopicHost)">
1024
+ <summary>
1025
+ Processes the subscriber.
1026
+ </summary>
1027
+ <typeparam name="TEventArgs">The type of the event arguments.</typeparam>
1028
+ <param name="topic">The topic.</param>
1029
+ <param name="subscriber">The subscriber.</param>
1030
+ <param name="handlerMethod">The handler method.</param>
1031
+ <param name="handler">The handler.</param>
1032
+ <param name="matchers">The matchers.</param>
1033
+ <param name="register">true to register subscriptions, false to unregister them.</param>
1034
+ <param name="eventTopicHost">The event topic host.</param>
1035
+ </member>
1036
+ <member name="F:bbv.Common.EventBroker.Internals.EventInspector.factory">
1037
+ <summary>
1038
+ The factory.
1039
+ </summary>
1040
+ </member>
1041
+ <member name="F:bbv.Common.EventBroker.Internals.EventInspector.extensionHost">
1042
+ <summary>
1043
+ Extension host holding all extensions.
1044
+ </summary>
1045
+ </member>
1046
+ <member name="M:bbv.Common.EventBroker.Internals.EventInspector.#ctor(bbv.Common.EventBroker.IFactory,bbv.Common.EventBroker.Internals.IExtensionHost)">
1047
+ <summary>
1048
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Internals.EventInspector"/> class.
1049
+ </summary>
1050
+ <param name="factory">The factory.</param>
1051
+ <param name="extensionHost">The extension host holding all extensions.</param>
1052
+ </member>
1053
+ <member name="M:bbv.Common.EventBroker.Internals.EventInspector.ProcessPublisher(System.Object,System.Boolean,bbv.Common.EventBroker.Internals.IEventTopicHost)">
1054
+ <summary>
1055
+ Processes a publishers.
1056
+ </summary>
1057
+ <param name="publisher">The publisher.</param>
1058
+ <param name="register">true to register publications, false to unregister them.</param>
1059
+ <param name="eventTopicHost">The event topic host.</param>
1060
+ <remarks>Scans the members of the <paramref name="publisher"/> and registers or unregisters publications.</remarks>
1061
+ </member>
1062
+ <member name="M:bbv.Common.EventBroker.Internals.EventInspector.ProcessSubscriber(System.Object,System.Boolean,bbv.Common.EventBroker.Internals.IEventTopicHost)">
1063
+ <summary>
1064
+ Processes the subscriber.
1065
+ </summary>
1066
+ <param name="subscriber">The subscriber.</param>
1067
+ <param name="register">true to register subscriptions, false to unregister them.</param>
1068
+ <param name="eventTopicHost">The event topic host.</param>
1069
+ <remarks>Scans the members of the <paramref name="subscriber"/> and registers or unregisters subscriptions.</remarks>
1070
+ </member>
1071
+ <member name="M:bbv.Common.EventBroker.Internals.EventInspector.ProcessPublisher(System.String,System.Object,System.String,bbv.Common.EventBroker.HandlerRestriction,System.Collections.Generic.IList{bbv.Common.EventBroker.Matchers.IPublicationMatcher},System.Boolean,bbv.Common.EventBroker.Internals.IEventTopicHost)">
1072
+ <summary>
1073
+ Processes the publisher.
1074
+ </summary>
1075
+ <param name="topic">The topic.</param>
1076
+ <param name="publisher">The publisher.</param>
1077
+ <param name="eventName">Name of the event.</param>
1078
+ <param name="handlerRestriction">The handler restriction.</param>
1079
+ <param name="matchers">The matchers.</param>
1080
+ <param name="register">true to register publications, false to unregister them.</param>
1081
+ <param name="eventTopicHost">The event topic host.</param>
1082
+ </member>
1083
+ <member name="M:bbv.Common.EventBroker.Internals.EventInspector.ProcessSubscriber(System.String,System.Object,System.EventHandler,bbv.Common.EventBroker.IHandler,bbv.Common.EventBroker.Matchers.ISubscriptionMatcher[],System.Boolean,bbv.Common.EventBroker.Internals.IEventTopicHost)">
1084
+ <summary>
1085
+ Processes the subscriber.
1086
+ </summary>
1087
+ <param name="topic">The topic.</param>
1088
+ <param name="subscriber">The subscriber.</param>
1089
+ <param name="handlerMethod">The handler method.</param>
1090
+ <param name="handler">The handler.</param>
1091
+ <param name="matchers">The matchers.</param>
1092
+ <param name="register">true to register subscriptions, false to unregister them.</param>
1093
+ <param name="eventTopicHost">The event topic host.</param>
1094
+ </member>
1095
+ <member name="M:bbv.Common.EventBroker.Internals.EventInspector.ProcessSubscriber``1(System.String,System.Object,System.EventHandler{``0},bbv.Common.EventBroker.IHandler,bbv.Common.EventBroker.Matchers.ISubscriptionMatcher[],System.Boolean,bbv.Common.EventBroker.Internals.IEventTopicHost)">
1096
+ <summary>
1097
+ Processes the subscriber.
1098
+ </summary>
1099
+ <typeparam name="TEventArgs">The type of the event arguments.</typeparam>
1100
+ <param name="topic">The topic.</param>
1101
+ <param name="subscriber">The subscriber.</param>
1102
+ <param name="handlerMethod">The handler method.</param>
1103
+ <param name="handler">The handler.</param>
1104
+ <param name="matchers">The matchers.</param>
1105
+ <param name="register">true to register subscriptions, false to unregister them.</param>
1106
+ <param name="eventTopicHost">The event topic host.</param>
1107
+ </member>
1108
+ <member name="M:bbv.Common.EventBroker.Internals.EventInspector.HandlePublisher(System.Object,System.Boolean,System.Reflection.EventInfo,bbv.Common.EventBroker.EventPublicationAttribute,bbv.Common.EventBroker.Internals.IEventTopicHost)">
1109
+ <summary>
1110
+ Handles the publisher.
1111
+ </summary>
1112
+ <param name="publisher">The publisher.</param>
1113
+ <param name="register">true to register publications, false to unregister them.</param>
1114
+ <param name="eventInfo">The published event..</param>
1115
+ <param name="attr">The attribute</param>
1116
+ <param name="eventTopicHost">The event topic host.</param>
1117
+ </member>
1118
+ <member name="M:bbv.Common.EventBroker.Internals.EventInspector.HandleSubscriber(System.Object,System.Boolean,System.Reflection.MethodInfo,bbv.Common.EventBroker.EventSubscriptionAttribute,bbv.Common.EventBroker.Internals.IEventTopicHost)">
1119
+ <summary>
1120
+ Handles the subscriber.
1121
+ </summary>
1122
+ <param name="subscriber">The subscriber.</param>
1123
+ <param name="register">true to register subscriptions, false to unregister them.</param>
1124
+ <param name="methodInfo">The handler method.</param>
1125
+ <param name="attr">The subscription attribute.</param>
1126
+ <param name="eventTopicHost">The event topic host.</param>
1127
+ </member>
1128
+ <member name="M:bbv.Common.EventBroker.Internals.EventInspector.HandleSubscriber(bbv.Common.EventBroker.Internals.IEventTopicHost,System.String,System.Boolean,System.Object,System.Reflection.MethodInfo,bbv.Common.EventBroker.IHandler,bbv.Common.EventBroker.Matchers.ISubscriptionMatcher[])">
1129
+ <summary>
1130
+ Handles the subscriber.
1131
+ </summary>
1132
+ <param name="eventTopicHost">The event topic host.</param>
1133
+ <param name="topic">The topic.</param>
1134
+ <param name="register">if set to <c>true</c> [register].</param>
1135
+ <param name="subscriber">The subscriber.</param>
1136
+ <param name="handlerMethod">The handler method.</param>
1137
+ <param name="handler">The handler.</param>
1138
+ <param name="matchers">The matchers.</param>
1139
+ </member>
1140
+ <member name="T:bbv.Common.EventBroker.EventPublicationAttribute">
1141
+ <summary>
1142
+ Declares an event as an <see cref="T:bbv.Common.EventBroker.Internals.IEventTopic"/> publication.
1143
+ </summary>
1144
+ </member>
1145
+ <member name="F:bbv.Common.EventBroker.EventPublicationAttribute.topic">
1146
+ <summary>
1147
+ The URI of the event topic this publication refers to.
1148
+ </summary>
1149
+ </member>
1150
+ <member name="F:bbv.Common.EventBroker.EventPublicationAttribute.matcherTypes">
1151
+ <summary>
1152
+ Which matchers are used for this publication.
1153
+ </summary>
1154
+ </member>
1155
+ <member name="F:bbv.Common.EventBroker.EventPublicationAttribute.handlerRestriction">
1156
+ <summary>
1157
+ The restriction this publication has for subscribers.
1158
+ </summary>
1159
+ </member>
1160
+ <member name="M:bbv.Common.EventBroker.EventPublicationAttribute.#ctor(System.String)">
1161
+ <summary>
1162
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.EventPublicationAttribute"/> class with
1163
+ global publication scope.
1164
+ </summary>
1165
+ <param name="topic">The topic URI.</param>
1166
+ </member>
1167
+ <member name="M:bbv.Common.EventBroker.EventPublicationAttribute.#ctor(System.String,bbv.Common.EventBroker.HandlerRestriction)">
1168
+ <summary>
1169
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.EventPublicationAttribute"/> class.
1170
+ </summary>
1171
+ <param name="topic">The topic URI.</param>
1172
+ <param name="handlerRestriction">The handler restriction.</param>
1173
+ </member>
1174
+ <member name="M:bbv.Common.EventBroker.EventPublicationAttribute.#ctor(System.String,System.Type[])">
1175
+ <summary>
1176
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.EventPublicationAttribute"/> class.
1177
+ </summary>
1178
+ <param name="topic">The topic.</param>
1179
+ <param name="matcherTypes">The matcher types.</param>
1180
+ </member>
1181
+ <member name="M:bbv.Common.EventBroker.EventPublicationAttribute.#ctor(System.String,bbv.Common.EventBroker.HandlerRestriction,System.Type[])">
1182
+ <summary>
1183
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.EventPublicationAttribute"/> class.
1184
+ </summary>
1185
+ <param name="topic">The topic.</param>
1186
+ <param name="handlerRestriction">The handler restriction.</param>
1187
+ <param name="matcherTypes">The matcher types.</param>
1188
+ </member>
1189
+ <member name="P:bbv.Common.EventBroker.EventPublicationAttribute.Topic">
1190
+ <summary>
1191
+ Gets the topic URI.
1192
+ </summary>
1193
+ <value>The topic URI.</value>
1194
+ </member>
1195
+ <member name="P:bbv.Common.EventBroker.EventPublicationAttribute.MatcherTypes">
1196
+ <summary>
1197
+ Gets the types of the matchers.
1198
+ </summary>
1199
+ <value>The types of the matchers.</value>
1200
+ </member>
1201
+ <member name="P:bbv.Common.EventBroker.EventPublicationAttribute.HandlerRestriction">
1202
+ <summary>
1203
+ Gets the handler restriction this publication has for its subscribers. Whether all (null),
1204
+ only synchronous or asynchronous handling is allowed.
1205
+ </summary>
1206
+ <value>The handler restriction.</value>
1207
+ </member>
1208
+ <member name="T:bbv.Common.EventBroker.EventSubscriptionAttribute">
1209
+ <summary>
1210
+ Declares a handler as an <see cref="T:bbv.Common.EventBroker.Internals.IEventTopic"/> subscription.
1211
+ </summary>
1212
+ </member>
1213
+ <member name="F:bbv.Common.EventBroker.EventSubscriptionAttribute.topic">
1214
+ <summary>
1215
+ The URI of the event topic this publication refers to.
1216
+ </summary>
1217
+ </member>
1218
+ <member name="F:bbv.Common.EventBroker.EventSubscriptionAttribute.handlerType">
1219
+ <summary>
1220
+ Which threading strategy handler is used for this subscription.
1221
+ </summary>
1222
+ </member>
1223
+ <member name="F:bbv.Common.EventBroker.EventSubscriptionAttribute.matcherTypes">
1224
+ <summary>
1225
+ Which matchers are used for this subscription.
1226
+ </summary>
1227
+ </member>
1228
+ <member name="M:bbv.Common.EventBroker.EventSubscriptionAttribute.#ctor(System.String,System.Type)">
1229
+ <summary>
1230
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.EventSubscriptionAttribute"/> class using the specified handler to execute the subscription.
1231
+ </summary>
1232
+ <param name="topic">The name of the <see cref="T:bbv.Common.EventBroker.Internals.IEventTopic"/> to subscribe to.</param>
1233
+ <param name="handlerType">The type of the handler to execute the subscription (on publisher thread, user interface, ...).</param>
1234
+ </member>
1235
+ <member name="M:bbv.Common.EventBroker.EventSubscriptionAttribute.#ctor(System.String,System.Type,System.Type[])">
1236
+ <summary>
1237
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.EventSubscriptionAttribute"/> class using the specified handler to execute the subscription and the
1238
+ specified subscription scope matcher.
1239
+ </summary>
1240
+ <param name="topic">The name of the <see cref="T:bbv.Common.EventBroker.Internals.IEventTopic"/> to subscribe to.</param>
1241
+ <param name="handlerType">The type of the handler to execute the subscription (on publisher thread, user interface, ...).</param>
1242
+ <param name="matcherTypes">Type of the matchers used for this subscription.</param>
1243
+ </member>
1244
+ <member name="P:bbv.Common.EventBroker.EventSubscriptionAttribute.Topic">
1245
+ <summary>
1246
+ Gets the name of the <see cref="T:bbv.Common.EventBroker.Internals.IEventTopic"/> the decorated method is subscribed to.
1247
+ </summary>
1248
+ </member>
1249
+ <member name="P:bbv.Common.EventBroker.EventSubscriptionAttribute.HandlerType">
1250
+ <summary>
1251
+ Gets the type of the subscription execution handler.
1252
+ </summary>
1253
+ <value>The type of the subscription execution handler.</value>
1254
+ </member>
1255
+ <member name="P:bbv.Common.EventBroker.EventSubscriptionAttribute.MatcherTypes">
1256
+ <summary>
1257
+ Gets the types of the matchers.
1258
+ </summary>
1259
+ <value>The types of the matchers.</value>
1260
+ </member>
1261
+ <member name="T:bbv.Common.EventBroker.Internals.EventTopic">
1262
+ <summary>
1263
+ Represents a point of communication on a certain topic between the topic publishers and the topic subscribers.
1264
+ </summary>
1265
+ </member>
1266
+ <member name="T:bbv.Common.EventBroker.Internals.IEventTopic">
1267
+ <summary>
1268
+ Represents a point of communication on a certain topic between the topic publishers and the topic subscribers.
1269
+ </summary>
1270
+ </member>
1271
+ <member name="M:bbv.Common.EventBroker.Internals.IEventTopic.AddPublication(System.Object,System.Reflection.EventInfo,bbv.Common.EventBroker.HandlerRestriction,System.Collections.Generic.IList{bbv.Common.EventBroker.Matchers.IPublicationMatcher})">
1272
+ <summary>
1273
+ Adds a publication to the topic.
1274
+ </summary>
1275
+ <param name="publisher">The object that publishes the event that will fire the topic.</param>
1276
+ <param name="eventInfo">The <see cref="T:System.Reflection.EventInfo"/> of the publisher that registers this event topic.</param>
1277
+ <param name="handlerRestriction">The subscriber handler restriction.</param>
1278
+ <param name="matchers">The matchers for the publication.</param>
1279
+ </member>
1280
+ <member name="M:bbv.Common.EventBroker.Internals.IEventTopic.AddPublication(System.Object,System.EventHandler@,bbv.Common.EventBroker.HandlerRestriction,System.Collections.Generic.IList{bbv.Common.EventBroker.Matchers.IPublicationMatcher})">
1281
+ <summary>
1282
+ Adds a publication to the topic.
1283
+ </summary>
1284
+ <param name="publisher">The object that publishes the event that will fire the topic.</param>
1285
+ <param name="eventHandler">The event handler that will fire the topic.</param>
1286
+ <param name="handlerRestriction">The handler restriction.</param>
1287
+ <param name="matchers">The matchers.</param>
1288
+ </member>
1289
+ <member name="M:bbv.Common.EventBroker.Internals.IEventTopic.AddPublication``1(System.Object,System.EventHandler{``0}@,bbv.Common.EventBroker.HandlerRestriction,System.Collections.Generic.IList{bbv.Common.EventBroker.Matchers.IPublicationMatcher})">
1290
+ <summary>
1291
+ Adds a publication to the topic.
1292
+ </summary>
1293
+ <typeparam name="TEventArgs">The type of the event arguments of the event handler.</typeparam>
1294
+ <param name="publisher">The object that publishes the event that will fire the topic.</param>
1295
+ <param name="eventHandler">The event handler that will fire the topic.</param>
1296
+ <param name="handlerRestriction">The handler restriction.</param>
1297
+ <param name="matchers">The matchers.</param>
1298
+ </member>
1299
+ <member name="M:bbv.Common.EventBroker.Internals.IEventTopic.RemovePublication(System.Object,System.Reflection.EventInfo)">
1300
+ <summary>
1301
+ Removes a publication from the topic.
1302
+ </summary>
1303
+ <param name="publisher">The object that contains the publication.</param>
1304
+ <param name="eventInfo">The event on the publisher that fires the topic.</param>
1305
+ </member>
1306
+ <member name="M:bbv.Common.EventBroker.Internals.IEventTopic.RemovePublication(System.Object,System.EventHandler@)">
1307
+ <summary>
1308
+ Removes a publication from the topic.
1309
+ </summary>
1310
+ <param name="publisher">The publisher.</param>
1311
+ <param name="publishedEvent">The published event.</param>
1312
+ </member>
1313
+ <member name="M:bbv.Common.EventBroker.Internals.IEventTopic.AddSubscription(System.Object,System.Reflection.MethodInfo,bbv.Common.EventBroker.IHandler,System.Collections.Generic.IList{bbv.Common.EventBroker.Matchers.ISubscriptionMatcher})">
1314
+ <summary>
1315
+ Adds a subscription to this <see cref="T:bbv.Common.EventBroker.Internals.EventTopic"/>.
1316
+ </summary>
1317
+ <param name="subscriber">The object that contains the method that will handle the <see cref="T:bbv.Common.EventBroker.Internals.EventTopic"/>.</param>
1318
+ <param name="handlerMethod">The method on the subscriber that will handle the <see cref="T:bbv.Common.EventBroker.Internals.EventTopic"/>.
1319
+ Use this overload when there are several methods with the same name on the subscriber.</param>
1320
+ <param name="handler">The handler that is used to execute the subscription.</param>
1321
+ <param name="subscriptionMatchers">Matchers for the subscription.</param>
1322
+ </member>
1323
+ <member name="M:bbv.Common.EventBroker.Internals.IEventTopic.RemoveSubscription(System.Object,System.Reflection.MethodInfo)">
1324
+ <summary>
1325
+ Removes a subscription from this <see cref="T:bbv.Common.EventBroker.Internals.IEventTopic"/>.
1326
+ </summary>
1327
+ <param name="subscriber">The object that contains the method that will handle the <see cref="T:bbv.Common.EventBroker.Internals.IEventTopic"/>.</param>
1328
+ <param name="handlerMethod">The method on the subscriber that will handle the <see cref="T:bbv.Common.EventBroker.Internals.IEventTopic"/>.</param>
1329
+ </member>
1330
+ <member name="M:bbv.Common.EventBroker.Internals.IEventTopic.DescribeTo(System.IO.TextWriter)">
1331
+ <summary>
1332
+ Describes this event topic:
1333
+ publications, subscriptions, names, thread options, scopes, event args.
1334
+ </summary>
1335
+ <param name="writer">The writer.</param>
1336
+ </member>
1337
+ <member name="M:bbv.Common.EventBroker.Internals.IEventTopic.Fire(System.Object,System.EventArgs,bbv.Common.EventBroker.Internals.IPublication)">
1338
+ <summary>
1339
+ Fires the <see cref="T:bbv.Common.EventBroker.Internals.IEventTopic"/>.
1340
+ </summary>
1341
+ <param name="sender">The object that acts as the sender of the event to the subscribers.
1342
+ Not always the publisher (it's the sender provided in the event call).</param>
1343
+ <param name="e">An <see cref="T:System.EventArgs"/> instance to be passed to the subscribers.</param>
1344
+ <param name="publication">The publication firing the event topic.</param>
1345
+ </member>
1346
+ <member name="P:bbv.Common.EventBroker.Internals.IEventTopic.Uri">
1347
+ <summary>
1348
+ Gets the URI for the event topic. This URI is the unique identifier for this event topic.
1349
+ </summary>
1350
+ <value>The URI of this event topic.</value>
1351
+ </member>
1352
+ <member name="P:bbv.Common.EventBroker.Internals.IEventTopic.PublicationCount">
1353
+ <summary>
1354
+ Gets the count of registered publications with this <see cref="T:bbv.Common.EventBroker.Internals.IEventTopic"/>.
1355
+ </summary>
1356
+ </member>
1357
+ <member name="P:bbv.Common.EventBroker.Internals.IEventTopic.SubscriptionCount">
1358
+ <summary>
1359
+ Gets the count of registered subscriptions to this <see cref="T:bbv.Common.EventBroker.Internals.IEventTopic"/>.
1360
+ </summary>
1361
+ </member>
1362
+ <member name="F:bbv.Common.EventBroker.Internals.EventTopic.uri">
1363
+ <summary>
1364
+ The URI that identifies this event topic uniquely on an event broker.
1365
+ </summary>
1366
+ </member>
1367
+ <member name="F:bbv.Common.EventBroker.Internals.EventTopic.factory">
1368
+ <summary>
1369
+ Factory to create publications and subscriptions.
1370
+ </summary>
1371
+ </member>
1372
+ <member name="F:bbv.Common.EventBroker.Internals.EventTopic.extensionHost">
1373
+ <summary>
1374
+ Extension host holding all extensions.
1375
+ </summary>
1376
+ </member>
1377
+ <member name="F:bbv.Common.EventBroker.Internals.EventTopic.publications">
1378
+ <summary>
1379
+ List of all publications that fire this event topic.
1380
+ </summary>
1381
+ </member>
1382
+ <member name="F:bbv.Common.EventBroker.Internals.EventTopic.subscriptions">
1383
+ <summary>
1384
+ List of all subscriptions that listen to this event topic.
1385
+ </summary>
1386
+ </member>
1387
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.#ctor(System.String,bbv.Common.EventBroker.IFactory,bbv.Common.EventBroker.Internals.IExtensionHost)">
1388
+ <summary>
1389
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Internals.EventTopic"/> class.
1390
+ </summary>
1391
+ <param name="uri">The topic URI.</param>
1392
+ <param name="factory">Factory to create publications and subscriptions.</param>
1393
+ <param name="extensionHost">The extension host holding all extensions.</param>
1394
+ </member>
1395
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.AddPublication(System.Object,System.Reflection.EventInfo,bbv.Common.EventBroker.HandlerRestriction,System.Collections.Generic.IList{bbv.Common.EventBroker.Matchers.IPublicationMatcher})">
1396
+ <summary>
1397
+ Adds a publication to the topic.
1398
+ </summary>
1399
+ <param name="publisher">The object that publishes the event that will fire the topic.</param>
1400
+ <param name="eventInfo">The <see cref="T:System.Reflection.EventInfo"/> of the publisher that registers this event topic.</param>
1401
+ <param name="handlerRestriction">The handler restriction.</param>
1402
+ <param name="matchers">Matchers for publication.</param>
1403
+ </member>
1404
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.AddPublication(System.Object,System.EventHandler@,bbv.Common.EventBroker.HandlerRestriction,System.Collections.Generic.IList{bbv.Common.EventBroker.Matchers.IPublicationMatcher})">
1405
+ <summary>
1406
+ Adds a publication to the topic.
1407
+ </summary>
1408
+ <param name="publisher">The object that publishes the event that will fire the topic.</param>
1409
+ <param name="eventHandler">The event handler that will fire the topic.</param>
1410
+ <param name="handlerRestriction">The handler restriction.</param>
1411
+ <param name="matchers">The matchers.</param>
1412
+ </member>
1413
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.AddPublication``1(System.Object,System.EventHandler{``0}@,bbv.Common.EventBroker.HandlerRestriction,System.Collections.Generic.IList{bbv.Common.EventBroker.Matchers.IPublicationMatcher})">
1414
+ <summary>
1415
+ Adds a publication to the topic.
1416
+ </summary>
1417
+ <typeparam name="TEventArgs">The type of the event arguments of the event handler.</typeparam>
1418
+ <param name="publisher">The object that publishes the event that will fire the topic.</param>
1419
+ <param name="eventHandler">The event handler that will fire the topic.</param>
1420
+ <param name="handlerRestriction">The handler restriction.</param>
1421
+ <param name="matchers">The matchers.</param>
1422
+ </member>
1423
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.RemovePublication(System.Object,System.Reflection.EventInfo)">
1424
+ <summary>
1425
+ Removes a publication from the topic.
1426
+ </summary>
1427
+ <param name="publisher">The object that contains the publication.</param>
1428
+ <param name="eventInfo">The event on the publisher that fires the topic.</param>
1429
+ </member>
1430
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.RemovePublication(System.Object,System.EventHandler@)">
1431
+ <summary>
1432
+ Removes a publication from the topic.
1433
+ </summary>
1434
+ <param name="publisher">The publisher.</param>
1435
+ <param name="publishedEvent">The published event.</param>
1436
+ </member>
1437
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.AddSubscription(System.Object,System.Reflection.MethodInfo,bbv.Common.EventBroker.IHandler,System.Collections.Generic.IList{bbv.Common.EventBroker.Matchers.ISubscriptionMatcher})">
1438
+ <summary>
1439
+ Adds a subscription to this <see cref="T:bbv.Common.EventBroker.Internals.EventTopic"/>.
1440
+ </summary>
1441
+ <param name="subscriber">The object that contains the method that will handle the <see cref="T:bbv.Common.EventBroker.Internals.EventTopic"/>.</param>
1442
+ <param name="handlerMethod">The method on the subscriber that will handle the <see cref="T:bbv.Common.EventBroker.Internals.EventTopic"/>.</param>
1443
+ <param name="handler">The handler that is used to execute the subscription.</param>
1444
+ <param name="subscriptionMatchers">Matchers for the subscription.</param>
1445
+ </member>
1446
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.RemoveSubscription(System.Object,System.Reflection.MethodInfo)">
1447
+ <summary>
1448
+ Removes a subscription from this <see cref="T:bbv.Common.EventBroker.Internals.EventTopic"/>.
1449
+ </summary>
1450
+ <param name="subscriber">The object that contains the method that will handle the <see cref="T:bbv.Common.EventBroker.Internals.EventTopic"/>.</param>
1451
+ <param name="handlerMethod">The method on the subscriber that will handle the <see cref="T:bbv.Common.EventBroker.Internals.EventTopic"/>.</param>
1452
+ </member>
1453
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.DescribeTo(System.IO.TextWriter)">
1454
+ <summary>
1455
+ Describes this event topic:
1456
+ publications, subscriptions, names, thread options, scopes, event arguments.
1457
+ </summary>
1458
+ <param name="writer">The writer.</param>
1459
+ </member>
1460
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.Dispose">
1461
+ <summary>
1462
+ Called to free resources.
1463
+ </summary>
1464
+ </member>
1465
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.Fire(System.Object,System.EventArgs,bbv.Common.EventBroker.Internals.IPublication)">
1466
+ <summary>
1467
+ Fires the <see cref="T:bbv.Common.EventBroker.Internals.IEventTopic"/>.
1468
+ </summary>
1469
+ <param name="sender">The object that acts as the sender of the event to the subscribers.
1470
+ Not always the publisher (it's the sender provided in the event call).</param>
1471
+ <param name="e">An <see cref="T:System.EventArgs"/> instance to be passed to the subscribers.</param>
1472
+ <param name="publication">The publication firing the event topic.</param>
1473
+ </member>
1474
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.ContainsPublication(System.Object,System.String)">
1475
+ <summary>
1476
+ Checks if the specified publication has been registered with this <see cref="T:bbv.Common.EventBroker.Internals.EventTopic"/>.
1477
+ </summary>
1478
+ <param name="publisher">The object that contains the publication.</param>
1479
+ <param name="eventName">The name of event on the publisher that fires the topic.</param>
1480
+ <returns>true if the topic contains the requested publication; otherwise false.</returns>
1481
+ </member>
1482
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.ContainsSubscription(System.Object,System.String)">
1483
+ <summary>
1484
+ Checks if the specified subscription has been registered with this <see cref="T:bbv.Common.EventBroker.Internals.EventTopic"/>.
1485
+ </summary>
1486
+ <param name="subscriber">The object that contains the method that will handle the <see cref="T:bbv.Common.EventBroker.Internals.EventTopic"/>.</param>
1487
+ <param name="handlerMethodName">The name of the method on the subscriber that will handle the <see cref="T:bbv.Common.EventBroker.Internals.EventTopic"/>.</param>
1488
+ <returns>true, if the topic contains the subscription; otherwise false.</returns>
1489
+ </member>
1490
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.Dispose(System.Boolean)">
1491
+ <summary>
1492
+ Called to free resources.
1493
+ </summary>
1494
+ <param name="disposing">Should be true when calling from Dispose().</param>
1495
+ </member>
1496
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.CheckMatchers(bbv.Common.EventBroker.Internals.IPublication,bbv.Common.EventBroker.Internals.ISubscription,System.EventArgs)">
1497
+ <summary>
1498
+ Checks whether the event of the publisher has to be relayed to the subscriber (Matchers).
1499
+ </summary>
1500
+ <param name="publication">The publication.</param>
1501
+ <param name="subscription">The subscription.</param>
1502
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
1503
+ <returns><code>true</code> if the event has to be relayed.</returns>
1504
+ </member>
1505
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.AddPublication(bbv.Common.EventBroker.Internals.IPublication)">
1506
+ <summary>
1507
+ Adds the publication.
1508
+ </summary>
1509
+ <param name="publication">The publication.</param>
1510
+ </member>
1511
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.FindPublication(System.Object,System.String)">
1512
+ <summary>
1513
+ Searches for a already registered publication for the same publisher and event.
1514
+ </summary>
1515
+ <param name="publisher">The publisher that will be registered newly.</param>
1516
+ <param name="eventName">Name of the published event.</param>
1517
+ <returns>The publication that is already registered.</returns>
1518
+ </member>
1519
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.GetHandlers(bbv.Common.EventBroker.Internals.IPublication,System.Object,System.EventArgs)">
1520
+ <summary>
1521
+ Gets the handlers of this even topic
1522
+ </summary>
1523
+ <param name="publication">The publication (used for logging).</param>
1524
+ <param name="sender">The sender.</param>
1525
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
1526
+ <returns>
1527
+ Array of delegates, the handlers for this even topic.
1528
+ </returns>
1529
+ </member>
1530
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.FindSubscription(System.Object,System.String)">
1531
+ <summary>
1532
+ Returns the subscription of the specified subscriber.
1533
+ </summary>
1534
+ <param name="subscriber">The subscriber to look for.</param>
1535
+ <param name="handlerMethodName">Name of the handler method to look for.</param>
1536
+ <returns>The subscription for the specified subscriber and handler method, null if not found.</returns>
1537
+ </member>
1538
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.Clean">
1539
+ <summary>
1540
+ Perform a sanity cleaning of the dead references to publishers and subscribers
1541
+ </summary>
1542
+ <devdoc>As the topic maintains <see cref="T:System.WeakReference"/> to publishers and subscribers,
1543
+ those instances that are finished but hadn't been removed from the topic will leak. This method
1544
+ deals with that case.</devdoc>
1545
+ </member>
1546
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.CallSubscriptionHandlers(System.Object,System.EventArgs,System.Collections.Generic.IEnumerable{bbv.Common.EventBroker.Internals.EventTopicFireDelegate},bbv.Common.EventBroker.Internals.IPublication)">
1547
+ <summary>
1548
+ Calls the subscription handlers.
1549
+ </summary>
1550
+ <param name="sender">The publisher.</param>
1551
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
1552
+ <param name="handlers">The handlers to call.</param>
1553
+ <param name="publication">The publication firing the event topic.</param>
1554
+ </member>
1555
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.TraceExceptions(System.Collections.Generic.IEnumerable{System.Exception})">
1556
+ <summary>
1557
+ Logs the specified exceptions.
1558
+ </summary>
1559
+ <param name="exceptions">The exceptions.</param>
1560
+ </member>
1561
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.ThrowIfRepeatedPublication(System.Object,System.String)">
1562
+ <summary>
1563
+ Throws a <see cref="T:bbv.Common.EventBroker.Exceptions.RepeatedPublicationException"/> if a duplicate publication is detected.
1564
+ </summary>
1565
+ <param name="publisher">The publisher to add.</param>
1566
+ <param name="eventName">Name of the event to add.</param>
1567
+ <exception cref="T:bbv.Common.EventBroker.Exceptions.RepeatedPublicationException">Thrown if a duplicate publication is detected.</exception>
1568
+ </member>
1569
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.ThrowIfRepeatedSubscription(System.Object,System.String)">
1570
+ <summary>
1571
+ Throws a <see cref="T:bbv.Common.EventBroker.Exceptions.RepeatedSubscriptionException"/> if a duplicate subscription is detected.
1572
+ </summary>
1573
+ <param name="subscriber">The subscriber.</param>
1574
+ <param name="handlerMethodName">Name of the handler method.</param>
1575
+ </member>
1576
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.ThrowIfPublisherAndSubscriberEventArgsMismatch(bbv.Common.EventBroker.Internals.ISubscription,bbv.Common.EventBroker.Internals.IPublication)">
1577
+ <summary>
1578
+ Throws an <see cref="T:bbv.Common.EventBroker.Exceptions.EventTopicException"/> if publisher and subscriber use incompatible event arguments.
1579
+ </summary>
1580
+ <param name="subscription">The subscription.</param>
1581
+ <param name="publication">The publication.</param>
1582
+ <exception cref="T:bbv.Common.EventBroker.Exceptions.EventTopicException">Thrown if publisher and subscriber use incompatible event arguments.</exception>
1583
+ </member>
1584
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopic.ThrowIfSubscriptionHandlerDoesNotMatchHandlerRestrictionOfPublisher(bbv.Common.EventBroker.Internals.ISubscription,bbv.Common.EventBroker.Internals.IPublication)">
1585
+ <summary>
1586
+ Throws if subscription handler does not match handler restriction of publisher.
1587
+ </summary>
1588
+ <param name="subscription">The subscription.</param>
1589
+ <param name="publication">The publication.</param>
1590
+ </member>
1591
+ <member name="P:bbv.Common.EventBroker.Internals.EventTopic.PublicationCount">
1592
+ <summary>
1593
+ Gets the count of registered publications with this <see cref="T:bbv.Common.EventBroker.Internals.EventTopic"/>.
1594
+ </summary>
1595
+ </member>
1596
+ <member name="P:bbv.Common.EventBroker.Internals.EventTopic.Uri">
1597
+ <summary>
1598
+ Gets the topic URI.
1599
+ </summary>
1600
+ <value>The topic URI.</value>
1601
+ </member>
1602
+ <member name="P:bbv.Common.EventBroker.Internals.EventTopic.SubscriptionCount">
1603
+ <summary>
1604
+ Gets the count of registered subscriptions to this <see cref="T:bbv.Common.EventBroker.Internals.EventTopic"/>.
1605
+ </summary>
1606
+ </member>
1607
+ <member name="T:bbv.Common.EventBroker.Internals.EventTopicFireDelegate">
1608
+ <summary>
1609
+ Represents the signature for the subscription objects to get called from the <see cref="T:bbv.Common.EventBroker.Internals.EventTopic"/> during
1610
+ a firing sequence.
1611
+ </summary>
1612
+ <param name="eventTopic">The event topic that is fired.</param>
1613
+ <param name="sender">The publisher object firing the topic.</param>
1614
+ <param name="e">The <see cref="T:System.EventArgs"/> data to be passed to the subscribers.</param>
1615
+ <param name="publication">The publication firing the event.</param>
1616
+ <param name="exceptions">An <see cref="T:System.Exception"/> list where a <see cref="T:bbv.Common.EventBroker.Internals.Subscription"/> should
1617
+ register the exceptions that occurred during execution of the subscription code.</param>
1618
+ </member>
1619
+ <member name="T:bbv.Common.EventBroker.Internals.EventTopicHost">
1620
+ <summary>
1621
+ Default implementation of a <see cref="T:bbv.Common.EventBroker.Internals.IEventTopicHost"/>.
1622
+ </summary>
1623
+ </member>
1624
+ <member name="T:bbv.Common.EventBroker.Internals.IEventTopicHost">
1625
+ <summary>
1626
+ An event topic hosts is context where publications and subscriptions are wired together through <see cref="T:bbv.Common.EventBroker.Internals.IEventTopic"/>s.
1627
+ </summary>
1628
+ <remarks>
1629
+ Only publications and subscription in the same host are wired together. You can use several event topic hosts by exchanging them during registration on the <see cref="T:bbv.Common.EventBroker.EventBroker"/>.
1630
+ </remarks>
1631
+ </member>
1632
+ <member name="M:bbv.Common.EventBroker.Internals.IEventTopicHost.GetEventTopic(System.String)">
1633
+ <summary>
1634
+ Gets a event topic. Result is never null. Event topic is created if it does not yet exist.
1635
+ </summary>
1636
+ <param name="topic">The topic URI identifying the event topic to return.</param>
1637
+ <returns>A non-null event topic. Event topic is created if it does not yet exist.</returns>
1638
+ <remarks>
1639
+ Returns a non null instance of the dictionary.
1640
+ </remarks>
1641
+ <value>The event topics.</value>
1642
+ </member>
1643
+ <member name="M:bbv.Common.EventBroker.Internals.IEventTopicHost.DescribeTo(System.IO.TextWriter)">
1644
+ <summary>
1645
+ Describes all event topics:
1646
+ publications, subscriptions, names, thread options, scopes, event arguments.
1647
+ </summary>
1648
+ <param name="writer">The writer.</param>
1649
+ </member>
1650
+ <member name="F:bbv.Common.EventBroker.Internals.EventTopicHost.factory">
1651
+ <summary>
1652
+ The event broker factory.
1653
+ </summary>
1654
+ </member>
1655
+ <member name="F:bbv.Common.EventBroker.Internals.EventTopicHost.extensionHost">
1656
+ <summary>
1657
+ The extension host holding all extensions.
1658
+ </summary>
1659
+ </member>
1660
+ <member name="F:bbv.Common.EventBroker.Internals.EventTopicHost.eventTopics">
1661
+ <summary>
1662
+ Map from event topic URI to event topic instance.
1663
+ </summary>
1664
+ </member>
1665
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopicHost.#ctor(bbv.Common.EventBroker.IFactory,bbv.Common.EventBroker.Internals.IExtensionHost)">
1666
+ <summary>
1667
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Internals.EventTopicHost"/> class.
1668
+ </summary>
1669
+ <param name="factory">The factory.</param>
1670
+ <param name="extensionHost">The extension host holding all extensions.</param>
1671
+ </member>
1672
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopicHost.GetEventTopic(System.String)">
1673
+ <summary>
1674
+ Gets a event topic. Result is never null. Event topic is created if it does not yet exist.
1675
+ </summary>
1676
+ <param name="topic">The topic URI identifying the event topic to return.</param>
1677
+ <returns>A non-null event topic. Event topic is created if it does not yet exist.</returns>
1678
+ <remarks>
1679
+ Returns a non null instance of the dictionary.
1680
+ </remarks>
1681
+ <value>The event topics.</value>
1682
+ </member>
1683
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopicHost.DescribeTo(System.IO.TextWriter)">
1684
+ <summary>
1685
+ Describes all event topics:
1686
+ publications, subscriptions, names, thread options, matchers, event arguments.
1687
+ </summary>
1688
+ <param name="writer">The writer.</param>
1689
+ </member>
1690
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopicHost.Dispose">
1691
+ <summary>
1692
+ See <see cref="M:System.IDisposable.Dispose"/> for more information.
1693
+ </summary>
1694
+ </member>
1695
+ <member name="M:bbv.Common.EventBroker.Internals.EventTopicHost.Dispose(System.Boolean)">
1696
+ <summary>
1697
+ Releases unmanaged and - optionally - managed resources
1698
+ </summary>
1699
+ <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
1700
+ </member>
1701
+ <member name="T:bbv.Common.EventBroker.Exceptions.EventBrokerException">
1702
+ <summary>
1703
+ Base exception for all exceptions that are thrown within the event broker framework.
1704
+ </summary>
1705
+ </member>
1706
+ <member name="M:bbv.Common.EventBroker.Exceptions.EventBrokerException.#ctor">
1707
+ <summary>
1708
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Exceptions.EventBrokerException"/> class.
1709
+ </summary>
1710
+ </member>
1711
+ <member name="M:bbv.Common.EventBroker.Exceptions.EventBrokerException.#ctor(System.String,System.Object[])">
1712
+ <summary>
1713
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Exceptions.EventBrokerException"/> class.
1714
+ </summary>
1715
+ <param name="format">Exception message as a format string.</param>
1716
+ <param name="args">Argument for the exception message format string.</param>
1717
+ </member>
1718
+ <member name="M:bbv.Common.EventBroker.Exceptions.EventBrokerException.#ctor(System.String,System.Exception)">
1719
+ <summary>
1720
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Exceptions.EventBrokerException"/> class.
1721
+ </summary>
1722
+ <param name="message">The message.</param>
1723
+ <param name="innerException">The inner exception.</param>
1724
+ </member>
1725
+ <member name="M:bbv.Common.EventBroker.Exceptions.EventBrokerException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1726
+ <summary>
1727
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Exceptions.EventBrokerException"/> class.
1728
+ </summary>
1729
+ <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> that holds the serialized object data about the exception being thrown.</param>
1730
+ <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"></see> that contains contextual information about the source or destination.</param>
1731
+ <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"></see> is zero (0). </exception>
1732
+ <exception cref="T:System.ArgumentNullException">The info parameter is null. </exception>
1733
+ </member>
1734
+ <member name="T:bbv.Common.EventBroker.Exceptions.EventTopicException">
1735
+ <summary>
1736
+ An <see cref="T:bbv.Common.EventBroker.Exceptions.EventBrokerException"/> thrown by the <see cref="T:bbv.Common.EventBroker.Internals.IEventTopic"/> when exceptions occurs
1737
+ on its subscriptions during a firing sequence.
1738
+ </summary>
1739
+ </member>
1740
+ <member name="F:bbv.Common.EventBroker.Exceptions.EventTopicException.exceptions">
1741
+ <summary>
1742
+ The list of all exceptions that occurred on all subscription handlers.
1743
+ </summary>
1744
+ </member>
1745
+ <member name="F:bbv.Common.EventBroker.Exceptions.EventTopicException.topic">
1746
+ <summary>
1747
+ Link to the event topic that was fired.
1748
+ </summary>
1749
+ </member>
1750
+ <member name="M:bbv.Common.EventBroker.Exceptions.EventTopicException.#ctor">
1751
+ <summary>
1752
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Exceptions.EventTopicException"/> class.
1753
+ </summary>
1754
+ </member>
1755
+ <member name="M:bbv.Common.EventBroker.Exceptions.EventTopicException.#ctor(System.String)">
1756
+ <summary>
1757
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Exceptions.EventTopicException"/> class.
1758
+ </summary>
1759
+ <param name="message">The message.</param>
1760
+ </member>
1761
+ <member name="M:bbv.Common.EventBroker.Exceptions.EventTopicException.#ctor(System.String,System.Exception)">
1762
+ <summary>
1763
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Exceptions.EventTopicException"/> class with a specified error message
1764
+ and a reference to the inner exception that is the cause of this exception.
1765
+ </summary>
1766
+ <param name="message">The error message that explains the reason for the exception.</param>
1767
+ <param name="innerException">The exception that is the cause of the current exception,
1768
+ or a null reference if no inner exception is specified.</param>
1769
+ </member>
1770
+ <member name="M:bbv.Common.EventBroker.Exceptions.EventTopicException.#ctor(bbv.Common.EventBroker.Internals.IEventTopic,System.Collections.ObjectModel.ReadOnlyCollection{System.Exception})">
1771
+ <summary>
1772
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Exceptions.EventTopicException"/> class with the specified list of exceptions.
1773
+ </summary>
1774
+ <param name="topic">The <see cref="T:bbv.Common.EventBroker.Internals.IEventTopic"/> instance whose subscribers incurred into an exception.</param>
1775
+ <param name="exceptions">The list of exceptions that occurred during the subscribers invocation.</param>
1776
+ </member>
1777
+ <member name="M:bbv.Common.EventBroker.Exceptions.EventTopicException.#ctor(bbv.Common.EventBroker.Internals.IEventTopic,System.Exception)">
1778
+ <summary>
1779
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Exceptions.EventTopicException"/> class.
1780
+ </summary>
1781
+ <param name="topic">The <see cref="T:bbv.Common.EventBroker.Internals.IEventTopic"/> instance whose subscribers incurred into an exception.</param>
1782
+ <param name="innerException">The inner exception.</param>
1783
+ </member>
1784
+ <member name="M:bbv.Common.EventBroker.Exceptions.EventTopicException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1785
+ <summary>
1786
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Exceptions.EventTopicException"/> class with serialized data.
1787
+ </summary>
1788
+ <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
1789
+ <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
1790
+ </member>
1791
+ <member name="P:bbv.Common.EventBroker.Exceptions.EventTopicException.Exceptions">
1792
+ <summary>
1793
+ Gets the list of exceptions that occurred during the subscribers invocation.
1794
+ </summary>
1795
+ </member>
1796
+ <member name="P:bbv.Common.EventBroker.Exceptions.EventTopicException.Topic">
1797
+ <summary>
1798
+ Gets the <see cref="T:bbv.Common.EventBroker.Internals.IEventTopic"/> which incurred into errors.
1799
+ </summary>
1800
+ </member>
1801
+ <member name="T:bbv.Common.EventBroker.Exceptions.InvalidPublicationSignatureException">
1802
+ <summary>
1803
+ An <see cref="T:bbv.Common.EventBroker.Exceptions.EventBrokerException"/> thrown when an invalid publication signature is found while registering a publisher.
1804
+ </summary>
1805
+ </member>
1806
+ <member name="M:bbv.Common.EventBroker.Exceptions.InvalidPublicationSignatureException.#ctor(System.Reflection.EventInfo)">
1807
+ <summary>
1808
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Exceptions.InvalidPublicationSignatureException"/> class.
1809
+ </summary>
1810
+ <param name="eventInfo">The event info.</param>
1811
+ </member>
1812
+ <member name="T:bbv.Common.EventBroker.Exceptions.InvalidSubscriptionSignatureException">
1813
+ <summary>
1814
+ An <see cref="T:bbv.Common.EventBroker.Exceptions.EventBrokerException"/> thrown when an invalid subscription signature is found while registering a subscriber.
1815
+ </summary>
1816
+ </member>
1817
+ <member name="F:bbv.Common.EventBroker.Exceptions.InvalidSubscriptionSignatureException.methodInfo">
1818
+ <summary>
1819
+ The method info of the handler with invalid signature.
1820
+ </summary>
1821
+ </member>
1822
+ <member name="M:bbv.Common.EventBroker.Exceptions.InvalidSubscriptionSignatureException.#ctor(System.Reflection.MethodInfo)">
1823
+ <summary>
1824
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Exceptions.InvalidSubscriptionSignatureException"/> class.
1825
+ </summary>
1826
+ <param name="methodInfo">The method info.</param>
1827
+ </member>
1828
+ <member name="P:bbv.Common.EventBroker.Exceptions.InvalidSubscriptionSignatureException.MethodInfo">
1829
+ <summary>
1830
+ Gets the method info of the handler with invalid signature.
1831
+ </summary>
1832
+ <value>Method info of invalid subscription handler.</value>
1833
+ </member>
1834
+ <member name="T:bbv.Common.EventBroker.Exceptions.NotUserInterfaceThreadException">
1835
+ <summary>
1836
+ An <see cref="T:bbv.Common.EventBroker.Exceptions.EventBrokerException"/> thrown when a subscription on UI thread is found on a subscriber that is not registered on the UI thread.
1837
+ </summary>
1838
+ </member>
1839
+ <member name="M:bbv.Common.EventBroker.Exceptions.NotUserInterfaceThreadException.#ctor(System.Object,System.String)">
1840
+ <summary>
1841
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Exceptions.NotUserInterfaceThreadException"/> class.
1842
+ </summary>
1843
+ <param name="subscriber">The subscriber.</param>
1844
+ <param name="handlerMethodName">Name of the handler method.</param>
1845
+ </member>
1846
+ <member name="T:bbv.Common.EventBroker.Exceptions.PublisherEventNotFoundException">
1847
+ <summary>
1848
+ An <see cref="T:bbv.Common.EventBroker.Exceptions.EventBrokerException"/> thrown when a published event can not be found while registering a publisher.
1849
+ </summary>
1850
+ </member>
1851
+ <member name="M:bbv.Common.EventBroker.Exceptions.PublisherEventNotFoundException.#ctor(System.Type,System.String)">
1852
+ <summary>
1853
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Exceptions.PublisherEventNotFoundException"/> class.
1854
+ </summary>
1855
+ <param name="publisherType">Type of the publisher.</param>
1856
+ <param name="eventName">Name of the event.</param>
1857
+ </member>
1858
+ <member name="T:bbv.Common.EventBroker.Exceptions.RepeatedPublicationException">
1859
+ <summary>
1860
+ An <see cref="T:bbv.Common.EventBroker.Exceptions.EventBrokerException"/> thrown when a single publication event defines the same topic several times.
1861
+ </summary>
1862
+ </member>
1863
+ <member name="M:bbv.Common.EventBroker.Exceptions.RepeatedPublicationException.#ctor(System.Object,System.String)">
1864
+ <summary>
1865
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Exceptions.RepeatedPublicationException"/> class.
1866
+ </summary>
1867
+ <param name="publisher">The publisher.</param>
1868
+ <param name="eventName">Name of the event.</param>
1869
+ </member>
1870
+ <member name="T:bbv.Common.EventBroker.Exceptions.RepeatedSubscriptionException">
1871
+ <summary>
1872
+ An <see cref="T:bbv.Common.EventBroker.Exceptions.EventBrokerException"/> thrown when a single subscription handler method defines the same topic several times.
1873
+ </summary>
1874
+ </member>
1875
+ <member name="M:bbv.Common.EventBroker.Exceptions.RepeatedSubscriptionException.#ctor(System.Object,System.String)">
1876
+ <summary>
1877
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Exceptions.RepeatedSubscriptionException"/> class.
1878
+ </summary>
1879
+ <param name="subscriber">The subscriber.</param>
1880
+ <param name="handlerMethodName">Name of the handler method.</param>
1881
+ </member>
1882
+ <member name="T:bbv.Common.EventBroker.Exceptions.StaticPublisherEventException">
1883
+ <summary>
1884
+ An <see cref="T:bbv.Common.EventBroker.Exceptions.EventBrokerException"/> thrown when a published event is static.
1885
+ </summary>
1886
+ </member>
1887
+ <member name="M:bbv.Common.EventBroker.Exceptions.StaticPublisherEventException.#ctor(System.Reflection.EventInfo)">
1888
+ <summary>
1889
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Exceptions.StaticPublisherEventException"/> class.
1890
+ </summary>
1891
+ <param name="eventInfo">The event info.</param>
1892
+ </member>
1893
+ <member name="T:bbv.Common.EventBroker.Exceptions.StaticSubscriberHandlerException">
1894
+ <summary>
1895
+ An <see cref="T:bbv.Common.EventBroker.Exceptions.EventBrokerException"/> thrown when a static subscription handler is found.
1896
+ </summary>
1897
+ </member>
1898
+ <member name="M:bbv.Common.EventBroker.Exceptions.StaticSubscriberHandlerException.#ctor(System.Reflection.MethodInfo)">
1899
+ <summary>
1900
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Exceptions.StaticSubscriberHandlerException"/> class.
1901
+ </summary>
1902
+ <param name="methodInfo">The method info.</param>
1903
+ </member>
1904
+ <member name="T:bbv.Common.EventBroker.Exceptions.SubscriberHandlerNotFoundException">
1905
+ <summary>
1906
+ An <see cref="T:bbv.Common.EventBroker.Exceptions.EventBrokerException"/> thrown when a handler emthod can not be found.
1907
+ </summary>
1908
+ </member>
1909
+ <member name="F:bbv.Common.EventBroker.Exceptions.SubscriberHandlerNotFoundException.subscriberType">
1910
+ <summary>
1911
+ The type of the subscriber.
1912
+ </summary>
1913
+ </member>
1914
+ <member name="F:bbv.Common.EventBroker.Exceptions.SubscriberHandlerNotFoundException.handlerMethodName">
1915
+ <summary>
1916
+ The name of the handler method.
1917
+ </summary>
1918
+ </member>
1919
+ <member name="M:bbv.Common.EventBroker.Exceptions.SubscriberHandlerNotFoundException.#ctor(System.Type,System.String)">
1920
+ <summary>
1921
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Exceptions.SubscriberHandlerNotFoundException"/> class.
1922
+ </summary>
1923
+ <param name="subscriberType">Type of the subscriber.</param>
1924
+ <param name="handlerMethodName">Name of the handler method.</param>
1925
+ </member>
1926
+ <member name="P:bbv.Common.EventBroker.Exceptions.SubscriberHandlerNotFoundException.SubscriberType">
1927
+ <summary>
1928
+ Gets the type of the subscriber.
1929
+ </summary>
1930
+ <value>The type of the subscriber.</value>
1931
+ </member>
1932
+ <member name="P:bbv.Common.EventBroker.Exceptions.SubscriberHandlerNotFoundException.HandlerMethodName">
1933
+ <summary>
1934
+ Gets the name of the handler method.
1935
+ </summary>
1936
+ <value>The name of the handler method.</value>
1937
+ </member>
1938
+ <member name="T:bbv.Common.EventBroker.Extensions.LogExtension">
1939
+ <summary>
1940
+ Event broker extension that logs event broker activity.
1941
+ </summary>
1942
+ </member>
1943
+ <member name="F:bbv.Common.EventBroker.Extensions.LogExtension.log">
1944
+ <summary>
1945
+ Logger of this instance.
1946
+ </summary>
1947
+ </member>
1948
+ <member name="M:bbv.Common.EventBroker.Extensions.LogExtension.#ctor">
1949
+ <summary>
1950
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Extensions.LogExtension"/> class.
1951
+ </summary>
1952
+ </member>
1953
+ <member name="M:bbv.Common.EventBroker.Extensions.LogExtension.#ctor(System.String)">
1954
+ <summary>
1955
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Extensions.LogExtension"/> class.
1956
+ </summary>
1957
+ <param name="logger">The logger to be used for log messages.</param>
1958
+ </member>
1959
+ <member name="M:bbv.Common.EventBroker.Extensions.LogExtension.FiredEvent(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication,System.Object,System.EventArgs)">
1960
+ <summary>
1961
+ Called when the event was fired (processing completed).
1962
+ </summary>
1963
+ <param name="eventTopic">The event topic.</param>
1964
+ <param name="publication">The publication.</param>
1965
+ <param name="sender">The sender.</param>
1966
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
1967
+ </member>
1968
+ <member name="M:bbv.Common.EventBroker.Extensions.LogExtension.RegisteredItem(System.Object)">
1969
+ <summary>
1970
+ Called when an item was registered.
1971
+ </summary>
1972
+ <param name="item">The item that was registered.</param>
1973
+ </member>
1974
+ <member name="M:bbv.Common.EventBroker.Extensions.LogExtension.UnregisteredItem(System.Object)">
1975
+ <summary>
1976
+ Called when an item was unregistered.
1977
+ </summary>
1978
+ <param name="item">The item that was unregistered.</param>
1979
+ </member>
1980
+ <member name="M:bbv.Common.EventBroker.Extensions.LogExtension.CreatedTopic(bbv.Common.EventBroker.Internals.IEventTopic)">
1981
+ <summary>
1982
+ Called after an event topic was created.
1983
+ </summary>
1984
+ <param name="eventTopic">The event topic.</param>
1985
+ </member>
1986
+ <member name="M:bbv.Common.EventBroker.Extensions.LogExtension.CreatedPublication(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication)">
1987
+ <summary>
1988
+ Called after a publication was created.
1989
+ </summary>
1990
+ <param name="eventTopic">The event topic.</param>
1991
+ <param name="publication">The publication.</param>
1992
+ </member>
1993
+ <member name="M:bbv.Common.EventBroker.Extensions.LogExtension.CreatedSubscription(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.ISubscription)">
1994
+ <summary>
1995
+ Called after a subscription was created.
1996
+ </summary>
1997
+ <param name="eventTopic">The event topic.</param>
1998
+ <param name="subscription">The subscription.</param>
1999
+ </member>
2000
+ <member name="M:bbv.Common.EventBroker.Extensions.LogExtension.FiringEvent(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication,System.Object,System.EventArgs)">
2001
+ <summary>
2002
+ Called when an event is fired.
2003
+ </summary>
2004
+ <param name="eventTopic">The event topic.</param>
2005
+ <param name="publication">The publication.</param>
2006
+ <param name="sender">The sender.</param>
2007
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
2008
+ </member>
2009
+ <member name="M:bbv.Common.EventBroker.Extensions.LogExtension.AddedPublication(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication)">
2010
+ <summary>
2011
+ Called after a publication was added to an event topic.
2012
+ </summary>
2013
+ <param name="eventTopic">The event topic.</param>
2014
+ <param name="publication">The publication.</param>
2015
+ </member>
2016
+ <member name="M:bbv.Common.EventBroker.Extensions.LogExtension.RemovedPublication(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication)">
2017
+ <summary>
2018
+ Called after a publication was removed from an event topic.
2019
+ </summary>
2020
+ <param name="eventTopic">The event topic.</param>
2021
+ <param name="publication">The publication.</param>
2022
+ </member>
2023
+ <member name="M:bbv.Common.EventBroker.Extensions.LogExtension.AddedSubscription(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.ISubscription)">
2024
+ <summary>
2025
+ Called after a subscription was added to an event topic.
2026
+ </summary>
2027
+ <param name="eventTopic">The event topic.</param>
2028
+ <param name="subscription">The subscription.</param>
2029
+ </member>
2030
+ <member name="M:bbv.Common.EventBroker.Extensions.LogExtension.RemovedSubscription(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.ISubscription)">
2031
+ <summary>
2032
+ Called after a subscription was removed from an event topic.
2033
+ </summary>
2034
+ <param name="eventTopic">The event topic.</param>
2035
+ <param name="subscription">The subscription.</param>
2036
+ </member>
2037
+ <member name="M:bbv.Common.EventBroker.Extensions.LogExtension.RelayingEvent(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication,bbv.Common.EventBroker.Internals.ISubscription,bbv.Common.EventBroker.IHandler,System.Object,System.EventArgs)">
2038
+ <summary>
2039
+ Called before an event is relayed from the publication to the subscribers.
2040
+ </summary>
2041
+ <param name="eventTopic">The event topic.</param>
2042
+ <param name="publication">The publication.</param>
2043
+ <param name="subscription">The subscription.</param>
2044
+ <param name="handler">The handler.</param>
2045
+ <param name="sender">The sender.</param>
2046
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
2047
+ </member>
2048
+ <member name="M:bbv.Common.EventBroker.Extensions.LogExtension.RelayedEvent(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication,bbv.Common.EventBroker.Internals.ISubscription,bbv.Common.EventBroker.IHandler,System.Object,System.EventArgs,System.Exception)">
2049
+ <summary>
2050
+ Called after the event was relayed from the publication to the subscribers.
2051
+ </summary>
2052
+ <param name="eventTopic">The event topic.</param>
2053
+ <param name="publication">The publication.</param>
2054
+ <param name="subscription">The subscription.</param>
2055
+ <param name="handler">The handler.</param>
2056
+ <param name="sender">The sender.</param>
2057
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
2058
+ <param name="exception">The exception that occurred during handling of the event by the subscriber.</param>
2059
+ </member>
2060
+ <member name="M:bbv.Common.EventBroker.Extensions.LogExtension.SkippedEvent(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication,bbv.Common.EventBroker.Internals.ISubscription,System.Object,System.EventArgs)">
2061
+ <summary>
2062
+ Called when a publication or subscription matcher did not match and the event was not relayed to a subscription.
2063
+ </summary>
2064
+ <param name="eventTopic">The event topic.</param>
2065
+ <param name="publication">The publication.</param>
2066
+ <param name="subscription">The subscription.</param>
2067
+ <param name="sender">The sender.</param>
2068
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
2069
+ </member>
2070
+ <member name="M:bbv.Common.EventBroker.Extensions.LogExtension.SubscriberExceptionsOccurred(bbv.Common.EventBroker.Internals.IEventTopic,System.Collections.Generic.IEnumerable{System.Exception})">
2071
+ <summary>
2072
+ Called when exceptions occurred during event handling by subscribers.
2073
+ </summary>
2074
+ <param name="eventTopic">The event topic.</param>
2075
+ <param name="exceptions">The exceptions.</param>
2076
+ </member>
2077
+ <member name="M:bbv.Common.EventBroker.Extensions.LogExtension.LogRelayedEventWithoutException(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication,bbv.Common.EventBroker.Internals.ISubscription,bbv.Common.EventBroker.IHandler,System.EventArgs)">
2078
+ <summary>
2079
+ Logs the relayed event without exception.
2080
+ </summary>
2081
+ <param name="eventTopic">The event topic.</param>
2082
+ <param name="publication">The publication.</param>
2083
+ <param name="subscription">The subscription.</param>
2084
+ <param name="handler">The handler.</param>
2085
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
2086
+ </member>
2087
+ <member name="M:bbv.Common.EventBroker.Extensions.LogExtension.LogRelayedEventWithException(bbv.Common.EventBroker.Internals.IEventTopic,bbv.Common.EventBroker.Internals.IPublication,bbv.Common.EventBroker.Internals.ISubscription,bbv.Common.EventBroker.IHandler,System.EventArgs,System.Exception)">
2088
+ <summary>
2089
+ Logs the relayed event with exception.
2090
+ </summary>
2091
+ <param name="eventTopic">The event topic.</param>
2092
+ <param name="publication">The publication.</param>
2093
+ <param name="subscription">The subscription.</param>
2094
+ <param name="handler">The handler.</param>
2095
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
2096
+ <param name="exception">The exception.</param>
2097
+ </member>
2098
+ <member name="T:bbv.Common.EventBroker.HandlerKind">
2099
+ <summary>
2100
+ Defines the way the subscription handler handles events (synchronously or asynchronously).
2101
+ </summary>
2102
+ </member>
2103
+ <member name="F:bbv.Common.EventBroker.HandlerKind.Synchronous">
2104
+ <summary>
2105
+ Synchronous handling. The event invoker is blocked until event is handled.
2106
+ The event invoker can evaluate the event args on return.
2107
+ </summary>
2108
+ </member>
2109
+ <member name="F:bbv.Common.EventBroker.HandlerKind.Asynchronous">
2110
+ <summary>
2111
+ Asynchronous handling. The event invoker is not blocked until event is handled.
2112
+ The event invoker must not evaluate the event args on return.
2113
+ </summary>
2114
+ </member>
2115
+ <member name="T:bbv.Common.EventBroker.HandlerRestriction">
2116
+ <summary>
2117
+ Defines restrictions the publisher makes on how the event has to be handled (synchronously or asynchronously).
2118
+ </summary>
2119
+ </member>
2120
+ <member name="F:bbv.Common.EventBroker.HandlerRestriction.None">
2121
+ <summary>
2122
+ Synchronous and asynchronous handling is allowed.
2123
+ </summary>
2124
+ </member>
2125
+ <member name="F:bbv.Common.EventBroker.HandlerRestriction.Synchronous">
2126
+ <summary>
2127
+ Only synchronous handling is allowed, e.g. the publisher wants to evaluate the event args afterwards.
2128
+ </summary>
2129
+ </member>
2130
+ <member name="F:bbv.Common.EventBroker.HandlerRestriction.Asynchronous">
2131
+ <summary>
2132
+ Only asynchronous handling is allowed. The publisher does not want to be blocked.
2133
+ </summary>
2134
+ </member>
2135
+ <member name="T:bbv.Common.EventBroker.Handlers.Background">
2136
+ <summary>
2137
+ Handler that executes the subscription on a thread pool worker process (asynchronous).
2138
+ </summary>
2139
+ </member>
2140
+ <member name="T:bbv.Common.EventBroker.IHandler">
2141
+ <summary>
2142
+ A handler defines how a subscription is executed (on which thread, sync, async, ...).
2143
+ </summary>
2144
+ </member>
2145
+ <member name="M:bbv.Common.EventBroker.IHandler.Initialize(System.Object,System.Reflection.MethodInfo)">
2146
+ <summary>
2147
+ Initializes the handler.
2148
+ </summary>
2149
+ <param name="subscriber">The subscriber.</param>
2150
+ <param name="handlerMethod">Name of the handler method on the subscriber.</param>
2151
+ </member>
2152
+ <member name="M:bbv.Common.EventBroker.IHandler.Handle(System.Object,System.EventArgs,System.Delegate)">
2153
+ <summary>
2154
+ Executes the subscription.
2155
+ </summary>
2156
+ <param name="sender">The sender.</param>
2157
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
2158
+ <param name="subscriptionHandler">The subscription handler.</param>
2159
+ <returns>The exception that occurred during handling of the event. Null if no exception occurred</returns>
2160
+ </member>
2161
+ <member name="P:bbv.Common.EventBroker.IHandler.Kind">
2162
+ <summary>
2163
+ Gets the kind of the handler, whether it is a synchronous or asynchronous handler.
2164
+ </summary>
2165
+ <value>The kind of the handler (synchronous or asynchronous).</value>
2166
+ </member>
2167
+ <member name="F:bbv.Common.EventBroker.Handlers.Background.log">
2168
+ <summary>
2169
+ Logger for this class.
2170
+ </summary>
2171
+ </member>
2172
+ <member name="M:bbv.Common.EventBroker.Handlers.Background.Initialize(System.Object,System.Reflection.MethodInfo)">
2173
+ <summary>
2174
+ Initializes the handler.
2175
+ </summary>
2176
+ <param name="subscriber">The subscriber.</param>
2177
+ <param name="handlerMethod">Name of the handler method on the subscriber.</param>
2178
+ </member>
2179
+ <member name="M:bbv.Common.EventBroker.Handlers.Background.Handle(System.Object,System.EventArgs,System.Delegate)">
2180
+ <summary>
2181
+ Executes the subscription on a thread pool worker thread.
2182
+ </summary>
2183
+ <param name="sender">The sender.</param>
2184
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
2185
+ <param name="subscriptionHandler">The subscription handler.</param>
2186
+ <returns>Returns null. Asynchronous operation cannot return exception here.</returns>
2187
+ </member>
2188
+ <member name="P:bbv.Common.EventBroker.Handlers.Background.Kind">
2189
+ <summary>
2190
+ Gets the kind of the handler, whether it is a synchronous or asynchronous handler.
2191
+ </summary>
2192
+ <value>The kind of the handler (synchronous or asynchronous).</value>
2193
+ </member>
2194
+ <member name="T:bbv.Common.EventBroker.Handlers.Background.CallInBackgroundArguments">
2195
+ <summary>
2196
+ Struct that is passed to the background worker thread.
2197
+ </summary>
2198
+ </member>
2199
+ <member name="F:bbv.Common.EventBroker.Handlers.Background.CallInBackgroundArguments.Handler">
2200
+ <summary>
2201
+ The event topic handler method on the subscriber.
2202
+ </summary>
2203
+ </member>
2204
+ <member name="F:bbv.Common.EventBroker.Handlers.Background.CallInBackgroundArguments.Sender">
2205
+ <summary>
2206
+ The publisher sending the event.
2207
+ </summary>
2208
+ </member>
2209
+ <member name="F:bbv.Common.EventBroker.Handlers.Background.CallInBackgroundArguments.EventArgs">
2210
+ <summary>
2211
+ The event args of the event.
2212
+ </summary>
2213
+ </member>
2214
+ <member name="M:bbv.Common.EventBroker.Handlers.Background.CallInBackgroundArguments.#ctor(System.Object,System.EventArgs,System.Delegate)">
2215
+ <summary>
2216
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Handlers.Background.CallInBackgroundArguments"/> struct.
2217
+ </summary>
2218
+ <param name="sender">The sender.</param>
2219
+ <param name="eventArgs">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
2220
+ <param name="handler">The handler.</param>
2221
+ </member>
2222
+ <member name="T:bbv.Common.EventBroker.Handlers.Publisher">
2223
+ <summary>
2224
+ Handler that executes the subscription on the same thread the publisher is currently running (synchronous).
2225
+ </summary>
2226
+ </member>
2227
+ <member name="M:bbv.Common.EventBroker.Handlers.Publisher.Initialize(System.Object,System.Reflection.MethodInfo)">
2228
+ <summary>
2229
+ Initializes the handler.
2230
+ </summary>
2231
+ <param name="subscriber">The subscriber.</param>
2232
+ <param name="handlerMethod">Name of the handler method on the subscriber.</param>
2233
+ </member>
2234
+ <member name="M:bbv.Common.EventBroker.Handlers.Publisher.Handle(System.Object,System.EventArgs,System.Delegate)">
2235
+ <summary>
2236
+ Executes the subscription synchronously on the same thread as the publisher is currently running.
2237
+ </summary>
2238
+ <param name="sender">The sender.</param>
2239
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
2240
+ <param name="subscriptionHandler">The subscription handler.</param>
2241
+ <returns>
2242
+ The exception that occurred during handling of the event. Null if no exception occurred
2243
+ </returns>
2244
+ </member>
2245
+ <member name="P:bbv.Common.EventBroker.Handlers.Publisher.Kind">
2246
+ <summary>
2247
+ Gets the kind of the handler, whether it is a synchronous or asynchronous handler.
2248
+ </summary>
2249
+ <value>The kind of the handler (synchronous or asynchronous).</value>
2250
+ </member>
2251
+ <member name="T:bbv.Common.EventBroker.Handlers.UserInterface">
2252
+ <summary>
2253
+ Handler that executes the subscription synchronously on the user interface thread (Send semantics).
2254
+ </summary>
2255
+ </member>
2256
+ <member name="F:bbv.Common.EventBroker.Handlers.UserInterface.syncContextHolder">
2257
+ <summary>
2258
+ The synchronization context that is used to switch to the UI thread.
2259
+ </summary>
2260
+ </member>
2261
+ <member name="M:bbv.Common.EventBroker.Handlers.UserInterface.Initialize(System.Object,System.Reflection.MethodInfo)">
2262
+ <summary>
2263
+ Initializes the handler with the synchronization context for the user interface thread, which has to be the currently running process.
2264
+ </summary>
2265
+ <param name="subscriber">The subscriber.</param>
2266
+ <param name="handlerMethod">Handler method on the subscriber.</param>
2267
+ </member>
2268
+ <member name="M:bbv.Common.EventBroker.Handlers.UserInterface.Handle(System.Object,System.EventArgs,System.Delegate)">
2269
+ <summary>
2270
+ Executes the subscription synchronously on the user interface thread.
2271
+ </summary>
2272
+ <param name="sender">The sender.</param>
2273
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
2274
+ <param name="subscriptionHandler">The subscription handler.</param>
2275
+ <returns>
2276
+ The exception that occurred during handling of the event. Null if no exception occurred
2277
+ </returns>
2278
+ </member>
2279
+ <member name="P:bbv.Common.EventBroker.Handlers.UserInterface.Kind">
2280
+ <summary>
2281
+ Gets the kind of the handler, whether it is a synchronous or asynchronous handler.
2282
+ </summary>
2283
+ <value>The kind of the handler (synchronous or asynchronous).</value>
2284
+ </member>
2285
+ <member name="T:bbv.Common.EventBroker.Handlers.UserInterfaceAsync">
2286
+ <summary>
2287
+ Handler that executes the subscription asynchronously on the user interface thread (Post semantics).
2288
+ </summary>
2289
+ </member>
2290
+ <member name="F:bbv.Common.EventBroker.Handlers.UserInterfaceAsync.log">
2291
+ <summary>
2292
+ Logger for this class.
2293
+ </summary>
2294
+ </member>
2295
+ <member name="F:bbv.Common.EventBroker.Handlers.UserInterfaceAsync.syncContextHolder">
2296
+ <summary>
2297
+ The synchronization context that is used to switch to the UI thread.
2298
+ </summary>
2299
+ </member>
2300
+ <member name="M:bbv.Common.EventBroker.Handlers.UserInterfaceAsync.Initialize(System.Object,System.Reflection.MethodInfo)">
2301
+ <summary>
2302
+ Initializes the handler with the synchronization context for the user interface thread, which has to be the currently running process.
2303
+ </summary>
2304
+ <param name="subscriber">The subscriber.</param>
2305
+ <param name="handlerMethod">Handler method on the subscriber.</param>
2306
+ </member>
2307
+ <member name="M:bbv.Common.EventBroker.Handlers.UserInterfaceAsync.Handle(System.Object,System.EventArgs,System.Delegate)">
2308
+ <summary>
2309
+ Executes the subscription asynchronously on the user interface thread.
2310
+ </summary>
2311
+ <param name="sender">The sender.</param>
2312
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
2313
+ <param name="subscriptionHandler">The subscription handler.</param>
2314
+ <returns>Returns null. Asynchronous operation cannot return exception here.</returns>
2315
+ </member>
2316
+ <member name="P:bbv.Common.EventBroker.Handlers.UserInterfaceAsync.Kind">
2317
+ <summary>
2318
+ Gets the kind of the handler, whether it is a synchronous or asynchronous handler.
2319
+ </summary>
2320
+ <value>The kind of the handler (synchronous or asynchronous).</value>
2321
+ </member>
2322
+ <member name="T:bbv.Common.EventBroker.Handlers.UserInterfaceSyncContextHolder">
2323
+ <summary>
2324
+ Helper class to store the synchronization context.
2325
+ </summary>
2326
+ </member>
2327
+ <member name="M:bbv.Common.EventBroker.Handlers.UserInterfaceSyncContextHolder.Initalize(System.Object,System.Reflection.MethodInfo)">
2328
+ <summary>
2329
+ Initializes this instance. If the current thread is not the user interface thread then an exception is thrown.
2330
+ </summary>
2331
+ <param name="subscriber">The subscriber.</param>
2332
+ <param name="handlerMethod">Handler method on the subscriber.</param>
2333
+ </member>
2334
+ <member name="P:bbv.Common.EventBroker.Handlers.UserInterfaceSyncContextHolder.SyncContext">
2335
+ <summary>
2336
+ Gets the synchronization context that was acquired on registration.
2337
+ </summary>
2338
+ <value>The synchronization context that was acquired on registration.</value>
2339
+ </member>
2340
+ <member name="T:bbv.Common.EventBroker.IFactory">
2341
+ <summary>
2342
+ Factory for creating subscription execution handlers and scope matcher.
2343
+ </summary>
2344
+ <remarks>
2345
+ The factory that is used by an <see cref="T:bbv.Common.EventBroker.IEventBroker"/> can be set on the constructor of the event broker.
2346
+ </remarks>
2347
+ </member>
2348
+ <member name="M:bbv.Common.EventBroker.IFactory.Initialize(bbv.Common.EventBroker.Internals.IExtensionHost)">
2349
+ <summary>
2350
+ Initializes this factory with the specified <paramref name="extensionHost"/> holding all extensions.
2351
+ </summary>
2352
+ <param name="extensionHost">The extension host holding all extensions (this is the event broker).</param>
2353
+ </member>
2354
+ <member name="M:bbv.Common.EventBroker.IFactory.CreateEventTopicHost">
2355
+ <summary>
2356
+ Creates an event topic host.
2357
+ </summary>
2358
+ <returns>A newly created event topic host.</returns>
2359
+ </member>
2360
+ <member name="M:bbv.Common.EventBroker.IFactory.CreateEventInspector">
2361
+ <summary>
2362
+ Creates an event inspector.
2363
+ </summary>
2364
+ <returns>A newly created event inspector.</returns>
2365
+ </member>
2366
+ <member name="M:bbv.Common.EventBroker.IFactory.CreateEventTopic(System.String)">
2367
+ <summary>
2368
+ Creates a new event topic
2369
+ </summary>
2370
+ <param name="uri">The URI of the event topic.</param>
2371
+ <returns>A newly created event topic</returns>
2372
+ </member>
2373
+ <member name="M:bbv.Common.EventBroker.IFactory.CreatePublication(bbv.Common.EventBroker.Internals.IEventTopic,System.Object,System.Reflection.EventInfo,bbv.Common.EventBroker.HandlerRestriction,System.Collections.Generic.IList{bbv.Common.EventBroker.Matchers.IPublicationMatcher})">
2374
+ <summary>
2375
+ Creates a new publication
2376
+ </summary>
2377
+ <param name="eventTopic">The event topic.</param>
2378
+ <param name="publisher">The publisher.</param>
2379
+ <param name="eventInfo">The event info.</param>
2380
+ <param name="handlerRestriction">The handler restriction.</param>
2381
+ <param name="publicationMatchers">The publication matchers.</param>
2382
+ <returns>A newly created publication</returns>
2383
+ </member>
2384
+ <member name="M:bbv.Common.EventBroker.IFactory.CreatePublication(bbv.Common.EventBroker.Internals.IEventTopic,System.Object,System.EventHandler@,bbv.Common.EventBroker.HandlerRestriction,System.Collections.Generic.IList{bbv.Common.EventBroker.Matchers.IPublicationMatcher})">
2385
+ <summary>
2386
+ Creates a new publication
2387
+ </summary>
2388
+ <param name="eventTopic">The event topic.</param>
2389
+ <param name="publisher">The publisher.</param>
2390
+ <param name="eventHandler">The event handler.</param>
2391
+ <param name="handlerRestriction">The handler restriction.</param>
2392
+ <param name="publicationMatchers">The publication matchers.</param>
2393
+ <returns>A newly created publication</returns>
2394
+ </member>
2395
+ <member name="M:bbv.Common.EventBroker.IFactory.CreatePublication``1(bbv.Common.EventBroker.Internals.IEventTopic,System.Object,System.EventHandler{``0}@,bbv.Common.EventBroker.HandlerRestriction,System.Collections.Generic.IList{bbv.Common.EventBroker.Matchers.IPublicationMatcher})">
2396
+ <summary>
2397
+ Creates a new publication
2398
+ </summary>
2399
+ <typeparam name="TEventArgs">The type of the event arguments.</typeparam>
2400
+ <param name="eventTopic">The event topic.</param>
2401
+ <param name="publisher">The publisher.</param>
2402
+ <param name="eventHandler">The event handler.</param>
2403
+ <param name="handlerRestriction">The handler restriction.</param>
2404
+ <param name="publicationMatchers">The publication matchers.</param>
2405
+ <returns>A newly created publication</returns>
2406
+ </member>
2407
+ <member name="M:bbv.Common.EventBroker.IFactory.DestroyPublication(bbv.Common.EventBroker.Internals.IPublication,System.EventHandler@)">
2408
+ <summary>
2409
+ Destroys the publication.
2410
+ </summary>
2411
+ <param name="publication">The publication.</param>
2412
+ <param name="publishedEvent">The published event.</param>
2413
+ </member>
2414
+ <member name="M:bbv.Common.EventBroker.IFactory.DestroyPublication``1(bbv.Common.EventBroker.Internals.IPublication,System.EventHandler{``0}@)">
2415
+ <summary>
2416
+ Destroys the publication.
2417
+ </summary>
2418
+ <typeparam name="TEventArgs">The type of the event args.</typeparam>
2419
+ <param name="publication">The publication.</param>
2420
+ <param name="publishedEvent">The published event.</param>
2421
+ </member>
2422
+ <member name="M:bbv.Common.EventBroker.IFactory.CreateSubscription(System.Object,System.Reflection.MethodInfo,bbv.Common.EventBroker.IHandler,System.Collections.Generic.IList{bbv.Common.EventBroker.Matchers.ISubscriptionMatcher})">
2423
+ <summary>
2424
+ Creates a new subscription
2425
+ </summary>
2426
+ <param name="subscriber">The subscriber.</param>
2427
+ <param name="handlerMethod">The handler method.</param>
2428
+ <param name="handler">The handler.</param>
2429
+ <param name="subscriptionMatchers">The subscription scope matchers.</param>
2430
+ <returns>A newly created subscription</returns>
2431
+ </member>
2432
+ <member name="M:bbv.Common.EventBroker.IFactory.CreateHandler(System.Type)">
2433
+ <summary>
2434
+ Creates a subscription execution handler. This handler defines on which thread the subscription is executed.
2435
+ </summary>
2436
+ <param name="handlerType">Type of the handler.</param>
2437
+ <returns>A new subscription execution handler.</returns>
2438
+ </member>
2439
+ <member name="M:bbv.Common.EventBroker.IFactory.CreatePublicationMatcher(System.Type)">
2440
+ <summary>
2441
+ Creates a publication matcher.
2442
+ </summary>
2443
+ <param name="matcherType">Type of the matcher.</param>
2444
+ <returns>A newly created publication matcher.</returns>
2445
+ </member>
2446
+ <member name="M:bbv.Common.EventBroker.IFactory.CreateSubscriptionMatcher(System.Type)">
2447
+ <summary>
2448
+ Creates a subscription matcher.
2449
+ </summary>
2450
+ <param name="matcherType">Type of the subscription matcher.</param>
2451
+ <returns>A newly create subscription matcher.</returns>
2452
+ </member>
2453
+ <member name="T:bbv.Common.EventBroker.IEventBrokerRegisterable">
2454
+ <summary>
2455
+ Publishers and subscribers implementing this interface or notified by a call to
2456
+ <see cref="M:bbv.Common.EventBroker.IEventBrokerRegisterable.Register(bbv.Common.EventBroker.IEventRegisterer)"/> that they have been registered and a call to <see cref="M:bbv.Common.EventBroker.IEventBrokerRegisterable.Unregister(bbv.Common.EventBroker.IEventRegisterer)"/> that they have been unregistered.
2457
+ </summary>
2458
+ </member>
2459
+ <member name="M:bbv.Common.EventBroker.IEventBrokerRegisterable.Register(bbv.Common.EventBroker.IEventRegisterer)">
2460
+ <summary>
2461
+ The publisher or subscriber can register additional publications and subscriptions
2462
+ on the <paramref name="eventRegisterer"/>.
2463
+ </summary>
2464
+ <param name="eventRegisterer">The event registerer to register publications and subscriptions.</param>
2465
+ </member>
2466
+ <member name="M:bbv.Common.EventBroker.IEventBrokerRegisterable.Unregister(bbv.Common.EventBroker.IEventRegisterer)">
2467
+ <summary>
2468
+ The publisher or subscribe has to clean-up all registrations made in call to <see cref="M:bbv.Common.EventBroker.IEventBrokerRegisterable.Register(bbv.Common.EventBroker.IEventRegisterer)"/>.
2469
+ </summary>
2470
+ <param name="eventRegisterer">The event registerer.</param>
2471
+ </member>
2472
+ <member name="T:bbv.Common.EventBroker.INamedItem">
2473
+ <summary>
2474
+ <see cref="T:bbv.Common.EventBroker.INamedItem"/> is used to give publishers or subscribers names to use scope matchers.
2475
+ </summary>
2476
+ </member>
2477
+ <member name="P:bbv.Common.EventBroker.INamedItem.EventBrokerItemName">
2478
+ <summary>
2479
+ Gets the name of the event broker item that is used for scope matchers.
2480
+ </summary>
2481
+ <value>The name of the event broker item.</value>
2482
+ </member>
2483
+ <member name="T:bbv.Common.EventBroker.Internals.ISubscription">
2484
+ <summary>
2485
+ Represents a subscription to an <see cref="T:bbv.Common.EventBroker.Internals.EventTopic"/>.
2486
+ </summary>
2487
+ </member>
2488
+ <member name="M:bbv.Common.EventBroker.Internals.ISubscription.DescribeTo(System.IO.TextWriter)">
2489
+ <summary>
2490
+ Describes this subscription:
2491
+ name, thread option, scope, event arguments.
2492
+ </summary>
2493
+ <param name="writer">The writer.</param>
2494
+ </member>
2495
+ <member name="M:bbv.Common.EventBroker.Internals.ISubscription.GetHandler">
2496
+ <summary>
2497
+ Gets the handler that will be called by the <see cref="T:bbv.Common.EventBroker.Internals.IEventTopic"/> during a firing sequence.
2498
+ </summary>
2499
+ <returns>A delegate that is used to call the subscription handler.</returns>
2500
+ </member>
2501
+ <member name="P:bbv.Common.EventBroker.Internals.ISubscription.EventHandlerType">
2502
+ <summary>
2503
+ Gets the type of the event handler this subscription is using.
2504
+ </summary>
2505
+ <value>The type of the event handler.</value>
2506
+ </member>
2507
+ <member name="P:bbv.Common.EventBroker.Internals.ISubscription.Subscriber">
2508
+ <summary>
2509
+ Gets the subscriber of the event.
2510
+ </summary>
2511
+ </member>
2512
+ <member name="P:bbv.Common.EventBroker.Internals.ISubscription.Handler">
2513
+ <summary>
2514
+ Gets the handler of this subscription.
2515
+ </summary>
2516
+ <value>The handler of this subscription.</value>
2517
+ </member>
2518
+ <member name="P:bbv.Common.EventBroker.Internals.ISubscription.SubscriptionMatchers">
2519
+ <summary>
2520
+ Gets the subscription matchers.
2521
+ </summary>
2522
+ <value>The subscription matchers.</value>
2523
+ </member>
2524
+ <member name="P:bbv.Common.EventBroker.Internals.ISubscription.HandlerMethodName">
2525
+ <summary>
2526
+ Gets the handler method name that's subscribed to the event.
2527
+ </summary>
2528
+ </member>
2529
+ <member name="T:bbv.Common.EventBroker.Matchers.IMatcher">
2530
+ <summary>
2531
+ Interface for matchers.
2532
+ Matchers are used to determine whether an event is handled
2533
+ depending on the state of the publisher and subscriber.
2534
+ </summary>
2535
+ </member>
2536
+ <member name="M:bbv.Common.EventBroker.Matchers.IMatcher.Match(bbv.Common.EventBroker.Internals.IPublication,bbv.Common.EventBroker.Internals.ISubscription,System.EventArgs)">
2537
+ <summary>
2538
+ Returns whether the publication and subscription match and the event published by the
2539
+ publisher will be relayed to the subscriber.
2540
+ </summary>
2541
+ <param name="publication">The publication.</param>
2542
+ <param name="subscription">The subscription.</param>
2543
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
2544
+ <returns><code>true</code> if event has to be sent to the subscriber.</returns>
2545
+ </member>
2546
+ <member name="M:bbv.Common.EventBroker.Matchers.IMatcher.DescribeTo(System.IO.TextWriter)">
2547
+ <summary>
2548
+ Describes this subscription matcher.
2549
+ </summary>
2550
+ <param name="writer">The writer the description is written to.</param>
2551
+ </member>
2552
+ <member name="T:bbv.Common.EventBroker.Matchers.NotAlreadyCanceled">
2553
+ <summary>
2554
+ Subscription matcher that matches only if the event arguments are <see cref="T:System.ComponentModel.CancelEventArgs"/> and
2555
+ the event arguments are not yet canceled.
2556
+ </summary>
2557
+ </member>
2558
+ <member name="T:bbv.Common.EventBroker.Matchers.ISubscriptionMatcher">
2559
+ <summary>
2560
+ Interface for matchers on subscriptions.
2561
+ Matchers are used to determine whether an event is handled
2562
+ depending on the state of the publisher and subscriber.
2563
+ </summary>
2564
+ </member>
2565
+ <member name="M:bbv.Common.EventBroker.Matchers.NotAlreadyCanceled.Match(bbv.Common.EventBroker.Internals.IPublication,bbv.Common.EventBroker.Internals.ISubscription,System.EventArgs)">
2566
+ <summary>
2567
+ Returns whether the publication and subscription match and the event published by the
2568
+ publisher will be relayed to the subscriber.
2569
+ <para>
2570
+ Matches if the event arguments are <see cref="T:System.ComponentModel.CancelEventArgs"/> that are not yet canceled.
2571
+ </para>
2572
+ </summary>
2573
+ <param name="publication">The publication.</param>
2574
+ <param name="subscription">The subscription.</param>
2575
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
2576
+ <returns><code>true</code> if event has to be sent to the subscriber.</returns>
2577
+ </member>
2578
+ <member name="M:bbv.Common.EventBroker.Matchers.NotAlreadyCanceled.DescribeTo(System.IO.TextWriter)">
2579
+ <summary>
2580
+ Describes this subscription matcher.
2581
+ </summary>
2582
+ <param name="writer">The writer the description is written to.</param>
2583
+ </member>
2584
+ <member name="T:bbv.Common.EventBroker.Internals.PropertyPublication">
2585
+ <summary>
2586
+ Represents a topic publication.
2587
+ </summary>
2588
+ </member>
2589
+ <member name="F:bbv.Common.EventBroker.Internals.PropertyPublication.eventInfo">
2590
+ <summary>
2591
+ The event on the publisher this publication stands for.
2592
+ </summary>
2593
+ </member>
2594
+ <member name="M:bbv.Common.EventBroker.Internals.PropertyPublication.#ctor(bbv.Common.EventBroker.Internals.IEventTopic,System.Object,System.Reflection.EventInfo,bbv.Common.EventBroker.HandlerRestriction,System.Collections.Generic.IList{bbv.Common.EventBroker.Matchers.IPublicationMatcher})">
2595
+ <summary>
2596
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Internals.PropertyPublication"/> class.
2597
+ </summary>
2598
+ <param name="topic">The event topic this publication belongs to.</param>
2599
+ <param name="publisher">The publisher.</param>
2600
+ <param name="eventInfo">The <see cref="T:System.Reflection.EventInfo"/> of the publisher that registers this event topic.</param>
2601
+ <param name="handlerRestriction">The handler restriction.</param>
2602
+ <param name="publicationMatchers">The publication matchers.</param>
2603
+ </member>
2604
+ <member name="M:bbv.Common.EventBroker.Internals.PropertyPublication.PublicationHandler(System.Object,System.EventArgs)">
2605
+ <summary>
2606
+ Fires the event publication. This method is registered to the event on the publisher.
2607
+ </summary>
2608
+ <param name="sender">The sender.</param>
2609
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
2610
+ </member>
2611
+ <member name="M:bbv.Common.EventBroker.Internals.PropertyPublication.DescribeTo(System.IO.TextWriter)">
2612
+ <summary>
2613
+ Describes this publication
2614
+ name, scope, event handler.
2615
+ </summary>
2616
+ <param name="writer">The writer.</param>
2617
+ </member>
2618
+ <member name="M:bbv.Common.EventBroker.Internals.PropertyPublication.Dispose(System.Boolean)">
2619
+ <summary>
2620
+ Implementation of the disposable pattern.
2621
+ </summary>
2622
+ <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
2623
+ <remarks>
2624
+ Unregisters the event handler.
2625
+ </remarks>
2626
+ </member>
2627
+ <member name="M:bbv.Common.EventBroker.Internals.PropertyPublication.ThrowIfEventIsStatic(System.Reflection.EventInfo)">
2628
+ <summary>
2629
+ Throws a <see cref="T:bbv.Common.EventBroker.Exceptions.StaticPublisherEventException"/> if the published event is defined static.
2630
+ </summary>
2631
+ <param name="publishedEvent">The published event.</param>
2632
+ <exception cref="T:bbv.Common.EventBroker.Exceptions.StaticPublisherEventException">Thrown if the published event is defined static.</exception>
2633
+ </member>
2634
+ <member name="M:bbv.Common.EventBroker.Internals.PropertyPublication.ThrowIfInvalidEventHandler(System.Reflection.EventInfo)">
2635
+ <summary>
2636
+ Throws an <see cref="T:bbv.Common.EventBroker.Exceptions.InvalidPublicationSignatureException"/> if defined event handler on publisher
2637
+ is not an <see cref="T:System.EventHandler"/>.
2638
+ </summary>
2639
+ <param name="info">The event info of the published event.</param>
2640
+ <exception cref="T:bbv.Common.EventBroker.Exceptions.InvalidPublicationSignatureException">Thrown if defined event handler on publisher is not an <see cref="T:System.EventHandler"/>.</exception>
2641
+ </member>
2642
+ <member name="P:bbv.Common.EventBroker.Internals.PropertyPublication.EventName">
2643
+ <summary>
2644
+ Gets the name of the event on the <see cref="P:bbv.Common.EventBroker.Internals.Publication.Publisher"/>.
2645
+ </summary>
2646
+ </member>
2647
+ <member name="P:bbv.Common.EventBroker.Internals.PropertyPublication.EventHandlerType">
2648
+ <summary>
2649
+ Gets the type of the event handler.
2650
+ </summary>
2651
+ <value>The type of the event handler.</value>
2652
+ </member>
2653
+ <member name="T:bbv.Common.EventBroker.Matchers.PublishToChildren">
2654
+ <summary>
2655
+ Matcher for publications to children only.
2656
+ </summary>
2657
+ </member>
2658
+ <member name="T:bbv.Common.EventBroker.Matchers.IPublicationMatcher">
2659
+ <summary>
2660
+ Interface for scope matchers on publications.
2661
+ Scope matchers are used to determine whether an event is handled
2662
+ depending on the name of the publisher and subscriber.
2663
+ </summary>
2664
+ </member>
2665
+ <member name="M:bbv.Common.EventBroker.Matchers.PublishToChildren.Match(bbv.Common.EventBroker.Internals.IPublication,bbv.Common.EventBroker.Internals.ISubscription,System.EventArgs)">
2666
+ <summary>
2667
+ Returns whether the publication and subscription match and the event published by the
2668
+ publisher will be relayed to the subscriber.
2669
+ <para>
2670
+ This is the case if the name of the publisher is a prefix to the name of the subscriber.
2671
+ </para>
2672
+ </summary>
2673
+ <param name="publication">The publication.</param>
2674
+ <param name="subscription">The subscription.</param>
2675
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
2676
+ <returns><code>true</code> if event has to be sent to the subscriber.</returns>
2677
+ </member>
2678
+ <member name="M:bbv.Common.EventBroker.Matchers.PublishToChildren.DescribeTo(System.IO.TextWriter)">
2679
+ <summary>
2680
+ Describes this scope matcher.
2681
+ </summary>
2682
+ <param name="writer">The writer the description is written to.</param>
2683
+ </member>
2684
+ <member name="T:bbv.Common.EventBroker.Matchers.SubscribeToChildren">
2685
+ <summary>
2686
+ Matcher for subscriptions to events from children only.
2687
+ </summary>
2688
+ </member>
2689
+ <member name="M:bbv.Common.EventBroker.Matchers.SubscribeToChildren.Match(bbv.Common.EventBroker.Internals.IPublication,bbv.Common.EventBroker.Internals.ISubscription,System.EventArgs)">
2690
+ <summary>
2691
+ Returns whether the publication and subscription match and the event published by the
2692
+ publisher will be relayed to the subscriber.
2693
+ <para>
2694
+ This is the case if the name of the subscriber is a prefix to the name of the publisher.
2695
+ </para>
2696
+ </summary>
2697
+ <param name="publication">The publication.</param>
2698
+ <param name="subscription">The subscription.</param>
2699
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
2700
+ <returns><code>true</code> if event has to be sent to the subscriber.</returns>
2701
+ </member>
2702
+ <member name="M:bbv.Common.EventBroker.Matchers.SubscribeToChildren.DescribeTo(System.IO.TextWriter)">
2703
+ <summary>
2704
+ Describes this scope matcher.
2705
+ </summary>
2706
+ <param name="writer">The writer the description is written to.</param>
2707
+ </member>
2708
+ <member name="T:bbv.Common.EventBroker.Matchers.SubscribeGlobal">
2709
+ <summary>
2710
+ Matcher for globally subscribed events.
2711
+ </summary>
2712
+ </member>
2713
+ <member name="M:bbv.Common.EventBroker.Matchers.SubscribeGlobal.Match(bbv.Common.EventBroker.Internals.IPublication,bbv.Common.EventBroker.Internals.ISubscription,System.EventArgs)">
2714
+ <summary>
2715
+ Returns whether the publication and subscription match and the event published by the
2716
+ publisher will be relayed to the subscriber.
2717
+ <para>
2718
+ This is the always the case for global subscriptions.
2719
+ </para>
2720
+ </summary>
2721
+ <param name="publication">The publication.</param>
2722
+ <param name="subscription">The subscription.</param>
2723
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
2724
+ <returns>Always <code>true</code>.</returns>
2725
+ </member>
2726
+ <member name="M:bbv.Common.EventBroker.Matchers.SubscribeGlobal.DescribeTo(System.IO.TextWriter)">
2727
+ <summary>
2728
+ Describes this scope matcher.
2729
+ </summary>
2730
+ <param name="writer">The writer the description is written to.</param>
2731
+ </member>
2732
+ <member name="T:bbv.Common.EventBroker.Matchers.SubscribeToParents">
2733
+ <summary>
2734
+ Matcher for subscriptions to events from parents only.
2735
+ </summary>
2736
+ </member>
2737
+ <member name="M:bbv.Common.EventBroker.Matchers.SubscribeToParents.Match(bbv.Common.EventBroker.Internals.IPublication,bbv.Common.EventBroker.Internals.ISubscription,System.EventArgs)">
2738
+ <summary>
2739
+ Returns whether the publication and subscription match and the event published by the
2740
+ publisher will be relayed to the subscriber.
2741
+ <para>
2742
+ This is the case if the name of the publisher is a prefix to the name of the subscriber.
2743
+ </para>
2744
+ </summary>
2745
+ <param name="publication">The publication.</param>
2746
+ <param name="subscription">The subscription.</param>
2747
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
2748
+ <returns><code>true</code> if event has to be sent to the subscriber.</returns>
2749
+ </member>
2750
+ <member name="M:bbv.Common.EventBroker.Matchers.SubscribeToParents.DescribeTo(System.IO.TextWriter)">
2751
+ <summary>
2752
+ Describes this scope matcher.
2753
+ </summary>
2754
+ <param name="writer">The writer the description is written to.</param>
2755
+ </member>
2756
+ <member name="T:bbv.Common.EventBroker.Matchers.PublishGlobal">
2757
+ <summary>
2758
+ Matcher for globally published events.
2759
+ </summary>
2760
+ </member>
2761
+ <member name="M:bbv.Common.EventBroker.Matchers.PublishGlobal.Match(bbv.Common.EventBroker.Internals.IPublication,bbv.Common.EventBroker.Internals.ISubscription,System.EventArgs)">
2762
+ <summary>
2763
+ Returns whether the publication and subscription match and the event published by the
2764
+ publisher will be relayed to the subscriber.
2765
+ <para>
2766
+ This is the always the case for global publications.
2767
+ </para>
2768
+ </summary>
2769
+ <param name="publication">The publication.</param>
2770
+ <param name="subscription">The subscription.</param>
2771
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
2772
+ <returns><code>true</code> if event has to be sent to the subscriber.</returns>
2773
+ </member>
2774
+ <member name="M:bbv.Common.EventBroker.Matchers.PublishGlobal.DescribeTo(System.IO.TextWriter)">
2775
+ <summary>
2776
+ Describes this scope matcher.
2777
+ </summary>
2778
+ <param name="writer">The writer the description is written to.</param>
2779
+ </member>
2780
+ <member name="T:bbv.Common.EventBroker.Matchers.PublishToParents">
2781
+ <summary>
2782
+ Matcher for publications to parents only.
2783
+ </summary>
2784
+ </member>
2785
+ <member name="M:bbv.Common.EventBroker.Matchers.PublishToParents.Match(bbv.Common.EventBroker.Internals.IPublication,bbv.Common.EventBroker.Internals.ISubscription,System.EventArgs)">
2786
+ <summary>
2787
+ Returns whether the publication and subscription match and the event published by the
2788
+ publisher will be relayed to the subscriber.
2789
+ <para>
2790
+ This is the case if the name of the subscriber is a prefix to the name of the publisher.
2791
+ </para>
2792
+ </summary>
2793
+ <param name="publication">The publication.</param>
2794
+ <param name="subscription">The subscription.</param>
2795
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
2796
+ <returns><code>true</code> if event has to be sent to the subscriber.</returns>
2797
+ </member>
2798
+ <member name="M:bbv.Common.EventBroker.Matchers.PublishToParents.DescribeTo(System.IO.TextWriter)">
2799
+ <summary>
2800
+ Describes this scope matcher.
2801
+ </summary>
2802
+ <param name="writer">The writer the description is written to.</param>
2803
+ </member>
2804
+ <member name="T:bbv.Common.EventBroker.Internals.SpontaneousPublication">
2805
+ <summary>
2806
+ A spontaneous publication is used when there is no real publisher but
2807
+ <see cref="M:bbv.Common.EventBroker.EventBroker.Fire(System.String,System.Object,bbv.Common.EventBroker.HandlerRestriction,System.Object,System.EventArgs)"/> was called directly to fire an event.
2808
+ </summary>
2809
+ </member>
2810
+ <member name="M:bbv.Common.EventBroker.Internals.SpontaneousPublication.#ctor(bbv.Common.EventBroker.Internals.IEventTopic,System.Object,bbv.Common.EventBroker.HandlerRestriction,System.Collections.Generic.IList{bbv.Common.EventBroker.Matchers.IPublicationMatcher})">
2811
+ <summary>
2812
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Internals.SpontaneousPublication"/> class.
2813
+ </summary>
2814
+ <param name="topic">The topic.</param>
2815
+ <param name="publisher">The publisher.</param>
2816
+ <param name="handlerRestriction">The handler restriction.</param>
2817
+ <param name="publicationMatchers">The publication matchers.</param>
2818
+ </member>
2819
+ <member name="M:bbv.Common.EventBroker.Internals.SpontaneousPublication.DescribeTo(System.IO.TextWriter)">
2820
+ <summary>
2821
+ Describes this publication
2822
+ name, scope, event handler.
2823
+ </summary>
2824
+ <param name="writer">The writer.</param>
2825
+ </member>
2826
+ <member name="M:bbv.Common.EventBroker.Internals.SpontaneousPublication.Dispose(System.Boolean)">
2827
+ <summary>
2828
+ Implementation of the disposable pattern.
2829
+ </summary>
2830
+ <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
2831
+ </member>
2832
+ <member name="P:bbv.Common.EventBroker.Internals.SpontaneousPublication.EventName">
2833
+ <summary>
2834
+ Gets the name of the event on the <see cref="P:bbv.Common.EventBroker.Internals.Publication.Publisher"/>.
2835
+ For a spontaneous publication this is null.
2836
+ </summary>
2837
+ <value></value>
2838
+ </member>
2839
+ <member name="P:bbv.Common.EventBroker.Internals.SpontaneousPublication.EventHandlerType">
2840
+ <summary>
2841
+ Gets the type of the event handler.
2842
+ </summary>
2843
+ <value>The type of the event handler.</value>
2844
+ </member>
2845
+ <member name="T:bbv.Common.EventBroker.StandardFactory">
2846
+ <summary>
2847
+ Standard implementation for the <see cref="T:bbv.Common.EventBroker.IFactory"/> interface.
2848
+ </summary>
2849
+ </member>
2850
+ <member name="F:bbv.Common.EventBroker.StandardFactory.extensionHost">
2851
+ <summary>
2852
+ The extension host holding all extensions.
2853
+ </summary>
2854
+ </member>
2855
+ <member name="M:bbv.Common.EventBroker.StandardFactory.Initialize(bbv.Common.EventBroker.Internals.IExtensionHost)">
2856
+ <summary>
2857
+ Initializes this factory with the specified <paramref name="extensionHost"/> holding all extensions.
2858
+ </summary>
2859
+ <param name="extensionHost">The extension host holding all extensions (this is the event broker).</param>
2860
+ </member>
2861
+ <member name="M:bbv.Common.EventBroker.StandardFactory.CreateEventTopicHost">
2862
+ <summary>
2863
+ Creates an event topic host.
2864
+ </summary>
2865
+ <returns>A newly created event topic host.</returns>
2866
+ </member>
2867
+ <member name="M:bbv.Common.EventBroker.StandardFactory.CreateEventInspector">
2868
+ <summary>
2869
+ Creates an event inspector.
2870
+ </summary>
2871
+ <returns>A newly created event inspector.</returns>
2872
+ </member>
2873
+ <member name="M:bbv.Common.EventBroker.StandardFactory.CreateEventTopic(System.String)">
2874
+ <summary>
2875
+ Creates a new event topic
2876
+ </summary>
2877
+ <param name="uri">The URI of the event topic.</param>
2878
+ <returns>A newly created event topic</returns>
2879
+ </member>
2880
+ <member name="M:bbv.Common.EventBroker.StandardFactory.CreatePublication(bbv.Common.EventBroker.Internals.IEventTopic,System.Object,System.Reflection.EventInfo,bbv.Common.EventBroker.HandlerRestriction,System.Collections.Generic.IList{bbv.Common.EventBroker.Matchers.IPublicationMatcher})">
2881
+ <summary>
2882
+ Creates a new publication
2883
+ </summary>
2884
+ <param name="eventTopic">The event topic.</param>
2885
+ <param name="publisher">The publisher.</param>
2886
+ <param name="eventInfo">The event info.</param>
2887
+ <param name="handlerRestriction">The handler restriction.</param>
2888
+ <param name="matchers">The publication matchers.</param>
2889
+ <returns>A newly created publication</returns>
2890
+ </member>
2891
+ <member name="M:bbv.Common.EventBroker.StandardFactory.CreatePublication(bbv.Common.EventBroker.Internals.IEventTopic,System.Object,System.EventHandler@,bbv.Common.EventBroker.HandlerRestriction,System.Collections.Generic.IList{bbv.Common.EventBroker.Matchers.IPublicationMatcher})">
2892
+ <summary>
2893
+ Creates a new publication.
2894
+ </summary>
2895
+ <param name="eventTopic">The event topic.</param>
2896
+ <param name="publisher">The publisher.</param>
2897
+ <param name="eventHandler">The event handler.</param>
2898
+ <param name="handlerRestriction">The handler restriction.</param>
2899
+ <param name="matchers">The matchers.</param>
2900
+ <returns>A newly created publication</returns>
2901
+ </member>
2902
+ <member name="M:bbv.Common.EventBroker.StandardFactory.CreatePublication``1(bbv.Common.EventBroker.Internals.IEventTopic,System.Object,System.EventHandler{``0}@,bbv.Common.EventBroker.HandlerRestriction,System.Collections.Generic.IList{bbv.Common.EventBroker.Matchers.IPublicationMatcher})">
2903
+ <summary>
2904
+ Creates a new publication.
2905
+ </summary>
2906
+ <typeparam name="TEventArgs">The type of the event arguments.</typeparam>
2907
+ <param name="eventTopic">The event topic.</param>
2908
+ <param name="publisher">The publisher.</param>
2909
+ <param name="eventHandler">The event handler.</param>
2910
+ <param name="handlerRestriction">The handler restriction.</param>
2911
+ <param name="matchers">The matchers.</param>
2912
+ <returns>A newly created publication</returns>
2913
+ </member>
2914
+ <member name="M:bbv.Common.EventBroker.StandardFactory.DestroyPublication(bbv.Common.EventBroker.Internals.IPublication,System.EventHandler@)">
2915
+ <summary>
2916
+ Destroys the publication.
2917
+ </summary>
2918
+ <param name="publication">The publication.</param>
2919
+ <param name="publishedEvent">The published event.</param>
2920
+ </member>
2921
+ <member name="M:bbv.Common.EventBroker.StandardFactory.DestroyPublication``1(bbv.Common.EventBroker.Internals.IPublication,System.EventHandler{``0}@)">
2922
+ <summary>
2923
+ Destroys the publication.
2924
+ </summary>
2925
+ <typeparam name="TEventArgs">The type of the event arguments.</typeparam>
2926
+ <param name="publication">The publication.</param>
2927
+ <param name="publishedEvent">The published event.</param>
2928
+ </member>
2929
+ <member name="M:bbv.Common.EventBroker.StandardFactory.CreateSubscription(System.Object,System.Reflection.MethodInfo,bbv.Common.EventBroker.IHandler,System.Collections.Generic.IList{bbv.Common.EventBroker.Matchers.ISubscriptionMatcher})">
2930
+ <summary>
2931
+ Creates a new subscription
2932
+ </summary>
2933
+ <param name="subscriber">The subscriber.</param>
2934
+ <param name="handlerMethod">The handler method.</param>
2935
+ <param name="handler">The handler.</param>
2936
+ <param name="subscriptionMatchers">The subscription scope matchers.</param>
2937
+ <returns>A newly created subscription</returns>
2938
+ </member>
2939
+ <member name="M:bbv.Common.EventBroker.StandardFactory.CreateHandler(System.Type)">
2940
+ <summary>
2941
+ Creates a subscription execution handler. This handler defines on which thread the subscription is executed.
2942
+ </summary>
2943
+ <param name="handlerType">Type of the handler.</param>
2944
+ <returns>A new subscription execution handler.</returns>
2945
+ </member>
2946
+ <member name="M:bbv.Common.EventBroker.StandardFactory.CreatePublicationMatcher(System.Type)">
2947
+ <summary>
2948
+ Creates a publication matcher.
2949
+ </summary>
2950
+ <param name="matcherType">Type of the matcher.</param>
2951
+ <returns>
2952
+ A newly created publication scope matcher.
2953
+ </returns>
2954
+ </member>
2955
+ <member name="M:bbv.Common.EventBroker.StandardFactory.CreateSubscriptionMatcher(System.Type)">
2956
+ <summary>
2957
+ Creates a subscription scope matcher.
2958
+ </summary>
2959
+ <param name="matcherType">Type of the subscription matcher.</param>
2960
+ <returns>
2961
+ A newly create subscription scope matcher.
2962
+ </returns>
2963
+ </member>
2964
+ <member name="T:bbv.Common.EventBroker.Internals.Subscription">
2965
+ <summary>
2966
+ Represents a topic subscription.
2967
+ </summary>
2968
+ </member>
2969
+ <member name="F:bbv.Common.EventBroker.Internals.Subscription.subscriber">
2970
+ <summary>
2971
+ Weak reference to the subscriber.
2972
+ </summary>
2973
+ </member>
2974
+ <member name="F:bbv.Common.EventBroker.Internals.Subscription.handlerMethodName">
2975
+ <summary>
2976
+ Name of the handler method on the subscriber.
2977
+ </summary>
2978
+ </member>
2979
+ <member name="F:bbv.Common.EventBroker.Internals.Subscription.handlerMethodInfo">
2980
+ <summary>
2981
+ The method of the subscriber that is called on the event.
2982
+ </summary>
2983
+ </member>
2984
+ <member name="F:bbv.Common.EventBroker.Internals.Subscription.eventHandlerType">
2985
+ <summary>
2986
+ Type of the event handler the subscription handler implements.
2987
+ </summary>
2988
+ </member>
2989
+ <member name="F:bbv.Common.EventBroker.Internals.Subscription.subscriptionMatchers">
2990
+ <summary>
2991
+ The subscription matchers used for this subscription.
2992
+ </summary>
2993
+ </member>
2994
+ <member name="F:bbv.Common.EventBroker.Internals.Subscription.handler">
2995
+ <summary>
2996
+ The handler used for this subscription.
2997
+ </summary>
2998
+ </member>
2999
+ <member name="F:bbv.Common.EventBroker.Internals.Subscription.extensionHost">
3000
+ <summary>
3001
+ The extension host holding all extensions.
3002
+ </summary>
3003
+ </member>
3004
+ <member name="M:bbv.Common.EventBroker.Internals.Subscription.#ctor(System.Object,System.Reflection.MethodInfo,bbv.Common.EventBroker.IHandler,System.Collections.Generic.IList{bbv.Common.EventBroker.Matchers.ISubscriptionMatcher},bbv.Common.EventBroker.Internals.IExtensionHost)">
3005
+ <summary>
3006
+ Initializes a new instance of the <see cref="T:bbv.Common.EventBroker.Internals.Subscription"/> class.
3007
+ </summary>
3008
+ <param name="subscriber">The subscriber.</param>
3009
+ <param name="handlerMethod">The handler method.</param>
3010
+ <param name="handler">The handler used to execute the subscription.</param>
3011
+ <param name="subscriptionMatchers">The subscription matchers used for this subscription.</param>
3012
+ <param name="extensionHost">The extension host holding all extensions.</param>
3013
+ </member>
3014
+ <member name="M:bbv.Common.EventBroker.Internals.Subscription.GetHandler">
3015
+ <summary>
3016
+ Gets the handler that will be called by the <see cref="T:bbv.Common.EventBroker.Internals.IEventTopic"/> during a firing sequence.
3017
+ </summary>
3018
+ <returns>A delegate that is used to call the subscription handler.</returns>
3019
+ </member>
3020
+ <member name="M:bbv.Common.EventBroker.Internals.Subscription.DescribeTo(System.IO.TextWriter)">
3021
+ <summary>
3022
+ Describes this subscription:
3023
+ name, thread option, scope, event arguments.
3024
+ </summary>
3025
+ <param name="writer">The writer.</param>
3026
+ </member>
3027
+ <member name="M:bbv.Common.EventBroker.Internals.Subscription.IsValidEventHandler(System.Reflection.ParameterInfo[])">
3028
+ <summary>
3029
+ Determines whether the specified parameters are valid event handler parameters.
3030
+ </summary>
3031
+ <param name="parameters">The parameters.</param>
3032
+ <returns>True if valid parameters.</returns>
3033
+ </member>
3034
+ <member name="M:bbv.Common.EventBroker.Internals.Subscription.EventTopicFireHandler(bbv.Common.EventBroker.Internals.IEventTopic,System.Object,System.EventArgs,bbv.Common.EventBroker.Internals.IPublication,System.Collections.Generic.List{System.Exception})">
3035
+ <summary>
3036
+ Handler that is called when a topic is fired.
3037
+ </summary>
3038
+ <param name="eventTopic">The event topic.</param>
3039
+ <param name="sender">The sender.</param>
3040
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
3041
+ <param name="publication">The publication.</param>
3042
+ <param name="exceptions">The exceptions that occurred during firing sequence.</param>
3043
+ </member>
3044
+ <member name="M:bbv.Common.EventBroker.Internals.Subscription.CheckMatcher(System.EventArgs,bbv.Common.EventBroker.Internals.IPublication)">
3045
+ <summary>
3046
+ Checks whether the event of the publisher has to be relayed to the subscriber (Matchers).
3047
+ </summary>
3048
+ <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
3049
+ <param name="publication">The publication.</param>
3050
+ <returns><code>true</code> if the event has to be relayed.</returns>
3051
+ </member>
3052
+ <member name="M:bbv.Common.EventBroker.Internals.Subscription.CreateSubscriptionDelegate">
3053
+ <summary>
3054
+ Creates the subscription delegate.
3055
+ </summary>
3056
+ <returns>A delegate that is used to call the subscription handler method.</returns>
3057
+ </member>
3058
+ <member name="P:bbv.Common.EventBroker.Internals.Subscription.EventHandlerType">
3059
+ <summary>
3060
+ Gets the type of the event handler this subscription is using.
3061
+ </summary>
3062
+ <value>The type of the event handler.</value>
3063
+ </member>
3064
+ <member name="P:bbv.Common.EventBroker.Internals.Subscription.Subscriber">
3065
+ <summary>
3066
+ Gets the subscriber of the event.
3067
+ </summary>
3068
+ </member>
3069
+ <member name="P:bbv.Common.EventBroker.Internals.Subscription.HandlerMethodName">
3070
+ <summary>
3071
+ Gets the handler method name that's subscribed to the event.
3072
+ </summary>
3073
+ </member>
3074
+ <member name="P:bbv.Common.EventBroker.Internals.Subscription.Handler">
3075
+ <summary>
3076
+ Gets the handler of this subscription.
3077
+ </summary>
3078
+ <value>The handler of this subscription.</value>
3079
+ </member>
3080
+ <member name="P:bbv.Common.EventBroker.Internals.Subscription.SubscriptionMatchers">
3081
+ <summary>
3082
+ Gets the subscription matchers.
3083
+ </summary>
3084
+ <value>The subscription matchers.</value>
3085
+ </member>
3086
+ <member name="T:bbv.Common.EventBroker.UnitTestFactory">
3087
+ <summary>
3088
+ Factory that creates only handlers that run on the same thread as the publisher.
3089
+ This allows that subscriptions on user interface thread can be used in unit tests (with different threading behavior though)
3090
+ </summary>
3091
+ </member>
3092
+ <member name="M:bbv.Common.EventBroker.UnitTestFactory.CreateHandler(System.Type)">
3093
+ <summary>
3094
+ Creates a subscription handler usable in unit tests (always on publisher thread).
3095
+ </summary>
3096
+ <param name="handlerType">Type of the handler to create.</param>
3097
+ <returns>Subscription handler.</returns>
3098
+ </member>
3099
+ </members>
3100
+ </doc>