CSReportDll.cReportConnectsAux.add C# (CSharp) Method

add() public method

public add ( cReportConnect c, String key ) : cReportConnect
c cReportConnect
key String
return cReportConnect
        public cReportConnect add(cReportConnect c, String key)
        {
            try
            {
                if (c == null) 
                { 
                    c = new cReportConnect(); 
                }

                if (key == null)
                {
                    this.BaseAdd(getDummyKey(), c);
                }
                else
                {
                    Add(cReportGlobals.getKey(key), c);
                }

                return c;
            }
            catch
            {
                return null;
            }
        }

Same methods

cReportConnectsAux::add ( cReportConnect c ) : cReportConnect