Postclic unlimited subscription: promo at SGD 1,36 for 48h with a mandatory first month at SGD 73,99, then SGD 73,99 per month without commitment

Cancel TASK.RUN
in 30 seconds only!
Cancellation service #1 in Singapore
Average rating from reviews

I hereby notify you of my decision to terminate the contract relating to the Task.Run service.
This notification constitutes a firm, clear and unequivocal intention to cancel the contract, effective at the earliest possible date or in accordance with the applicable contractual period.
Please take all necessary measures to:
– cease all billing from the effective date of cancellation;
– confirm in writing the proper processing of this request;
– and, if applicable, send me the final statement or balance confirmation.
This cancellation is addressed to you by certified e-mail. The sending, timestamping and content integrity are established, making it a probative document meeting electronic proof requirements. You therefore have all the necessary elements to proceed with regular processing of this cancellation, in accordance with applicable principles regarding written notification and contractual freedom.
In accordance with personal data protection rules, I also request:
– deletion of all my data not necessary for your legal or accounting obligations;
– closure of any associated personal account;
– and confirmation of actual data deletion according to applicable privacy rights.
I retain a complete copy of this notification as well as proof of sending.
Important warning regarding service limitations
In the interest of transparency and prevention, it is essential to recall the inherent limitations of any dematerialized sending service, even when timestamped, tracked and certified. Guarantees relate to sending and technical proof, but never to the recipient's behavior, diligence or decisions.
Please note, Postclic cannot:
- guarantee that the recipient receives, opens or becomes aware of your e-mail.
- guarantee that the recipient processes, accepts or executes your request.
- guarantee the accuracy or completeness of content written by the user.
- guarantee the validity of an incorrect or outdated address.
- prevent the recipient from contesting the legal scope of the mail.
Cancellation Task.Run: Easy Method
What is Task.Run
Overview
Task.Run is a .NET/C# helper that runs work on the thread pool so you can execute code asynchronously without blocking the UI or main thread.
It is commonly used for CPU-bound or background operations and is cooperative with .NET cancellation primitives rather than forcibly terminating work.
Common uses
Developers use Task.Run to offload compute-heavy work, run background tasks, or wrap synchronous APIs for asynchronous flows.
Task.Run itself is not a subscription or service - it is a programming method that relies on CancellationToken for cancellation behaviour.
How to cancel Task.Run
Programmatic cancellation (recommended)
Cancellation is cooperative: create a CancellationTokenSource and pass its token into your Task.Run delegate or called methods.
Within the task, check token.IsCancellationRequested or call token.ThrowIfCancellationRequested and perform cleanup when cancellation is requested.
Practical steps
- Create a CancellationTokenSource (CTS).
- Pass CTS.Token to Task.Run and to any cancellable methods it calls.
- Inside the task, check token.IsCancellationRequested or use token.ThrowIfCancellationRequested.
- To request cancellation, call CTS.Canceland await or observe the task to handle OperationCanceledException.
- Dispose the CTS when finished to free resources.
What happens when you cancel
Access and execution
When you request cancellation, the task observes the token and should stop cooperatively; cancellation does not forcibly abort threads.
Tasks that honour the token usually transition to Canceled or Faulted and may throw OperationCanceledException when awaited.
Resources and state
Cancellation does not automatically revert state. You must implement cleanup, rollback, or compensation logic inside the task.
If the task does not check the token, it will continue running; always plan for graceful shutdown and resource disposal.
Will I get a refund?
Service vs code-level cancellation
For code-level cancellation (using CancellationToken), refunds are not relevant because Task.Run is a programming construct, not a paid product.
If you are cancelling a paid service or subscription named "Task" or similar, refund rules depend on that provider's policy.
Example refund practice (not Task.Run specific)
- No explicit refund policy for Task.Run in Singapore was located.
- An unrelated example policy (I‑Running.sg) states cancellations before shipping incur a 9% fee, and cancellations after delivery within 7 days incur a 20% restocking fee; refunds are initiated within 14 working days. See I‑Running.sg terms.
Task.Run plans and pricing
Official pricing status
Task.Run as a C# method has no pricing - it is part of the .NET runtime and used in code at no direct cost to developers.
No publicly available Singapore pricing was found for any app or service named "Task.Run" as of early 2026.
How to check pricing
If you are looking for a commercial product called "Task" or similar, check the vendor's official website or store listing for up-to-date pricing.
If you can provide a vendor link or platform (App Store, developer site), further assistance can be provided.
Your consumer rights in Singapore
Cooling-off and returns (general guidance)
Singapore consumer rights vary by product and service. Some goods and services may have cooling-off or return periods set by the seller or by specific regulations.
There is no Task.Run-specific consumer rule; treat service/subscription cancellations according to the provider's published terms.
Practical implications
- Check the provider’s terms for cancellation windows and refund timelines before purchasing a paid service.
- Example policies (non-Task.Run) show refunds processed within 14 working days in some cases; see I‑Running.sg terms for an example.
Customer experiences
Positive signals
Public review data for services named "Task" in Singapore is very limited.
One cited source shows a 5‑star review for a Task-related site, but the overall dataset is small and should be interpreted cautiously. See the Trustpilot entry: Trustpilot - task.com.sg.
Limitations and concerns
The Trustpilot profile for the Task domain appears unclaimed and contains only a single review, so it does not provide a robust quality signal.
When evaluating providers, look for multiple independent reviews and official documentation before relying on claims about refunds or support.
Documentation checklist
Before cancelling (developer/coder)
- Ensure you have source code locations where CancellationToken is passed and handled.
- Save logs, state snapshots, and any identifiers for unfinished operations.
- Document expected cleanup or rollback steps inside the task.
Before cancelling (consumer/service)
- Record order/subscription IDs, payment method, and date of purchase.
- Capture the provider’s cancellation and refund terms (screenshots or links).
- Contact support and keep a copy of any cancellation confirmation for dispute resolution.
Common mistakes
Developer mistakes
Common coding errors include not passing a CancellationToken into Task.Run, assuming cancellation is instantaneous, or failing to handle OperationCanceledException.
Another frequent issue is not releasing resources or not implementing proper cleanup paths, which leads to leaks or inconsistent state after cancellation.
User mistakes
Users sometimes cancel a paid service without checking refund windows or without saving necessary data, which can cause data loss or forfeited fees.
Assuming a provider will automatically refund or refund quickly is risky; always confirm the provider’s stated timelines and fees.
Comparative recap
Summary table
| Feature | Period | Notes |
|---|---|---|
| Code-level cancellation (Task.Run + CancellationToken) | N/A | Cooperative cancellation; implement token checks and cleanup in code. |
| Subscription/service cancellation (example policies) | monthly / annual | Provider-dependent; example fees and refund timelines vary by vendor. |
| Refund processing example (unrelated) | N/A | I‑Running.sg example: refunds initiated within 14 working days; fees may apply. See their terms. |
Notes
The table contrasts programming-level cancellation (no money involved) with service-level cancellation (may involve fees/refunds).
For service-specific questions, consult the vendor’s published terms or support team directly.
After cancelling
Next steps
For code: verify task status, run cleanup, release resources, and add tests to ensure cancellation is handled correctly in future runs.
For services: keep cancellation confirmations, monitor refund timelines, and follow up with provider support if refunds are delayed.
Useful links
- Example provider terms (not Task.Run): I‑Running.sg terms
- Limited public review entry for a Task-related domain: Trustpilot - task.com.sg
- Example app listing (for similarly named products): Task on the App Store
- Pricing example (unrelated): TaskMagic pricing
Address
Registered address
TASK SG PTE. LTD.
22 Sin Ming Lane #06‑76 Singapore 573969
Contact details
If you need to contact the company associated with this address, use the address above and any official contact channels published by the vendor.
For legal or formal notices, include the company name and UEN (if known) to ensure proper routing. UEN (as reported): 202330311C.