Ejemplo n.º 1
0
 public PostService(HarvestConnection harvestConnection,string endpoint)
     : base(harvestConnection,endpoint)
 {
 }
Ejemplo n.º 2
0
 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;
 }
Ejemplo n.º 6
0
 public PutService(HarvestConnection harvestConnection, string endpoint)
     : base(harvestConnection, endpoint)
 {
 }
Ejemplo n.º 7
0
 public PutService(HarvestConnection harvestConnection, string endpointFormatString, params object[] args)
     : base(harvestConnection, endpointFormatString, args)
 {
 }
Ejemplo n.º 8
0
 protected AbstractService(HarvestConnection harvestConnection, string endpointFormatString, params object[] args)
     : this(harvestConnection, string.Format(endpointFormatString, HarvestEncode(args)))
 {
 }
Ejemplo n.º 9
0
 protected AbstractService(HarvestConnection harvestConnection, string endpoint)
 {
     _harvestConnection = harvestConnection;
     _endpoint          = endpoint;
 }