Various doc cleanups

This commit is contained in:
Cyberboss
2018-08-09 15:18:17 -04:00
parent 6f285dd917
commit 9902495e78
4 changed files with 6 additions and 4 deletions
@@ -11,7 +11,7 @@ namespace Tgstation.Server.Host.Components.Compiler
public interface IDmbFactory
{
/// <summary>
/// Get a <see cref="Task"/> that completes when the result of a call to <see cref="LockNextDmb(CancellationToken)"/> will be different than the previous call if any
/// Get a <see cref="Task"/> that completes when the result of a call to <see cref="LockNextDmb"/> will be different than the previous call if any
/// </summary>
/// <returns>A <see cref="Task"/> representing the running operation</returns>
Task OnNewerDmb { get; }
@@ -67,6 +67,7 @@ namespace Tgstation.Server.Host.Components
/// <param name="databaseContextFactory">The value of <paramref name="databaseContextFactory"/></param>
/// <param name="application">The value of <see cref="application"/></param>
/// <param name="jobManager">The value of <see cref="jobManager"/></param>
/// <param name="serverControl">The <see cref="IServerControl"/> for the <see cref="InstanceManager"/></param>
/// <param name="logger">The value of <see cref="logger"/></param>
public InstanceManager(IInstanceFactory instanceFactory, IIOManager ioManager, IDatabaseContextFactory databaseContextFactory, IApplication application, IJobManager jobManager, IServerControl serverControl, ILogger<InstanceManager> logger)
{
@@ -26,6 +26,9 @@ namespace Tgstation.Server.Host.Components.Watchdog
[Required]
public string ServerCommandsJson { get; set; }
/// <summary>
/// Construct an <see cref="InteropInfoBase"/>
/// </summary>
protected InteropInfoBase() { }
/// <summary>
@@ -34,9 +34,7 @@ namespace Tgstation.Server.Host.Core
/// <inheritdoc />
sealed class Application : IApplication
{
/// <summary>
/// Prefix for string version names
/// </summary>
/// <inheritdoc />
public string VersionPrefix => "tgstation-server";
/// <inheritdoc />