RemoveIncompleteUpload() public method

Remove incomplete uploads from a given bucket and objectName
public RemoveIncompleteUpload ( string bucketName, string objectName ) : void
bucketName string Bucket to remove incomplete uploads from
objectName string Key to remove incomplete uploads from
return void
 static int Main(string[] args)
 {
     var client = new MinioClient("https://s3.amazonaws.com", "ACCESSKEY", "SECRETKEY");
     client.RemoveIncompleteUpload("bucketName", "objectName");
     return 0;
 }
 static int Main()
 {
     /// Note: s3 AccessKey and SecretKey needs to be added in App.config file
     /// See instructions in README.md on running examples for more information.
     var client = new MinioClient("s3.amazonaws.com", ConfigurationManager.AppSettings["s3AccessKey"],
                                  ConfigurationManager.AppSettings["s3SecretKey"]);
     client.RemoveIncompleteUpload("my-bucketname", "my-objectname");
     return 0;
 }