Example #1
0
 public Record GetRecord(string sidentifier, string sPrefix)
 {
     object objHandler = new object();
     objHandler = new OAI_DC();
     return GetRecord(sidentifier, "oai_dc", ref objHandler);
 }
Example #2
0
 //=========================================================
 // Sub/Function: ListSets
 // Description: Returns a list of collections currently
 // available for harvesting from this oai server.
 //==========================================================
 public ListSet ListSets(ResumptionToken objToken)
 {
     object objHandler = new object();
     objHandler = new OAI_DC();
     return ListSets(objToken, ref objHandler);
 }
Example #3
0
 // McCown
 public ListRecord ListRecords(string sPrefix, string sset, string sfrom, string suntil, ResumptionToken objToken)
 {
     object objHandler = new object();
     objHandler = new OAI_DC();
     return ListRecords(sPrefix, sset, sfrom, suntil, objToken, ref objHandler);
 }
Example #4
0
 public ListRecord ListRecords(ResumptionToken objToken)
 {
     object objHandler = new object();
     objHandler = new OAI_DC();
     return ListRecords("", "", "", "", objToken, ref objHandler);
 }
Example #5
0
 public ListRecord ListRecords(string sPrefix, string sfrom, string suntil)
 {
     object objHandler = new object();
     objHandler = new OAI_DC();
     return ListRecords(sPrefix, "", sfrom, suntil, null, ref objHandler);
 }
Example #6
0
 public ListRecord ListRecords(string sPrefix, string sset)
 {
     object objHandler = new object();
     objHandler = new OAI_DC();
     return ListRecords(sPrefix, sset, "", "", null, ref objHandler);
 }