Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(C# UWP/WinRT) Empty TrashPermanently deletes all of the user's trashed files.
bool success = true; // It requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // This example uses a previously obtained access token having permission for the // Google Drive scope. Chilkat.AuthGoogle gAuth = new Chilkat.AuthGoogle(); gAuth.AccessToken = "GOOGLE-DRIVE-ACCESS-TOKEN"; Chilkat.Rest rest = new Chilkat.Rest(); // Connect using TLS. bool bAutoReconnect = true; success = await rest.ConnectAsync("www.googleapis.com",443,true,bAutoReconnect); // Provide the authentication credentials (i.e. the access token) rest.SetAuthGoogle(gAuth); string jsonResponse = await rest.FullRequestNoBodyAsync("DELETE","/drive/v3/files/trash"); if (rest.LastMethodSuccess != true) { Debug.WriteLine(rest.LastErrorText); return; } // A successful response will have a status code equal to 204 and the response body is empty. // (If not successful, then there should be a JSON response body with information..) if (rest.ResponseStatusCode != 204) { Debug.WriteLine("response status code = " + Convert.ToString(rest.ResponseStatusCode)); Debug.WriteLine("response status text = " + rest.ResponseStatusText); Debug.WriteLine("response header: " + rest.ResponseHeader); Debug.WriteLine("response JSON: " + jsonResponse); return; } Debug.WriteLine("Trash Emptied!"); |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.