SrgsSemanticInterpretationTag Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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()
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)
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
.