Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
8answers
2k views

Using IDisposable to unsubscribe events

I have a class that handles events from a WinForms control. Based on what the user is doing, I am deferencing one instance of the class and creating a new one to handle the same event. I need to ...
8
votes
6answers
121 views

C# - Unsubscribe from delegate passed through ref keyword to the subscription method?

I've got the following class: public class Terminal : IDisposable { readonly List<IListener> _listeners; public Terminal(IEnumerable<IListener> listeners) { ...
5
votes
5answers
607 views

Should I unsubscribe from events?

I have 3 questions concerning events: Should I always unsubscribe events that were subscribed? What happens if I do NOT? In the below examples, how would you unsubscribe from the subscribed events? ...
3
votes
8answers
264 views

Why not use email address in unsubscribe link

Give me few reasons why NOT to include email addresses in plain text form for unsubscribe link that gets sent out in our newsletters. Right now it's: ...
2
votes
2answers
33 views

Replying to an Unsubscribed email

I have a quick legal question I suppose. If a user unsubscribes from a mailing list by clicking unsubscribe, would I be allowed to send a confirmation email back to the user confirming their ...
2
votes
2answers
529 views

What is the best way to implement an unsubscribe link for your newsletter?

I am thinking that I create a deactivation code put that in the unsubscribe link along with their user id. Then when a recipient of my newsletter clicks the link, I can look up their user id and see ...
1
vote
1answer
155 views

What gems/plugins can be used for Unsubscribe support in Rails?

What gems/plugins that make it easy to add a tamper-resistant unsubscribe link to the bottom of the email a user can click to prevent receiving email those types of emails? The only thing I could ...
0
votes
1answer
24 views

How to add Unsubscribe link in email sending to multiple users at once

I am sending notification mails to all the registered users in the site with an Unsubscribe link. Currently I am lopping through all users in the db and sending mail to each user. For the Unsubscribe ...
0
votes
1answer
202 views

PRISM and event aggregator

I have a PRISM WPF application; and I have a PatientViewModel that in its constructor subscribes to an event (let's say CultureChangedEvent), and executes an action. In my main view model I have an ...
0
votes
2answers
1k views

Paypal Unsubscribe return url

I have created a paypal Unsubscribe button in Java , when user click on it and after login to paypal account and unsubscribes , the paypal posts on the notifyurl successfully and i am able to update ...
-1
votes
1answer
99 views

Why, when attempting to unsubscribe from an event, is the event handler object not recognised?

This has turned out to be quite a lengthy question, so thank you in advance to all those who give up their time to read it and comment/answer :) Edits This Question has been majorly simplified. ...