C# 클래스 SharpRaven.Utilities.GzipUtil

파일 보기 프로젝트 열기: getsentry/raven-csharp

공개 메소드들

메소드 설명
Write ( string json, Stream stream ) : void

Compress a JSON string with base-64 encoded gzip compressed string.

WriteAsync ( string json, Stream stream ) : Task

Compress a JSON string with base-64 encoded gzip compressed string.

메소드 상세

Write() 공개 정적인 메소드

Compress a JSON string with base-64 encoded gzip compressed string.
public static Write ( string json, Stream stream ) : void
json string The JSON to write.
stream Stream The stream.
리턴 void

WriteAsync() 공개 정적인 메소드

Compress a JSON string with base-64 encoded gzip compressed string.
public static WriteAsync ( string json, Stream stream ) : Task
json string The JSON to write.
stream Stream The stream.
리턴 Task