diff --git a/CSharp/Library/Microsoft.Bot.Connector/StateClientEx.cs b/CSharp/Library/Microsoft.Bot.Connector/StateClientEx.cs index 876a001266..085356a14a 100644 --- a/CSharp/Library/Microsoft.Bot.Connector/StateClientEx.cs +++ b/CSharp/Library/Microsoft.Bot.Connector/StateClientEx.cs @@ -9,7 +9,7 @@ public partial class StateClient /// /// Create a new instance of the StateClient class /// - /// Base URI for the Connector service + /// Base URI for the State service /// Optional. Your Microsoft app id. If null, this setting is read from settings["MicrosoftAppId"] /// Optional. Your Microsoft app password. If null, this setting is read from settings["MicrosoftAppPassword"] /// Optional. The delegating handlers to add to the http client pipeline. @@ -21,7 +21,7 @@ public StateClient(Uri baseUri, string microsoftAppId = null, string microsoftAp /// /// Create a new instance of the StateClient class /// - /// Base URI for the Connector service + /// Base URI for the State service /// Credentials for the Connector service /// True, if JwtTokenRefresher should be included; False otherwise. /// Optional. The delegating handlers to add to the http client pipeline. @@ -34,14 +34,14 @@ public StateClient(Uri baseUri, MicrosoftAppCredentials credentials, bool addJwt /// /// Create a new instance of the StateClient class /// - /// This constructor will use http://api.botframework.com as the baseUri + /// This constructor will use https://state.botframework.com as the baseUri /// Credentials for the Connector service /// True, if JwtTokenRefresher should be included; False otherwise. /// Optional. The delegating handlers to add to the http client pipeline. public StateClient(MicrosoftAppCredentials credentials, bool addJwtTokenRefresher = true, params DelegatingHandler[] handlers) :this(addJwtTokenRefresher ? AddJwtTokenRefresher(handlers, credentials) : handlers) { - this.Credentials = credentials; + this.Credentials = credentials; } private static DelegatingHandler[] AddJwtTokenRefresher(DelegatingHandler[] srcHandlers, MicrosoftAppCredentials credentials)