当前位置: 首页>>代码示例>>C#>>正文


C# Encoder.process方法代码示例

本文整理汇总了C#中System.Text.Encoder.process方法的典型用法代码示例。如果您正苦于以下问题:C# Encoder.process方法的具体用法?C# Encoder.process怎么用?C# Encoder.process使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Text.Encoder的用法示例。


在下文中一共展示了Encoder.process方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: encode

        /// <summary>
        /// Base64-encode the given data and return a newly allocated
        /// byte[] with the result.
        /// </summary>
        /// <param name="input">  the data to encode </param>
        /// <param name="offset"> the position within the input array at which to
        ///               start </param>
        /// <param name="len">    the number of bytes of input to encode </param>
        /// <param name="flags">  controls certain features of the encoded output.
        ///               Passing {@code DEFAULT} results in output that
        ///               adheres to RFC 2045. </param>
        public static byte[] encode(byte[] input, int offset, int len, int flags)
        {
            Encoder encoder = new Encoder(flags, null);

            // Compute the exact length of the array we will produce.
            int output_len = len / 3 * 4;

            // Account for the tail of the data and the padding bytes, if any.
            if (encoder.do_padding)
            {
                if (len % 3 > 0)
                {
                    output_len += 4;
                }
            }
            else
            {
                switch (len % 3)
                {
                    case 0:
                        break;
                    case 1:
                        output_len += 2;
                        break;
                    case 2:
                        output_len += 3;
                        break;
                }
            }

            // Account for the newlines, if any.
            if (encoder.do_newline && len > 0)
            {
                output_len += (((len - 1) / (3 * Encoder.LINE_GROUPS)) + 1) * (encoder.do_cr ? 2 : 1);
            }

            encoder.output = new byte[output_len];
            encoder.process(input, offset, len, true);

            Debug.Assert(encoder.op == output_len);

            return encoder.output;
        }
开发者ID:pili-engineering,项目名称:pili-sdk-csharp,代码行数:54,代码来源:Base64.cs


注:本文中的System.Text.Encoder.process方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。