Interface IDisposableGroup
Interface obtained once a Group has been opened.
Inherited Members
Namespace: CK.Core
Assembly: CK.ActivityMonitor.dll
Syntax
public interface IDisposableGroup : IDisposable
Properties
| Improve this Doc View SourceIsRejectedGroup
Gets whether the groups has been filtered. It must be closed as usual but it's opening and closing will not be recorded.
Declaration
bool IsRejectedGroup { get; }
Property Value
| Type | Description |
|---|---|
| Boolean |
Methods
| Improve this Doc View SourceConcludeWith(Func<String>)
Sets a function that will be called on group closing to generate a conclusion. When IsRejectedGroup is true, this function does nothing.
Declaration
IDisposable ConcludeWith(Func<string> getConclusionText)
Parameters
| Type | Name | Description |
|---|---|---|
| Func<String> | getConclusionText | Function that generates a group conclusion. |
Returns
| Type | Description |
|---|---|
| IDisposable | A disposable object that can be used to close the group. |