gov.va.medora.mdo.dao.vista.VistaUserDao.getUsersWithOption C# (CSharp) Method

getUsersWithOption() public method

Get all the users with a certain option Currently this is from the Standing Sentry project and only gets users with option AMOJ VL APPTFL. Should be generalized.
public getUsersWithOption ( string optionName ) : OrderedDictionary
optionName string
return System.Collections.Specialized.OrderedDictionary
        public OrderedDictionary getUsersWithOption(string optionName)
        {
            MdoQuery request = buildGetUsersWithOptionRequest(optionName);
            string response = (string)cxn.query(request, new MenuOption("AMOJ VL APPTFL"));
            return toUsersWithOption(response);
        }
VistaUserDao