C# Class ServiceStack.Support.NetGZipProvider

Inheritance: IGZipProvider
Exibir arquivo Open project: ServiceStack/ServiceStack

Public Methods

Method Description
GUnzip ( byte gzBuffer ) : string
GUnzipBytes ( byte gzBuffer ) : byte[]
GUnzipStream ( Stream gzStream ) : Stream
GZip ( byte buffer ) : byte[]
GZip ( string text ) : byte[]
GZipStream ( Stream outputStream ) : Stream

Method Details

GUnzip() public method

public GUnzip ( byte gzBuffer ) : string
gzBuffer byte
return string

GUnzipBytes() public method

public GUnzipBytes ( byte gzBuffer ) : byte[]
gzBuffer byte
return byte[]

GUnzipStream() public method

public GUnzipStream ( Stream gzStream ) : Stream
gzStream System.IO.Stream
return System.IO.Stream

GZip() public method

public GZip ( byte buffer ) : byte[]
buffer byte
return byte[]

GZip() public method

public GZip ( string text ) : byte[]
text string
return byte[]

GZipStream() public method

public GZipStream ( Stream outputStream ) : Stream
outputStream System.IO.Stream
return System.IO.Stream