ClassDbfEncodingBase
Represents the DbfEncodingBase class.
Definition
Namespace:Telerik.UI.Xaml.Controls.DataVisualization.Map
Assembly:Telerik.WinUI.Controls.dll
Syntax:
public abstract class DbfEncodingBase : Encoding, ICloneable
Inheritance: objectEncodingDbfEncodingBase
Derived Classes:
Implements:
Inherited Members
Constructors
DbfEncodingBase()
Declaration
protected DbfEncodingBase()
Methods
GetByteCount(char[], int, int)
Calculates the number of bytes produced by encoding a set of characters from the specified character array.
Declaration
public override int GetByteCount(char[] chars, int index, int count)
Parameters
chars
char[]
The character array containing the set of characters to encode.
index
The zero-based index of the first character to encode.
count
The number of characters to encode.
Returns
The number of bytes produced by encoding the specified characters.
Overrides
GetBytes(char[], int, int, byte[], int)
Encodes a set of characters from the specified character array into the specified byte array.
Declaration
public override int GetBytes(char[] chars, int charIndex, int charCount, byte[] bytes, int byteIndex)
Parameters
chars
char[]
The character array containing the set of characters to encode.
charIndex
The zero-based index of the first character to encode.
charCount
The number of characters to encode.
bytes
byte[]
The byte array to contain the resulting sequence of bytes.
byteIndex
The zero-based index at which to start writing the resulting sequence of bytes.
Returns
The actual number of bytes written into bytes.
Overrides
GetCharCount(byte[], int, int)
Calculates the number of characters produced by decoding a sequence of bytes from the specified byte array.
Declaration
public override int GetCharCount(byte[] bytes, int index, int count)
Parameters
bytes
byte[]
The byte array containing the sequence of bytes to decode.
index
The zero-based index of the first byte to decode.
count
The number of bytes to decode.
Returns
The number of characters produced by decoding the specified sequence of bytes.
Overrides
GetChars(byte[], int, int, char[], int)
Decodes a sequence of bytes from the specified byte array into the specified character array.
Declaration
public override int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)
Parameters
bytes
byte[]
The byte array containing the sequence of bytes to decode.
byteIndex
The zero-based index of the first byte to decode.
byteCount
The number of bytes to decode.
chars
char[]
The character array to contain the resulting set of characters.
charIndex
The zero-based index at which to start writing the resulting set of characters.
Returns
The actual number of characters written into chars.
Overrides
GetMaxByteCount(int)
Calculates the maximum number of bytes produced by encoding the specified number of characters.
GetMaxCharCount(int)
Calculates the maximum number of characters produced by decoding the specified number of bytes.