From e3349ef3d400bb3ad8cb28dd4234d5316a80bcc4 Mon Sep 17 00:00:00 2001 From: Joe4evr Date: Fri, 19 Jan 2018 03:33:46 +0100 Subject: [PATCH] Doc comment on items --- src/Discord.Net.Commands/CommandServiceConfig.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Discord.Net.Commands/CommandServiceConfig.cs b/src/Discord.Net.Commands/CommandServiceConfig.cs index c33fbd180..1432f4a3e 100644 --- a/src/Discord.Net.Commands/CommandServiceConfig.cs +++ b/src/Discord.Net.Commands/CommandServiceConfig.cs @@ -21,8 +21,10 @@ namespace Discord.Commands /// Determines whether extra parameters should be ignored. public bool IgnoreExtraArgs { get; set; } = false; - public IServiceProvider ServiceProvider { get; set; } + /// Gets or sets the to use. + public IServiceProvider ServiceProvider { get; set; } = null; - public Func ServiceProviderFactory { get; set; } + /// Gets or sets a factory function for the to use. + public Func ServiceProviderFactory { get; set; } = null; } }