Пример #1
0
        public virtual void userReport(EloixClient.Indexserver.system.SystemInfo si, BAsyncResult <EloixClient.Indexserver.system.UserReport> asyncResult)
        {
            BRequest_SystemInformation_userReport req = new BRequest_SystemInformation_userReport();

            req.siValue = si;
            transport.sendMethod(req, asyncResult);
        }
Пример #2
0
        public virtual void countDocsInStorePath(EloixClient.Indexserver.system.SystemInfo si, BAsyncResult <EloixClient.Indexserver.system.SystemReport> asyncResult)
        {
            BRequest_SystemInformation_countDocsInStorePath req = new BRequest_SystemInformation_countDocsInStorePath();

            req.siValue = si;
            transport.sendMethod(req, asyncResult);
        }
Пример #3
0
        public virtual EloixClient.Indexserver.system.UserReport userReport(EloixClient.Indexserver.system.SystemInfo si)
        {
            BSyncResult <EloixClient.Indexserver.system.UserReport> asyncResult = new BSyncResult <EloixClient.Indexserver.system.UserReport>();

            userReport(si, BAsyncResultHelper.ToDelegate <EloixClient.Indexserver.system.UserReport>(asyncResult));
            return(asyncResult.GetResult());
        }
Пример #4
0
        public virtual EloixClient.Indexserver.system.SystemReport countDocsInStorePath(EloixClient.Indexserver.system.SystemInfo si)
        {
            BSyncResult <EloixClient.Indexserver.system.SystemReport> asyncResult = new BSyncResult <EloixClient.Indexserver.system.SystemReport>();

            countDocsInStorePath(si, BAsyncResultHelper.ToDelegate <EloixClient.Indexserver.system.SystemReport>(asyncResult));
            return(asyncResult.GetResult());
        }