mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-05 11:40:42 +00:00
Add a bunch of doc comments
We get a lot of build output because of missing XML comments that we
ignore. I'd like to stop ignoring them. To do that, we need to doc the
💩 out of everything.
This commit is contained in:
@@ -23,6 +23,10 @@ namespace Octokit
|
||||
static readonly ConcurrentDictionary<Type, List<PropertyParameter>> _propertiesMap =
|
||||
new ConcurrentDictionary<Type, List<PropertyParameter>>();
|
||||
#endif
|
||||
/// <summary>
|
||||
/// Converts the derived object into a dictionary that can be used to supply query string parameters.
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public virtual IDictionary<string, string> ToParametersDictionary()
|
||||
{
|
||||
var map = _propertiesMap.GetOrAdd(GetType(), GetPropertyParametersForType);
|
||||
|
||||
Reference in New Issue
Block a user