RecognizedPhrase.ConstructSmlFromSemantics 方法

定义

RecognizedPhrase 对象中的语义信息返回语义标记语言 (SML) 文档。

public:
 System::Xml::XPath::IXPathNavigable ^ ConstructSmlFromSemantics();
public System.Xml.XPath.IXPathNavigable ConstructSmlFromSemantics ();
member this.ConstructSmlFromSemantics : unit -> System.Xml.XPath.IXPathNavigable
Public Function ConstructSmlFromSemantics () As IXPathNavigable

返回

XPath 可导航对象的形式返回 RecognizedPhrase 的语义的 SML 描述。

示例

在下面的示例中,方法返回一个字符串,其中包含已识别短语语义的 SML。

private string GetSemanticsSML(RecognizedPhrase result)  
{  
  if (result.Semantics.Count > 0)  
  {  
    return result.ConstructSmlFromSemantics().CreateNavigator().OuterXml;  
  }  
  else  
  {  
    return null;  
  }  
}  

注解

有关 SML) (语义标记语言的信息,请参阅 语义标记语言参考

适用于