[System.CLSCompliantAttribute(false)]
public unsafe override int GetByteCount(char* chars, int count) { throw null; }
public override int GetByteCount(char[] chars, int index, int count) { throw null; }
+ public override int GetByteCount(System.ReadOnlySpan<char> chars) { throw null; }
public override int GetByteCount(string chars) { throw null; }
[System.CLSCompliantAttribute(false)]
public unsafe override int GetBytes(char* chars, int charCount, byte* bytes, int byteCount) { throw null; }
public override int GetBytes(char[] chars, int charIndex, int charCount, byte[] bytes, int byteIndex) { throw null; }
+ public override int GetBytes(System.ReadOnlySpan<char> chars, System.Span<byte> bytes) { throw null; }
public override int GetBytes(string chars, int charIndex, int charCount, byte[] bytes, int byteIndex) { throw null; }
[System.CLSCompliantAttribute(false)]
public unsafe override int GetCharCount(byte* bytes, int count) { throw null; }
public override int GetCharCount(byte[] bytes, int index, int count) { throw null; }
+ public override int GetCharCount(System.ReadOnlySpan<byte> bytes) { throw null; }
[System.CLSCompliantAttribute(false)]
public unsafe override int GetChars(byte* bytes, int byteCount, char* chars, int charCount) { throw null; }
public override int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex) { throw null; }
+ public override int GetChars(System.ReadOnlySpan<byte> bytes, System.Span<char> chars) { throw null; }
public override System.Text.Decoder GetDecoder() { throw null; }
public override System.Text.Encoder GetEncoder() { throw null; }
public override int GetMaxByteCount(int charCount) { throw null; }
public UnicodeEncoding() { }
public UnicodeEncoding(bool bigEndian, bool byteOrderMark) { }
public UnicodeEncoding(bool bigEndian, bool byteOrderMark, bool throwOnInvalidBytes) { }
- public override bool Equals(object value) { throw null; }
+ public override System.ReadOnlySpan<byte> Preamble { get { throw null; } }
+ public override bool Equals(object? value) { throw null; }
[System.CLSCompliantAttribute(false)]
public unsafe override int GetByteCount(char* chars, int count) { throw null; }
public override int GetByteCount(char[] chars, int index, int count) { throw null; }
public UTF32Encoding() { }
public UTF32Encoding(bool bigEndian, bool byteOrderMark) { }
public UTF32Encoding(bool bigEndian, bool byteOrderMark, bool throwOnInvalidCharacters) { }
- public override bool Equals(object value) { throw null; }
+ public override System.ReadOnlySpan<byte> Preamble { get { throw null; } }
+ public override bool Equals(object? value) { throw null; }
[System.CLSCompliantAttribute(false)]
public unsafe override int GetByteCount(char* chars, int count) { throw null; }
public override int GetByteCount(char[] chars, int index, int count) { throw null; }
{
public UTF7Encoding() { }
public UTF7Encoding(bool allowOptionals) { }
- public override bool Equals(object value) { throw null; }
+ public override bool Equals(object? value) { throw null; }
[System.CLSCompliantAttribute(false)]
public unsafe override int GetByteCount(char* chars, int count) { throw null; }
public override int GetByteCount(char[] chars, int index, int count) { throw null; }
public UTF8Encoding() { }
public UTF8Encoding(bool encoderShouldEmitUTF8Identifier) { }
public UTF8Encoding(bool encoderShouldEmitUTF8Identifier, bool throwOnInvalidBytes) { }
- public override bool Equals(object value) { throw null; }
+ public override System.ReadOnlySpan<byte> Preamble { get { throw null; } }
+ public override bool Equals(object? value) { throw null; }
[System.CLSCompliantAttribute(false)]
public unsafe override int GetByteCount(char* chars, int count) { throw null; }
public override int GetByteCount(char[] chars, int index, int count) { throw null; }
+ public override int GetByteCount(System.ReadOnlySpan<char> chars) { throw null; }
public override int GetByteCount(string chars) { throw null; }
[System.CLSCompliantAttribute(false)]
public unsafe override int GetBytes(char* chars, int charCount, byte* bytes, int byteCount) { throw null; }
public override int GetBytes(char[] chars, int charIndex, int charCount, byte[] bytes, int byteIndex) { throw null; }
+ public override int GetBytes(System.ReadOnlySpan<char> chars, System.Span<byte> bytes) { throw null; }
public override int GetBytes(string s, int charIndex, int charCount, byte[] bytes, int byteIndex) { throw null; }
[System.CLSCompliantAttribute(false)]
public unsafe override int GetCharCount(byte* bytes, int count) { throw null; }
public override int GetCharCount(byte[] bytes, int index, int count) { throw null; }
+ public override int GetCharCount(System.ReadOnlySpan<byte> bytes) { throw null; }
[System.CLSCompliantAttribute(false)]
public unsafe override int GetChars(byte* bytes, int byteCount, char* chars, int charCount) { throw null; }
public override int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex) { throw null; }
+ public override int GetChars(System.ReadOnlySpan<byte> bytes, System.Span<char> chars) { throw null; }
public override System.Text.Decoder GetDecoder() { throw null; }
public override System.Text.Encoder GetEncoder() { throw null; }
public override int GetHashCode() { throw null; }