메소드 | 설명 | |
---|---|---|
CompressAsync ( this compressor, byte plain ) : Task |
비동기 방식으로 지정한 정보를 압축합니다.
|
|
CompressStream ( this compressor, |
스트림을 압축한다.
|
|
CompressStreamAsync ( this compressor, |
스트림을 압축한다.
|
|
CompressString ( this compressor, string text ) : string |
지정된 문자열을 압축하고, 압축된 데이타를 Base64 인코딩으로 변환하여 반환한다.
|
|
CompressStringAsync ( this compressor, string text ) : Task |
지정된 문자열을 압축하고, 압축된 데이타를 Base64 인코딩으로 변환하여 반환한다.
|
|
DecompressAsync ( this compressor, byte cipher ) : Task |
비동기 방식으로 압축된 데이타를 복원합니다.
|
|
DecompressStream ( this compressor, |
압축된 스트림을 복원한다.
|
|
DecompressStreamAsync ( this compressor, |
압축된 스트림을 복원한다.
|
|
DecompressString ( this compressor, string text ) : string |
Base64로 인코딩된 압축 문자열을 복원하여 Encoding.UTF8 문자열로 반환한다.
|
|
DecompressStringAsync ( this compressor, string text ) : Task |
Base64로 인코딩된 압축 문자열을 복원하여 Encoding.UTF8 문자열로 반환한다.
|
public static CompressAsync ( this compressor, byte plain ) : Task |
||
compressor | this | |
plain | byte | 압축할 데이터 |
리턴 | Task |
public static CompressStream ( this compressor, |
||
compressor | this | |
stream | 압축할 |
|
리턴 |
public static CompressStreamAsync ( this compressor, |
||
compressor | this | |
stream | 압축할 |
|
리턴 | Task |
public static CompressString ( this compressor, string text ) : string | ||
compressor | this | |
text | string | 압축할 문자열 |
리턴 | string |
public static CompressStringAsync ( this compressor, string text ) : Task |
||
compressor | this | |
text | string | 압축할 문자열 |
리턴 | Task |
public static DecompressAsync ( this compressor, byte cipher ) : Task |
||
compressor | this | |
cipher | byte | 압축 복원할 데이터 |
리턴 | Task |
public static DecompressStream ( this compressor, |
||
compressor | this | |
stream | 압축된 Stream | |
리턴 |
public static DecompressStreamAsync ( this compressor, |
||
compressor | this | |
stream | 압축된 Stream | |
리턴 | Task |
public static DecompressString ( this compressor, string text ) : string | ||
compressor | this | |
text | string | 압축 복원을 할 문자열 |
리턴 | string |
public static DecompressStringAsync ( this compressor, string text ) : Task |
||
compressor | this | |
text | string | 압축 복원을 할 문자열 |
리턴 | Task |