public virtual void onCheckSordAccess(EloixClient.IndexServer.IXServerEventsContext ec, EloixClient.IndexServer.Sord sord, EloixClient.IndexServer.SordZ sordZ, int lur, EloixClient.IndexServer.CheckAccessOptions opts, BAsyncResult <bool> asyncResult)
        {
            bool      __byps__ret = default(bool);
            Exception __byps__ex  = null;

            try {
                __byps__ret = onCheckSordAccess(ec, sord, sordZ, lur, opts);
            }
            catch (Exception e) { __byps__ex = e; }
            asyncResult(__byps__ret, __byps__ex);
        }
Beispiel #2
0
        public virtual void onCheckSordAccess(EloixClient.IndexServer.IXServerEventsContext ec, EloixClient.IndexServer.Sord sord, EloixClient.IndexServer.SordZ sordZ, int lur, EloixClient.IndexServer.CheckAccessOptions opts, BAsyncResult <bool> asyncResult)
        {
            BRequest_IXServerEvents_onCheckSordAccess req = new BRequest_IXServerEvents_onCheckSordAccess();

            req.ecValue    = ec;
            req.sordValue  = sord;
            req.sordZValue = sordZ;
            req.lurValue   = lur;
            req.optsValue  = opts;
            transport.sendMethod(req, asyncResult);
        }
 public virtual bool onCheckSordAccess(EloixClient.IndexServer.IXServerEventsContext ec, EloixClient.IndexServer.Sord sord, EloixClient.IndexServer.SordZ sordZ, int lur, EloixClient.IndexServer.CheckAccessOptions opts)
 {
     throw new BException(BExceptionC.UNSUPPORTED_METHOD, "");
 }
Beispiel #4
0
        public virtual bool onCheckSordAccess(EloixClient.IndexServer.IXServerEventsContext ec, EloixClient.IndexServer.Sord sord, EloixClient.IndexServer.SordZ sordZ, int lur, EloixClient.IndexServer.CheckAccessOptions opts)
        {
            BSyncResult <bool> asyncResult = new BSyncResult <bool>();

            onCheckSordAccess(ec, sord, sordZ, lur, opts, BAsyncResultHelper.ToDelegate <bool>(asyncResult));
            return(asyncResult.GetResult());
        }