-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of https://github.com/SenseNet/sensenet into d…
…evelop
- Loading branch information
Showing
9 changed files
with
298 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
using System; | ||
|
||
// ReSharper disable once CheckNamespace | ||
namespace SenseNet.ContentRepository.Search.Indexing | ||
{ | ||
/// <summary> | ||
/// Defines an event argument containing the identifiers of the node that could not be indexed. | ||
/// </summary> | ||
public class NodeIndexingErrorEventArgs : EventArgs | ||
{ | ||
/// <summary> | ||
/// Gets the id of the currently indexed node. | ||
/// </summary> | ||
public int NodeId { get; } | ||
/// <summary> | ||
/// Gets the id of the currently indexed version. | ||
/// </summary> | ||
public int VersionId { get; } | ||
/// <summary> | ||
/// Gets the path of the currently indexed node. | ||
/// </summary> | ||
public string Path { get; } | ||
/// <summary> | ||
/// Gets the indexing error. | ||
/// </summary> | ||
public Exception Exception { get; } | ||
|
||
/// <summary> | ||
/// Initializes a new NodeIndexedEventArgs instance. | ||
/// </summary> | ||
public NodeIndexingErrorEventArgs(int nodeId, int versionId, string path, Exception exception) | ||
{ | ||
NodeId = nodeId; | ||
VersionId = versionId; | ||
Path = path; | ||
Exception = exception; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.