ServiceStack.StreamExt.GZip C# (CSharp) Method

GZip() public static method

public static GZip ( this text ) : byte[]
text this
return byte[]
        public static byte[] GZip(this string text)
        {
            return GZipProvider.GZip(text);
        }