你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
SpeechTranslationConfig.FromHost 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
FromHost(Uri) |
使用指定的主机创建语音翻译配置的实例。 在 1.8.0 中添加 |
FromHost(Uri, String) |
使用指定的主机和订阅密钥创建语音翻译配置的实例。 在 1.8.0 中添加 |
FromHost(Uri)
使用指定的主机创建语音翻译配置的实例。 在 1.8.0 中添加
public static Microsoft.CognitiveServices.Speech.SpeechTranslationConfig FromHost (Uri host);
static member FromHost : Uri -> Microsoft.CognitiveServices.Speech.SpeechTranslationConfig
Public Shared Function FromHost (host As Uri) As SpeechTranslationConfig
参数
- host
- Uri
要连接到的服务主机。 格式为 protocol://host:port
,其中 :port
是可选的。
返回
SpeechTranslationConfig 实例。
注解
此方法仅适用于使用非默认服务主机的用户。 将采用标准资源路径。 对于具有非标准资源路径或根本没有路径的服务,请改用 FromEndpoint。
若要将授权令牌与 FromHost 配合使用,请使用此方法创建 SpeechTranslationConfig 实例,然后在创建的 SpeechTranslationConfig 实例上设置 AuthorizationToken 属性。
注意:* 主机 URI 中不允许使用查询参数,必须由其他 API 设置。 * 如果主机需要订阅密钥进行身份验证,请使用 **FromHost (System.Uri, string) ** 将订阅密钥作为参数传递。
适用于
FromHost(Uri, String)
使用指定的主机和订阅密钥创建语音翻译配置的实例。 在 1.8.0 中添加
public static Microsoft.CognitiveServices.Speech.SpeechTranslationConfig FromHost (Uri host, string subscriptionKey);
static member FromHost : Uri * string -> Microsoft.CognitiveServices.Speech.SpeechTranslationConfig
Public Shared Function FromHost (host As Uri, subscriptionKey As String) As SpeechTranslationConfig
参数
- host
- Uri
要连接到的服务主机。 格式为“protocol://host:port”,其中“:p ort”是可选的。
返回
SpeechTranslationConfig 实例。
注解
此方法仅适用于使用非默认服务主机的用户。 将采用标准资源路径。 对于具有非标准资源路径或根本没有路径的服务,请改用 FromEndpoint。 注意:* 主机 URI 中不允许使用查询参数,必须由其他 API 设置。 * 若要对 **FromHost** 使用授权令牌,请使用 **FromHost (System.Uri) **,然后在创建的 SpeechTranslationConfig** 实例上设置 **AuthorizationToken** 属性。