Console.InputEncoding プロパティ

定義

コンソールが入力内容の読み取り時に使用するエンコーディングを取得または設定します。

public:
 static property System::Text::Encoding ^ InputEncoding { System::Text::Encoding ^ get(); void set(System::Text::Encoding ^ value); };
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Text.Encoding InputEncoding { get; set; }
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
[System.Runtime.Versioning.UnsupportedOSPlatform("android")]
[System.Runtime.Versioning.UnsupportedOSPlatform("ios")]
[System.Runtime.Versioning.UnsupportedOSPlatform("tvos")]
public static System.Text.Encoding InputEncoding { get; set; }
public static System.Text.Encoding InputEncoding { get; set; }
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member InputEncoding : System.Text.Encoding with get, set
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("android")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("ios")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("tvos")>]
static member InputEncoding : System.Text.Encoding with get, set
static member InputEncoding : System.Text.Encoding with get, set
Public Shared Property InputEncoding As Encoding

プロパティ値

コンソールが入力内容の読み取りに使用するエンコーディング。

属性

例外

設定操作でのプロパティ値は null です。

この操作の実行中にエラーが発生しました。

アプリケーションに、この操作を実行するための権限がありません。

注釈

コンソールでは、入力エンコードを使用して、キーボード入力を対応する文字に変換します。 入力エンコードには、256 個のキーボード文字コードを個々の文字にマップするコード ページが組み込まれています。 異なるコード ページには異なる特殊文字が含まれ、それらは通常は 1 つの言語または言語グループ用にカスタマイズされています。

.NET Framework 4 以降では、プロパティの取得操作で、コンソールの現在の入力エンコードではなくキャッシュされた値が返されることがあります。 これは、プロパティの値が、Windows 関数のInputEncoding呼び出しや PowerShell スクリプトからのコマンドの使用chcpなど、プロパティへのInputEncoding割り当て以外の何らかの方法で変更された場合に発生する可能性SetConsoleCPがあります。

適用対象

こちらもご覧ください