ssg: StaticSiteGeneratorClient: add more docs

This commit is contained in:
Nick Vella 2019-06-30 17:54:13 +10:00
parent 96242f2f60
commit d0b62a6b94
1 changed files with 5 additions and 2 deletions

View File

@ -51,7 +51,11 @@ namespace OpenLiveWriter.BlogClient.Clients
// Authentication is handled by publish script at the moment
protected override bool RequiresPassword => false;
protected void ConfigureClientOptions(BlogClientOptions clientOptions)
/// <summary>
/// Sets the relevant BlogClientOptions for this client
/// </summary>
/// <param name="clientOptions">A BlogClientOptions instance</param>
private void ConfigureClientOptions(BlogClientOptions clientOptions)
{
// Pages are supported via filesystem
clientOptions.SupportsPages = true;
@ -66,7 +70,6 @@ namespace OpenLiveWriter.BlogClient.Clients
clientOptions.SupportsAuthor = true;
}
/// <summary>
/// Load SSG configuration from client credentials
/// </summary>