SemanticValue.Value プロパティ

定義

現在の SemanticValue に含まれている情報を返す、読み取り専用プロパティ。

public:
 property System::Object ^ Value { System::Object ^ get(); };
public object Value { get; }
member this.Value : obj
Public ReadOnly Property Value As Object

プロパティ値

Object

現在の Object インスタンスに格納された情報を含む SemanticValue インスタンスを返します。

次の例は、情報を再帰的にスキャンして (信頼を含む)、 TreeNodeCollection または句を認識するために使用されるセマンティクスのツリー構造を構成するノードとして表示するために使用されます。

internal static void CreateSemanticsTreeNodes(  
          TreeNodeCollection nodes,  
          SemanticValue semantics,  
          String name)   
{  
  string semanticsText =   
      String.Format("  {0} ( Confidence {1})", name,semantics.Confidence);  

  // Format integers as hexadecimal.  
  if (semantics.Value == null )  
  {  
    semanticsText = semanticsText + " = null";  
  }  
  else if (semantics.Value.GetType() == typeof(int))   
  {  
    semanticsText = String.Format("{0} = {1:X} ", semanticsText, semantics.Value);  
  }  
  else   
  {  
    semanticsText = semanticsText + " = " + semantics.Value.ToString();  
  }  

  TreeNode semanticsNode = new TreeNode(semanticsText);  
  foreach (KeyValuePair<String, SemanticValue> child in semantics)   
  {  
    CreateSemanticsTreeNodes(semanticsNode.Nodes, child.Value, child.Key);  
  }  
  nodes.Add(semanticsNode);  
}  

注釈

セマンティック解析を使用しない認識結果には、常に Valuenull と、 Count 0 のプロパティがあります。

適用対象