-
Notifications
You must be signed in to change notification settings - Fork 0
/
RestSharp.xml
3095 lines (3093 loc) · 148 KB
/
RestSharp.xml
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>RestSharp</name>
</assembly>
<members>
<member name="T:RestSharp.Authenticators.JwtAuthenticator">
<summary>
JSON WEB TOKEN (JWT) Authenticator class.
<remarks>https://tools.ietf.org/html/draft-ietf-oauth-json-web-token</remarks>
</summary>
</member>
<member name="T:RestSharp.Authenticators.NtlmAuthenticator">
<summary>
Tries to Authenticate with the credentials of the currently logged in user, or impersonate a user
</summary>
</member>
<member name="M:RestSharp.Authenticators.NtlmAuthenticator.#ctor">
<summary>
Authenticate with the credentials of the currently logged in user
</summary>
</member>
<member name="M:RestSharp.Authenticators.NtlmAuthenticator.#ctor(System.String,System.String)">
<summary>
Authenticate by impersonation
</summary>
<param name="username"></param>
<param name="password"></param>
</member>
<member name="M:RestSharp.Authenticators.NtlmAuthenticator.#ctor(System.Net.ICredentials)">
<summary>
Authenticate by impersonation, using an existing <c>ICredentials</c> instance
</summary>
<param name="credentials"></param>
</member>
<member name="T:RestSharp.Authenticators.OAuth1Authenticator">
<seealso href="http://tools.ietf.org/html/rfc5849"/>
</member>
<member name="T:RestSharp.Authenticators.OAuth2Authenticator">
<summary>
Base class for OAuth 2 Authenticators.
</summary>
<remarks>
Since there are many ways to authenticate in OAuth2,
this is used as a base class to differentiate between
other authenticators.
Any other OAuth2 authenticators must derive from this
abstract class.
</remarks>
</member>
<member name="F:RestSharp.Authenticators.OAuth2Authenticator.accessToken">
<summary>
Access token to be used when authenticating.
</summary>
</member>
<member name="M:RestSharp.Authenticators.OAuth2Authenticator.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:RestSharp.Authenticators.OAuth2Authenticator"/> class.
</summary>
<param name="accessToken">
The access token.
</param>
</member>
<member name="P:RestSharp.Authenticators.OAuth2Authenticator.AccessToken">
<summary>
Gets the access token.
</summary>
</member>
<member name="T:RestSharp.Authenticators.OAuth2UriQueryParameterAuthenticator">
<summary>
The OAuth 2 authenticator using URI query parameter.
</summary>
<remarks>
Based on http://tools.ietf.org/html/draft-ietf-oauth-v2-10#section-5.1.2
</remarks>
</member>
<member name="M:RestSharp.Authenticators.OAuth2UriQueryParameterAuthenticator.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:RestSharp.Authenticators.OAuth2UriQueryParameterAuthenticator"/> class.
</summary>
<param name="accessToken">
The access token.
</param>
</member>
<member name="T:RestSharp.Authenticators.OAuth2AuthorizationRequestHeaderAuthenticator">
<summary>
The OAuth 2 authenticator using the authorization request header field.
</summary>
<remarks>
Based on http://tools.ietf.org/html/draft-ietf-oauth-v2-10#section-5.1.1
</remarks>
</member>
<member name="F:RestSharp.Authenticators.OAuth2AuthorizationRequestHeaderAuthenticator.authorizationValue">
<summary>
Stores the Authorization header value as "[tokenType] accessToken". used for performance.
</summary>
</member>
<member name="M:RestSharp.Authenticators.OAuth2AuthorizationRequestHeaderAuthenticator.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:RestSharp.Authenticators.OAuth2AuthorizationRequestHeaderAuthenticator"/> class.
</summary>
<param name="accessToken">
The access token.
</param>
</member>
<member name="M:RestSharp.Authenticators.OAuth2AuthorizationRequestHeaderAuthenticator.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:RestSharp.Authenticators.OAuth2AuthorizationRequestHeaderAuthenticator"/> class.
</summary>
<param name="accessToken">
The access token.
</param>
<param name="tokenType">
The token type.
</param>
</member>
<member name="F:RestSharp.Authenticators.OAuth.OAuthTools.encoding">
<summary>
All text parameters are UTF-8 encoded (per section 5.1).
</summary>
<seealso cref="!:http://www.hueniverse.com/hueniverse/2008/10/beginners-gui-1.html"/>
</member>
<member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetNonce">
<summary>
Generates a random 16-byte lowercase alphanumeric string.
</summary>
<seealso cref="!:http://oauth.net/core/1.0#nonce"/>
<returns></returns>
</member>
<member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetTimestamp">
<summary>
Generates a timestamp based on the current elapsed seconds since '01/01/1970 0000 GMT"
</summary>
<seealso cref="!:http://oauth.net/core/1.0#nonce"/>
<returns></returns>
</member>
<member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetTimestamp(System.DateTime)">
<summary>
Generates a timestamp based on the elapsed seconds of a given time since '01/01/1970 0000 GMT"
</summary>
<seealso cref="!:http://oauth.net/core/1.0#nonce"/>
<param name="dateTime">A specified point in time.</param>
<returns></returns>
</member>
<member name="F:RestSharp.Authenticators.OAuth.OAuthTools.uriRfc3986CharsToEscape">
<summary>
The set of characters that are unreserved in RFC 2396 but are NOT unreserved in RFC 3986.
</summary>
<seealso cref="!:http://stackoverflow.com/questions/846487/how-to-get-uri-escapedatastring-to-comply-with-rfc-3986"/>
</member>
<member name="M:RestSharp.Authenticators.OAuth.OAuthTools.UrlEncodeRelaxed(System.String)">
<summary>
URL encodes a string based on section 5.1 of the OAuth spec.
Namely, percent encoding with [RFC3986], avoiding unreserved characters,
upper-casing hexadecimal characters, and UTF-8 encoding for text value pairs.
</summary>
<param name="value">The value to escape.</param>
<returns>The escaped value.</returns>
<remarks>
The <see cref="M:System.Uri.EscapeDataString(System.String)"/> method is <i>supposed</i> to take on
RFC 3986 behavior if certain elements are present in a .config file. Even if this
actually worked (which in my experiments it <i>doesn't</i>), we can't rely on every
host actually having this configuration element present.
</remarks>
<seealso cref="!:http://oauth.net/core/1.0#encoding_parameters"/>
<seealso cref="!:http://stackoverflow.com/questions/846487/how-to-get-uri-escapedatastring-to-comply-with-rfc-3986"/>
</member>
<member name="M:RestSharp.Authenticators.OAuth.OAuthTools.UrlEncodeStrict(System.String)">
<summary>
URL encodes a string based on section 5.1 of the OAuth spec.
Namely, percent encoding with [RFC3986], avoiding unreserved characters,
upper-casing hexadecimal characters, and UTF-8 encoding for text value pairs.
</summary>
<param name="value"></param>
<seealso cref="!:http://oauth.net/core/1.0#encoding_parameters"/>
</member>
<member name="M:RestSharp.Authenticators.OAuth.OAuthTools.NormalizeRequestParameters(RestSharp.Authenticators.OAuth.WebParameterCollection)">
<summary>
Sorts a collection of key-value pairs by name, and then value if equal,
concatenating them into a single string. This string should be encoded
prior to, or after normalization is run.
</summary>
<seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.1.1"/>
<param name="parameters"></param>
<returns></returns>
</member>
<member name="M:RestSharp.Authenticators.OAuth.OAuthTools.SortParametersExcludingSignature(RestSharp.Authenticators.OAuth.WebParameterCollection)">
<summary>
Sorts a <see cref="T:RestSharp.Authenticators.OAuth.WebParameterCollection"/> by name, and then value if equal.
</summary>
<param name="parameters">A collection of parameters to sort</param>
<returns>A sorted parameter collection</returns>
</member>
<member name="M:RestSharp.Authenticators.OAuth.OAuthTools.ConstructRequestUrl(System.Uri)">
<summary>
Creates a request URL suitable for making OAuth requests.
Resulting URLs must exclude port 80 or port 443 when accompanied by HTTP and HTTPS, respectively.
Resulting URLs must be lower case.
</summary>
<seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.1.2"/>
<param name="url">The original request URL</param>
<returns></returns>
</member>
<member name="M:RestSharp.Authenticators.OAuth.OAuthTools.ConcatenateRequestElements(System.String,System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
<summary>
Creates a request elements concatentation value to send with a request.
This is also known as the signature base.
</summary>
<seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.1.3"/>
<seealso cref="!:http://oauth.net/core/1.0#sig_base_example"/>
<param name="method">The request's HTTP method type</param>
<param name="url">The request URL</param>
<param name="parameters">The request's parameters</param>
<returns>A signature base string</returns>
</member>
<member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,System.String,System.String)">
<summary>
Creates a signature value given a signature base and the consumer secret.
This method is used when the token secret is currently unknown.
</summary>
<seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
<param name="signatureMethod">The hashing method</param>
<param name="signatureBase">The signature base</param>
<param name="consumerSecret">The consumer key</param>
<returns></returns>
</member>
<member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,RestSharp.Authenticators.OAuth.OAuthSignatureTreatment,System.String,System.String)">
<summary>
Creates a signature value given a signature base and the consumer secret.
This method is used when the token secret is currently unknown.
</summary>
<seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
<param name="signatureMethod">The hashing method</param>
<param name="signatureTreatment">The treatment to use on a signature value</param>
<param name="signatureBase">The signature base</param>
<param name="consumerSecret">The consumer key</param>
<returns></returns>
</member>
<member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,System.String,System.String,System.String)">
<summary>
Creates a signature value given a signature base and the consumer secret and a known token secret.
</summary>
<seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
<param name="signatureMethod">The hashing method</param>
<param name="signatureBase">The signature base</param>
<param name="consumerSecret">The consumer secret</param>
<param name="tokenSecret">The token secret</param>
<returns></returns>
</member>
<member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,RestSharp.Authenticators.OAuth.OAuthSignatureTreatment,System.String,System.String,System.String)">
<summary>
Creates a signature value given a signature base and the consumer secret and a known token secret.
</summary>
<seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
<param name="signatureMethod">The hashing method</param>
<param name="signatureTreatment">The treatment to use on a signature value</param>
<param name="signatureBase">The signature base</param>
<param name="consumerSecret">The consumer secret</param>
<param name="tokenSecret">The token secret</param>
<returns></returns>
</member>
<member name="T:RestSharp.Authenticators.OAuth.OAuthWorkflow">
<summary>
A class to encapsulate OAuth authentication flow.
<seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
</summary>
</member>
<member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildRequestTokenInfo(System.String)">
<summary>
Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
<see cref="T:RestSharp.Authenticators.IAuthenticator"/> for the purpose of requesting an
unauthorized request token.
</summary>
<param name="method">The HTTP method for the intended request</param>
<seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
<returns></returns>
</member>
<member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildRequestTokenInfo(System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
<summary>
Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
<see cref="T:RestSharp.Authenticators.IAuthenticator"/> for the purpose of requesting an
unauthorized request token.
</summary>
<param name="method">The HTTP method for the intended request</param>
<param name="parameters">Any existing, non-OAuth query parameters desired in the request</param>
<seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
<returns></returns>
</member>
<member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildAccessTokenInfo(System.String)">
<summary>
Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
<see cref="T:RestSharp.Authenticators.IAuthenticator"/> for the purpose of exchanging a request token
for an access token authorized by the user at the Service Provider site.
</summary>
<param name="method">The HTTP method for the intended request</param>
<seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
</member>
<member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildAccessTokenInfo(System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
<summary>
Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
<see cref="T:RestSharp.Authenticators.IAuthenticator"/> for the purpose of exchanging a request token
for an access token authorized by the user at the Service Provider site.
</summary>
<param name="method">The HTTP method for the intended request</param>
<seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
<param name="parameters">Any existing, non-OAuth query parameters desired in the request</param>
</member>
<member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildClientAuthAccessTokenInfo(System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
<summary>
Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
<see cref="T:RestSharp.Authenticators.IAuthenticator"/> for the purpose of exchanging user credentials
for an access token authorized by the user at the Service Provider site.
</summary>
<param name="method">The HTTP method for the intended request</param>
<seealso cref="!:http://tools.ietf.org/html/draft-dehora-farrell-oauth-accesstoken-creds-00#section-4"/>
<param name="parameters">Any existing, non-OAuth query parameters desired in the request</param>
</member>
<member name="P:RestSharp.Authenticators.OAuth.OAuthWorkflow.RequestTokenUrl">
<seealso cref="!:http://oauth.net/core/1.0#request_urls"/>
</member>
<member name="P:RestSharp.Authenticators.OAuth.OAuthWorkflow.AccessTokenUrl">
<seealso cref="!:http://oauth.net/core/1.0#request_urls"/>
</member>
<member name="P:RestSharp.Authenticators.OAuth.OAuthWorkflow.AuthorizationUrl">
<seealso cref="!:http://oauth.net/core/1.0#request_urls"/>
</member>
<member name="T:RestSharp.Deserializers.DeserializeAsAttribute">
<summary>
Allows control how class and property names and values are deserialized by XmlAttributeDeserializer
</summary>
</member>
<member name="P:RestSharp.Deserializers.DeserializeAsAttribute.Name">
<summary>
The name to use for the serialized element
</summary>
</member>
<member name="P:RestSharp.Deserializers.DeserializeAsAttribute.Attribute">
<summary>
Sets if the property to Deserialize is an Attribute or Element (Default: false)
</summary>
</member>
<member name="T:RestSharp.Deserializers.DotNetXmlDeserializer">
<summary>
Wrapper for System.Xml.Serialization.XmlSerializer.
</summary>
</member>
<member name="T:RestSharp.ParameterType">
<summary>
Types of parameters that can be added to requests
</summary>
</member>
<member name="T:RestSharp.DataFormat">
<summary>
Data formats
</summary>
</member>
<member name="T:RestSharp.Method">
<summary>
HTTP method to use when making requests
</summary>
</member>
<member name="T:RestSharp.DateFormat">
<summary>
Format strings for commonly-used date formats
</summary>
</member>
<member name="F:RestSharp.DateFormat.ISO_8601">
<summary>
.NET format string for ISO 8601 date format
</summary>
</member>
<member name="F:RestSharp.DateFormat.ROUND_TRIP">
<summary>
.NET format string for roundtrip date format
</summary>
</member>
<member name="T:RestSharp.ResponseStatus">
<summary>
Status for responses (surprised?)
</summary>
</member>
<member name="T:RestSharp.Extensions.MiscExtensions">
<summary>
Extension method overload!
</summary>
</member>
<member name="M:RestSharp.Extensions.MiscExtensions.SaveAs(System.Byte[],System.String)">
<summary>
Save a byte array to a file
</summary>
<param name="input">Bytes to save</param>
<param name="path">Full path to save file to</param>
</member>
<member name="M:RestSharp.Extensions.MiscExtensions.ReadAsBytes(System.IO.Stream)">
<summary>
Read a stream into a byte array
</summary>
<param name="input">Stream to read</param>
<returns>byte[]</returns>
</member>
<member name="M:RestSharp.Extensions.MiscExtensions.CopyTo(System.IO.Stream,System.IO.Stream)">
<summary>
Copies bytes from one stream to another
</summary>
<param name="input">The input stream.</param>
<param name="output">The output stream.</param>
</member>
<member name="M:RestSharp.Extensions.MiscExtensions.AsString(System.Byte[])">
<summary>
Converts a byte array to a string, using its byte order mark to convert it to the right encoding.
http://www.shrinkrays.net/code-snippets/csharp/an-extension-method-for-converting-a-byte-array-to-a-string.aspx
</summary>
<param name="buffer">An array of bytes to convert</param>
<returns>The byte as a string.</returns>
</member>
<member name="M:RestSharp.Extensions.MonoHttp.HttpUtility.HtmlDecode(System.String)">
<summary>
Decodes an HTML-encoded string and returns the decoded string.
</summary>
<param name="s">The HTML string to decode. </param>
<returns>The decoded text.</returns>
</member>
<member name="M:RestSharp.Extensions.MonoHttp.HttpUtility.HtmlDecode(System.String,System.IO.TextWriter)">
<summary>
Decodes an HTML-encoded string and sends the resulting output to a TextWriter output stream.
</summary>
<param name="s">The HTML string to decode</param>
<param name="output">The TextWriter output stream containing the decoded string. </param>
</member>
<member name="M:RestSharp.Extensions.MonoHttp.HttpUtility.HtmlEncode(System.String,System.IO.TextWriter)">
<summary>
HTML-encodes a string and sends the resulting output to a TextWriter output stream.
</summary>
<param name="s">The string to encode. </param>
<param name="output">The TextWriter output stream containing the encoded string. </param>
</member>
<member name="T:RestSharp.Extensions.ReflectionExtensions">
<summary>
Reflection extensions
</summary>
</member>
<member name="M:RestSharp.Extensions.ReflectionExtensions.GetAttribute``1(System.Reflection.MemberInfo)">
<summary>
Retrieve an attribute from a member (property)
</summary>
<typeparam name="T">Type of attribute to retrieve</typeparam>
<param name="prop">Member to retrieve attribute from</param>
<returns></returns>
</member>
<member name="M:RestSharp.Extensions.ReflectionExtensions.GetAttribute``1(System.Type)">
<summary>
Retrieve an attribute from a type
</summary>
<typeparam name="T">Type of attribute to retrieve</typeparam>
<param name="type">Type to retrieve attribute from</param>
<returns></returns>
</member>
<member name="M:RestSharp.Extensions.ReflectionExtensions.IsSubclassOfRawGeneric(System.Type,System.Type)">
<summary>
Checks a type to see if it derives from a raw generic (e.g. List[[]])
</summary>
<param name="toCheck"></param>
<param name="generic"></param>
<returns></returns>
</member>
<member name="M:RestSharp.Extensions.ReflectionExtensions.FindEnumValue(System.Type,System.String,System.Globalization.CultureInfo)">
<summary>
Find a value from a System.Enum by trying several possible variants
of the string value of the enum.
</summary>
<param name="type">Type of enum</param>
<param name="value">Value for which to search</param>
<param name="culture">The culture used to calculate the name variants</param>
<returns></returns>
</member>
<member name="M:RestSharp.Extensions.ResponseStatusExtensions.ToWebException(RestSharp.ResponseStatus)">
<summary>
Convert a <see cref="T:RestSharp.ResponseStatus"/> to a <see cref="T:System.Net.WebException"/> instance.
</summary>
<param name="responseStatus">The response status.</param>
<returns></returns>
<exception cref="T:System.ArgumentOutOfRangeException">responseStatus</exception>
</member>
<member name="M:RestSharp.Extensions.StringExtensions.UrlEncode(System.String)">
<summary>
Uses Uri.EscapeDataString() based on recommendations on MSDN
http://blogs.msdn.com/b/yangxind/archive/2006/11/09/don-t-use-net-system-uri-unescapedatastring-in-url-decoding.aspx
</summary>
</member>
<member name="M:RestSharp.Extensions.StringExtensions.HasValue(System.String)">
<summary>
Check that a string is not null or empty
</summary>
<param name="input">String to check</param>
<returns>bool</returns>
</member>
<member name="M:RestSharp.Extensions.StringExtensions.RemoveUnderscoresAndDashes(System.String)">
<summary>
Remove underscores from a string
</summary>
<param name="input">String to process</param>
<returns>string</returns>
</member>
<member name="M:RestSharp.Extensions.StringExtensions.ParseJsonDate(System.String,System.Globalization.CultureInfo)">
<summary>
Parses most common JSON date formats
</summary>
<param name="input">JSON value to parse</param>
<param name="culture"></param>
<returns>DateTime</returns>
</member>
<member name="M:RestSharp.Extensions.StringExtensions.RemoveSurroundingQuotes(System.String)">
<summary>
Remove leading and trailing " from a string
</summary>
<param name="input">String to parse</param>
<returns>String</returns>
</member>
<member name="M:RestSharp.Extensions.StringExtensions.Matches(System.String,System.String)">
<summary>
Checks a string to see if it matches a regex
</summary>
<param name="input">String to check</param>
<param name="pattern">Pattern to match</param>
<returns>bool</returns>
</member>
<member name="M:RestSharp.Extensions.StringExtensions.ToPascalCase(System.String,System.Globalization.CultureInfo)">
<summary>
Converts a string to pascal case
</summary>
<param name="lowercaseAndUnderscoredWord">String to convert</param>
<param name="culture"></param>
<returns>string</returns>
</member>
<member name="M:RestSharp.Extensions.StringExtensions.ToPascalCase(System.String,System.Boolean,System.Globalization.CultureInfo)">
<summary>
Converts a string to pascal case with the option to remove underscores
</summary>
<param name="text">String to convert</param>
<param name="removeUnderscores">Option to remove underscores</param>
<param name="culture"></param>
<returns></returns>
</member>
<member name="M:RestSharp.Extensions.StringExtensions.ToCamelCase(System.String,System.Globalization.CultureInfo)">
<summary>
Converts a string to camel case
</summary>
<param name="lowercaseAndUnderscoredWord">String to convert</param>
<param name="culture"></param>
<returns>String</returns>
</member>
<member name="M:RestSharp.Extensions.StringExtensions.MakeInitialLowerCase(System.String)">
<summary>
Convert the first letter of a string to lower case
</summary>
<param name="word">String to convert</param>
<returns>string</returns>
</member>
<member name="M:RestSharp.Extensions.StringExtensions.IsUpperCase(System.String)">
<summary>
Checks to see if a string is all uppper case
</summary>
<param name="inputString">String to check</param>
<returns>bool</returns>
</member>
<member name="M:RestSharp.Extensions.StringExtensions.AddUnderscores(System.String)">
<summary>
Add underscores to a pascal-cased string
</summary>
<param name="pascalCasedWord">String to convert</param>
<returns>string</returns>
</member>
<member name="M:RestSharp.Extensions.StringExtensions.AddDashes(System.String)">
<summary>
Add dashes to a pascal-cased string
</summary>
<param name="pascalCasedWord">String to convert</param>
<returns>string</returns>
</member>
<member name="M:RestSharp.Extensions.StringExtensions.AddUnderscorePrefix(System.String)">
<summary>
Add an undescore prefix to a pascasl-cased string
</summary>
<param name="pascalCasedWord"></param>
<returns></returns>
</member>
<member name="M:RestSharp.Extensions.StringExtensions.AddSpaces(System.String)">
<summary>
Add spaces to a pascal-cased string
</summary>
<param name="pascalCasedWord">String to convert</param>
<returns>string</returns>
</member>
<member name="M:RestSharp.Extensions.StringExtensions.GetNameVariants(System.String,System.Globalization.CultureInfo)">
<summary>
Return possible variants of a name for name matching.
</summary>
<param name="name">String to convert</param>
<param name="culture">The culture to use for conversion</param>
<returns>IEnumerable<string></returns>
</member>
<member name="T:RestSharp.Extensions.XmlExtensions">
<summary>
XML Extension Methods
</summary>
</member>
<member name="M:RestSharp.Extensions.XmlExtensions.AsNamespaced(System.String,System.String)">
<summary>
Returns the name of an element with the namespace if specified
</summary>
<param name="name">Element name</param>
<param name="namespace">XML Namespace</param>
<returns></returns>
</member>
<member name="T:RestSharp.FileParameter">
<summary>
Container for files to be uploaded with requests
</summary>
</member>
<member name="M:RestSharp.FileParameter.Create(System.String,System.Byte[],System.String,System.String)">
<summary>
Creates a file parameter from an array of bytes.
</summary>
<param name="name">The parameter name to use in the request.</param>
<param name="data">The data to use as the file's contents.</param>
<param name="filename">The filename to use in the request.</param>
<param name="contentType">The content type to use in the request.</param>
<returns>The <see cref="T:RestSharp.FileParameter"/></returns>
</member>
<member name="M:RestSharp.FileParameter.Create(System.String,System.Byte[],System.String)">
<summary>
Creates a file parameter from an array of bytes.
</summary>
<param name="name">The parameter name to use in the request.</param>
<param name="data">The data to use as the file's contents.</param>
<param name="filename">The filename to use in the request.</param>
<returns>The <see cref="T:RestSharp.FileParameter"/> using the default content type.</returns>
</member>
<member name="P:RestSharp.FileParameter.ContentLength">
<summary>
The length of data to be sent
</summary>
</member>
<member name="P:RestSharp.FileParameter.Writer">
<summary>
Provides raw data for file
</summary>
</member>
<member name="P:RestSharp.FileParameter.FileName">
<summary>
Name of the file to use when uploading
</summary>
</member>
<member name="P:RestSharp.FileParameter.ContentType">
<summary>
MIME content type of file
</summary>
</member>
<member name="P:RestSharp.FileParameter.Name">
<summary>
Name of the parameter
</summary>
</member>
<member name="T:RestSharp.Http">
<summary>
HttpWebRequest wrapper (async methods)
</summary>
<summary>
HttpWebRequest wrapper
</summary>
<summary>
HttpWebRequest wrapper (sync methods)
</summary>
</member>
<member name="P:RestSharp.IHttp.AlwaysMultipartFormData">
<summary>
Always send a multipart/form-data request - even when no Files are present.
</summary>
</member>
<member name="P:RestSharp.IHttp.RequestBodyBytes">
<summary>
An alternative to RequestBody, for when the caller already has the byte array.
</summary>
</member>
<member name="M:RestSharp.Http.AsPostAsync(System.Action{RestSharp.HttpResponse},System.String)">
<summary>
Execute an async POST-style request with the specified HTTP Method.
</summary>
<param name="action"></param>
<param name="httpMethod">The HTTP method to execute.</param>
<returns></returns>
</member>
<member name="M:RestSharp.Http.AsGetAsync(System.Action{RestSharp.HttpResponse},System.String)">
<summary>
Execute an async GET-style request with the specified HTTP Method.
</summary>
<param name="action"></param>
<param name="httpMethod">The HTTP method to execute.</param>
<returns></returns>
</member>
<member name="M:RestSharp.Http.Create">
<summary>
Creates an IHttp
</summary>
<returns></returns>
</member>
<member name="M:RestSharp.Http.#ctor">
<summary>
Default constructor
</summary>
</member>
<member name="M:RestSharp.Http.Post">
<summary>
Execute a POST request
</summary>
</member>
<member name="M:RestSharp.Http.Put">
<summary>
Execute a PUT request
</summary>
</member>
<member name="M:RestSharp.Http.Get">
<summary>
Execute a GET request
</summary>
</member>
<member name="M:RestSharp.Http.Head">
<summary>
Execute a HEAD request
</summary>
</member>
<member name="M:RestSharp.Http.Options">
<summary>
Execute an OPTIONS request
</summary>
</member>
<member name="M:RestSharp.Http.Delete">
<summary>
Execute a DELETE request
</summary>
</member>
<member name="M:RestSharp.Http.Patch">
<summary>
Execute a PATCH request
</summary>
</member>
<member name="M:RestSharp.Http.Merge">
<summary>
Execute a MERGE request
</summary>
</member>
<member name="M:RestSharp.Http.AsGet(System.String)">
<summary>
Execute a GET-style request with the specified HTTP Method.
</summary>
<param name="httpMethod">The HTTP method to execute.</param>
<returns></returns>
</member>
<member name="M:RestSharp.Http.AsPost(System.String)">
<summary>
Execute a POST-style request with the specified HTTP Method.
</summary>
<param name="httpMethod">The HTTP method to execute.</param>
<returns></returns>
</member>
<member name="P:RestSharp.Http.HasParameters">
<summary>
True if this HTTP request has any HTTP parameters
</summary>
</member>
<member name="P:RestSharp.Http.HasCookies">
<summary>
True if this HTTP request has any HTTP cookies
</summary>
</member>
<member name="P:RestSharp.Http.HasBody">
<summary>
True if a request body has been specified
</summary>
</member>
<member name="P:RestSharp.Http.HasFiles">
<summary>
True if files have been set to be uploaded
</summary>
</member>
<member name="P:RestSharp.Http.AlwaysMultipartFormData">
<summary>
Always send a multipart/form-data request - even when no Files are present.
</summary>
</member>
<member name="P:RestSharp.Http.UserAgent">
<summary>
UserAgent to be sent with request
</summary>
</member>
<member name="P:RestSharp.Http.Timeout">
<summary>
Timeout in milliseconds to be used for the request
</summary>
</member>
<member name="P:RestSharp.Http.ReadWriteTimeout">
<summary>
The number of milliseconds before the writing or reading times out.
</summary>
</member>
<member name="P:RestSharp.Http.Credentials">
<summary>
System.Net.ICredentials to be sent with request
</summary>
</member>
<member name="P:RestSharp.Http.CookieContainer">
<summary>
The System.Net.CookieContainer to be used for the request
</summary>
</member>
<member name="P:RestSharp.Http.ResponseWriter">
<summary>
The method to use to write the response instead of reading into RawBytes
</summary>
</member>
<member name="P:RestSharp.Http.Files">
<summary>
Collection of files to be sent with request
</summary>
</member>
<member name="P:RestSharp.Http.FollowRedirects">
<summary>
Whether or not HTTP 3xx response redirects should be automatically followed
</summary>
</member>
<member name="P:RestSharp.Http.ClientCertificates">
<summary>
X509CertificateCollection to be sent with request
</summary>
</member>
<member name="P:RestSharp.Http.MaxRedirects">
<summary>
Maximum number of automatic redirects to follow if FollowRedirects is true
</summary>
</member>
<member name="P:RestSharp.Http.UseDefaultCredentials">
<summary>
Determine whether or not the "default credentials" (e.g. the user account under which the current process is running)
will be sent along to the server.
</summary>
</member>
<member name="P:RestSharp.Http.Headers">
<summary>
HTTP headers to be sent with request
</summary>
</member>
<member name="P:RestSharp.Http.Parameters">
<summary>
HTTP parameters (QueryString or Form values) to be sent with request
</summary>
</member>
<member name="P:RestSharp.Http.Cookies">
<summary>
HTTP cookies to be sent with request
</summary>
</member>
<member name="P:RestSharp.Http.RequestBody">
<summary>
Request body to be sent with request
</summary>
</member>
<member name="P:RestSharp.Http.RequestContentType">
<summary>
Content type of the request body.
</summary>
</member>
<member name="P:RestSharp.Http.RequestBodyBytes">
<summary>
An alternative to RequestBody, for when the caller already has the byte array.
</summary>
</member>
<member name="P:RestSharp.Http.Url">
<summary>
URL to call for this request
</summary>
</member>
<member name="P:RestSharp.Http.PreAuthenticate">
<summary>
Flag to send authorisation header with the HttpWebRequest
</summary>
</member>
<member name="P:RestSharp.Http.Proxy">
<summary>
Proxy info to be sent with request
</summary>
</member>
<member name="P:RestSharp.Http.CachePolicy">
<summary>
Caching policy for requests created with this wrapper.
</summary>
</member>
<member name="T:RestSharp.HttpCookie">
<summary>
Representation of an HTTP cookie
</summary>
</member>
<member name="P:RestSharp.HttpCookie.Comment">
<summary>
Comment of the cookie
</summary>
</member>
<member name="P:RestSharp.HttpCookie.CommentUri">
<summary>
Comment of the cookie
</summary>
</member>
<member name="P:RestSharp.HttpCookie.Discard">
<summary>
Indicates whether the cookie should be discarded at the end of the session
</summary>
</member>
<member name="P:RestSharp.HttpCookie.Domain">
<summary>
Domain of the cookie
</summary>
</member>
<member name="P:RestSharp.HttpCookie.Expired">
<summary>
Indicates whether the cookie is expired
</summary>
</member>
<member name="P:RestSharp.HttpCookie.Expires">
<summary>
Date and time that the cookie expires
</summary>
</member>
<member name="P:RestSharp.HttpCookie.HttpOnly">
<summary>
Indicates that this cookie should only be accessed by the server
</summary>
</member>
<member name="P:RestSharp.HttpCookie.Name">
<summary>
Name of the cookie
</summary>
</member>
<member name="P:RestSharp.HttpCookie.Path">
<summary>
Path of the cookie
</summary>
</member>
<member name="P:RestSharp.HttpCookie.Port">
<summary>
Port of the cookie
</summary>
</member>
<member name="P:RestSharp.HttpCookie.Secure">
<summary>
Indicates that the cookie should only be sent over secure channels
</summary>
</member>
<member name="P:RestSharp.HttpCookie.TimeStamp">
<summary>
Date and time the cookie was created
</summary>
</member>
<member name="P:RestSharp.HttpCookie.Value">
<summary>
Value of the cookie
</summary>
</member>
<member name="P:RestSharp.HttpCookie.Version">
<summary>
Version of the cookie
</summary>
</member>
<member name="T:RestSharp.HttpFile">
<summary>
Container for HTTP file
</summary>
</member>
<member name="P:RestSharp.HttpFile.ContentLength">
<summary>
The length of data to be sent
</summary>
</member>
<member name="P:RestSharp.HttpFile.Writer">
<summary>
Provides raw data for file
</summary>
</member>
<member name="P:RestSharp.HttpFile.FileName">
<summary>
Name of the file to use when uploading
</summary>
</member>
<member name="P:RestSharp.HttpFile.ContentType">
<summary>
MIME content type of file
</summary>
</member>
<member name="P:RestSharp.HttpFile.Name">
<summary>
Name of the parameter