C# 클래스 RestSharp.Extensions.MiscExtensions

파일 보기 프로젝트 열기: Saambaa/RestSharp

공개 메소드들

메소드 설명
AsString ( this token ) : string

Gets string value from JToken

CopyTo ( this input, Stream output ) : void

Copies bytes from one stream to another

ReadAsBytes ( this input ) : byte[]

Read a stream into a byte array

SaveAs ( this input, string path ) : void

Save a byte array to a file

메소드 상세

AsString() 공개 정적인 메소드

Gets string value from JToken
public static AsString ( this token ) : string
token this
리턴 string

CopyTo() 공개 정적인 메소드

Copies bytes from one stream to another
public static CopyTo ( this input, Stream output ) : void
input this The input stream.
output Stream The output stream.
리턴 void

ReadAsBytes() 공개 정적인 메소드

Read a stream into a byte array
public static ReadAsBytes ( this input ) : byte[]
input this Stream to read
리턴 byte[]

SaveAs() 공개 정적인 메소드

Save a byte array to a file
public static SaveAs ( this input, string path ) : void
input this Bytes to save
path string Full path to save file to
리턴 void