1 Star 14 Fork 2

tencentcloud / tencentcloud-sdk-dotnet

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
TbpClient.cs 5.41 KB
一键复制 编辑 原始数据 按行查看 历史
tencentcloud 提交于 2024-05-22 04:43 . release 3.0.1010
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Tbp.V20190311
{
using Newtonsoft.Json;
using System.Threading.Tasks;
using TencentCloud.Common;
using TencentCloud.Common.Profile;
using TencentCloud.Tbp.V20190311.Models;
public class TbpClient : AbstractClient{
private const string endpoint = "tbp.tencentcloudapi.com";
private const string version = "2019-03-11";
private const string sdkVersion = "SDK_NET_3.0.1010";
/// <summary>
/// Client constructor.
/// </summary>
/// <param name="credential">Credentials.</param>
/// <param name="region">Region name, such as "ap-guangzhou".</param>
public TbpClient(Credential credential, string region)
: this(credential, region, new ClientProfile { Language = Language.ZH_CN })
{
}
/// <summary>
/// Client Constructor.
/// </summary>
/// <param name="credential">Credentials.</param>
/// <param name="region">Region name, such as "ap-guangzhou".</param>
/// <param name="profile">Client profiles.</param>
public TbpClient(Credential credential, string region, ClientProfile profile)
: base(endpoint, version, credential, region, profile)
{
SdkVersion = sdkVersion;
}
/// <summary>
/// 创建机器人
/// </summary>
/// <param name="req"><see cref="CreateBotRequest"/></param>
/// <returns><see cref="CreateBotResponse"/></returns>
public Task<CreateBotResponse> CreateBot(CreateBotRequest req)
{
return InternalRequestAsync<CreateBotResponse>(req, "CreateBot");
}
/// <summary>
/// 创建机器人
/// </summary>
/// <param name="req"><see cref="CreateBotRequest"/></param>
/// <returns><see cref="CreateBotResponse"/></returns>
public CreateBotResponse CreateBotSync(CreateBotRequest req)
{
return InternalRequestAsync<CreateBotResponse>(req, "CreateBot")
.ConfigureAwait(false).GetAwaiter().GetResult();
}
/// <summary>
/// 对当前机器人的会话状态进行复位
/// </summary>
/// <param name="req"><see cref="ResetRequest"/></param>
/// <returns><see cref="ResetResponse"/></returns>
public Task<ResetResponse> Reset(ResetRequest req)
{
return InternalRequestAsync<ResetResponse>(req, "Reset");
}
/// <summary>
/// 对当前机器人的会话状态进行复位
/// </summary>
/// <param name="req"><see cref="ResetRequest"/></param>
/// <returns><see cref="ResetResponse"/></returns>
public ResetResponse ResetSync(ResetRequest req)
{
return InternalRequestAsync<ResetResponse>(req, "Reset")
.ConfigureAwait(false).GetAwaiter().GetResult();
}
/// <summary>
/// 接收调用侧的文本输入,返回应答文本。已废弃,推荐使用最新版TextProcess接口。
/// </summary>
/// <param name="req"><see cref="TextProcessRequest"/></param>
/// <returns><see cref="TextProcessResponse"/></returns>
public Task<TextProcessResponse> TextProcess(TextProcessRequest req)
{
return InternalRequestAsync<TextProcessResponse>(req, "TextProcess");
}
/// <summary>
/// 接收调用侧的文本输入,返回应答文本。已废弃,推荐使用最新版TextProcess接口。
/// </summary>
/// <param name="req"><see cref="TextProcessRequest"/></param>
/// <returns><see cref="TextProcessResponse"/></returns>
public TextProcessResponse TextProcessSync(TextProcessRequest req)
{
return InternalRequestAsync<TextProcessResponse>(req, "TextProcess")
.ConfigureAwait(false).GetAwaiter().GetResult();
}
/// <summary>
/// 会话重置接口。已废弃,推荐使用最新版TextReset接口。
/// </summary>
/// <param name="req"><see cref="TextResetRequest"/></param>
/// <returns><see cref="TextResetResponse"/></returns>
public Task<TextResetResponse> TextReset(TextResetRequest req)
{
return InternalRequestAsync<TextResetResponse>(req, "TextReset");
}
/// <summary>
/// 会话重置接口。已废弃,推荐使用最新版TextReset接口。
/// </summary>
/// <param name="req"><see cref="TextResetRequest"/></param>
/// <returns><see cref="TextResetResponse"/></returns>
public TextResetResponse TextResetSync(TextResetRequest req)
{
return InternalRequestAsync<TextResetResponse>(req, "TextReset")
.ConfigureAwait(false).GetAwaiter().GetResult();
}
}
}
1
https://gitee.com/tencentcloud/tencentcloud-sdk-dotnet.git
git@gitee.com:tencentcloud/tencentcloud-sdk-dotnet.git
tencentcloud
tencentcloud-sdk-dotnet
tencentcloud-sdk-dotnet
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891