You can access the following methods that do not have overrides.
FromBase64CharArray(Char[],Int32,Int32)
- Parameters:
- InArr: Char[]
- Offset: Int32
- Length: Int32
- Return Type: Byte[]
- Description: Converts a subset of a Unicode character array, which encodes binary data as base-64 digits, to an equivalent 8-bit unsigned integer array. Parameters specify the subset in the input array and the number of elements to convert.
FromBase64String(String)
- Parameters:
- Return Type: Byte[]
- Description: Converts the specified string, which encodes binary data as base-64 digits, to an equivalent 8-bit unsigned integer array.
GetTypeCode(Object)
- Parameters:
- Return Type: TypeCode
- Description: Returns a TypeCode for the specified object.
IsDBNull(Object)
- Parameters:
- Return Type: Boolean
- Description: Returns true if the specified value is of type DBNull. Otherwise, returns false.
TryFromBase64Chars(ReadOnlySpan<Char>, Span<Byte>, out Int32)
- Parameters:
- Char: ReadOnlySpan<Char>
- Bytes: Span<Byte>
- BytesWritten: Int32
- Return Type: Boolean
- Description: Tries to convert the specified span containing a string representation that is encoded with base-64 digits into a span of 8-bit unsigned integers.
TryFromBase64String(String, Span<Byte>, out Int32)
- Parameters:
- S: String
- Bytes: Span<Byte>
- BytesWritten: Int32
- Return Type: Boolean
- Description: Tries to convert the specified string representation that is encoded with base-64 digits into a span of 8-bit unsigned integers.
TryToBase64Chars(ReadOnlySpan<Byte>, Span<Char>, outInt32, Base64FormattingOptions)
- Parameters:
- Bytes: ReadOnlySpan<Byte>
- Char: Span<Char>
- CharsWritten: Int32
- Options: Base64FormattingOptions
- Return Type: Boolean
- Description: Tries to convert the 8-bit unsigned integers inside the specified read-only span into their equivalent string representation that is encoded with base-64 digits. You can optionally specify whether to insert line breaks in the return value.
#Rules