gov.va.medora.mdo.api.ToolsApi.ddrLister C# (CSharp) Method

ddrLister() public method

public ddrLister ( ConnectionSet cxns, string file, string iens, string flds, string flags, string maxRex, string from, string part, string xref, string screen, string identifier ) : IndexedHashtable
cxns gov.va.medora.mdo.dao.ConnectionSet
file string
iens string
flds string
flags string
maxRex string
from string
part string
xref string
screen string
identifier string
return IndexedHashtable
        public IndexedHashtable ddrLister(
            ConnectionSet cxns,
            string file,
            string iens,
            string flds,
            string flags,
            string maxRex,
            string from,
            string part,
            string xref,
            string screen,
            string identifier)
        {
            object[] args = new object[]
            {
                file,iens,flds,flags,maxRex,from,part,xref,screen,identifier
            };
            return cxns.query("IToolsDao", "ddrLister", args);
        }

Same methods

ToolsApi::ddrLister ( gov.va.medora.mdo.dao.AbstractConnection cxn, string file, string iens, string flds, string flags, string maxRex, string from, string part, string xref, string screen, string identifier ) : string[]