TraceSwitch.Level プロパティ
アセンブリ: System (system.dll 内)

/** @property */ public TraceLevel get_Level () /** @property */ public void set_Level (TraceLevel value)
スイッチが許可するメッセージのレベルを指定する TraceLevel 値の 1 つ。


TraceSwitch のレベルを設定するには、アプリケーション名に対応する構成ファイルを編集します。このファイルでは、スイッチの追加、その値の設定、スイッチの削除、アプリケーションで以前設定されたすべてのスイッチのクリアを実行できます。構成ファイルの書式は次の例のようになります。
<configuration> <system.diagnostics> <switches> <add name="mySwitch" value="0" /> <add name="myNewSwitch" value="3" /> <remove name="mySwitch" /> <clear/> </switches> </system.diagnostics> </configuration>
TraceSwitch コンストラクタが、構成ファイルの初期スイッチ設定を検出できない場合は、新しいスイッチの Level プロパティが TraceLevel.Off に設定されます。
このプロパティを設定すると、TraceError、TraceWarning、TraceInfo、および TraceVerbose の各プロパティが更新されて新しい値が反映されます。

新しい TraceSwitch を作成し、スイッチを使用してエラー メッセージを出力するかどうかを決定するコード例を次に示します。スイッチはクラス レベルで作成されます。MyMethod は、Level プロパティが TraceLevel.Error 以上に設定されている場合に最初のエラー メッセージを書き込みます。ただし、MyMethod は、Level が TraceLevel.Verbose 未満の場合は第 2 のエラー メッセージを書き込みません。
' Class-level declaration. ' Create a TraceSwitch to use in the entire application. Private Shared mySwitch As New TraceSwitch("General", "Entire Application") Public Shared Sub MyMethod() ' Write the message if the TraceSwitch level is set to Error or higher. If mySwitch.TraceError Then Console.WriteLine("My error message.") End If ' Write the message if the TraceSwitch level is set to Verbose. If mySwitch.TraceVerbose Then Console.WriteLine("My second error message.") End If End Sub Public Shared Sub Main() ' Run the method that prints error messages based on the switch level. MyMethod() End Sub
//Class-level declaration. /* Create a TraceSwitch to use in the entire application.*/ static TraceSwitch mySwitch = new TraceSwitch("General", "Entire Application"); static public void MyMethod() { // Write the message if the TraceSwitch level is set to Error or higher. if(mySwitch.TraceError) Console.WriteLine("My error message."); // Write the message if the TraceSwitch level is set to Verbose. if(mySwitch.TraceVerbose) Console.WriteLine("My second error message."); } public static void Main(string[] args) { // Run the method that prints error messages based on the switch level. MyMethod(); }
// Class-level declaration. /* Create a TraceSwitch to use in the entire application.*/ private: static TraceSwitch^ mySwitch = gcnew TraceSwitch( "General","Entire Application" ); public: static void MyMethod() { // Write the message if the TraceSwitch level is set to Error or higher. if ( mySwitch->TraceError ) Console::WriteLine( "My error message." ); // Write the message if the TraceSwitch level is set to Verbose. if ( mySwitch->TraceVerbose ) Console::WriteLine( "My second error message." ); } static void main() { // Run the method that prints error messages based on the switch level. MyMethod(); }
// Class-level declaration. /* Create a TraceSwitch to use in the entire application. */ private static TraceSwitch mySwitch = new TraceSwitch("General", "Entire Application"); public static void MyMethod() { //Write the message if the TraceSwitch level is set to Error or higher. if (mySwitch.get_TraceError()) { Console.WriteLine("My error message."); } // Write the message if the TraceSwitch level is set to Verbose. if (mySwitch.get_TraceVerbose()) { Console.WriteLine("My second error message."); } } //MyMethod public static void main(String[] args) { // Run the method that prints error messages based on the switch level. MyMethod(); } //main

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- TraceSwitch.Level プロパティのページへのリンク