ASCIIEncoding.GetDecoder 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得可以將以 ASCII 編碼的位元組序列轉換成 Unicode 字元序列的解碼器。
public:
override System::Text::Decoder ^ GetDecoder();
public override System.Text.Decoder GetDecoder ();
[System.Runtime.InteropServices.ComVisible(false)]
public override System.Text.Decoder GetDecoder ();
override this.GetDecoder : unit -> System.Text.Decoder
[<System.Runtime.InteropServices.ComVisible(false)>]
override this.GetDecoder : unit -> System.Text.Decoder
Public Overrides Function GetDecoder () As Decoder
傳回
Decoder,可以將以 ASCII 編碼的位元組序列轉換成 Unicode 字元序列。
- 屬性
備註
方法會 Decoder.GetChars 以類似 GetChars 這個類別的方法,將位元組的循序區塊轉換成循序字元區塊。 不過,會在 Decoder 呼叫之間維護狀態資訊,使其可以正確地解碼跨越區塊的位元組序列。 也會 Decoder 在資料區塊結尾保留尾端的位元組,並在下一個解碼作業中使用尾端位元組。 因此, GetDecoder 和 GetEncoder 對於網路傳輸和檔案作業很有用,因為這些作業通常會處理資料區塊,而不是完整的資料流程。