UTF32Encoding 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
代表 Unicode 字元的 UTF-32 編碼方式。
public ref class UTF32Encoding sealed : System::Text::Encoding
public sealed class UTF32Encoding : System.Text.Encoding
[System.Serializable]
public sealed class UTF32Encoding : System.Text.Encoding
type UTF32Encoding = class
inherit Encoding
[<System.Serializable>]
type UTF32Encoding = class
inherit Encoding
Public NotInheritable Class UTF32Encoding
Inherits Encoding
- 繼承
- 屬性
範例
下列範例示範啟用和未啟用錯誤偵測的物件行為 UTF32Encoding 。 它會建立位元組陣列,其最後四個位元組代表不正確 Surrogate 配對;高 Surrogate U+D8FF 後面接著 U+01FF,其超出 (0xDC00 到0xDFFF) 的低 Surrogate 範圍。 若未偵測錯誤,UTF32 解碼器會使用取代後援,將不正確 Surrogate 配對取代為 REPLACEMENT CHARACTER (U+FFFD) 。
using namespace System;
using namespace System::Text;
void PrintDecodedString( array<Byte>^bytes, Encoding^ enc );
int main()
{
// Create an instance of UTF32Encoding using little-endian byte order.
// This will be used for encoding.
UTF32Encoding^ u32LE = gcnew UTF32Encoding( false,true );
// Create two instances of UTF32Encoding using big-endian byte order: one with error detection and one without.
// These will be used for decoding.
UTF32Encoding^ u32withED = gcnew UTF32Encoding( true,true,true );
UTF32Encoding^ u32noED = gcnew UTF32Encoding( true,true,false );
// Create byte arrays from the same string containing the following characters:
// Latin Small Letter Z (U+007A)
// Latin Small Letter A (U+0061)
// Combining Breve (U+0306)
// Latin Small Letter AE With Acute (U+01FD)
// Greek Small Letter Beta (U+03B2)
String^ myStr = L"za\u0306\u01FD\u03B2\xD8FF\xDCFF";
// Encode the string using little-endian byte order.
array<Byte>^myBytes = gcnew array<Byte>(u32LE->GetByteCount( myStr ));
u32LE->GetBytes( myStr, 0, myStr->Length, myBytes, 0 );
// Decode the byte array with error detection.
Console::WriteLine( "Decoding with error detection:" );
PrintDecodedString( myBytes, u32withED );
// Decode the byte array without error detection.
Console::WriteLine( "Decoding without error detection:" );
PrintDecodedString( myBytes, u32noED );
}
// Decode the bytes and display the string.
void PrintDecodedString( array<Byte>^bytes, Encoding^ enc )
{
try
{
Console::WriteLine( " Decoded string: {0}", enc->GetString( bytes, 0, bytes->Length ) );
}
catch ( System::ArgumentException^ e )
{
Console::WriteLine( e );
}
Console::WriteLine();
}
using System;
using System.Text;
public class Example
{
public static void Main()
{
// Create a UTF32Encoding object with error detection enabled.
var encExc = new UTF32Encoding(! BitConverter.IsLittleEndian, true, true);
// Create a UTF32Encoding object with error detection disabled.
var encRepl = new UTF32Encoding(! BitConverter.IsLittleEndian, true, false);
// Create a byte arrays from a string, and add an invalid surrogate pair, as follows.
// Latin Small Letter Z (U+007A)
// Latin Small Letter A (U+0061)
// Combining Breve (U+0306)
// Latin Small Letter AE With Acute (U+01FD)
// Greek Small Letter Beta (U+03B2)
// a high-surrogate value (U+D8FF)
// an invalid low surrogate (U+01FF)
String s = "za\u0306\u01FD\u03B2";
// Encode the string using little-endian byte order.
int index = encExc.GetByteCount(s);
Byte[] bytes = new Byte[index + 4];
encExc.GetBytes(s, 0, s.Length, bytes, 0);
bytes[index] = 0xFF;
bytes[index + 1] = 0xD8;
bytes[index + 2] = 0xFF;
bytes[index + 3] = 0x01;
// Decode the byte array with error detection.
Console.WriteLine("Decoding with error detection:");
PrintDecodedString(bytes, encExc);
// Decode the byte array without error detection.
Console.WriteLine("Decoding without error detection:");
PrintDecodedString(bytes, encRepl);
}
// Decode the bytes and display the string.
public static void PrintDecodedString(Byte[] bytes, Encoding enc)
{
try {
Console.WriteLine(" Decoded string: {0}", enc.GetString(bytes, 0, bytes.Length));
}
catch (DecoderFallbackException e) {
Console.WriteLine(e.ToString());
}
Console.WriteLine();
}
}
// The example displays the following output:
// Decoding with error detection:
// System.Text.DecoderFallbackException: Unable to translate bytes [FF][D8][FF][01] at index
// 20 from specified code page to Unicode.
// at System.Text.DecoderExceptionFallbackBuffer.Throw(Byte[] bytesUnknown, Int32 index)
// at System.Text.DecoderExceptionFallbackBuffer.Fallback(Byte[] bytesUnknown, Int32 index
// )
// at System.Text.DecoderFallbackBuffer.InternalFallback(Byte[] bytes, Byte* pBytes)
// at System.Text.UTF32Encoding.GetCharCount(Byte* bytes, Int32 count, DecoderNLS baseDeco
// der)
// at System.Text.UTF32Encoding.GetString(Byte[] bytes, Int32 index, Int32 count)
// at Example.PrintDecodedString(Byte[] bytes, Encoding enc)
//
// Decoding without error detection:
// Decoded string: zăǽβ�
Imports System.Text
Public Module Example
Public Sub Main()
' Create a UTF32Encoding object with error detection enabled.
Dim encExc As New UTF32Encoding(Not BitConverter.IsLittleEndian, True, True)
' Create a UTF32Encoding object with error detection disabled.
Dim encRepl As New UTF32Encoding(Not BitConverter.IsLittleEndian, True, False)
' Create a byte arrays from a string, and add an invalid surrogate pair, as follows.
' Latin Small Letter Z (U+007A)
' Latin Small Letter A (U+0061)
' Combining Breve (U+0306)
' Latin Small Letter AE With Acute (U+01FD)
' Greek Small Letter Beta (U+03B2)
' a high-surrogate value (U+D8FF)
' an invalid low surrogate (U+01FF)
Dim s As String = "za" & ChrW(&H0306) & ChrW(&H01FD) & ChrW(&H03B2)
' Encode the string using little-endian byte order.
Dim index As Integer = encExc.GetBytecount(s)
Dim bytes(index + 3) As Byte
encExc.GetBytes(s, 0, s.Length, bytes, 0)
bytes(index) = &hFF
bytes(index + 1) = &hD8
bytes(index + 2) = &hFF
bytes(index + 3) = &h01
' Decode the byte array with error detection.
Console.WriteLine("Decoding with error detection:")
PrintDecodedString(bytes, encExc)
' Decode the byte array without error detection.
Console.WriteLine("Decoding without error detection:")
PrintDecodedString(bytes, encRepl)
End Sub
' Decode the bytes and display the string.
Public Sub PrintDecodedString(bytes() As Byte, enc As Encoding)
Try
Console.WriteLine(" Decoded string: {0}", enc.GetString(bytes, 0, bytes.Length))
Catch e As DecoderFallbackException
Console.WriteLine(e.ToString())
End Try
Console.WriteLine()
End Sub
End Module
' The example displays the following output:
' Decoding with error detection:
' System.Text.DecoderFallbackException: Unable to translate bytes [FF][D8][FF][01] at index
' 20 from specified code page to Unicode.
' at System.Text.DecoderExceptionFallbackBuffer.Throw(Byte[] bytesUnknown, Int32 index)
' at System.Text.DecoderExceptionFallbackBuffer.Fallback(Byte[] bytesUnknown, Int32 index
' )
' at System.Text.DecoderFallbackBuffer.InternalFallback(Byte[] bytes, Byte* pBytes)
' at System.Text.UTF32Encoding.GetCharCount(Byte* bytes, Int32 count, DecoderNLS baseDeco
' der)
' at System.Text.UTF32Encoding.GetString(Byte[] bytes, Int32 index, Int32 count)
' at Example.PrintDecodedString(Byte[] bytes, Encoding enc)
'
' Decoding without error detection:
' Decoded string: zăǽβ�
下列範例會使用 UTF32Encoding 物件,將 Unicode 字元的字串編碼為位元組陣列。 然後,位元組陣列會解碼為字串,以示範不會遺失資料。
using System;
using System.Text;
public class Example
{
public static void Main()
{
// The encoding.
var enc = new UTF32Encoding();
// Create a string.
String s = "This string contains two characters " +
"with codes outside the ASCII code range: " +
"Pi (\u03A0) and Sigma (\u03A3).";
Console.WriteLine("Original string:");
Console.WriteLine(" {0}", s);
// Encode the string.
Byte[] encodedBytes = enc.GetBytes(s);
Console.WriteLine();
Console.WriteLine("Encoded bytes:");
for (int ctr = 0; ctr < encodedBytes.Length; ctr++) {
Console.Write("[{0:X2}]{1}", encodedBytes[ctr],
(ctr + 1) % 4 == 0 ? " " : "" );
if ((ctr + 1) % 16 == 0) Console.WriteLine();
}
Console.WriteLine();
// Decode bytes back to string.
// Notice Pi and Sigma characters are still present.
String decodedString = enc.GetString(encodedBytes);
Console.WriteLine();
Console.WriteLine("Decoded string:");
Console.WriteLine(" {0}", decodedString);
}
}
// The example displays the following output:
// Original string:
// This string contains two characters with codes outside the ASCII code range:
// Pi (π) and Sigma (Σ).
//
// Encoded bytes:
// [54][00][00][00] [68][00][00][00] [69][00][00][00] [73][00][00][00]
// [20][00][00][00] [73][00][00][00] [74][00][00][00] [72][00][00][00]
// [69][00][00][00] [6E][00][00][00] [67][00][00][00] [20][00][00][00]
// [63][00][00][00] [6F][00][00][00] [6E][00][00][00] [74][00][00][00]
// [61][00][00][00] [69][00][00][00] [6E][00][00][00] [73][00][00][00]
// [20][00][00][00] [74][00][00][00] [77][00][00][00] [6F][00][00][00]
// [20][00][00][00] [63][00][00][00] [68][00][00][00] [61][00][00][00]
// [72][00][00][00] [61][00][00][00] [63][00][00][00] [74][00][00][00]
// [65][00][00][00] [72][00][00][00] [73][00][00][00] [20][00][00][00]
// [77][00][00][00] [69][00][00][00] [74][00][00][00] [68][00][00][00]
// [20][00][00][00] [63][00][00][00] [6F][00][00][00] [64][00][00][00]
// [65][00][00][00] [73][00][00][00] [20][00][00][00] [6F][00][00][00]
// [75][00][00][00] [74][00][00][00] [73][00][00][00] [69][00][00][00]
// [64][00][00][00] [65][00][00][00] [20][00][00][00] [74][00][00][00]
// [68][00][00][00] [65][00][00][00] [20][00][00][00] [41][00][00][00]
// [53][00][00][00] [43][00][00][00] [49][00][00][00] [49][00][00][00]
// [20][00][00][00] [63][00][00][00] [6F][00][00][00] [64][00][00][00]
// [65][00][00][00] [20][00][00][00] [72][00][00][00] [61][00][00][00]
// [6E][00][00][00] [67][00][00][00] [65][00][00][00] [3A][00][00][00]
// [20][00][00][00] [50][00][00][00] [69][00][00][00] [20][00][00][00]
// [28][00][00][00] [A0][03][00][00] [29][00][00][00] [20][00][00][00]
// [61][00][00][00] [6E][00][00][00] [64][00][00][00] [20][00][00][00]
// [53][00][00][00] [69][00][00][00] [67][00][00][00] [6D][00][00][00]
// [61][00][00][00] [20][00][00][00] [28][00][00][00] [A3][03][00][00]
// [29][00][00][00] [2E][00][00][00]
//
// Decoded string:
// This string contains two characters with codes outside the ASCII code range:
// Pi (π) and Sigma (Σ).
Imports System.Text
Class Example
Public Shared Sub Main()
' The encoding.
Dim enc As New UTF32Encoding()
' Create a string.
Dim s As String =
"This string contains two characters " &
"with codes outside the ASCII code range: " &
"Pi (" & ChrW(&h03A0) & ") and Sigma (" & ChrW(&h03A3) & ")."
Console.WriteLine("Original string:")
Console.WriteLine(" {0}", s)
' Encode the string.
Dim encodedBytes As Byte() = enc.GetBytes(s)
Console.WriteLine()
Console.WriteLine("Encoded bytes:")
For ctr As Integer = 0 To encodedBytes.Length - 1
Console.Write("[{0:X2}]{1}", encodedBytes(ctr),
If((ctr + 1) Mod 4 = 0, " ", "" ))
If (ctr + 1) Mod 16 = 0 Then Console.WriteLine()
Next
Console.WriteLine()
' Decode bytes back to string.
' Notice Pi and Sigma characters are still present.
Dim decodedString As String = enc.GetString(encodedBytes)
Console.WriteLine()
Console.WriteLine("Decoded string:")
Console.WriteLine(" {0}", decodedString)
End Sub
End Class
' The example displays the following output:
' Original string:
' This string contains two characters with codes outside the ASCII code range:
' Pi (π) and Sigma (Σ).
'
' Encoded bytes:
' [54][00][00][00] [68][00][00][00] [69][00][00][00] [73][00][00][00]
' [20][00][00][00] [73][00][00][00] [74][00][00][00] [72][00][00][00]
' [69][00][00][00] [6E][00][00][00] [67][00][00][00] [20][00][00][00]
' [63][00][00][00] [6F][00][00][00] [6E][00][00][00] [74][00][00][00]
' [61][00][00][00] [69][00][00][00] [6E][00][00][00] [73][00][00][00]
' [20][00][00][00] [74][00][00][00] [77][00][00][00] [6F][00][00][00]
' [20][00][00][00] [63][00][00][00] [68][00][00][00] [61][00][00][00]
' [72][00][00][00] [61][00][00][00] [63][00][00][00] [74][00][00][00]
' [65][00][00][00] [72][00][00][00] [73][00][00][00] [20][00][00][00]
' [77][00][00][00] [69][00][00][00] [74][00][00][00] [68][00][00][00]
' [20][00][00][00] [63][00][00][00] [6F][00][00][00] [64][00][00][00]
' [65][00][00][00] [73][00][00][00] [20][00][00][00] [6F][00][00][00]
' [75][00][00][00] [74][00][00][00] [73][00][00][00] [69][00][00][00]
' [64][00][00][00] [65][00][00][00] [20][00][00][00] [74][00][00][00]
' [68][00][00][00] [65][00][00][00] [20][00][00][00] [41][00][00][00]
' [53][00][00][00] [43][00][00][00] [49][00][00][00] [49][00][00][00]
' [20][00][00][00] [63][00][00][00] [6F][00][00][00] [64][00][00][00]
' [65][00][00][00] [20][00][00][00] [72][00][00][00] [61][00][00][00]
' [6E][00][00][00] [67][00][00][00] [65][00][00][00] [3A][00][00][00]
' [20][00][00][00] [50][00][00][00] [69][00][00][00] [20][00][00][00]
' [28][00][00][00] [A0][03][00][00] [29][00][00][00] [20][00][00][00]
' [61][00][00][00] [6E][00][00][00] [64][00][00][00] [20][00][00][00]
' [53][00][00][00] [69][00][00][00] [67][00][00][00] [6D][00][00][00]
' [61][00][00][00] [20][00][00][00] [28][00][00][00] [A3][03][00][00]
' [29][00][00][00] [2E][00][00][00]
'
' Decoded string:
' This string contains two characters with codes outside the ASCII code range:
' Pi (π) and Sigma (Σ).
下列範例會使用與前一個字串相同的字串,不同之處在于它會將編碼的位元組寫入檔案,並以位元組順序標記作為位元組資料流程的前置詞, (BOM) 。 然後,它會以兩種不同的方式讀取檔案:使用 StreamReader 物件做為文字檔,以及做為二進位檔案。 如您所預期,新讀取的字串都未包含 BOM。
using System;
using System.IO;
using System.Text;
public class Example
{
public static void Main()
{
// Create a UTF-32 encoding that supports a BOM.
var enc = new UTF32Encoding();
// A Unicode string with two characters outside an 8-bit code range.
String s = "This Unicode string has 2 characters " +
"outside the ASCII range: \n" +
"Pi (\u03A0), and Sigma (\u03A3).";
Console.WriteLine("Original string:");
Console.WriteLine(s);
Console.WriteLine();
// Encode the string.
Byte[] encodedBytes = enc.GetBytes(s);
Console.WriteLine("The encoded string has {0} bytes.\n",
encodedBytes.Length);
// Write the bytes to a file with a BOM.
var fs = new FileStream(@".\UTF32Encoding.txt", FileMode.Create);
Byte[] bom = enc.GetPreamble();
fs.Write(bom, 0, bom.Length);
fs.Write(encodedBytes, 0, encodedBytes.Length);
Console.WriteLine("Wrote {0} bytes to the file.\n", fs.Length);
fs.Close();
// Open the file using StreamReader.
var sr = new StreamReader(@".\UTF32Encoding.txt");
String newString = sr.ReadToEnd();
sr.Close();
Console.WriteLine("String read using StreamReader:");
Console.WriteLine(newString);
Console.WriteLine();
// Open the file as a binary file and decode the bytes back to a string.
fs = new FileStream(@".\Utf32Encoding.txt", FileMode.Open);
Byte[] bytes = new Byte[fs.Length];
fs.Read(bytes, 0, (int)fs.Length);
fs.Close();
String decodedString = enc.GetString(bytes);
Console.WriteLine("Decoded bytes from binary file:");
Console.WriteLine(decodedString);
}
}
// The example displays the following output:
// Original string:
// This Unicode string has 2 characters outside the ASCII range:
// Pi (π), and Sigma (Σ).
//
// The encoded string has 340 bytes.
//
// Wrote 344 bytes to the file.
//
// String read using StreamReader:
// This Unicode string has 2 characters outside the ASCII range:
// Pi (π), and Sigma (Σ).
//
// Decoded bytes from binary file:
// This Unicode string has 2 characters outside the ASCII range:
// Pi (π), and Sigma (Σ).
Imports System.IO
Imports System.Text
Class Example
Public Shared Sub Main()
' Create a UTF-32 encoding that supports a BOM.
Dim enc As New UTF32Encoding()
' A Unicode string with two characters outside an 8-bit code range.
Dim s As String = _
"This Unicode string has 2 characters outside the " &
"ASCII range: " & vbCrLf &
"Pi (" & ChrW(&h03A0) & "), and Sigma (" & ChrW(&h03A3) & ")."
Console.WriteLine("Original string:")
Console.WriteLine(s)
Console.WriteLine()
' Encode the string.
Dim encodedBytes As Byte() = enc.GetBytes(s)
Console.WriteLine("The encoded string has {0} bytes.",
encodedBytes.Length)
Console.WriteLine()
' Write the bytes to a file with a BOM.
Dim fs As New FileStream(".\UTF32Encoding.txt", FileMode.Create)
Dim bom() As Byte = enc.GetPreamble()
fs.Write(bom, 0, bom.Length)
fs.Write(encodedBytes, 0, encodedBytes.Length)
Console.WriteLine("Wrote {0} bytes to the file.", fs.Length)
fs.Close()
Console.WriteLine()
' Open the file using StreamReader.
Dim sr As New StreamReader(".\UTF32Encoding.txt")
Dim newString As String = sr.ReadToEnd()
sr.Close()
Console.WriteLine("String read using StreamReader:")
Console.WriteLine(newString)
Console.WriteLine()
' Open the file as a binary file and decode the bytes back to a string.
fs = new FileStream(".\Utf32Encoding.txt", FileMode.Open)
Dim bytes(fs.Length - 1) As Byte
fs.Read(bytes, 0, fs.Length)
fs.Close()
Dim decodedString As String = enc.GetString(bytes)
Console.WriteLine("Decoded bytes from binary file:")
Console.WriteLine(decodedString)
End Sub
End Class
' The example displays the following output:
' Original string:
' This Unicode string has 2 characters outside the ASCII range:
' Pi (π), and Sigma (Σ).
'
' The encoded string has 344 bytes.
'
' Wrote 348 bytes to the file.
'
' String read using StreamReader:
' This Unicode string has 2 characters outside the ASCII range:
' Pi (π), and Sigma (Σ).
'
' Decoded bytes from binary file:
' This Unicode string has 2 characters outside the ASCII range:
' Pi (π), and Sigma (Σ).
備註
編碼是將一組 Unicode 字元轉換成位元組序列的處理程序。 解碼是將編碼位元組序列轉換成一組 Unicode 字元的程式。
Unicode Standard會將代碼點指派給每個支援腳本中的每個字元 (一個數位) 。 Unicode 轉換格式 (UTF) 是編碼該程式碼點的方法。 Unicode Standard會使用下列 UTF:
UTF-8,代表每個字碼點為一到四個位元組的序列。
UTF-16,代表每個程式碼點為一到兩個 16 位整數的序列。
UTF-32,代表每個代碼點為 32 位整數。
如需 所支援 System.Text 之 UTF 和其他編碼的詳細資訊,請參閱 .NET 中的字元編碼。
類別 UTF32Encoding 代表 UTF-32 編碼。 編碼器可以使用大位元組位元組順序, (最顯著位元組的第一個) 或位元組的最小位元組順序 (最不重要的位元組第一個) 。 例如,拉丁大寫字母 A (字碼點 U+0041) 會序列化,如下所示 (十六進位) :
大位元組位元組順序:00 00 00 41
位元組順序小到小:41 00 00 00
使用原生位元組順序來儲存 Unicode 字元通常更有效率。 例如,最好在小端平臺上使用位元組由小到大的順序,例如 Intel 電腦。 UTF32Encoding 會對應至 Windows 字碼頁 12000 (位元組順序) 和 12001 (大位元組位元組順序) 。 您可以呼叫 BitConverter.IsLittleEndian 方法來判斷特定架構的「尾端性」。
或者, UTF32Encoding 物件會提供位元組順序標記 (BOM) ,這是位元組陣列,可前置詞為編碼程式所產生的位元組序列。 如果前置詞包含位元組順序標記 (BOM) ,它可協助解碼器判斷位元組順序和位元組陣列的轉換格式或 UTF。
UTF32Encoding如果實例設定為提供 BOM,您可以藉由呼叫 GetPreamble 方法來擷取它,否則方法會傳回空陣列。 請注意,即使 UTF32Encoding 物件已設定為 BOM 支援,您也必須適當地在編碼位元組資料流程的開頭包含 BOM;類別的 UTF32Encoding 編碼方法不會自動執行此動作。
注意
若要啟用錯誤偵測,並讓類別實例更安全,您應該呼叫 UTF32Encoding(Boolean, Boolean, Boolean) 建構函式並將其引數設定 throwOnInvalidBytes
為 true
來具現化 UTF32Encoding 物件。 偵測錯誤時,偵測無效字元序列或位元組的方法會 ArgumentException 擲回例外狀況。 如果沒有錯誤偵測,就不會擲回任何例外狀況,而且通常會忽略不正確序列。
您可以透過數種方式將物件具現化 UTF32Encoding ,視您想要它提供位元組順序標記 (BOM) 、您想要使用大端或位元組位元組編碼,以及是否要啟用錯誤偵測。 下表列出傳回 UnicodeEncoding 物件的建 UTF32Encoding 構函式和 Encoding 屬性。
成員 | 位元組序 | BOM | 錯誤偵測 |
---|---|---|---|
Encoding.UTF32 | 位元組由小到大 | 是 | 沒有 (取代後援) |
UTF32Encoding.UTF32Encoding() | 位元組由小到大 | 是 | 沒有 (取代後援) |
UTF32Encoding.UTF32Encoding(Boolean, Boolean) | 可設定 | 可設定 | 沒有 (取代後援) |
UTF32Encoding.UTF32Encoding(Boolean, Boolean, Boolean) | 可設定 | 可設定 | 可設定 |
方法 GetByteCount 會決定一組 Unicode 字元編碼所產生的位元組數目,而 GetBytes 方法會執行實際的編碼。
同樣地, GetCharCount 方法會決定解碼一連串位元組的字元數,而 GetChars 和 GetString 方法會執行實際的解碼。
如果編碼器或解碼器能夠在編碼或解碼跨越多個區塊的資料時儲存狀態資訊, (例如以 100,000 個字元區段) 編碼的 1 百萬個字元字串,請分別使用 GetEncoder 和 GetDecoder 屬性。
建構函式
UTF32Encoding() |
初始化 UTF32Encoding 類別的新執行個體。 |
UTF32Encoding(Boolean, Boolean) |
初始化 UTF32Encoding 類別的新執行個體。 參數會指定是否使用位元組由大到小的位元組順序,以及 GetPreamble() 方法是否傳回 Unicode 位元組順序標記。 |
UTF32Encoding(Boolean, Boolean, Boolean) |
初始化 UTF32Encoding 類別的新執行個體。 參數會指定是否使用位元組由大到小的位元組順序、是否提供 Unicode 位元組順序標記,以及是否在偵測到無效的編碼方式時擲回例外狀況。 |
屬性
BodyName |
在衍生類別中覆寫時,取得可以與郵件代理程式主體標籤一起使用的目前編碼方式名稱。 (繼承來源 Encoding) |
CodePage |
在衍生類別中覆寫時,取得目前 Encoding 的字碼頁識別項。 (繼承來源 Encoding) |
DecoderFallback |
取得或設定目前 DecoderFallback 物件的 Encoding 物件。 (繼承來源 Encoding) |
EncoderFallback |
取得或設定目前 EncoderFallback 物件的 Encoding 物件。 (繼承來源 Encoding) |
EncodingName |
在衍生類別中覆寫時,取得目前編碼方式的人們可讀取 (Human-Readable) 的描述。 (繼承來源 Encoding) |
HeaderName |
在衍生類別中覆寫時,取得可以與郵件代理程式標頭標籤一起使用的目前編碼方式名稱。 (繼承來源 Encoding) |
IsBrowserDisplay |
在衍生類別中覆寫時,取得值,指出瀏覽器用戶端是否可以使用目前的編碼方式來顯示內容。 (繼承來源 Encoding) |
IsBrowserSave |
在衍生類別中覆寫時,取得值,指出瀏覽器用戶端是否可以使用目前的編碼方式來儲存內容。 (繼承來源 Encoding) |
IsMailNewsDisplay |
在衍生類別中覆寫時,取得值,指出郵件和新聞用戶端是否可以使用目前的編碼方式來顯示內容。 (繼承來源 Encoding) |
IsMailNewsSave |
在衍生類別中覆寫時,取得值,指出郵件和新聞用戶端是否可以使用目前的編碼方式來儲存內容。 (繼承來源 Encoding) |
IsReadOnly |
在衍生類別中覆寫時,取得值,指出目前的編碼方式是否為唯讀。 (繼承來源 Encoding) |
IsSingleByte |
在衍生類別中覆寫時,取得值,指出目前的編碼方式是否使用單一位元組字碼指標。 (繼承來源 Encoding) |
Preamble |
取得以 UTF-32 格式編碼的 Unicode 位元組順序標記 (若物件已設定為提供此項目)。 |
Preamble |
在衍生類別中覆寫時,傳回範圍,其包含指定所用編碼方式的位元組序列。 (繼承來源 Encoding) |
WebName |
在衍生類別中覆寫時,若要取得目前的編碼方式,請取得向 Internet Assigned Numbers Authority (IANA) 註冊的名稱。 (繼承來源 Encoding) |
WindowsCodePage |
在衍生類別中覆寫時,請取得最能符合目前編碼方式的 Windows 作業系統字碼頁。 (繼承來源 Encoding) |
方法
Clone() |
在衍生類別中覆寫時,會建立目前 Encoding 物件的淺層複本。 (繼承來源 Encoding) |
Equals(Object) |
判斷指定的 Object 是否等於目前的 UTF32Encoding 物件。 |
GetByteCount(Char*, Int32) |
計算將起始於指定字元指標的一組字元編碼所產生的位元組數目。 |
GetByteCount(Char[]) |
在衍生類別中覆寫時,計算編碼指定字元陣列中所有字元所產生的位元組數目。 (繼承來源 Encoding) |
GetByteCount(Char[], Int32, Int32) |
計算將指定字元陣列中的一組字元編碼所產生的位元組數目。 |
GetByteCount(ReadOnlySpan<Char>) |
在衍生類別中覆寫時,計算藉由編碼指定字元範圍中字元所產生的位元組數。 (繼承來源 Encoding) |
GetByteCount(String) |
計算將指定 String 中的字元編碼所產生的位元組數目。 |
GetByteCount(String, Int32, Int32) |
在衍生類別中覆寫時,計算藉由從指定的字串編碼一組字元所產生的位元組數。 (繼承來源 Encoding) |
GetBytes(Char*, Int32, Byte*, Int32) |
將起始於指定字元指標的一組字元編碼成位元組序列;儲存該位元組序列時,係以指定的位元組指標為起始點。 |
GetBytes(Char[]) |
在衍生類別中覆寫時,將指定字元陣列中的所有字元編碼成位元組序列。 (繼承來源 Encoding) |
GetBytes(Char[], Int32, Int32) |
在衍生類別中覆寫時,將指定字元陣列中的一組字元編碼成位元組序列。 (繼承來源 Encoding) |
GetBytes(Char[], Int32, Int32, Byte[], Int32) |
將指定字元陣列中的一組字元編碼成指定的位元組陣列。 |
GetBytes(ReadOnlySpan<Char>, Span<Byte>) |
在衍生類別中覆寫時,從指定的唯讀範圍將一組字元編碼到位元組範圍。 (繼承來源 Encoding) |
GetBytes(String) |
在衍生類別中覆寫時,將指定字串中的所有字元編碼成位元組序列。 (繼承來源 Encoding) |
GetBytes(String, Int32, Int32) |
在衍生類別中覆寫時,從指定字串中指定的 |
GetBytes(String, Int32, Int32, Byte[], Int32) |
將指定 String 中的一組字元編碼成指定的位元組陣列。 |
GetCharCount(Byte*, Int32) |
計算將起始於指定位元組指標的位元組序列解碼所產生的字元數。 |
GetCharCount(Byte[]) |
在衍生類別中覆寫時,計算解碼指定位元組陣列中所有位元組所產生的字元數目。 (繼承來源 Encoding) |
GetCharCount(Byte[], Int32, Int32) |
計算將指定位元組陣列中的位元組序列解碼所產生的字元數。 |
GetCharCount(ReadOnlySpan<Byte>) |
在衍生類別中覆寫時,計算藉由解碼所提供唯讀位元組範圍時產生的字元數。 (繼承來源 Encoding) |
GetChars(Byte*, Int32, Char*, Int32) |
將起始於指定位元組指標的位元組序列解碼成一組字元;儲存該組字元時,係以指定的字元指標為起始點。 |
GetChars(Byte[]) |
在衍生類別中覆寫時,將指定位元組陣列中的所有位元組解碼成一組字元。 (繼承來源 Encoding) |
GetChars(Byte[], Int32, Int32) |
在衍生類別中覆寫時,將指定位元組陣列中的位元組序列解碼成一組字元。 (繼承來源 Encoding) |
GetChars(Byte[], Int32, Int32, Char[], Int32) |
將指定位元組陣列中的位元組序列解碼成指定的字元陣列。 |
GetChars(ReadOnlySpan<Byte>, Span<Char>) |
在衍生類別中覆寫時,將指定唯讀位元組範圍中的所有位元組解碼成字元範圍。 (繼承來源 Encoding) |
GetDecoder() |
取得可以將以 UTF-32 編碼的位元組序列轉換成 Unicode 字元序列的解碼器。 |
GetEncoder() |
取得可以將 Unicode 字元序列轉換成以 UTF-32 編碼的位元組序列的編碼器。 |
GetHashCode() |
傳回目前執行個體的雜湊碼。 |
GetMaxByteCount(Int32) |
計算將指定數目的字元編碼所產生的最大位元組數目。 |
GetMaxCharCount(Int32) |
計算將指定數目的位元組解碼所產生的最大字元數。 |
GetPreamble() |
如果設定 UTF32Encoding 編碼物件提供編碼方式,則會傳回以 UTF-32 格式編碼的 Unicode 位元組順序標記。 |
GetString(Byte*, Int32) |
在衍生類別中覆寫時,將指定位址開頭之指定數目的位元組解碼為字串。 (繼承來源 Encoding) |
GetString(Byte[]) |
在衍生類別中覆寫時,將指定位元組陣列中的所有位元組解碼成字串。 (繼承來源 Encoding) |
GetString(Byte[], Int32, Int32) |
將位元組陣列中的某一段位元組範圍解碼成字串。 |
GetString(ReadOnlySpan<Byte>) |
在衍生類別中覆寫時,將指定位元組範圍中的所有位元組解碼成字串。 (繼承來源 Encoding) |
GetType() |
取得目前執行個體的 Type。 (繼承來源 Object) |
IsAlwaysNormalized() |
取得值,指出目前的編碼方式是否永遠都是使用預設的正規化表單進行正規化。 (繼承來源 Encoding) |
IsAlwaysNormalized(NormalizationForm) |
在衍生類別中覆寫時取得值,指出目前的編碼方式是否永遠都是使用指定的正規化表單進行正規化。 (繼承來源 Encoding) |
MemberwiseClone() |
建立目前 Object 的淺層複製。 (繼承來源 Object) |
ToString() |
傳回代表目前物件的字串。 (繼承來源 Object) |
TryGetBytes(ReadOnlySpan<Char>, Span<Byte>, Int32) |
如果目的地夠大,則從指定的唯讀範圍編碼為一組字元的位元組範圍。 (繼承來源 Encoding) |
TryGetChars(ReadOnlySpan<Byte>, Span<Char>, Int32) |
如果目的地夠大,就會從指定的唯讀範圍將字元解碼成一組位元組。 (繼承來源 Encoding) |
擴充方法
GetBytes(Encoding, ReadOnlySequence<Char>) |
使用指定的 Encoding,將指定的 ReadOnlySequence<T> 編碼為 Byte 陣列。 |
GetBytes(Encoding, ReadOnlySequence<Char>, IBufferWriter<Byte>) |
使用指定的 Encoding,將指定的 ReadOnlySequence<T> 解碼為 |
GetBytes(Encoding, ReadOnlySequence<Char>, Span<Byte>) |
使用指定的 Encoding,將指定的 ReadOnlySequence<T> 編碼為 |
GetBytes(Encoding, ReadOnlySpan<Char>, IBufferWriter<Byte>) |
使用指定的 Encoding,將指定的 ReadOnlySpan<T> 編碼為 |
GetChars(Encoding, ReadOnlySequence<Byte>, IBufferWriter<Char>) |
使用指定的 Encoding,將指定的 ReadOnlySequence<T> 解碼為 |
GetChars(Encoding, ReadOnlySequence<Byte>, Span<Char>) |
使用指定的 Encoding,將指定的 ReadOnlySequence<T> 解碼為 |
GetChars(Encoding, ReadOnlySpan<Byte>, IBufferWriter<Char>) |
使用指定的 Encoding,將指定的 ReadOnlySpan<T> 解碼為 |
GetString(Encoding, ReadOnlySequence<Byte>) |
使用指定的 Encoding,將指定的 ReadOnlySequence<T> 解碼為 String。 |