|
Enhanced C#
Loyc library documentation
|
A message sink that sends its messages to a list of other sinks. More...
A message sink that sends its messages to a list of other sinks.
Null elements are allowed in the List and are ignored.
Properties | |
| IList< IMessageSink< TContext > > | List [get] |
Public Member Functions | |
| MessageMulticaster (IEnumerable< IMessageSink< TContext >> targets) | |
| MessageMulticaster (params IMessageSink< TContext >[] targets) | |
| void | Write (Severity level, TContext context, string format) |
| Writes a message to the target that this object represents. More... | |
| void | Write (Severity level, TContext context, string format, object?arg0, object?arg1=null) |
| void | Write (Severity level, TContext context, string format, params object?[] args) |
| bool | IsEnabled (Severity level) |
Returns true if s.IsEnabled(type) is true for at least one target message sink 's'. More... | |
|
inline |
Returns true if s.IsEnabled(type) is true for at least one target message sink 's'.
Implements Loyc.IMessageSink< in TContext >.
|
inline |
Writes a message to the target that this object represents.
| level | Severity or importance of the message; widely-used types include Error, Warning, Note, Debug, and Verbose. The special type Detail is intended to provide more information about a previous message. |
| context | An object that the message is related to, or that represents the location that the message applies to. The message sink may try to convert this object to a string and include it in its output. See also MessageSink.ContextToString(). |
| format | A message to display. If there are additional arguments, placeholders such as {0} and {1} refer to these arguments. |
Implements Loyc.IMessageSink< in TContext >.
1.8.7