C# Class Microsoft.OneDrive.Sdk.ItemDeltaRequest

The type ItemDeltaRequest.
Inheritance: BaseRequest, IItemDeltaRequest
Mostra file Open project: OneDrive/onedrive-sdk-csharp Class Usage Examples

Public Methods

Method Description
Expand ( string value ) : IItemDeltaRequest

Adds the specified expand value to the request.

Filter ( string value ) : IItemDeltaRequest

Adds the specified filter value to the request.

GetAsync ( ) : System.Threading.Tasks.Task

Issues the GET request.

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

Issues the GET request.

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

Constructs a new ItemDeltaRequest.

OrderBy ( string value ) : IItemDeltaRequest

Adds the specified orderby value to the request.

Select ( string value ) : IItemDeltaRequest

Adds the specified select value to the request.

Skip ( int value ) : IItemDeltaRequest

Adds the specified skip value to the request.

Top ( int value ) : IItemDeltaRequest

Adds the specified top value to the request.

Method Details

Expand() public method

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

Filter() public method

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

GetAsync() public method

Issues the GET request.
public GetAsync ( ) : System.Threading.Tasks.Task
return System.Threading.Tasks.Task

GetAsync() public method

Issues the GET request.
public GetAsync ( CancellationToken cancellationToken ) : System.Threading.Tasks.Task
cancellationToken CancellationToken The for the request.
return System.Threading.Tasks.Task

ItemDeltaRequest() public method

Constructs a new ItemDeltaRequest.
public ItemDeltaRequest ( string requestUrl, IBaseClient client, IEnumerable options ) : System
requestUrl string
client IBaseClient
options IEnumerable
return System

OrderBy() public method

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

Select() public method

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

Skip() public method

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

Top() public method

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