Unsubscribe Method
Removes an existing subscription.
Syntax
public void unsubscribe(String id);
Remarks
This method removes an existing subscription identified by the given Id, unsubscribing the component from the destination associated with the subscription.
Once unsubscribed, the relevant item will be removed from the Subscriptions collection property and the Unsubscribed event will fire.
Basic Subscriptions Example
stomp1.OnMessageIn += (s, e) => {
Console.WriteLine("Received message from destination '" + e.Destination + "':");
Console.WriteLine(e.Data);
};
string subId = stomp1.Subscribe("test/a/b", false);
// Some time later...
stomp1.Unsubscribe(subId);