Grammar.Loaded Properti
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Mendapatkan apakah Grammar telah dimuat oleh pengenal ucapan.
public:
property bool Loaded { bool get(); };
public bool Loaded { get; }
member this.Loaded : bool
Public ReadOnly Property Loaded As Boolean
Nilai Properti
Properti Loaded
mengembalikan true
jika tata bahasa pengenalan ucapan yang direferensikan saat ini dimuat dalam pengenal ucapan; jika tidak, properti mengembalikan false
. Defaultnya adalah false
.
Contoh
Contoh berikut menulis informasi tentang Grammar objek ke konsol.
private static void DumpGrammarStatus(Grammar item)
{
Console.WriteLine("Grammar name is {0}:", item.Name);
Console.WriteLine(" The Grammar {0} loaded.",
item.Loaded ? "is" : "is not");
Console.WriteLine(" The Grammar {0} enabled.",
item.Enabled ? "is" : "is not");
if (item.RuleName != null)
{
Console.WriteLine(" The root rule is {0}.", item.RuleName);
}
else
{
Console.WriteLine(" The Grammar does not specify a root rule.");
}
}
Keterangan
Grammar Setelah dimuat, nilai Weight, dan Priority tidak dapat diubah.