GetBase64() public method

public GetBase64 ( int srcOffset, byte buffer, int dstOffset, int count ) : void
srcOffset int
buffer byte
dstOffset int
count int
return void
Esempio n. 1
0
 private void GetBase64(byte[] buffer, int offset, int count)
 {
     DiagnosticUtility.DebugAssert(_type == ValueHandleType.Base64, "");
     _bufferReader.GetBase64(_offset, buffer, offset, count);
 }
 void GetBase64(byte[] buffer, int offset, int count)
 {
     Fx.Assert(type == ValueHandleType.Base64, "");
     bufferReader.GetBase64(this.offset, buffer, offset, count);
 }