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:
authorBrendan Forster <brendan@github.com>2015-05-10 13:57:28 +0300
committernulltoken <emeric.fermas@gmail.com>2015-05-15 20:31:43 +0300
commit427755989df0b1c69e58affa402ef2b5d4ce6bc6 (patch)
tree5f96bc9adffb752358a6aae56e0b45231cc359b3
parent631b36c995813aa90d790d8f40e342681f443112 (diff)
Drop optional parameters in ConfigurationExtensions.cs
-rw-r--r--LibGit2Sharp/ConfigurationExtensions.cs67
1 files changed, 59 insertions, 8 deletions
diff --git a/LibGit2Sharp/ConfigurationExtensions.cs b/LibGit2Sharp/ConfigurationExtensions.cs
index 5e79a289..1ffd7159 100644
--- a/LibGit2Sharp/ConfigurationExtensions.cs
+++ b/LibGit2Sharp/ConfigurationExtensions.cs
@@ -69,6 +69,18 @@ namespace LibGit2Sharp
}
/// <summary>
+ /// Get a configuration value for the given key.
+ /// </summary>
+ /// <typeparam name="T">The configuration value type.</typeparam>
+ /// <param name="config">The configuration being worked with.</param>
+ /// <param name="key">The key</param>
+ /// <returns>The configuration value, or the default value for the selected <see typeparamref="T"/>if not found</returns>
+ public static T GetValueOrDefault<T>(this Configuration config, string key)
+ {
+ return ValueOrDefault(config.Get<T>(key), default(T));
+ }
+
+ /// <summary>
/// Get a configuration value for the given key,
/// or <paramref name="defaultValue" /> if the key is not set.
/// </summary>
@@ -76,28 +88,53 @@ namespace LibGit2Sharp
/// <param name="config">The configuration being worked with.</param>
/// <param name="key">The key</param>
/// <param name="defaultValue">The default value if the key is not set.</param>
- /// <returns>The configuration value, or the default.</returns>
- public static T GetValueOrDefault<T>(this Configuration config, string key, T defaultValue = default(T))
+ /// <returns>The configuration value, or the default value</returns>
+ public static T GetValueOrDefault<T>(this Configuration config, string key, T defaultValue)
{
return ValueOrDefault(config.Get<T>(key), defaultValue);
}
/// <summary>
+ /// Get a configuration value for the given key
+ /// </summary>
+ /// <typeparam name="T">The configuration value type.</typeparam>
+ /// <param name="config">The configuration being worked with.</param>
+ /// <param name="key">The key.</param>
+ /// <param name="level">The configuration file into which the key should be searched for.</param>
+ /// <returns>The configuration value, or the default value for <see typeparamref="T"/> if not found</returns>
+ public static T GetValueOrDefault<T>(this Configuration config, string key, ConfigurationLevel level)
+ {
+ return ValueOrDefault(config.Get<T>(key, level), default(T));
+ }
+
+ /// <summary>
/// Get a configuration value for the given key,
/// or <paramref name="defaultValue" /> if the key is not set.
/// </summary>
/// <typeparam name="T">The configuration value type.</typeparam>
- /// <param name="config">The configuration being worked with.</param>
+ /// <param name="config">The configuration being worked with.</param>
/// <param name="key">The key.</param>
/// <param name="level">The configuration file into which the key should be searched for.</param>
/// <param name="defaultValue">The selector used to generate a default value if the key is not set.</param>
- /// <returns>The configuration value, or the default.</returns>
- public static T GetValueOrDefault<T>(this Configuration config, string key, ConfigurationLevel level, T defaultValue = default(T))
+ /// <returns>The configuration value, or the default value.</returns>
+ public static T GetValueOrDefault<T>(this Configuration config, string key, ConfigurationLevel level, T defaultValue)
{
return ValueOrDefault(config.Get<T>(key, level), defaultValue);
}
/// <summary>
+ /// Get a configuration value for the given key parts
+ /// </summary>
+ /// <typeparam name="T">The configuration value type.</typeparam>
+ /// <param name="config">The configuration being worked with.</param>
+ /// <param name="keyParts">The key parts.</param>
+ /// <returns>The configuration value, or the default value for<see typeparamref="T"/> if not found</returns>
+ public static T GetValueOrDefault<T>(this Configuration config, string[] keyParts)
+ {
+ return ValueOrDefault(config.Get<T>(keyParts), default(T));
+ }
+
+ /// <summary>
/// Get a configuration value for the given key parts,
/// or <paramref name="defaultValue" /> if the key is not set.
/// </summary>
@@ -105,13 +142,27 @@ namespace LibGit2Sharp
/// <param name="config">The configuration being worked with.</param>
/// <param name="keyParts">The key parts.</param>
/// <param name="defaultValue">The default value if the key is not set.</param>
- /// <returns>The configuration value, or the default.</returns>
- public static T GetValueOrDefault<T>(this Configuration config, string[] keyParts, T defaultValue = default(T))
+ /// <returns>The configuration value, or the default value.</returns>
+ public static T GetValueOrDefault<T>(this Configuration config, string[] keyParts, T defaultValue)
{
return ValueOrDefault(config.Get<T>(keyParts), defaultValue);
}
/// <summary>
+ /// Get a configuration value for the given key parts.
+ /// </summary>
+ /// <typeparam name="T">The configuration value type.</typeparam>
+ /// <param name="config">The configuration being worked with.</param>
+ /// <param name="firstKeyPart">The first key part.</param>
+ /// <param name="secondKeyPart">The second key part.</param>
+ /// <param name="thirdKeyPart">The third key part.</param>
+ /// <returns>The configuration value, or the default value for the selected <see typeparamref="T"/> if not found</returns>
+ public static T GetValueOrDefault<T>(this Configuration config, string firstKeyPart, string secondKeyPart, string thirdKeyPart)
+ {
+ return ValueOrDefault(config.Get<T>(firstKeyPart, secondKeyPart, thirdKeyPart), default(T));
+ }
+
+ /// <summary>
/// Get a configuration value for the given key parts,
/// or <paramref name="defaultValue" /> if the key is not set.
/// </summary>
@@ -122,7 +173,7 @@ namespace LibGit2Sharp
/// <param name="thirdKeyPart">The third key part.</param>
/// <param name="defaultValue">The default value if the key is not set.</param>
/// <returns>The configuration value, or the default.</returns>
- public static T GetValueOrDefault<T>(this Configuration config, string firstKeyPart, string secondKeyPart, string thirdKeyPart, T defaultValue = default(T))
+ public static T GetValueOrDefault<T>(this Configuration config, string firstKeyPart, string secondKeyPart, string thirdKeyPart, T defaultValue)
{
return ValueOrDefault(config.Get<T>(firstKeyPart, secondKeyPart, thirdKeyPart), defaultValue);
}