CommonRequest.cs 978 B

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Aliyun.Acs.Core.Http;
  6. using Aliyun.Acs.Core.Utils;
  7. namespace Aliyun.Acs.Core
  8. {
  9. public class CommonRequest : RpcAcsRequest<CommonResponse>
  10. {
  11. public CommonRequest(String product, String version, String action)
  12. : base(product, version, action)
  13. {
  14. this.AcceptFormat = FormatType.JSON;
  15. }
  16. public CommonRequest(String product, String version, String action, String locationProduct)
  17. : base(product, version, action, locationProduct)
  18. {
  19. this.AcceptFormat = FormatType.JSON;
  20. }
  21. public void Add(string key, object value)
  22. {
  23. DictionaryUtil.Add(QueryParameters, key, value);
  24. }
  25. public override CommonResponse GetResponse(Transform.UnmarshallerContext unmarshallerContext)
  26. {
  27. throw new NotImplementedException();
  28. }
  29. }
  30. }