Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ internal class LazyAuthorizationServiceProxy : IAuthorizationService, IDisposabl
/// <summary>
/// Initializes a new instance of the <see cref="LazyAuthorizationServiceProxy"/> class.
/// </summary>
/// <param name="serviceBroker">A service broker used to acquire the activation service.</param>
/// <param name="serviceBroker">An optional service broker used to acquire the activation service.</param>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This still doesn't document what behavior will be when the service broker is missing.
In fact the class already didn't document what would happen when the underlying auth service was missing. Maybe document them together at the class level under <remarks>.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll write up something more thorough

/// <param name="joinableTaskFactory">An optional <see cref="JoinableTaskFactory"/> to use when scheduling async work, to avoid deadlocks in an application with a main thread.</param>
public LazyAuthorizationServiceProxy(IServiceBroker? serviceBroker, JoinableTaskFactory? joinableTaskFactory)
{
Expand Down
Loading