Editar

Partilhar via


EditableStream Class

Definition

The class representing MIP SDK EditableStream that add in place memory operations.

public abstract class EditableStream : System.IO.Stream
type EditableStream = class
    inherit Stream
Public MustInherit Class EditableStream
Inherits Stream
Inheritance
EditableStream

Constructors

EditableStream()

Methods

Delete(Int32)

Deletes up to the specified number of bytes at the current position in the stream; the requested number of bytes may not be deleted. Bytes to the right of the removed bytes will be shifted left.

Insert(Byte[], Int32, Int32)

Inserts the specified number of bytes at the current position in the stream. Bytes to the right of the current position will be shifted right.

Update(Byte[], Int32, Int32, Int32)

Replaces a segment in the middle of the stream with provided bytes. Effectively the same as Write except that the number of bytes deleted may not match the number inserted.

Applies to