SrgsSemanticInterpretationTag Constructors

Definition

Creates an instance of the SrgsSemanticInterpretationTag class.

Overloads

SrgsSemanticInterpretationTag()

Creates an instance of the SrgsSemanticInterpretationTag class.

SrgsSemanticInterpretationTag(String)

Creates an instance of the SrgsSemanticInterpretationTag class, specifying the script contents of the tag.

SrgsSemanticInterpretationTag()

Source:
SrgsSemanticInterpretationTag.cs
Source:
SrgsSemanticInterpretationTag.cs
Source:
SrgsSemanticInterpretationTag.cs

Creates an instance of the SrgsSemanticInterpretationTag class.

public:
 SrgsSemanticInterpretationTag();
public SrgsSemanticInterpretationTag ();
Public Sub New ()

Remarks

This constructor creates a semantic interpretation tag whose Script property contains an empty string.

Applies to

SrgsSemanticInterpretationTag(String)

Source:
SrgsSemanticInterpretationTag.cs
Source:
SrgsSemanticInterpretationTag.cs
Source:
SrgsSemanticInterpretationTag.cs

Creates an instance of the SrgsSemanticInterpretationTag class, specifying the script contents of the tag.

public:
 SrgsSemanticInterpretationTag(System::String ^ script);
public SrgsSemanticInterpretationTag (string script);
new System.Speech.Recognition.SrgsGrammar.SrgsSemanticInterpretationTag : string -> System.Speech.Recognition.SrgsGrammar.SrgsSemanticInterpretationTag
Public Sub New (script As String)

Parameters

script
String

A string that contains the ECMAScript for the tag.

Exceptions

script is null.

Remarks

This constructor creates a semantic interpretation tag whose Script property is set to the value in script.

Applies to