共用方式為


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);  
}  

備註

未利用語義剖析的辨識結果一律具有 ValuenullCount 屬性為零。

適用於