@@ -43,7 +43,7 @@ public static IRestResponse<dynamic> ExecuteDynamic(this IRestClient client, IRe
43
43
44
44
/// <summary>
45
45
/// Execute the request using GET HTTP method. Exception will be thrown if the request does not succeed.
46
- /// The response data is deserialzied to the Data property of the returned response object.
46
+ /// The response data is deserialized to the Data property of the returned response object.
47
47
/// </summary>
48
48
/// <param name="client">RestClient instance</param>
49
49
/// <param name="request">The request</param>
@@ -59,7 +59,7 @@ public static async Task<T> GetAsync<T>(this IRestClient client, IRestRequest re
59
59
60
60
/// <summary>
61
61
/// Execute the request using POST HTTP method. Exception will be thrown if the request does not succeed.
62
- /// The response data is deserialzied to the Data property of the returned response object.
62
+ /// The response data is deserialized to the Data property of the returned response object.
63
63
/// </summary>
64
64
/// <param name="client">RestClient instance</param>
65
65
/// <param name="request">The request</param>
@@ -75,7 +75,7 @@ public static async Task<T> PostAsync<T>(this IRestClient client, IRestRequest r
75
75
76
76
/// <summary>
77
77
/// Execute the request using PUT HTTP method. Exception will be thrown if the request does not succeed.
78
- /// The response data is deserialzied to the Data property of the returned response object.
78
+ /// The response data is deserialized to the Data property of the returned response object.
79
79
/// </summary>
80
80
/// <param name="client">RestClient instance</param>
81
81
/// <param name="request">The request</param>
@@ -91,7 +91,7 @@ public static async Task<T> PutAsync<T>(this IRestClient client, IRestRequest re
91
91
92
92
/// <summary>
93
93
/// Execute the request using HEAD HTTP method. Exception will be thrown if the request does not succeed.
94
- /// The response data is deserialzied to the Data property of the returned response object.
94
+ /// The response data is deserialized to the Data property of the returned response object.
95
95
/// </summary>
96
96
/// <param name="client">RestClient instance</param>
97
97
/// <param name="request">The request</param>
@@ -107,7 +107,7 @@ public static async Task<T> HeadAsync<T>(this IRestClient client, IRestRequest r
107
107
108
108
/// <summary>
109
109
/// Execute the request using OPTIONS HTTP method. Exception will be thrown if the request does not succeed.
110
- /// The response data is deserialzied to the Data property of the returned response object.
110
+ /// The response data is deserialized to the Data property of the returned response object.
111
111
/// </summary>
112
112
/// <param name="client">RestClient instance</param>
113
113
/// <param name="request">The request</param>
@@ -123,7 +123,7 @@ public static async Task<T> OptionsAsync<T>(this IRestClient client, IRestReques
123
123
124
124
/// <summary>
125
125
/// Execute the request using PATCH HTTP method. Exception will be thrown if the request does not succeed.
126
- /// The response data is deserialzied to the Data property of the returned response object.
126
+ /// The response data is deserialized to the Data property of the returned response object.
127
127
/// </summary>
128
128
/// <param name="client">RestClient instance</param>
129
129
/// <param name="request">The request</param>
@@ -139,7 +139,7 @@ public static async Task<T> PatchAsync<T>(this IRestClient client, IRestRequest
139
139
140
140
/// <summary>
141
141
/// Execute the request using DELETE HTTP method. Exception will be thrown if the request does not succeed.
142
- /// The response data is deserialzied to the Data property of the returned response object.
142
+ /// The response data is deserialized to the Data property of the returned response object.
143
143
/// </summary>
144
144
/// <param name="client">RestClient instance</param>
145
145
/// <param name="request">The request</param>
@@ -155,7 +155,7 @@ public static async Task<T> DeleteAsync<T>(this IRestClient client, IRestRequest
155
155
156
156
/// <summary>
157
157
/// Execute the request using GET HTTP method.
158
- /// The response data is deserialzied to the Data property of the returned response object.
158
+ /// The response data is deserialized to the Data property of the returned response object.
159
159
/// </summary>
160
160
/// <param name="client">RestClient instance</param>
161
161
/// <param name="request">The request</param>
@@ -166,7 +166,7 @@ public static IRestResponse<T> Get<T>(this IRestClient client, IRestRequest requ
166
166
167
167
/// <summary>
168
168
/// Execute the request using POST HTTP method.
169
- /// The response data is deserialzied to the Data property of the returned response object.
169
+ /// The response data is deserialized to the Data property of the returned response object.
170
170
/// </summary>
171
171
/// <param name="client">RestClient instance</param>
172
172
/// <param name="request">The request</param>
@@ -177,7 +177,7 @@ public static IRestResponse<T> Post<T>(this IRestClient client, IRestRequest req
177
177
178
178
/// <summary>
179
179
/// Execute the request using PUT HTTP method.
180
- /// The response data is deserialzied to the Data property of the returned response object.
180
+ /// The response data is deserialized to the Data property of the returned response object.
181
181
/// </summary>
182
182
/// <param name="client">RestClient instance</param>
183
183
/// <param name="request">The request</param>
@@ -188,7 +188,7 @@ public static IRestResponse<T> Put<T>(this IRestClient client, IRestRequest requ
188
188
189
189
/// <summary>
190
190
/// Execute the request using HEAD HTTP method.
191
- /// The response data is deserialzied to the Data property of the returned response object.
191
+ /// The response data is deserialized to the Data property of the returned response object.
192
192
/// </summary>
193
193
/// <param name="client">RestClient instance</param>
194
194
/// <param name="request">The request</param>
@@ -199,7 +199,7 @@ public static IRestResponse<T> Head<T>(this IRestClient client, IRestRequest req
199
199
200
200
/// <summary>
201
201
/// Execute the request using OPTIONS HTTP method.
202
- /// The response data is deserialzied to the Data property of the returned response object.
202
+ /// The response data is deserialized to the Data property of the returned response object.
203
203
/// </summary>
204
204
/// <param name="client">RestClient instance</param>
205
205
/// <param name="request">The request</param>
@@ -210,7 +210,7 @@ public static IRestResponse<T> Options<T>(this IRestClient client, IRestRequest
210
210
211
211
/// <summary>
212
212
/// Execute the request using PATCH HTTP method.
213
- /// The response data is deserialzied to the Data property of the returned response object.
213
+ /// The response data is deserialized to the Data property of the returned response object.
214
214
/// </summary>
215
215
/// <param name="client">RestClient instance</param>
216
216
/// <param name="request">The request</param>
@@ -221,7 +221,7 @@ public static IRestResponse<T> Patch<T>(this IRestClient client, IRestRequest re
221
221
222
222
/// <summary>
223
223
/// Execute the request using DELETE HTTP method.
224
- /// The response data is deserialzied to the Data property of the returned response object.
224
+ /// The response data is deserialized to the Data property of the returned response object.
225
225
/// </summary>
226
226
/// <param name="client">RestClient instance</param>
227
227
/// <param name="request">The request</param>
@@ -460,4 +460,4 @@ public static RestClient UseXml(this RestClient client)
460
460
return client ;
461
461
}
462
462
}
463
- }
463
+ }
0 commit comments