void OnDetach(Detach detach) { Link link = this.GetLink(detach.Handle); if (link.OnDetach(detach)) { lock (this.ThisLock) { this.localLinks[link.Handle] = null; this.remoteLinks[detach.Handle] = null; } } }
void OnDetach(Detach detach) { Link link = this.GetLink(detach.Handle); link.OnDetach(detach); }