Skip to content

Instantly share code, notes, and snippets.

@isawrub
Created August 31, 2015 12:46
Show Gist options
  • Select an option

  • Save isawrub/7ca1d29e95f769f437c1 to your computer and use it in GitHub Desktop.

Select an option

Save isawrub/7ca1d29e95f769f437c1 to your computer and use it in GitHub Desktop.

Check if current data stream is Gzip encoded.

public static bool IsGZip(byte[] arr)
{
return arr.Length >= 2 && arr[0] == 31 && arr[1] == 139;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment