-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathIHttpRequestProperties.cs
68 lines (60 loc) · 1.62 KB
/
IHttpRequestProperties.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
namespace KubeClient.Http
{
using ValueProviders;
/// <summary>
/// Represents common properties of templates for building HTTP requests.
/// </summary>
public interface IHttpRequestProperties
{
/// <summary>
/// The request URI.
/// </summary>
Uri Uri
{
get;
}
/// <summary>
/// Is the request URI a template?
/// </summary>
bool IsUriTemplate
{
get;
}
/// <summary>
/// Additional properties for the request.
/// </summary>
ImmutableDictionary<string, object> Properties
{
get;
}
}
/// <summary>
/// Represents common properties of templates for building HTTP requests.
/// </summary>
/// <typeparam name="TContext">
/// The type of object used as a context for resolving deferred template parameters.
/// </typeparam>
public interface IHttpRequestProperties<TContext>
: IHttpRequestProperties
{
/// <summary>
/// Actions (if any) to perform on the outgoing request message.
/// </summary>
IReadOnlyList<RequestAction<TContext>> RequestActions { get; }
/// <summary>
/// Actions (if any) to perform on the outgoing request message.
/// </summary>
IReadOnlyList<ResponseAction<TContext>> ResponseActions { get; }
/// <summary>
/// The request's URI template parameters (if any).
/// </summary>
IReadOnlyDictionary<string, IValueProvider<TContext, string>> TemplateParameters { get; }
/// <summary>
/// The request's query parameters (if any).
/// </summary>
IReadOnlyDictionary<string, IValueProvider<TContext, string>> QueryParameters { get; }
}
}