C# Класс org.GraphDefined.Vanaheimr.Illias.StreamExtensions

Extensions to the Stream class.
Показать файл Открыть проект

Открытые методы

Метод Описание
SeekAndCopyTo ( this SourceStream, Stream DestinationStream, Int32 SkipFromBeginning ) : void

Reads the bytes from the given stream and writes them to another stream. May skip the given number of bytes.

Описание методов

SeekAndCopyTo() публичный статический Метод

Reads the bytes from the given stream and writes them to another stream. May skip the given number of bytes.
public static SeekAndCopyTo ( this SourceStream, Stream DestinationStream, Int32 SkipFromBeginning ) : void
SourceStream this The source stream.
DestinationStream Stream The destination stream.
SkipFromBeginning System.Int32 Anumber of bytes to skip from the beginning of the source stream.
Результат void