DeleteVideoAsync() public method

public DeleteVideoAsync ( string randname ) : void
randname string
return void
        private void BtDeleteVideoClick(object sender, RoutedEventArgs e)
        {
            App app = Application.Current as App;

            if (app == null)
                return;

            var client = new VideosServiceClient(app.EsbUsername, app.EsbPassword, app.EsbAccessKey);

            client.DeleteVideoAsync(this.tb_VideoRandnameForDeleteVideo.Text);

            this.tblock_Result.Text = "SUCCESS";
        }