forked from libgit2/libgit2sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTransientIndex.cs
31 lines (28 loc) · 849 Bytes
/
TransientIndex.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
using System;
using LibGit2Sharp.Core.Handles;
namespace LibGit2Sharp
{
/// <summary>
/// An implementation of <see cref="Index"/> with disposal managed by the caller
/// (instead of automatically disposing when the repository is disposed)
/// </summary>
public class TransientIndex: Index, IDisposable
{
/// <summary>
/// Needed for mocking purposes.
/// </summary>
protected TransientIndex()
{ }
internal TransientIndex(IndexHandle handle, Repository repo)
: base(handle, repo)
{
}
/// <summary>
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
/// </summary>
public void Dispose()
{
this.Handle.SafeDispose();
}
}
}