C# 클래스 Qiniu.RSF.RSFClient

RS Fetch
상속: Qiniu.Auth.QiniuAuthClient
파일 보기 프로젝트 열기: JuniperPhoton/QiniuUWP 1 사용 예제들

공개 메소드들

메소드 설명
Init ( ) : void

call this func before invoke Next()

ListPrefix ( string bucketName, string prefix = "", string markerIn = "", int limit ) : Task

The origin Fetch interface,we recomment to use Next().

Next ( ) : Task>

Next. public static void List (string bucket) { RSF.RSFClient rsf = new Qiniu.RSF.RSFClient(bucket); rsf.Prefix = "test"; rsf.Limit = 100; List items; while ((items=rsf.Next())!=null) { } }s

RSFClient ( string bucketName ) : System

RS Fetch Client

메소드 상세

Init() 공개 메소드

call this func before invoke Next()
public Init ( ) : void
리턴 void

ListPrefix() 공개 메소드

The origin Fetch interface,we recomment to use Next().
public ListPrefix ( string bucketName, string prefix = "", string markerIn = "", int limit ) : Task
bucketName string /// Bucket name. ///
prefix string /// Prefix. ///
markerIn string /// Marker in. ///
limit int /// Limit. ///
리턴 Task

Next() 공개 메소드

Next. public static void List (string bucket) { RSF.RSFClient rsf = new Qiniu.RSF.RSFClient(bucket); rsf.Prefix = "test"; rsf.Limit = 100; List items; while ((items=rsf.Next())!=null) { } }s
public Next ( ) : Task>
리턴 Task>

RSFClient() 공개 메소드

RS Fetch Client
public RSFClient ( string bucketName ) : System
bucketName string 七牛云存储空间名称
리턴 System