You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@ -0,0 +1,33 @@
|
||||
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace System.Xml {
|
||||
internal static partial class BinHexEncoder {
|
||||
|
||||
internal static async Task EncodeAsync( byte[] buffer, int index, int count, XmlWriter writer ) {
|
||||
if ( buffer == null ) {
|
||||
throw new ArgumentNullException( "buffer" );
|
||||
}
|
||||
if ( index < 0 ) {
|
||||
throw new ArgumentOutOfRangeException( "index" );
|
||||
}
|
||||
if ( count < 0 ) {
|
||||
throw new ArgumentOutOfRangeException( "count" );
|
||||
}
|
||||
if ( count > buffer.Length - index ) {
|
||||
throw new ArgumentOutOfRangeException( "count" );
|
||||
}
|
||||
|
||||
char[] chars = new char[ ( count * 2 ) < CharsChunkSize ? ( count * 2 ) : CharsChunkSize ];
|
||||
int endIndex = index + count;
|
||||
while ( index < endIndex ) {
|
||||
int cnt = ( count < CharsChunkSize/2 ) ? count : CharsChunkSize/2;
|
||||
int charCount = Encode( buffer, index, cnt, chars );
|
||||
await writer.WriteRawAsync( chars, 0, charCount ).ConfigureAwait(false);
|
||||
index += cnt;
|
||||
count -= cnt;
|
||||
}
|
||||
}
|
||||
|
||||
} // class
|
||||
} // namespace
|
Reference in New Issue
Block a user