Method | Description | |
---|---|---|
WriteTo ( this source, Stream target ) : Stream |
Writes the input stream to the target stream.
|
|
WriteTo ( this source, Stream target ) : void |
Writes the input stream to the target stream.
|
|
WriteTo ( this source, string targetFile, bool append = false ) : void |
Writes the input stream to the target file.
|
public static WriteTo ( this source, Stream target ) : Stream | ||
source | this | |
target | Stream | |
return | Stream |
public static WriteTo ( this source, Stream target ) : void | ||
source | this | The source stream to write to the target stream. |
target | Stream | The target stream to write to. |
return | void |
public static WriteTo ( this source, string targetFile, bool append = false ) : void | ||
source | this | The source stream to write to the target file. |
targetFile | string | The target file to write to. |
append | bool | If set to |
return | void |