-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDynamicTopicLookupService.cs
30 lines (26 loc) · 1.44 KB
/
DynamicTopicLookupService.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*==============================================================================================================================
| Author Ignia, LLC
| Client Ignia, LLC
| Project Topics Library
\=============================================================================================================================*/
using OnTopic.Metadata;
namespace OnTopic.Lookup {
/*============================================================================================================================
| CLASS: DYNAMIC TOPIC LOOKUP SERVICE
\---------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// The <see cref="DynamicTopicLookupService"/> will search all assemblies for <see cref="Type"/>s that derive from <see
/// cref="Topic"/>.
/// </summary>
public class DynamicTopicLookupService : DynamicTypeLookupService {
/*==========================================================================================================================
| CONSTRUCTOR
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Establishes a new instance of a <see cref="DynamicTopicLookupService"/>.
/// </summary>
public DynamicTopicLookupService() : base(
t => typeof(Topic).IsAssignableFrom(t)
) { }
} //Class
} //Namespace