View Article

Convert Class ToBase64String() Overrides

By Xelence Documentation posted 03-04-2024 14:31

  

ToBase64String(Byte[])

  • Parameters:
    • InArray: Byte[]
  • Return Type: String
  • Description: Converts an array of 8-bit unsigned integers to its equivalent string representation that is encoded with base-64 digits.



ToBase64String(Byte[], Base64FormattingOptions)

  • Parameters:
    • InArray: Byte[]
    • Options: Base64FormattingOptions
  • Return Type: String
  • Description: Converts an array of 8-bit unsigned integers to its equivalent string representation that is encoded with base-64 digits. You can specify whether to insert line breaks in the return value.



ToBase64String(Byte[], Int32, Int32)

  • Parameters:
    • InArray: Byte[]
    • OffsetIn: Int32
    • Length: Int32
  • Return Type: String
  • Description: Converts a subset of an array of 8-bit unsigned integers to its equivalent string representation that is encoded with base-64 digits. Parameters specify the subset as an offset in the input array, and the number of elements in the array to convert.



ToBase64String(Byte[], Int32, Int32, Base64FormattingOptions)

  • Parameters:
    • InArray: Byte[]
    • OffsetIn: Int32
    • Length: Int32
    • Options: Base64FormattingOptions
  • Return Type: String
  • Description: Converts a subset of an array of 8-bit unsigned integers to its equivalent string representation that is encoded with base-64 digits. Parameters specify the subset as an offset in the input array, the number of elements in the array to convert, and whether to insert line breaks in the return value.



ToBase64String(ReadOnlySpan<Byte>, Base64FormattingOptions)

  • Parameters:
    • Bytes: ReadOnlySpan<Byte>
    • Options: Base64FormattingOptions
  • Return Type: String
  • Description: Converts 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
0 comments
11 views