Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Straub <bs@github.com>2012-10-25 23:26:58 +0400
committerBen Straub <bs@github.com>2012-10-27 01:22:50 +0400
commitbafa05cb912ec91a2fe09efe89ac6f8627495bdb (patch)
tree6abce1c7deccded4ab5fff787fdea5288d1c0371 /LibGit2Sharp/ConfigurationEntry.cs
parent38ec24f98bcc254622ddcd32e2ff59a6ebb33232 (diff)
Upgrade libgit2 binaries to a0ce87c51
Diffstat (limited to 'LibGit2Sharp/ConfigurationEntry.cs')
-rw-r--r--LibGit2Sharp/ConfigurationEntry.cs10
1 files changed, 9 insertions, 1 deletions
diff --git a/LibGit2Sharp/ConfigurationEntry.cs b/LibGit2Sharp/ConfigurationEntry.cs
index f5abb961..af3a6b83 100644
--- a/LibGit2Sharp/ConfigurationEntry.cs
+++ b/LibGit2Sharp/ConfigurationEntry.cs
@@ -15,15 +15,23 @@
/// </summary>
public string Value { get; private set; }
+
+ /// <summary>
+ /// The origin store.
+ /// </summary>
+ public ConfigurationLevel Level { get; private set; }
+
/// <summary>
/// Initializes a new instance of the <see cref="ConfigurationEntry"/> class with a given key and value
/// </summary>
/// <param name="key">The option name</param>
/// <param name="value">The option value, as a string</param>
- public ConfigurationEntry(string key, string value)
+ /// <param name="level">The origin store</param>
+ public ConfigurationEntry(string key, string value, ConfigurationLevel level)
{
Key = key;
Value = value;
+ Level = level;
}
}
}