@@ -47,33 +47,33 @@ public static AuthenticationBuilder AddAmoCrm(
47
47
/// <see cref="ApplicationBuilder"/>, which enables amoCRM authentication capabilities.
48
48
/// </summary>
49
49
/// <param name="builder">The authentication builder.</param>
50
- /// <param name="schema ">The authentication scheme associated with this instance.</param>
50
+ /// <param name="scheme ">The authentication scheme associated with this instance.</param>
51
51
/// <param name="configuration">The delegate used to configure the amoCRM options.</param>
52
52
/// <returns>The <see cref="AuthenticationBuilder"/>.</returns>
53
53
public static AuthenticationBuilder AddAmoCrm (
54
54
[ NotNull ] this AuthenticationBuilder builder ,
55
- [ NotNull ] string schema ,
55
+ [ NotNull ] string scheme ,
56
56
[ NotNull ] Action < AmoCrmAuthenticationOptions > configuration )
57
57
{
58
- return builder . AddAmoCrm ( schema , AmoCrmAuthenticationDefaults . DisplayName , configuration ) ;
58
+ return builder . AddAmoCrm ( scheme , AmoCrmAuthenticationDefaults . DisplayName , configuration ) ;
59
59
}
60
60
61
61
/// <summary>
62
62
/// Adds <see cref="AmoCrmAuthenticationHandler"/> to the specified
63
63
/// <see cref="ApplicationBuilder"/>, which enables amoCRM authentication capabilities.
64
64
/// </summary>
65
65
/// <param name="builder">The authentication builder.</param>
66
- /// <param name="schema ">The authentication scheme associated with this instance.</param>
66
+ /// <param name="scheme ">The authentication scheme associated with this instance.</param>
67
67
/// <param name="caption">The optional display name associated with this instance.</param>
68
68
/// <param name="configuration">The delegate used to configure the amoCRM options.</param>
69
69
/// <returns>The <see cref="AuthenticationBuilder"/>.</returns>
70
70
public static AuthenticationBuilder AddAmoCrm (
71
71
[ NotNull ] this AuthenticationBuilder builder ,
72
- [ NotNull ] string schema ,
72
+ [ NotNull ] string scheme ,
73
73
[ NotNull ] string caption ,
74
74
[ NotNull ] Action < AmoCrmAuthenticationOptions > configuration )
75
75
{
76
- return builder . AddOAuth < AmoCrmAuthenticationOptions , AmoCrmAuthenticationHandler > ( schema , caption , configuration ) ;
76
+ return builder . AddOAuth < AmoCrmAuthenticationOptions , AmoCrmAuthenticationHandler > ( scheme , caption , configuration ) ;
77
77
}
78
78
}
79
79
}
0 commit comments