Exemplo n.º 1
0
        private View DoGetView(string remotingEndpointUrl)
        {
            RemotingEndpoint remotingEndpoint = GetRemoteEndpoint(remotingEndpointUrl);

            GetViewDelegate getViewDelegate = remotingEndpoint.GetView;
            var             asyncResult     = getViewDelegate.BeginInvoke(null, null);

            return(getViewDelegate.EndInvoke(asyncResult));
        }
Exemplo n.º 2
0
 public TableCellDelegate(GetViewDelegate getView)
 {
     this.getView = getView;
 }