public virtual void onFindSordsResult(EloixClient.IndexServer.IXServerEventsContext ec, EloixClient.IndexServer.FindInfo findInfo, EloixClient.IndexServer.SordZ sordZ, EloixClient.IndexServer.FindResult findResult, BAsyncResult <Object> asyncResult)
        {
            Object    __byps__ret = default(Object);
            Exception __byps__ex  = null;

            try {
                onFindSordsResult(ec, findInfo, sordZ, findResult);
            }
            catch (Exception e) { __byps__ex = e; }
            asyncResult(__byps__ret, __byps__ex);
        }
Example #2
0
        public virtual void onFindSordsResult(EloixClient.IndexServer.IXServerEventsContext ec, EloixClient.IndexServer.FindInfo findInfo, EloixClient.IndexServer.SordZ sordZ, EloixClient.IndexServer.FindResult findResult, BAsyncResult <Object> asyncResult)
        {
            BRequest_IXServerEvents_onFindSordsResult req = new BRequest_IXServerEvents_onFindSordsResult();

            req.ecValue         = ec;
            req.findInfoValue   = findInfo;
            req.sordZValue      = sordZ;
            req.findResultValue = findResult;
            transport.sendMethod(req, asyncResult);
        }
 public virtual void onFindSordsResult(EloixClient.IndexServer.IXServerEventsContext ec, EloixClient.IndexServer.FindInfo findInfo, EloixClient.IndexServer.SordZ sordZ, EloixClient.IndexServer.FindResult findResult)
 {
     throw new BException(BExceptionC.UNSUPPORTED_METHOD, "");
 }
Example #4
0
        public virtual void onFindSordsResult(EloixClient.IndexServer.IXServerEventsContext ec, EloixClient.IndexServer.FindInfo findInfo, EloixClient.IndexServer.SordZ sordZ, EloixClient.IndexServer.FindResult findResult)
        {
            BSyncResult <Object> asyncResult = new BSyncResult <Object>();

            onFindSordsResult(ec, findInfo, sordZ, findResult, BAsyncResultHelper.ToDelegate <Object>(asyncResult));
            asyncResult.GetResult();
        }