Table of Contents

Class StreamMixins

Namespace
System
Assembly
Akavache.Core.dll

A set of extension methods associated with the Stream class.

public static class StreamMixins
Inheritance
StreamMixins

Methods

WriteAsyncRx(Stream, byte[], int, int)

Writes to a stream and returns a observable.

public static IObservable<Unit> WriteAsyncRx(this Stream blobCache, byte[] data, int start, int length)

Parameters

blobCache Stream

The stream to write to.

data byte[]

The data to write.

start int

The start location where to write from.

length int

The length in bytes to read.

Returns

IObservable<Unit>

An observable that signals when the write operation has completed.