Ejemplo n.º 1
0
 internal void UnbindRpc(ref MessageRpc rpc)
 {
     if (rpc.InstanceContext == this && rpc.SuccessfullyBoundInstance)
     {
         _channels.DecrementActivityCount();
     }
 }
 internal BufferedReceiveMessageProperty(ref MessageRpc rpc)
 {
     this.RequestContext = new BufferedRequestContext(rpc.RequestContext);
     rpc.RequestContext  = this.RequestContext;
     this.Notification   = rpc.InvokeNotification;
 }
 internal ImpersonateOnSerializingReplyMessageProperty(ref MessageRpc rpc)
 {
     this.rpc = rpc;
 }
 internal ImpersonateOnSerializingReplyMessageProperty(MessageRpc rpc)
 {
     _rpc = rpc;
 }
Ejemplo n.º 5
0
 internal void BindRpc(ref MessageRpc rpc)
 {
     ThrowIfClosed();
     _channels.IncrementActivityCount();
     rpc.SuccessfullyBoundInstance = true;
 }