Update comments in RemoteAuthenticationOptions
This commit is contained in:
parent
651815c282
commit
7b7da43fd8
|
|
@ -14,7 +14,7 @@ namespace Microsoft.AspNetCore.Builder
|
||||||
public class RemoteAuthenticationOptions : AuthenticationOptions
|
public class RemoteAuthenticationOptions : AuthenticationOptions
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets timeout value in milliseconds for back channel communications with the remote provider.
|
/// Gets or sets timeout value in milliseconds for back channel communications with the remote identity provider.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>
|
/// <value>
|
||||||
/// The back channel timeout.
|
/// The back channel timeout.
|
||||||
|
|
@ -22,7 +22,7 @@ namespace Microsoft.AspNetCore.Builder
|
||||||
public TimeSpan BackchannelTimeout { get; set; } = TimeSpan.FromSeconds(60);
|
public TimeSpan BackchannelTimeout { get; set; } = TimeSpan.FromSeconds(60);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The HttpMessageHandler used to communicate with Twitter.
|
/// The HttpMessageHandler used to communicate with remote identity provider.
|
||||||
/// This cannot be set at the same time as BackchannelCertificateValidator unless the value
|
/// This cannot be set at the same time as BackchannelCertificateValidator unless the value
|
||||||
/// can be downcast to a WebRequestHandler.
|
/// can be downcast to a WebRequestHandler.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue