Exemplo n.º 1
0
 public Notification(Component aSender, string aName, NCData aData)
 {
     sender = aSender; name = aName; data = aData;
 }
Exemplo n.º 2
0
 public void PostNotification(Component aSender, string aName, NCData aData)
 {
     PostNotification(new Notification(aSender, aName, aData));
 }
Exemplo n.º 3
0
 public Notification(Component aSender, string aName)
 {
     sender = aSender; name = aName; data = null;
 }