C# Class org.GraphDefined.Vanaheimr.Illias.StreamExtensions

Extensions to the Stream class.
Afficher le fichier Open project: Vanaheimr/Illias

Méthodes publiques

Méthode Description
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.

Method Details

SeekAndCopyTo() public static méthode

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.
Résultat void