Update comments in RemoteAuthenticationOptions

This commit is contained in:
Troy Dai 2016-07-25 20:33:12 -07:00
parent 651815c282
commit 7b7da43fd8
1 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ namespace Microsoft.AspNetCore.Builder
public class RemoteAuthenticationOptions : AuthenticationOptions
{
/// <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>
/// <value>
/// The back channel timeout.
@ -22,7 +22,7 @@ namespace Microsoft.AspNetCore.Builder
public TimeSpan BackchannelTimeout { get; set; } = TimeSpan.FromSeconds(60);
/// <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
/// can be downcast to a WebRequestHandler.
/// </summary>
@ -66,4 +66,4 @@ namespace Microsoft.AspNetCore.Builder
/// </summary>
public bool SaveTokens { get; set; }
}
}
}