ServiceStack.StreamExt.Inflate C# (CSharp) Method

Inflate() public static method

public static Inflate ( this gzBuffer ) : string
gzBuffer this
return string
        public static string Inflate(this byte[] gzBuffer)
        {
            return DeflateProvider.Inflate(gzBuffer);
        }