Exemplo n.º 1
0
 /// <summary>
 /// Removes the parent child relationship
 /// </summary>
 public void ClearParent()
 {
     _parent = null;
     _field  = UnsetPath;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Used to establish a parent child relationship between a message and child message
 /// </summary>
 /// <param name="parent"></param>
 /// <param name="path"></param>
 public virtual void SetParent(EventContext parent, EventPath path)
 {
     Context.SetParent(parent, path);
 }
Exemplo n.º 3
0
 /// <summary>
 /// Used to establish a parent child relationship between a message and child message.
 /// This is for internal use only.
 /// </summary>
 public virtual void SetParent(EventContext parent, int field)
 {
     Context.SetParent(parent, field);
 }