SemanticValue.ContainsKey(String) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
현재 SemanticValue 인스턴스 컬렉션에 지정된 키 문자열이 있는 자식 SemanticValue 인스턴스가 포함되어 있는지 여부를 나타냅니다.
public:
virtual bool ContainsKey(System::String ^ key);
public bool ContainsKey(string key);
abstract member ContainsKey : string -> bool
override this.ContainsKey : string -> bool
Public Function ContainsKey (key As String) As Boolean
매개 변수
- key
- String
String 현재 아래의 자식 인스턴스 SemanticValue 를 식별하는 데 사용되는 키 문자열을 SemanticValue포함합니다.
반품
문자열 bool 로 true태그가 지정된 자식 인스턴스 SemanticValue 가 있으면 key 반환 false 합니다( 그렇지 않은 경우).
구현
예제
다음 예제에서는 전경색 및 배경색을 변경 하는 명령을 처리 하도록 설계 된 이벤트에 대 한 처리기를 SpeechRecognized 보여 줍니다.
인식되지만 의미 체계 구조가 없는 구를 처리한 후 처리기는 의미 체계로 구성된 데이터를 사용하여 ContainsKey (applyChgToBackgroundcolorRGBValueList또는colorStringList)) 적절한 키가 있는지 확인한 후 처리합니다.
newGrammar.SpeechRecognized +=
delegate(object sender, SpeechRecognizedEventArgs eventArgs)
{
// Retrieve the value of the semantic property.
bool changeBackGround = true;
string errorString = "";
SemanticValue semantics = eventArgs.Result.Semantics;
Color newColor = Color.Empty;
try
{
if (semantics.Count == 0 && semantics.Value==null)
{
// Signifies recognition by a grammar with no semantics.
// Parse the string, assuming that the last word is color,
// searching for background or foreground in input.
if (eventArgs.Result.Text.Contains("foreground"))
{
changeBackGround = false;
}
string cName = eventArgs.Result.Words[eventArgs.Result.Words.Count - 1].Text;
newColor = Color.FromName(cName);
}
else if (semantics.ContainsKey("colorStringList") ^ semantics.ContainsKey("colorRGBValueList"))
{
// Determine whether to change background or foreground.
if (semantics.ContainsKey("applyChgToBackground"))
{
changeBackGround = semantics["applyChgToBackground"].Value is bool;
}
// Get the RGB color value.
if (semantics.ContainsKey("colorStringList"))
{
newColor = Color.FromName((string)semantics["colorStringList"].Value);
}
if (semantics.ContainsKey("colorRGBValueList"))
{
newColor = System.Drawing.Color.FromArgb((int)semantics["colorRGBValueList"].Value);
}
}
else
{
// Throw an exception if the semantics do not contain the keys we
// support.
throw(new Exception("Unsupported semantics keys found."));
}
}
catch (Exception exp)
{
MessageBox.Show(String.Format("Unable to process color semantics.:\n{0}\n", exp.Message));
return;
}
// Change colors, either foreground or background.
if (changeBackGround)
{
BackColor = newColor;
float Bright = BackColor.GetBrightness();
float Hue = BackColor.GetHue();
float Sat = BackColor.GetSaturation();
// Make sure that text is readable regardless of background.
if (BackColor.GetBrightness() <= .50)
{
ForeColor = Color.White;
}
else
{
ForeColor = Color.Black;
}
}
else
{
ForeColor = newColor;
float Bright = ForeColor.GetBrightness();
float Hue = ForeColor.GetHue();
float Sat = ForeColor.GetSaturation();
// Make sure that text is readable regardless of Foreground.
if (ForeColor.GetBrightness() <= .50)
{
BackColor = Color.White;
}
else
{
BackColor = Color.Black;
}
}
return;
};
설명
런타임에 키 값으로만 데이터에 액세스할 수 있습니다(예: 의미 체계["myKey"]). 값이면 예외가 생성됩니다. 지정된 인스턴스ContainsKey와 함께 사용하기 Item[] 전에 개체를 SemanticValue 쿼리하는 것이 좋습니다.