C# Class Microsoft.OneDrive.Sdk.ItemChildrenCollectionRequest

The type ItemChildrenCollectionRequest.
Inheritance: BaseRequest, IItemChildrenCollectionRequest
Afficher le fichier Open project: OneDrive/onedrive-sdk-csharp

Méthodes publiques

Méthode 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 ) : IItemChildrenCollectionRequest

Adds the specified expand value to the request.

Filter ( string value ) : IItemChildrenCollectionRequest

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.

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

Constructs a new ItemChildrenCollectionRequest.

OrderBy ( string value ) : IItemChildrenCollectionRequest

Adds the specified orderby value to the request.

Select ( string value ) : IItemChildrenCollectionRequest

Adds the specified select value to the request.

Skip ( int value ) : IItemChildrenCollectionRequest

Adds the specified skip value to the request.

Top ( int value ) : IItemChildrenCollectionRequest

Adds the specified top value to the request.

Method Details

AddAsync() public méthode

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

AddAsync() public méthode

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.
Résultat System.Threading.Tasks.Task

Expand() public méthode

Adds the specified expand value to the request.
public Expand ( string value ) : IItemChildrenCollectionRequest
value string The expand value.
Résultat IItemChildrenCollectionRequest

Filter() public méthode

Adds the specified filter value to the request.
public Filter ( string value ) : IItemChildrenCollectionRequest
value string The filter value.
Résultat IItemChildrenCollectionRequest

GetAsync() public méthode

Gets the collection page.
public GetAsync ( ) : System.Threading.Tasks.Task
Résultat System.Threading.Tasks.Task

GetAsync() public méthode

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

ItemChildrenCollectionRequest() public méthode

Constructs a new ItemChildrenCollectionRequest.
public ItemChildrenCollectionRequest ( 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.
Résultat System

OrderBy() public méthode

Adds the specified orderby value to the request.
public OrderBy ( string value ) : IItemChildrenCollectionRequest
value string The orderby value.
Résultat IItemChildrenCollectionRequest

Select() public méthode

Adds the specified select value to the request.
public Select ( string value ) : IItemChildrenCollectionRequest
value string The select value.
Résultat IItemChildrenCollectionRequest

Skip() public méthode

Adds the specified skip value to the request.
public Skip ( int value ) : IItemChildrenCollectionRequest
value int The skip value.
Résultat IItemChildrenCollectionRequest

Top() public méthode

Adds the specified top value to the request.
public Top ( int value ) : IItemChildrenCollectionRequest
value int The top value.
Résultat IItemChildrenCollectionRequest