public PostService(HarvestConnection harvestConnection,string endpoint)
     : base(harvestConnection,endpoint)
 {
 }
 public PostService(HarvestConnection harvestConnection, string endpointFormatString, params object[] args) : base(harvestConnection,endpointFormatString, args)
 {
 }
 protected AbstractService(HarvestConnection harvestConnection, string endpointFormatString, params object[] args)
     : this(harvestConnection, string.Format(endpointFormatString, HarvestEncode(args)))
 {
 }
 public HarvestPocoService(HarvestConnection harvestConnection)
 {
     service = new HarvestService(harvestConnection);
 }
 protected AbstractService(HarvestConnection harvestConnection, string endpoint)
 {
     _harvestConnection = harvestConnection;
     _endpoint = endpoint;
 }
Example #6
0
 public PutService(HarvestConnection harvestConnection, string endpoint)
     : base(harvestConnection, endpoint)
 {
 }
Example #7
0
 public PutService(HarvestConnection harvestConnection, string endpointFormatString, params object[] args)
     : base(harvestConnection, endpointFormatString, args)
 {
 }
Example #8
0
 protected AbstractService(HarvestConnection harvestConnection, string endpointFormatString, params object[] args)
     : this(harvestConnection, string.Format(endpointFormatString, HarvestEncode(args)))
 {
 }
Example #9
0
 protected AbstractService(HarvestConnection harvestConnection, string endpoint)
 {
     _harvestConnection = harvestConnection;
     _endpoint          = endpoint;
 }