예제 #1
0
 public DispatchContextWrapper(DispatchContextManager owner, Guid dispatchContextId)
 {
     _owner = owner;
     _dispatchContextId = dispatchContextId;
 }
예제 #2
0
 public DispatchContextWrapper(DispatchContextManager owner, Guid dispatchContextId)
 {
     _owner             = owner;
     _dispatchContextId = dispatchContextId;
 }
예제 #3
0
 public DispatchContextWrapper(DispatchContextManager owner, string dispatchContextId)
 {
     if (owner == null) throw new ArgumentNullException("owner");
     _owner = owner;
     _dispatchContextId = dispatchContextId;
 }