Esempio n. 1
0
 public FindUserInfo(String @name, String @desc, EloixClient.IndexServer.KeyValue @property, EloixClient.IndexServer.KeyValue @ldapProperty, bool @onlyUsers, bool @onlyGroups, bool @returnUserInfoMap, String[] @userIds, EloixClient.IndexServer.CheckoutUsersZ @checkoutUsersZ, int @hasFlags, int @hasNotFlags, int @hasFlags2, int @hasNotFlags2)
 {
     this.nameValue              = @name;
     this.descValue              = @desc;
     this.propertyValue          = @property;
     this.ldapPropertyValue      = @ldapProperty;
     this.onlyUsersValue         = @onlyUsers;
     this.onlyGroupsValue        = @onlyGroups;
     this.returnUserInfoMapValue = @returnUserInfoMap;
     this.userIdsValue           = @userIds;
     this.checkoutUsersZValue    = @checkoutUsersZ;
     this.hasFlagsValue          = @hasFlags;
     this.hasNotFlagsValue       = @hasNotFlags;
     this.hasFlags2Value         = @hasFlags2;
     this.hasNotFlags2Value      = @hasNotFlags2;
 }
        public virtual void getUserNames(EloixClient.IndexServer.IXServerEventsContext ec, String[] ids, EloixClient.IndexServer.CheckoutUsersZ checkoutUsersZ, BAsyncResult <EloixClient.IndexServer.UserName[]> asyncResult)
        {
            EloixClient.IndexServer.UserName[] __byps__ret = default(EloixClient.IndexServer.UserName[]);
            Exception __byps__ex = null;

            try {
                __byps__ret = getUserNames(ec, ids, checkoutUsersZ);
            }
            catch (Exception e) { __byps__ex = e; }
            asyncResult(__byps__ret, __byps__ex);
        }
Esempio n. 3
0
        public virtual void getUserNames(EloixClient.IndexServer.IXServerEventsContext ec, String[] ids, EloixClient.IndexServer.CheckoutUsersZ checkoutUsersZ, BAsyncResult <EloixClient.IndexServer.UserName[]> asyncResult)
        {
            BRequest_IXServerEvents_getUserNames req = new BRequest_IXServerEvents_getUserNames();

            req.ecValue             = ec;
            req.idsValue            = ids;
            req.checkoutUsersZValue = checkoutUsersZ;
            transport.sendMethod(req, asyncResult);
        }
 public virtual EloixClient.IndexServer.UserName[] getUserNames(EloixClient.IndexServer.IXServerEventsContext ec, String[] ids, EloixClient.IndexServer.CheckoutUsersZ checkoutUsersZ)
 {
     throw new BException(BExceptionC.UNSUPPORTED_METHOD, "");
 }
Esempio n. 5
0
        public virtual EloixClient.IndexServer.UserName[] getUserNames(EloixClient.IndexServer.IXServerEventsContext ec, String[] ids, EloixClient.IndexServer.CheckoutUsersZ checkoutUsersZ)
        {
            BSyncResult <EloixClient.IndexServer.UserName[]> asyncResult = new BSyncResult <EloixClient.IndexServer.UserName[]>();

            getUserNames(ec, ids, checkoutUsersZ, BAsyncResultHelper.ToDelegate <EloixClient.IndexServer.UserName[]>(asyncResult));
            return(asyncResult.GetResult());
        }