public virtual void onAfterLogin(EloixClient.IndexServer.IXServerEventsContext ec, String userName, EloixClient.IndexServer.LoginScriptOptions opts, BAsyncResult <Object> asyncResult)
        {
            Object    __byps__ret = default(Object);
            Exception __byps__ex  = null;

            try {
                onAfterLogin(ec, userName, opts);
            }
            catch (Exception e) { __byps__ex = e; }
            asyncResult(__byps__ret, __byps__ex);
        }
Example #2
0
        public virtual void onAfterLogin(EloixClient.IndexServer.IXServerEventsContext ec, String userName, EloixClient.IndexServer.LoginScriptOptions opts, BAsyncResult <Object> asyncResult)
        {
            BRequest_IXServerEvents_onAfterLogin req = new BRequest_IXServerEvents_onAfterLogin();

            req.ecValue       = ec;
            req.userNameValue = userName;
            req.optsValue     = opts;
            transport.sendMethod(req, asyncResult);
        }
 public virtual void onAfterLogin(EloixClient.IndexServer.IXServerEventsContext ec, String userName, EloixClient.IndexServer.LoginScriptOptions opts)
 {
     throw new BException(BExceptionC.UNSUPPORTED_METHOD, "");
 }
Example #4
0
        public virtual void onAfterLogin(EloixClient.IndexServer.IXServerEventsContext ec, String userName, EloixClient.IndexServer.LoginScriptOptions opts)
        {
            BSyncResult <Object> asyncResult = new BSyncResult <Object>();

            onAfterLogin(ec, userName, opts, BAsyncResultHelper.ToDelegate <Object>(asyncResult));
            asyncResult.GetResult();
        }