RangeSort-RessourcentypRangeSort resource type
-
- 2 Minuten Lesedauer
-
Verwaltet Sortiervorgänge für Range-Objekte.Manages sorting operations on Range objects.
MethodenMethods
MethodeMethod |
RückgabetypReturn Type |
BeschreibungDescription |
ApplyApply |
KeineNone |
Führt einen Sortiervorgang aus.Perform a sort operation. |
EigenschaftenProperties
KeineNone
BeziehungenRelationships
KeineNone
JSON-DarstellungJSON representation
Es folgt eine JSON-Darstellung der Ressource.Here is a JSON representation of the resource.
{
}
AnforderungRequest
Nachfolgend sehen Sie ein Beispiel der Anforderung.Here is an example of the request.
GET https://graph.microsoft.com/v1.0/me/drive/items/{id}/workbook/names/{name}/range/sort
MSHTTPClient *httpClient = [MSClientFactory createHTTPClientWithAuthenticationProvider:authenticationProvider];
NSString *MSGraphBaseURL = @"https://graph.microsoft.com/v1.0/";
NSMutableURLRequest *urlRequest = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:[MSGraphBaseURL stringByAppendingString:@"/me/drive/items/{id}/workbook/names/{name}/range/sort"]]];
[urlRequest setHTTPMethod:@"GET"];
MSURLSessionDataTask *meDataTask = [httpClient dataTaskWithRequest:urlRequest
completionHandler: ^(NSData *data, NSURLResponse *response, NSError *nserror) {
MSGraphWorkbookRangeSort *workbookRangeSort = [[MSGraphWorkbookRangeSort alloc] initWithData:data error:&nserror];
}];
[meDataTask execute];
In der SDK-Dokumentation finden Sie Informationen zum Hinzufügen des SDK zu Ihrem Projekt und zum Erstellen einer authProvider -Instanz.Read the SDK documentation for details on how to add the SDK to your project and create an authProvider instance.
AntwortResponse
Nachfolgend sehen Sie ein Beispiel der Antwort.Here is an example of the response.
HTTP/1.1 200 OK
Content-Type: application/json
{
}