Skip to content

Commit 6fe9ec0

Browse files
wiltodeltamsft-shahins
authored andcommitted
StateClient constructor comments fixed. (#1026)
1 parent 0447d0b commit 6fe9ec0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

CSharp/Library/Microsoft.Bot.Connector/StateClientEx.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public partial class StateClient
99
/// <summary>
1010
/// Create a new instance of the StateClient class
1111
/// </summary>
12-
/// <param name="baseUri">Base URI for the Connector service</param>
12+
/// <param name="baseUri">Base URI for the State service</param>
1313
/// <param name="microsoftAppId">Optional. Your Microsoft app id. If null, this setting is read from settings["MicrosoftAppId"]</param>
1414
/// <param name="microsoftAppPassword">Optional. Your Microsoft app password. If null, this setting is read from settings["MicrosoftAppPassword"]</param>
1515
/// <param name="handlers">Optional. The delegating handlers to add to the http client pipeline.</param>
@@ -21,7 +21,7 @@ public StateClient(Uri baseUri, string microsoftAppId = null, string microsoftAp
2121
/// <summary>
2222
/// Create a new instance of the StateClient class
2323
/// </summary>
24-
/// <param name="baseUri">Base URI for the Connector service</param>
24+
/// <param name="baseUri">Base URI for the State service</param>
2525
/// <param name="credentials">Credentials for the Connector service</param>
2626
/// <param name="addJwtTokenRefresher">True, if JwtTokenRefresher should be included; False otherwise.</param>
2727
/// <param name="handlers">Optional. The delegating handlers to add to the http client pipeline.</param>
@@ -34,14 +34,14 @@ public StateClient(Uri baseUri, MicrosoftAppCredentials credentials, bool addJwt
3434
/// <summary>
3535
/// Create a new instance of the StateClient class
3636
/// </summary>
37-
/// <remarks> This constructor will use http://api.botframework.com as the baseUri</remarks>
37+
/// <remarks> This constructor will use https://state.botframework.com as the baseUri</remarks>
3838
/// <param name="credentials">Credentials for the Connector service</param>
3939
/// <param name="addJwtTokenRefresher">True, if JwtTokenRefresher should be included; False otherwise.</param>
4040
/// <param name="handlers">Optional. The delegating handlers to add to the http client pipeline.</param>
4141
public StateClient(MicrosoftAppCredentials credentials, bool addJwtTokenRefresher = true, params DelegatingHandler[] handlers)
4242
:this(addJwtTokenRefresher ? AddJwtTokenRefresher(handlers, credentials) : handlers)
4343
{
44-
this.Credentials = credentials;
44+
this.Credentials = credentials;
4545
}
4646

4747
private static DelegatingHandler[] AddJwtTokenRefresher(DelegatingHandler[] srcHandlers, MicrosoftAppCredentials credentials)

0 commit comments

Comments
 (0)