C# Class Microsoft.OneDrive.Sdk.ShareItemsCollectionRequest

The type ShareItemsCollectionRequest.
Inheritance: BaseRequest, IShareItemsCollectionRequest
ファイルを表示 Open project: OneDrive/onedrive-sdk-csharp

Public Methods

Method Description
AddAsync ( Item item ) : System.Threading.Tasks.Task

Adds the specified Item to the collection via POST.

AddAsync ( Item item, CancellationToken cancellationToken ) : System.Threading.Tasks.Task

Adds the specified Item to the collection via POST.

Expand ( string value ) : IShareItemsCollectionRequest

Adds the specified expand value to the request.

Filter ( string value ) : IShareItemsCollectionRequest

Adds the specified filter value to the request.

GetAsync ( ) : System.Threading.Tasks.Task

Gets the collection page.

GetAsync ( CancellationToken cancellationToken ) : System.Threading.Tasks.Task

Gets the collection page.

OrderBy ( string value ) : IShareItemsCollectionRequest

Adds the specified orderby value to the request.

Select ( string value ) : IShareItemsCollectionRequest

Adds the specified select value to the request.

ShareItemsCollectionRequest ( string requestUrl, IBaseClient client, IEnumerable options ) : System

Constructs a new ShareItemsCollectionRequest.

Skip ( int value ) : IShareItemsCollectionRequest

Adds the specified skip value to the request.

Top ( int value ) : IShareItemsCollectionRequest

Adds the specified top value to the request.

Method Details

AddAsync() public method

Adds the specified Item to the collection via POST.
public AddAsync ( Item item ) : System.Threading.Tasks.Task
item Item The Item to add.
return System.Threading.Tasks.Task

AddAsync() public method

Adds the specified Item to the collection via POST.
public AddAsync ( Item item, CancellationToken cancellationToken ) : System.Threading.Tasks.Task
item Item The Item to add.
cancellationToken System.Threading.CancellationToken The for the request.
return System.Threading.Tasks.Task

Expand() public method

Adds the specified expand value to the request.
public Expand ( string value ) : IShareItemsCollectionRequest
value string The expand value.
return IShareItemsCollectionRequest

Filter() public method

Adds the specified filter value to the request.
public Filter ( string value ) : IShareItemsCollectionRequest
value string The filter value.
return IShareItemsCollectionRequest

GetAsync() public method

Gets the collection page.
public GetAsync ( ) : System.Threading.Tasks.Task
return System.Threading.Tasks.Task

GetAsync() public method

Gets the collection page.
public GetAsync ( CancellationToken cancellationToken ) : System.Threading.Tasks.Task
cancellationToken System.Threading.CancellationToken The for the request.
return System.Threading.Tasks.Task

OrderBy() public method

Adds the specified orderby value to the request.
public OrderBy ( string value ) : IShareItemsCollectionRequest
value string The orderby value.
return IShareItemsCollectionRequest

Select() public method

Adds the specified select value to the request.
public Select ( string value ) : IShareItemsCollectionRequest
value string The select value.
return IShareItemsCollectionRequest

ShareItemsCollectionRequest() public method

Constructs a new ShareItemsCollectionRequest.
public ShareItemsCollectionRequest ( string requestUrl, IBaseClient client, IEnumerable options ) : System
requestUrl string The URL for the built request.
client IBaseClient The for handling requests.
options IEnumerable Query and header option name value pairs for the request.
return System

Skip() public method

Adds the specified skip value to the request.
public Skip ( int value ) : IShareItemsCollectionRequest
value int The skip value.
return IShareItemsCollectionRequest

Top() public method

Adds the specified top value to the request.
public Top ( int value ) : IShareItemsCollectionRequest
value int The top value.
return IShareItemsCollectionRequest