From 8dbe487c01f1c02a35363b40bcf9b561bb6ce0c5 Mon Sep 17 00:00:00 2001 From: xitzhang Date: Thu, 31 Oct 2024 13:06:05 -0700 Subject: [PATCH] Add property id of list of hosts that should bypass the proxy (#136) * Add property id of list of hosts that should bypass the proxy * typo --------- Co-authored-by: Xiting Zhang --- common/property_id.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/property_id.go b/common/property_id.go index a5426d7..f686ba6 100644 --- a/common/property_id.go +++ b/common/property_id.go @@ -70,6 +70,10 @@ const ( // The SDK is using it internally. SpeechServiceConnectionURL PropertyID = 1104 + // Specifies the list of hosts for which proxies should not be used. This setting overrides all other configurations. + // Hostnames are separated by commas and are matched in a case-insensitive manner. Wildcards are not supported. + SpeechServiceConnectionProxyHostBypass PropertyID = 1105 + // SpeechServiceConnectionTranslationToLanguages is the list of comma separated languages used as target translation // languages. Under normal circumstances, you shouldn't have to use this property directly. // Instead use SpeechTranslationConfig.AddTargetLanguage and SpeechTranslationConfig.GetTargetLanguages.