How To Setting Up A Subscription

<< Back to the .Networking page

This code is the general style for setting up a subscription:

this.sub.BeginInit();
this.sub.Pattern = "/path";
this.sub.Dictionary = this.SD;
this.sub.Notified += new SubscriptionEventHandler(sub_Notified);
this.sub.EndInit();