Skip to content

Commit 4630df8

Browse files
VLADVLAD
VLAD
authored and
VLAD
committed
SearchCompletedEventArgs inherits EventArgs
1 parent 94d6870 commit 4630df8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

FastSearchLibrary/DirectorySearcher/DirectoryCancellationDelegateSearcher.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
namespace FastSearchLibrary
1010
{
11-
class DirectoryCancellationDelegateSearcher : DirectoryCancellationSearcherBase
11+
internal class DirectoryCancellationDelegateSearcher : DirectoryCancellationSearcherBase
1212
{
1313

1414
private Func<DirectoryInfo, bool> isValid;

FastSearchLibrary/DirectorySearcher/DirectoryCancellationPatternSearcher.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
namespace FastSearchLibrary
1010
{
11-
class DirectoryCancellationPatternSearcher : DirectoryCancellationSearcherBase
11+
internal class DirectoryCancellationPatternSearcher : DirectoryCancellationSearcherBase
1212
{
1313

1414
private string pattern;

FastSearchLibrary/FastSearchLibrary.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
<Compile Include="FileSearcher\FileSearcherBase.cs" />
5959
<Compile Include="FileSearcher\FileSearcherMultiple.cs" />
6060
<Compile Include="Properties\AssemblyInfo.cs" />
61-
<Compile Include="SearchEventArgs.cs" />
61+
<Compile Include="SearchCompletedEventArgs.cs" />
6262
</ItemGroup>
6363
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
6464
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.

FastSearchLibrary/SearchEventArgs.cs renamed to FastSearchLibrary/SearchCompletedEventArgs.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace FastSearchLibrary
99
/// <summary>
1010
/// Provides data for SearchCompleted event.
1111
/// </summary>
12-
public class SearchCompletedEventArgs
12+
public class SearchCompletedEventArgs : EventArgs
1313
{
1414
/// <summary>
1515
/// Gets whether this search process has completed due cancellation.

0 commit comments

Comments
 (0)