WriteObjectPart() private method

private WriteObjectPart ( long id, long objOffset, byte buffer, int off, int length ) : void
id long
objOffset long
buffer byte
off int
length int
return void
Ejemplo n.º 1
0
            public void Write(long offset, byte[] buffer, int length)
            {
                if (IsComplete)
                {
                    throw new IOException("The object is complete and cannot be written.");
                }

                CurrentSize += length;
                store.WriteObjectPart(Id.Id, offset, buffer, 0, length);
            }