-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCalendarEventSearchResultItem.cs
43 lines (39 loc) · 1.12 KB
/
CalendarEventSearchResultItem.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
31
32
33
34
35
36
37
38
39
40
41
42
43
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using MonoSoftware.MonoX.SearchEngine.Providers;
using MonoSoftware.MonoX.SearchEngine;
namespace MonoSoftware.MonoX.SearchEngine.Providers
{
public class CalendarEventSearchResultItem : SearchResultItemBase
{
#region Constructor
/// <summary>
/// Constructor.
/// </summary>
public CalendarEventSearchResultItem()
: base()
{
}
/// <summary>
/// Constructor.
/// </summary>
/// <param name="provider">Search engine provider.</param>
public CalendarEventSearchResultItem(ISearchEngineProvider provider)
: base(provider)
{
}
#endregion
#region ISearchEngineResultItem Members
/// <summary>
/// Gets a provider name.
/// </summary>
[Obsolete("Please use the Provider property - direct search engine provider reference.")]
public override string ProviderName
{
get { return "CalendarEventSearchProvider"; }
}
#endregion
}
}