C# Class Qiniu.RSF.RSFClient

RS Fetch
Inheritance: Qiniu.Auth.QiniuAuthClient
Show file Open project: JuniperPhoton/QiniuUWP Class Usage Examples

Public Methods

Method Description
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

Method Details

Init() public method

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

ListPrefix() public method

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. ///
return Task

Next() public method

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>
return Task>

RSFClient() public method

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