CompilationSection.DefaultLanguage プロパティ

定義

動的コンパイル ファイルで使用される既定のプログラミング言語を取得または設定します。

public:
 property System::String ^ DefaultLanguage { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("defaultLanguage", DefaultValue="vb")]
public string DefaultLanguage { get; set; }
[<System.Configuration.ConfigurationProperty("defaultLanguage", DefaultValue="vb")>]
member this.DefaultLanguage : string with get, set
Public Property DefaultLanguage As String

プロパティ値

動的コンパイル ファイルで使用される既定のプログラミング言語を指定する値。

属性

次のコード例では、 プロパティの使用方法 DefaultLanguage を示します。 このコード例は、CompilationSection クラスのために提供されている大規模な例の一部です。

// Display DefaultLanguage property.
Console.WriteLine("DefaultLanguage: {0}",
  configSection.DefaultLanguage);

// Set DefaultLanguage property.
configSection.DefaultLanguage = "vb";
' Display DefaultLanguage property.
Console.WriteLine("DefaultLanguage: {0}", _
 configSection.DefaultLanguage)

' Set DefaultLanguage property.
configSection.DefaultLanguage = "vb"

注釈

動的コンパイル ファイルで使用する既定のプログラミング言語 (C# や VB.NET など) を指定します。 言語名は、 セクションを system.codedom 使用して定義されます。 既定のプログラミング言語は で vb、既定のプログラミング言語として VB.NET を指定します。

適用対象