You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <param name="client">The <see cref="IBaseClient"/> for handling requests.</param>
57
+
/// <param name="client">The <see cref="<#=iBaseClientTypeName#>"/> for handling requests.</param>
52
58
/// <param name="options">Query option name value pairs for the request.</param>
53
59
/// </summary>
54
60
public <#=propRequest#>(
55
61
string requestUrl,
56
-
IBaseClient client,
57
-
IEnumerable<Option> options)
62
+
<#=iBaseClientTypeName#> client,
63
+
IEnumerable<<#=optionTypeName#>> options)
58
64
: base(requestUrl, client, options)
59
65
{
60
66
}
@@ -72,7 +78,7 @@ namespace <#=@namespace#>
72
78
/// Gets the stream.
73
79
/// </summary>
74
80
/// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
75
-
/// <param name="completionOption">The <see cref="HttpCompletionOption"/> to pass to the <see cref="IHttpProvider"/> on send.</param>
81
+
/// <param name="completionOption">The <see cref="HttpCompletionOption"/> to pass to the <see cref="<#=iHttpProviderTypeName#>"/> on send.</param>
76
82
/// <returns>The stream.</returns>
77
83
public System.Threading.Tasks.Task<Stream> GetAsync(CancellationToken cancellationToken, HttpCompletionOption completionOption = HttpCompletionOption.ResponseContentRead)
78
84
{
@@ -101,7 +107,7 @@ namespace <#=@namespace#>
101
107
/// <typeparam name="T">The type returned by the PUT call.</typeparam>
102
108
/// <param name="<#=propName#>">The stream to PUT.</param>
103
109
/// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
104
-
/// <param name="completionOption">The <see cref="HttpCompletionOption"/> to pass to the <see cref="IHttpProvider"/> on send.</param>
110
+
/// <param name="completionOption">The <see cref="HttpCompletionOption"/> to pass to the <see cref="<#=iHttpProviderTypeName#>"/> on send.</param>
105
111
/// <returns>The object returned by the PUT call.</returns>
106
112
public System.Threading.Tasks.Task<T> PutAsync<T>(Stream <#=propName#>, CancellationToken cancellationToken, HttpCompletionOption completionOption = HttpCompletionOption.ResponseContentRead) where T : <#=propClass#>
107
113
{
@@ -130,7 +136,7 @@ namespace <#=@namespace#>
130
136
/// </summary>
131
137
/// <param name="<#=propName#>">The stream to PUT.</param>
132
138
/// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
133
-
/// <param name="completionOption">The <see cref="HttpCompletionOption"/> to pass to the <see cref="IHttpProvider"/> on send.</param>
139
+
/// <param name="completionOption">The <see cref="HttpCompletionOption"/> to pass to the <see cref="<#=iHttpProviderTypeName#>"/> on send.</param>
134
140
/// <returns>The updated stream.</returns>
135
141
public System.Threading.Tasks.Task<Stream> PutAsync(Stream <#=propName#>, CancellationToken cancellationToken, HttpCompletionOption completionOption = HttpCompletionOption.ResponseContentRead)
0 commit comments