Mono Class Library: Overview

System.Text.ASCIIEncoding: Members

The members of System.Text.ASCIIEncoding are listed below.

See Also: Inherited members from System.Text.Encoding

Public Constructors

Constructs a new instance of the System.Text.ASCIIEncoding class.

Public Properties

[read-only]
override
IsSingleBytebool. Documentation for this section has not yet been entered.

Public Methods

override
GetByteCount(string) : int
Determines the exact number of bytes required to encode the specified string as ASCII-encoded characters.
override
GetByteCount(char*, int) : int
Documentation for this section has not yet been entered.
override
GetByteCount(char[], int, int) : int
Determines the exact number of bytes required to encode the specified range of the specified array of characters as ASCII-encoded characters.
override
GetBytes(char*, int, byte*, int) : int
Documentation for this section has not yet been entered.
override
GetBytes(char[], int, int, byte[], int) : int
Encodes the specified range of the specified array of characters into the specified range of the specified array of bytes as ASCII-encoded characters.
override
GetBytes(string, int, int, byte[], int) : int
Encodes the specified range of the specified string into the specified range of the specified array of bytes as ASCII-encoded characters.
override
GetCharCount(byte*, int) : int
Documentation for this section has not yet been entered.
override
GetCharCount(byte[], int, int) : int
Determines the exact number of characters that will be produced by decoding the specified range of the specified array of bytes as ASCII-encoded characters.
override
GetChars(byte*, int, char*, int) : int
Documentation for this section has not yet been entered.
override
GetChars(byte[], int, int, char[], int) : int
Decodes the specified range of the specified array of bytes into the specified range of the specified array of characters as ASCII-encoded characters.
override
GetDecoder() : Decoder
Documentation for this section has not yet been entered.
override
GetEncoder() : Encoder
Documentation for this section has not yet been entered.
override
GetMaxByteCount(int) : int
Returns the maximum number of bytes required to encode the specified number of characters as ASCII-encoded characters, regardless of the actual character values.
override
GetMaxCharCount(int) : int
Gets the maximum number of characters produced by decoding a specified number of bytes as ASCII-encoded characters, regardless of the actual byte values.
override
GetString(byte[]) : string
Decodes the specified array of bytes as a string of ASCII-encoded characters.
override
GetString(byte[], int, int) : string
Decodes the specified range of the specified array of bytes as a string of ASCII-encoded characters.