Ejemplo n.º 1
0
 public DispatchContextWrapper(DispatchContextManager owner, Guid dispatchContextId)
 {
     _owner = owner;
     _dispatchContextId = dispatchContextId;
 }
Ejemplo n.º 2
0
 public DispatchContextWrapper(DispatchContextManager owner, Guid dispatchContextId)
 {
     _owner             = owner;
     _dispatchContextId = dispatchContextId;
 }
Ejemplo n.º 3
0
 public DispatchContextWrapper(DispatchContextManager owner, string dispatchContextId)
 {
     if (owner == null) throw new ArgumentNullException("owner");
     _owner = owner;
     _dispatchContextId = dispatchContextId;
 }