Codeunit 4110 Base64 Convert in 28

App
System Application
Namespace
System.Text

Procedures, 19

Versions171819202122232425262728latest

Source242526272829

Source in 28

src/System Application/App/Base64 Convert/src/Base64Convert.Codeunit.al245 lines, Copyright (c) Microsoft Corporation. MIT

// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------

namespace System.Text;

/// <summary>
/// Converts text to and from its base-64 representation.
/// </summary>
codeunit 4110 "Base64 Convert"
{
    Access = Public;
    SingleInstance = true;
    InherentEntitlements = X;
    InherentPermissions = X;

    var
        Base64ConvertImpl: Codeunit "Base64 Convert Impl.";

    /// <summary>
    /// Converts the value of the input string to its equivalent string representation that is encoded with base-64 digits.
    /// </summary>
    /// <param name="String">The string to convert.</param>
    /// <returns>The string representation, in base-64, of the input string.</returns>
    procedure ToBase64(String: Text): Text
    begin
        exit(this.Base64ConvertImpl.ToBase64(String));
    end;

    /// <summary>
    /// Converts the value of the input secret string to its equivalent secret string representation that is encoded with base-64 digits.
    /// </summary>
    /// <param name="SecretString">The secret string to convert.</param>
    /// <returns>The secret string representation, in base-64, of the input secret string.</returns>
    procedure ToBase64(SecretString: SecretText): SecretText
    begin
        exit(this.Base64ConvertImpl.ToBase64(SecretString));
    end;

    /// <summary>
    /// Converts the value of the input string to its equivalent string representation that is encoded with base-64 digits.
    /// </summary>
    /// <param name="String">The string to convert.</param>
    /// <param name="TextEncoding">The TextEncoding for the input string.</param>
    /// <returns>The string representation, in base-64, of the input string.</returns>
    procedure ToBase64(String: Text; TextEncoding: TextEncoding): Text
    begin
        exit(this.Base64ConvertImpl.ToBase64(String, TextEncoding));
    end;

    /// <summary>
    /// Converts the value of the input string to its equivalent string representation that is encoded with base-64 digits.
    /// </summary>
    /// <param name="String">The string to convert.</param>
    /// <param name="TextEncoding">The TextEncoding for the input string.</param>
    /// <param name="Codepage">The Codepage if TextEncoding is MsDos or Windows.</param>
    /// <returns>The string representation, in base-64, of the input string.</returns>
    procedure ToBase64(String: Text; TextEncoding: TextEncoding; Codepage: Integer): Text
    begin
        exit(this.Base64ConvertImpl.ToBase64(String, TextEncoding, Codepage));
    end;

    /// <summary>
    /// Converts the value of the input string to its equivalent string representation that is encoded with base-64 digits.
    /// </summary>
    /// <param name="String">The string to convert.</param>
    /// <param name="InsertLineBreaks">Specifies whether line breaks are inserted in the output.
    /// If true, inserts line breaks after every 76 characters.</param>
    /// <returns>The string representation, in base-64, of the input string.</returns>
    procedure ToBase64(String: Text; InsertLineBreaks: Boolean): Text
    begin
        exit(this.Base64ConvertImpl.ToBase64(String, InsertLineBreaks));
    end;
    /// <summary>
    /// Converts the value of the input string to its equivalent string representation that is encoded with base-64 digits.
    /// </summary>
    /// <param name="String">The string to convert.</param>
    /// <param name="InsertLineBreaks">Specifies whether line breaks are inserted in the output.
    /// If true, inserts line breaks after every 76 characters.</param>
    /// <param name="TextEncoding">The TextEncoding for the input string.</param>
    /// <param name="Codepage">The Codepage if TextEncoding is MsDos or Windows.</param>
    /// <returns>The string representation, in base-64, of the input string.</returns>
    procedure ToBase64(String: Text; InsertLineBreaks: Boolean; TextEncoding: TextEncoding; Codepage: Integer): Text
    begin
        exit(this.Base64ConvertImpl.ToBase64(String, InsertLineBreaks, TextEncoding, Codepage));
    end;

    /// <summary>
    /// Converts the value of the input stream to its equivalent string representation that is encoded with base-64 digits.
    /// </summary>
    /// <param name="InStream">The stream to read the input from.</param>
    /// <returns>The string representation, in base-64, of the input string.</returns>
    procedure ToBase64(InStream: InStream): Text
    begin
        exit(this.Base64ConvertImpl.ToBase64(InStream));
    end;

    /// <summary>
    /// Converts the value of the input stream to its equivalent string representation that is encoded with base-64 digits.
    /// </summary>
    /// <param name="InStream">The stream to read the input from.</param>
    /// <param name="InsertLineBreaks">Specifies whether line breaks are inserted in the output.
    /// If true, inserts line breaks after every 76 characters.</param>
    /// <returns>The string representation, in base-64, of the input string.</returns>
    procedure ToBase64(InStream: InStream; InsertLineBreaks: Boolean): Text
    begin
        exit(this.Base64ConvertImpl.ToBase64(InStream, InsertLineBreaks));
    end;

    /// <summary>
    /// Converts the value of the input stream to its equivalent string representation that is encoded with base-64 digits.
    /// </summary>
    /// <param name="InStream">The stream to read the input from.</param>
    /// <param name="InsertLineBreaks">Specifies whether line breaks are inserted in the output.
    /// If true, inserts line breaks after every 76 characters.</param>
    /// <returns>The stream representation, in base-64, of the input string.</returns>
    procedure ToBase64(InStream: InStream; InsertLineBreaks: Boolean; OutStream: OutStream)
    begin
        this.Base64ConvertImpl.ToBase64(InStream, InsertLineBreaks, OutStream);
    end;

    /// <summary>
    /// Converts the value of the input string to its equivalent string representation that is encoded with base64 URL-safe characters.
    /// </summary>
    /// <param name="String">The string to convert.</param>
    /// <returns>The string representation, in base64url, of the input string.</returns>
    procedure ToBase64Url(String: Text): Text
    begin
        exit(this.Base64ConvertImpl.ToBase64Url(String));
    end;

    /// <summary>
    /// Converts the value of the input secret string to its equivalent secret string representation that is encoded with base64 URL-safe characters.
    /// </summary>
    /// <param name="SecretString">The secret string to convert.</param>
    /// <returns>The secret string representation, in base64url, of the input secret string.</returns>
    procedure ToBase64Url(SecretString: SecretText): SecretText
    begin
        exit(this.Base64ConvertImpl.ToBase64Url(SecretString));
    end;

    /// <summary>
    /// Converts the value of the input string to its equivalent string representation that is encoded with base64 URL-safe characters.
    /// </summary>
    /// <param name="String">The string to convert.</param>
    /// <param name="TextEncoding">The TextEncoding for the input string.</param>
    /// <returns>The string representation, in base64url, of the input string.</returns>
    procedure ToBase64Url(String: Text; TextEncoding: TextEncoding): Text
    begin
        exit(this.Base64ConvertImpl.ToBase64Url(String, TextEncoding));
    end;

    /// <summary>
    /// Converts the value of the input string to its equivalent string representation that is encoded with base64 URL-safe characters.
    /// </summary>
    /// <param name="String">The string to convert.</param>
    /// <param name="TextEncoding">The TextEncoding for the input string.</param>
    /// <param name="Codepage">The Codepage if TextEncoding is MsDos or Windows.</param>
    /// <returns>The string representation, in base64url, of the input string.</returns>
    procedure ToBase64Url(String: Text; TextEncoding: TextEncoding; Codepage: Integer): Text
    begin
        exit(this.Base64ConvertImpl.ToBase64Url(String, TextEncoding, Codepage));
    end;

    /// <summary>
    /// Converts the value of the input stream to its equivalent string representation that is encoded with base64 URL-safe characters.
    /// </summary>
    /// <param name="InStream">The stream to read the input from.</param>
    /// <returns>The string representation, in base64url, of the input string.</returns>
    procedure ToBase64Url(InStream: InStream): Text
    begin
        exit(this.Base64ConvertImpl.ToBase64Url(InStream));
    end;

    /// <summary>
    /// Converts the specified string, which encodes binary data as base-64 digits, to an equivalent regular string.
    /// </summary>
    /// <param name="Base64String">The string to convert.</param>
    /// <returns>Regular string that is equivalent to the input base-64 string.</returns>
    /// <error>The length of Base64String, ignoring white-space characters, is not zero or a multiple of 4.</error>
    /// <error>The format of Base64String is invalid. Base64String contains a non-base-64 character, more than two padding characters,
    /// or a non-white space-character among the padding characters.</error>
    procedure FromBase64(Base64String: Text): Text
    begin
        exit(this.Base64ConvertImpl.FromBase64(Base64String));
    end;

    /// <summary>
    /// Converts the specified secret string, which encodes binary data as base-64 digits, to an equivalent regular secret string.
    /// </summary>
    /// <param name="Base64SecretString">The secret string to convert.</param>
    /// <returns>Regular secret string that is equivalent to the input base-64 secret string.</returns>
    /// <error>The length of Base64SecretString, ignoring white-space characters, is not zero or a multiple of 4.</error>
    /// <error>The format of Base64SecretString is invalid. Base64String contains a non-base-64 character, more than two padding characters,
    /// or a non-white space-character among the padding characters.</error>
    procedure FromBase64(Base64SecretString: SecretText): SecretText
    begin
        exit(this.Base64ConvertImpl.FromBase64(Base64SecretString));
    end;

    /// <summary>
    /// Converts the specified string, which encodes binary data as base-64 digits, to an equivalent regular string.
    /// </summary>
    /// <param name="Base64String">The string to convert.</param>
    /// <param name="TextEncoding">The TextEncoding for the input string.</param>
    /// <returns>Regular string that is equivalent to the input base-64 string.</returns>
    /// <error>The length of Base64String, ignoring white-space characters, is not zero or a multiple of 4.</error>
    /// <error>The format of Base64String is invalid. Base64String contains a non-base-64 character, more than two padding characters,
    /// or a non-white space-character among the padding characters.</error>
    procedure FromBase64(Base64String: Text; TextEncoding: TextEncoding): Text
    begin
        exit(this.Base64ConvertImpl.FromBase64(Base64String, TextEncoding));
    end;

    /// <summary>
    /// Converts the specified string, which encodes binary data as base-64 digits, to an equivalent regular string.
    /// </summary>
    /// <param name="Base64String">The string to convert.</param>
    /// <param name="TextEncoding">The TextEncoding for the inout string.</param>
    /// <param name="Codepage">The Codepage if TextEncoding is MsDos or Windows.</param>
    /// <returns>Regular string that is equivalent to the input base-64 string.</returns>
    /// <error>The length of Base64String, ignoring white-space characters, is not zero or a multiple of 4.</error>
    /// <error>The format of Base64String is invalid. Base64String contains a non-base-64 character, more than two padding characters,
    /// or a non-white space-character among the padding characters.</error>
    procedure FromBase64(Base64String: Text; TextEncoding: TextEncoding; Codepage: Integer): Text
    begin
        exit(this.Base64ConvertImpl.FromBase64(Base64String, TextEncoding, Codepage));
    end;

    /// <summary>
    /// Converts the specified string, which encodes binary data as base-64 digits, to an equivalent regular string.
    /// </summary>
    /// <param name="Base64String">The string to convert.</param>
    /// <param name="OutStream">The stream to write the output to.</param>
    /// <returns>Regular string that is equivalent to the input base-64 string.</returns>
    /// <error>The length of Base64String, ignoring white-space characters, is not zero or a multiple of 4.</error>
    /// <error>The format of Base64String is invalid. Base64String contains a non-base-64 character, more than two padding characters,
    /// or a non-white space-character among the padding characters.</error>
    procedure FromBase64(Base64String: Text; OutStream: OutStream)
    begin
        this.Base64ConvertImpl.FromBase64(Base64String, OutStream);
    end;
}

Procedures, 19

NameParametersReturnsAccessObsolete
ToBase64(Text)Textpublic-
ToBase64(Text, TextEncoding)Textpublic-
ToBase64(Text, TextEncoding, Integer)Textpublic-
ToBase64(Text, Boolean)Textpublic-
ToBase64(Text, Boolean, TextEncoding, Integer)Textpublic-
ToBase64(InStream)Textpublic-
ToBase64(InStream, Boolean)Textpublic-
FromBase64(Text)Textpublic-
FromBase64(Text, TextEncoding)Textpublic-
FromBase64(Text, TextEncoding, Integer)Textpublic-
FromBase64(Text, OutStream)public-
ToBase64(SecretText)SecretTextpublic-
FromBase64(SecretText)SecretTextpublic-
ToBase64Url(Text)Textpublic-
ToBase64Url(SecretText)SecretTextpublic-
ToBase64Url(Text, TextEncoding)Textpublic-
ToBase64Url(Text, TextEncoding, Integer)Textpublic-
ToBase64Url(InStream)Textpublic-
ToBase64(InStream, Boolean, OutStream)public-