Novell.Directory.Ldap.MessageAgent.Abandon C# (CSharp) Method

Abandon() private method

Abandon the request associated with MsgId
private Abandon ( int msgId, LdapConstraints cons ) : void
msgId int the message id to abandon /// ///
cons LdapConstraints constraints associated with this request ///
return void
        internal void Abandon(int msgId, LdapConstraints cons)
        {
            Message info = null;
            try
            {
                // Send abandon request and remove from connection list
                info = messages.findMessageById(msgId);
                SupportClass.VectorRemoveElement(messages, info); // This message is now dead
                info.Abandon(cons, null);

                return ;
            }
            catch (System.FieldAccessException ex)
            {
            }
            return ;
        }