I am currently using KnockOut JS and I have done some research on when a notification will be notified, it will launch a function that looks like this
function FunctionToSubscribe()
{
}
var TestObservable = ko.observableArray([]);
TestObservable.subscribe(FunctionToSubscribe);
I subscribe FunctionToSubscribein this case
im currently thinking is there a way to unsubscribe? how do we do in c #? when events are unsubscribed, who has an idea regarding this ???
source
share