System.Xml.XmlBufferReader.GetBase64 C# (CSharp) Method

GetBase64() public method

public GetBase64 ( int srcOffset, byte buffer, int dstOffset, int count ) : void
srcOffset int
buffer byte
dstOffset int
count int
return void
        public void GetBase64(int srcOffset, byte[] buffer, int dstOffset, int count)
        {
            System.Buffer.BlockCopy(_buffer, srcOffset, buffer, dstOffset, count);
        }

Usage Example

Esempio n. 1
0
 private void GetBase64(byte[] buffer, int offset, int count)
 {
     DiagnosticUtility.DebugAssert(_type == ValueHandleType.Base64, "");
     _bufferReader.GetBase64(_offset, buffer, offset, count);
 }
All Usage Examples Of System.Xml.XmlBufferReader::GetBase64