Ejemplo n.º 1
0
 public LinePostFormUrlEncodedRequest(LineClientBase client, string path) : base(client, path, HttpMethod.Post)
 {
 }
Ejemplo n.º 2
0
 public LineGetRequest(LineClientBase client, string path) : base(client, path, HttpMethod.Get)
 {
 }
 public LinePostByteContentRequest(LineClientBase client, string path) : base(client, path, HttpMethod.Post)
 {
 }
Ejemplo n.º 4
0
 public LineDeleteRequest(LineClientBase client, string path) : base(client, path, HttpMethod.Delete)
 {
 }
Ejemplo n.º 5
0
 protected LineClientRequestBase(LineClientBase client, string path, HttpMethod method)
 {
     Client = client;
     Path   = path;
     Method = method;
 }