Attempts to detect a compressed stream.
Namespace:
Extreme.Data.R
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static bool TryGetCompressedStream(
Stream stream,
out Stream compressedStream
)
Public Shared Function TryGetCompressedStream (
stream As Stream,
<OutAttribute> ByRef compressedStream As Stream
) As Boolean
public:
static bool TryGetCompressedStream(
Stream^ stream,
[OutAttribute] Stream^% compressedStream
)
static member TryGetCompressedStream :
stream : Stream *
compressedStream : Stream byref -> bool
Parameters
- stream
- Type: System.IOStream
The stream that contains the data. - compressedStream
- Type: System.IOStream
On successful return,
the compressed stream.
Return Value
Type:
Boolean if a compressed stream
was detected; otherwise
.
Reference