RestSharp.xml 139 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>RestSharp</name>
  5. </assembly>
  6. <members>
  7. <member name="T:RestSharp.NtlmAuthenticator">
  8. <summary>
  9. Tries to Authenticate with the credentials of the currently logged in user, or impersonate a user
  10. </summary>
  11. </member>
  12. <member name="M:RestSharp.NtlmAuthenticator.#ctor">
  13. <summary>
  14. Authenticate with the credentials of the currently logged in user
  15. </summary>
  16. </member>
  17. <member name="M:RestSharp.NtlmAuthenticator.#ctor(System.String,System.String)">
  18. <summary>
  19. Authenticate by impersonation
  20. </summary>
  21. <param name="username"></param>
  22. <param name="password"></param>
  23. </member>
  24. <member name="M:RestSharp.NtlmAuthenticator.#ctor(System.Net.ICredentials)">
  25. <summary>
  26. Authenticate by impersonation, using an existing <c>ICredentials</c> instance
  27. </summary>
  28. <param name="credentials"></param>
  29. </member>
  30. <member name="T:RestSharp.Authenticators.OAuth1Authenticator">
  31. <seealso href="http://tools.ietf.org/html/rfc5849"/>
  32. </member>
  33. <member name="T:RestSharp.OAuth2Authenticator">
  34. <summary>
  35. Base class for OAuth 2 Authenticators.
  36. </summary>
  37. <remarks>
  38. Since there are many ways to authenticate in OAuth2,
  39. this is used as a base class to differentiate between
  40. other authenticators.
  41. Any other OAuth2 authenticators must derive from this
  42. abstract class.
  43. </remarks>
  44. </member>
  45. <member name="F:RestSharp.OAuth2Authenticator._accessToken">
  46. <summary>
  47. Access token to be used when authenticating.
  48. </summary>
  49. </member>
  50. <member name="M:RestSharp.OAuth2Authenticator.#ctor(System.String)">
  51. <summary>
  52. Initializes a new instance of the <see cref="T:RestSharp.OAuth2Authenticator"/> class.
  53. </summary>
  54. <param name="accessToken">
  55. The access token.
  56. </param>
  57. </member>
  58. <member name="P:RestSharp.OAuth2Authenticator.AccessToken">
  59. <summary>
  60. Gets the access token.
  61. </summary>
  62. </member>
  63. <member name="T:RestSharp.OAuth2UriQueryParameterAuthenticator">
  64. <summary>
  65. The OAuth 2 authenticator using URI query parameter.
  66. </summary>
  67. <remarks>
  68. Based on http://tools.ietf.org/html/draft-ietf-oauth-v2-10#section-5.1.2
  69. </remarks>
  70. </member>
  71. <member name="M:RestSharp.OAuth2UriQueryParameterAuthenticator.#ctor(System.String)">
  72. <summary>
  73. Initializes a new instance of the <see cref="T:RestSharp.OAuth2UriQueryParameterAuthenticator"/> class.
  74. </summary>
  75. <param name="accessToken">
  76. The access token.
  77. </param>
  78. </member>
  79. <member name="T:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator">
  80. <summary>
  81. The OAuth 2 authenticator using the authorization request header field.
  82. </summary>
  83. <remarks>
  84. Based on http://tools.ietf.org/html/draft-ietf-oauth-v2-10#section-5.1.1
  85. </remarks>
  86. </member>
  87. <member name="F:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator._authorizationValue">
  88. <summary>
  89. Stores the Authorization header value as "[tokenType] accessToken". used for performance.
  90. </summary>
  91. </member>
  92. <member name="M:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator.#ctor(System.String)">
  93. <summary>
  94. Initializes a new instance of the <see cref="T:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator"/> class.
  95. </summary>
  96. <param name="accessToken">
  97. The access token.
  98. </param>
  99. </member>
  100. <member name="M:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator.#ctor(System.String,System.String)">
  101. <summary>
  102. Initializes a new instance of the <see cref="T:RestSharp.OAuth2AuthorizationRequestHeaderAuthenticator"/> class.
  103. </summary>
  104. <param name="accessToken">
  105. The access token.
  106. </param>
  107. <param name="tokenType">
  108. The token type.
  109. </param>
  110. </member>
  111. <member name="F:RestSharp.Authenticators.OAuth.OAuthTools._encoding">
  112. <summary>
  113. All text parameters are UTF-8 encoded (per section 5.1).
  114. </summary>
  115. <seealso cref="!:http://www.hueniverse.com/hueniverse/2008/10/beginners-gui-1.html"/>
  116. </member>
  117. <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetNonce">
  118. <summary>
  119. Generates a random 16-byte lowercase alphanumeric string.
  120. </summary>
  121. <seealso cref="!:http://oauth.net/core/1.0#nonce"/>
  122. <returns></returns>
  123. </member>
  124. <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetTimestamp">
  125. <summary>
  126. Generates a timestamp based on the current elapsed seconds since '01/01/1970 0000 GMT"
  127. </summary>
  128. <seealso cref="!:http://oauth.net/core/1.0#nonce"/>
  129. <returns></returns>
  130. </member>
  131. <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetTimestamp(System.DateTime)">
  132. <summary>
  133. Generates a timestamp based on the elapsed seconds of a given time since '01/01/1970 0000 GMT"
  134. </summary>
  135. <seealso cref="!:http://oauth.net/core/1.0#nonce"/>
  136. <param name="dateTime">A specified point in time.</param>
  137. <returns></returns>
  138. </member>
  139. <member name="F:RestSharp.Authenticators.OAuth.OAuthTools.UriRfc3986CharsToEscape">
  140. <summary>
  141. The set of characters that are unreserved in RFC 2396 but are NOT unreserved in RFC 3986.
  142. </summary>
  143. <seealso cref="!:http://stackoverflow.com/questions/846487/how-to-get-uri-escapedatastring-to-comply-with-rfc-3986"/>
  144. </member>
  145. <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.UrlEncodeRelaxed(System.String)">
  146. <summary>
  147. URL encodes a string based on section 5.1 of the OAuth spec.
  148. Namely, percent encoding with [RFC3986], avoiding unreserved characters,
  149. upper-casing hexadecimal characters, and UTF-8 encoding for text value pairs.
  150. </summary>
  151. <param name="value">The value to escape.</param>
  152. <returns>The escaped value.</returns>
  153. <remarks>
  154. The <see cref="M:System.Uri.EscapeDataString(System.String)"/> method is <i>supposed</i> to take on
  155. RFC 3986 behavior if certain elements are present in a .config file. Even if this
  156. actually worked (which in my experiments it <i>doesn't</i>), we can't rely on every
  157. host actually having this configuration element present.
  158. </remarks>
  159. <seealso cref="!:http://oauth.net/core/1.0#encoding_parameters"/>
  160. <seealso cref="!:http://stackoverflow.com/questions/846487/how-to-get-uri-escapedatastring-to-comply-with-rfc-3986"/>
  161. </member>
  162. <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.UrlEncodeStrict(System.String)">
  163. <summary>
  164. URL encodes a string based on section 5.1 of the OAuth spec.
  165. Namely, percent encoding with [RFC3986], avoiding unreserved characters,
  166. upper-casing hexadecimal characters, and UTF-8 encoding for text value pairs.
  167. </summary>
  168. <param name="value"></param>
  169. <seealso cref="!:http://oauth.net/core/1.0#encoding_parameters"/>
  170. </member>
  171. <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.NormalizeRequestParameters(RestSharp.Authenticators.OAuth.WebParameterCollection)">
  172. <summary>
  173. Sorts a collection of key-value pairs by name, and then value if equal,
  174. concatenating them into a single string. This string should be encoded
  175. prior to, or after normalization is run.
  176. </summary>
  177. <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.1.1"/>
  178. <param name="parameters"></param>
  179. <returns></returns>
  180. </member>
  181. <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.SortParametersExcludingSignature(RestSharp.Authenticators.OAuth.WebParameterCollection)">
  182. <summary>
  183. Sorts a <see cref="T:RestSharp.Authenticators.OAuth.WebParameterCollection"/> by name, and then value if equal.
  184. </summary>
  185. <param name="parameters">A collection of parameters to sort</param>
  186. <returns>A sorted parameter collection</returns>
  187. </member>
  188. <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.ConstructRequestUrl(System.Uri)">
  189. <summary>
  190. Creates a request URL suitable for making OAuth requests.
  191. Resulting URLs must exclude port 80 or port 443 when accompanied by HTTP and HTTPS, respectively.
  192. Resulting URLs must be lower case.
  193. </summary>
  194. <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.1.2"/>
  195. <param name="url">The original request URL</param>
  196. <returns></returns>
  197. </member>
  198. <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.ConcatenateRequestElements(System.String,System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
  199. <summary>
  200. Creates a request elements concatentation value to send with a request.
  201. This is also known as the signature base.
  202. </summary>
  203. <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.1.3"/>
  204. <seealso cref="!:http://oauth.net/core/1.0#sig_base_example"/>
  205. <param name="method">The request's HTTP method type</param>
  206. <param name="url">The request URL</param>
  207. <param name="parameters">The request's parameters</param>
  208. <returns>A signature base string</returns>
  209. </member>
  210. <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,System.String,System.String)">
  211. <summary>
  212. Creates a signature value given a signature base and the consumer secret.
  213. This method is used when the token secret is currently unknown.
  214. </summary>
  215. <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
  216. <param name="signatureMethod">The hashing method</param>
  217. <param name="signatureBase">The signature base</param>
  218. <param name="consumerSecret">The consumer key</param>
  219. <returns></returns>
  220. </member>
  221. <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,RestSharp.Authenticators.OAuth.OAuthSignatureTreatment,System.String,System.String)">
  222. <summary>
  223. Creates a signature value given a signature base and the consumer secret.
  224. This method is used when the token secret is currently unknown.
  225. </summary>
  226. <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
  227. <param name="signatureMethod">The hashing method</param>
  228. <param name="signatureTreatment">The treatment to use on a signature value</param>
  229. <param name="signatureBase">The signature base</param>
  230. <param name="consumerSecret">The consumer key</param>
  231. <returns></returns>
  232. </member>
  233. <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,System.String,System.String,System.String)">
  234. <summary>
  235. Creates a signature value given a signature base and the consumer secret and a known token secret.
  236. </summary>
  237. <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
  238. <param name="signatureMethod">The hashing method</param>
  239. <param name="signatureBase">The signature base</param>
  240. <param name="consumerSecret">The consumer secret</param>
  241. <param name="tokenSecret">The token secret</param>
  242. <returns></returns>
  243. </member>
  244. <member name="M:RestSharp.Authenticators.OAuth.OAuthTools.GetSignature(RestSharp.Authenticators.OAuth.OAuthSignatureMethod,RestSharp.Authenticators.OAuth.OAuthSignatureTreatment,System.String,System.String,System.String)">
  245. <summary>
  246. Creates a signature value given a signature base and the consumer secret and a known token secret.
  247. </summary>
  248. <seealso cref="!:http://oauth.net/core/1.0#rfc.section.9.2"/>
  249. <param name="signatureMethod">The hashing method</param>
  250. <param name="signatureTreatment">The treatment to use on a signature value</param>
  251. <param name="signatureBase">The signature base</param>
  252. <param name="consumerSecret">The consumer secret</param>
  253. <param name="tokenSecret">The token secret</param>
  254. <returns></returns>
  255. </member>
  256. <member name="T:RestSharp.Authenticators.OAuth.OAuthWorkflow">
  257. <summary>
  258. A class to encapsulate OAuth authentication flow.
  259. <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
  260. </summary>
  261. </member>
  262. <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildRequestTokenInfo(System.String)">
  263. <summary>
  264. Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
  265. <see cref="T:RestSharp.IAuthenticator"/> for the purpose of requesting an
  266. unauthorized request token.
  267. </summary>
  268. <param name="method">The HTTP method for the intended request</param>
  269. <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
  270. <returns></returns>
  271. </member>
  272. <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildRequestTokenInfo(System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
  273. <summary>
  274. Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
  275. <see cref="T:RestSharp.IAuthenticator"/> for the purpose of requesting an
  276. unauthorized request token.
  277. </summary>
  278. <param name="method">The HTTP method for the intended request</param>
  279. <param name="parameters">Any existing, non-OAuth query parameters desired in the request</param>
  280. <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
  281. <returns></returns>
  282. </member>
  283. <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildAccessTokenInfo(System.String)">
  284. <summary>
  285. Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
  286. <see cref="T:RestSharp.IAuthenticator"/> for the purpose of exchanging a request token
  287. for an access token authorized by the user at the Service Provider site.
  288. </summary>
  289. <param name="method">The HTTP method for the intended request</param>
  290. <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
  291. </member>
  292. <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildAccessTokenInfo(System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
  293. <summary>
  294. Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
  295. <see cref="T:RestSharp.IAuthenticator"/> for the purpose of exchanging a request token
  296. for an access token authorized by the user at the Service Provider site.
  297. </summary>
  298. <param name="method">The HTTP method for the intended request</param>
  299. <seealso cref="!:http://oauth.net/core/1.0#anchor9"/>
  300. <param name="parameters">Any existing, non-OAuth query parameters desired in the request</param>
  301. </member>
  302. <member name="M:RestSharp.Authenticators.OAuth.OAuthWorkflow.BuildClientAuthAccessTokenInfo(System.String,RestSharp.Authenticators.OAuth.WebParameterCollection)">
  303. <summary>
  304. Generates a <see cref="T:RestSharp.Authenticators.OAuth.OAuthWebQueryInfo"/> instance to pass to an
  305. <see cref="T:RestSharp.IAuthenticator"/> for the purpose of exchanging user credentials
  306. for an access token authorized by the user at the Service Provider site.
  307. </summary>
  308. <param name="method">The HTTP method for the intended request</param>
  309. <seealso cref="!:http://tools.ietf.org/html/draft-dehora-farrell-oauth-accesstoken-creds-00#section-4"/>
  310. <param name="parameters">Any existing, non-OAuth query parameters desired in the request</param>
  311. </member>
  312. <member name="P:RestSharp.Authenticators.OAuth.OAuthWorkflow.RequestTokenUrl">
  313. <seealso cref="!:http://oauth.net/core/1.0#request_urls"/>
  314. </member>
  315. <member name="P:RestSharp.Authenticators.OAuth.OAuthWorkflow.AccessTokenUrl">
  316. <seealso cref="!:http://oauth.net/core/1.0#request_urls"/>
  317. </member>
  318. <member name="P:RestSharp.Authenticators.OAuth.OAuthWorkflow.AuthorizationUrl">
  319. <seealso cref="!:http://oauth.net/core/1.0#request_urls"/>
  320. </member>
  321. <member name="T:RestSharp.Deserializers.DeserializeAsAttribute">
  322. <summary>
  323. Allows control how class and property names and values are deserialized by XmlAttributeDeserializer
  324. </summary>
  325. </member>
  326. <member name="P:RestSharp.Deserializers.DeserializeAsAttribute.Name">
  327. <summary>
  328. The name to use for the serialized element
  329. </summary>
  330. </member>
  331. <member name="P:RestSharp.Deserializers.DeserializeAsAttribute.Attribute">
  332. <summary>
  333. Sets if the property to Deserialize is an Attribute or Element (Default: false)
  334. </summary>
  335. </member>
  336. <member name="T:RestSharp.Deserializers.DotNetXmlDeserializer">
  337. <summary>
  338. Wrapper for System.Xml.Serialization.XmlSerializer.
  339. </summary>
  340. </member>
  341. <member name="T:RestSharp.ParameterType">
  342. <summary>
  343. Types of parameters that can be added to requests
  344. </summary>
  345. </member>
  346. <member name="T:RestSharp.DataFormat">
  347. <summary>
  348. Data formats
  349. </summary>
  350. </member>
  351. <member name="T:RestSharp.Method">
  352. <summary>
  353. HTTP method to use when making requests
  354. </summary>
  355. </member>
  356. <member name="T:RestSharp.DateFormat">
  357. <summary>
  358. Format strings for commonly-used date formats
  359. </summary>
  360. </member>
  361. <member name="F:RestSharp.DateFormat.Iso8601">
  362. <summary>
  363. .NET format string for ISO 8601 date format
  364. </summary>
  365. </member>
  366. <member name="F:RestSharp.DateFormat.RoundTrip">
  367. <summary>
  368. .NET format string for roundtrip date format
  369. </summary>
  370. </member>
  371. <member name="T:RestSharp.ResponseStatus">
  372. <summary>
  373. Status for responses (surprised?)
  374. </summary>
  375. </member>
  376. <member name="T:RestSharp.Extensions.MiscExtensions">
  377. <summary>
  378. Extension method overload!
  379. </summary>
  380. </member>
  381. <member name="M:RestSharp.Extensions.MiscExtensions.SaveAs(System.Byte[],System.String)">
  382. <summary>
  383. Save a byte array to a file
  384. </summary>
  385. <param name="input">Bytes to save</param>
  386. <param name="path">Full path to save file to</param>
  387. </member>
  388. <member name="M:RestSharp.Extensions.MiscExtensions.ReadAsBytes(System.IO.Stream)">
  389. <summary>
  390. Read a stream into a byte array
  391. </summary>
  392. <param name="input">Stream to read</param>
  393. <returns>byte[]</returns>
  394. </member>
  395. <member name="M:RestSharp.Extensions.MiscExtensions.CopyTo(System.IO.Stream,System.IO.Stream)">
  396. <summary>
  397. Copies bytes from one stream to another
  398. </summary>
  399. <param name="input">The input stream.</param>
  400. <param name="output">The output stream.</param>
  401. </member>
  402. <member name="M:RestSharp.Extensions.MiscExtensions.AsString(System.Byte[])">
  403. <summary>
  404. Converts a byte array to a string, using its byte order mark to convert it to the right encoding.
  405. http://www.shrinkrays.net/code-snippets/csharp/an-extension-method-for-converting-a-byte-array-to-a-string.aspx
  406. </summary>
  407. <param name="buffer">An array of bytes to convert</param>
  408. <returns>The byte as a string.</returns>
  409. </member>
  410. <member name="M:RestSharp.Contrib.HttpUtility.HtmlDecode(System.String)">
  411. <summary>
  412. Decodes an HTML-encoded string and returns the decoded string.
  413. </summary>
  414. <param name="s">The HTML string to decode. </param>
  415. <returns>The decoded text.</returns>
  416. </member>
  417. <member name="M:RestSharp.Contrib.HttpUtility.HtmlDecode(System.String,System.IO.TextWriter)">
  418. <summary>
  419. Decodes an HTML-encoded string and sends the resulting output to a TextWriter output stream.
  420. </summary>
  421. <param name="s">The HTML string to decode</param>
  422. <param name="output">The TextWriter output stream containing the decoded string. </param>
  423. </member>
  424. <member name="M:RestSharp.Contrib.HttpUtility.HtmlEncode(System.String,System.IO.TextWriter)">
  425. <summary>
  426. HTML-encodes a string and sends the resulting output to a TextWriter output stream.
  427. </summary>
  428. <param name="s">The string to encode. </param>
  429. <param name="output">The TextWriter output stream containing the encoded string. </param>
  430. </member>
  431. <member name="T:RestSharp.Extensions.ReflectionExtensions">
  432. <summary>
  433. Reflection extensions
  434. </summary>
  435. </member>
  436. <member name="M:RestSharp.Extensions.ReflectionExtensions.GetAttribute``1(System.Reflection.MemberInfo)">
  437. <summary>
  438. Retrieve an attribute from a member (property)
  439. </summary>
  440. <typeparam name="T">Type of attribute to retrieve</typeparam>
  441. <param name="prop">Member to retrieve attribute from</param>
  442. <returns></returns>
  443. </member>
  444. <member name="M:RestSharp.Extensions.ReflectionExtensions.GetAttribute``1(System.Type)">
  445. <summary>
  446. Retrieve an attribute from a type
  447. </summary>
  448. <typeparam name="T">Type of attribute to retrieve</typeparam>
  449. <param name="type">Type to retrieve attribute from</param>
  450. <returns></returns>
  451. </member>
  452. <member name="M:RestSharp.Extensions.ReflectionExtensions.IsSubclassOfRawGeneric(System.Type,System.Type)">
  453. <summary>
  454. Checks a type to see if it derives from a raw generic (e.g. List[[]])
  455. </summary>
  456. <param name="toCheck"></param>
  457. <param name="generic"></param>
  458. <returns></returns>
  459. </member>
  460. <member name="M:RestSharp.Extensions.ReflectionExtensions.FindEnumValue(System.Type,System.String,System.Globalization.CultureInfo)">
  461. <summary>
  462. Find a value from a System.Enum by trying several possible variants
  463. of the string value of the enum.
  464. </summary>
  465. <param name="type">Type of enum</param>
  466. <param name="value">Value for which to search</param>
  467. <param name="culture">The culture used to calculate the name variants</param>
  468. <returns></returns>
  469. </member>
  470. <member name="M:RestSharp.Extensions.ResponseStatusExtensions.ToWebException(RestSharp.ResponseStatus)">
  471. <summary>
  472. Convert a <see cref="T:RestSharp.ResponseStatus"/> to a <see cref="T:System.Net.WebException"/> instance.
  473. </summary>
  474. <param name="responseStatus">The response status.</param>
  475. <returns></returns>
  476. <exception cref="T:System.ArgumentOutOfRangeException">responseStatus</exception>
  477. </member>
  478. <member name="M:RestSharp.Extensions.StringExtensions.UrlEncode(System.String)">
  479. <summary>
  480. Uses Uri.EscapeDataString() based on recommendations on MSDN
  481. http://blogs.msdn.com/b/yangxind/archive/2006/11/09/don-t-use-net-system-uri-unescapedatastring-in-url-decoding.aspx
  482. </summary>
  483. </member>
  484. <member name="M:RestSharp.Extensions.StringExtensions.HasValue(System.String)">
  485. <summary>
  486. Check that a string is not null or empty
  487. </summary>
  488. <param name="input">String to check</param>
  489. <returns>bool</returns>
  490. </member>
  491. <member name="M:RestSharp.Extensions.StringExtensions.RemoveUnderscoresAndDashes(System.String)">
  492. <summary>
  493. Remove underscores from a string
  494. </summary>
  495. <param name="input">String to process</param>
  496. <returns>string</returns>
  497. </member>
  498. <member name="M:RestSharp.Extensions.StringExtensions.ParseJsonDate(System.String,System.Globalization.CultureInfo)">
  499. <summary>
  500. Parses most common JSON date formats
  501. </summary>
  502. <param name="input">JSON value to parse</param>
  503. <param name="culture"></param>
  504. <returns>DateTime</returns>
  505. </member>
  506. <member name="M:RestSharp.Extensions.StringExtensions.RemoveSurroundingQuotes(System.String)">
  507. <summary>
  508. Remove leading and trailing " from a string
  509. </summary>
  510. <param name="input">String to parse</param>
  511. <returns>String</returns>
  512. </member>
  513. <member name="M:RestSharp.Extensions.StringExtensions.Matches(System.String,System.String)">
  514. <summary>
  515. Checks a string to see if it matches a regex
  516. </summary>
  517. <param name="input">String to check</param>
  518. <param name="pattern">Pattern to match</param>
  519. <returns>bool</returns>
  520. </member>
  521. <member name="M:RestSharp.Extensions.StringExtensions.ToPascalCase(System.String,System.Globalization.CultureInfo)">
  522. <summary>
  523. Converts a string to pascal case
  524. </summary>
  525. <param name="lowercaseAndUnderscoredWord">String to convert</param>
  526. <param name="culture"></param>
  527. <returns>string</returns>
  528. </member>
  529. <member name="M:RestSharp.Extensions.StringExtensions.ToPascalCase(System.String,System.Boolean,System.Globalization.CultureInfo)">
  530. <summary>
  531. Converts a string to pascal case with the option to remove underscores
  532. </summary>
  533. <param name="text">String to convert</param>
  534. <param name="removeUnderscores">Option to remove underscores</param>
  535. <param name="culture"></param>
  536. <returns></returns>
  537. </member>
  538. <member name="M:RestSharp.Extensions.StringExtensions.ToCamelCase(System.String,System.Globalization.CultureInfo)">
  539. <summary>
  540. Converts a string to camel case
  541. </summary>
  542. <param name="lowercaseAndUnderscoredWord">String to convert</param>
  543. <param name="culture"></param>
  544. <returns>String</returns>
  545. </member>
  546. <member name="M:RestSharp.Extensions.StringExtensions.MakeInitialLowerCase(System.String)">
  547. <summary>
  548. Convert the first letter of a string to lower case
  549. </summary>
  550. <param name="word">String to convert</param>
  551. <returns>string</returns>
  552. </member>
  553. <member name="M:RestSharp.Extensions.StringExtensions.IsUpperCase(System.String)">
  554. <summary>
  555. Checks to see if a string is all uppper case
  556. </summary>
  557. <param name="inputString">String to check</param>
  558. <returns>bool</returns>
  559. </member>
  560. <member name="M:RestSharp.Extensions.StringExtensions.AddUnderscores(System.String)">
  561. <summary>
  562. Add underscores to a pascal-cased string
  563. </summary>
  564. <param name="pascalCasedWord">String to convert</param>
  565. <returns>string</returns>
  566. </member>
  567. <member name="M:RestSharp.Extensions.StringExtensions.AddDashes(System.String)">
  568. <summary>
  569. Add dashes to a pascal-cased string
  570. </summary>
  571. <param name="pascalCasedWord">String to convert</param>
  572. <returns>string</returns>
  573. </member>
  574. <member name="M:RestSharp.Extensions.StringExtensions.AddUnderscorePrefix(System.String)">
  575. <summary>
  576. Add an undescore prefix to a pascasl-cased string
  577. </summary>
  578. <param name="pascalCasedWord"></param>
  579. <returns></returns>
  580. </member>
  581. <member name="M:RestSharp.Extensions.StringExtensions.AddSpaces(System.String)">
  582. <summary>
  583. Add spaces to a pascal-cased string
  584. </summary>
  585. <param name="pascalCasedWord">String to convert</param>
  586. <returns>string</returns>
  587. </member>
  588. <member name="M:RestSharp.Extensions.StringExtensions.GetNameVariants(System.String,System.Globalization.CultureInfo)">
  589. <summary>
  590. Return possible variants of a name for name matching.
  591. </summary>
  592. <param name="name">String to convert</param>
  593. <param name="culture">The culture to use for conversion</param>
  594. <returns>IEnumerable&lt;string&gt;</returns>
  595. </member>
  596. <member name="T:RestSharp.Extensions.XmlExtensions">
  597. <summary>
  598. XML Extension Methods
  599. </summary>
  600. </member>
  601. <member name="M:RestSharp.Extensions.XmlExtensions.AsNamespaced(System.String,System.String)">
  602. <summary>
  603. Returns the name of an element with the namespace if specified
  604. </summary>
  605. <param name="name">Element name</param>
  606. <param name="namespace">XML Namespace</param>
  607. <returns></returns>
  608. </member>
  609. <member name="T:RestSharp.FileParameter">
  610. <summary>
  611. Container for files to be uploaded with requests
  612. </summary>
  613. </member>
  614. <member name="M:RestSharp.FileParameter.Create(System.String,System.Byte[],System.String,System.String)">
  615. <summary>
  616. Creates a file parameter from an array of bytes.
  617. </summary>
  618. <param name="name">The parameter name to use in the request.</param>
  619. <param name="data">The data to use as the file's contents.</param>
  620. <param name="filename">The filename to use in the request.</param>
  621. <param name="contentType">The content type to use in the request.</param>
  622. <returns>The <see cref="T:RestSharp.FileParameter"/></returns>
  623. </member>
  624. <member name="M:RestSharp.FileParameter.Create(System.String,System.Byte[],System.String)">
  625. <summary>
  626. Creates a file parameter from an array of bytes.
  627. </summary>
  628. <param name="name">The parameter name to use in the request.</param>
  629. <param name="data">The data to use as the file's contents.</param>
  630. <param name="filename">The filename to use in the request.</param>
  631. <returns>The <see cref="T:RestSharp.FileParameter"/> using the default content type.</returns>
  632. </member>
  633. <member name="P:RestSharp.FileParameter.ContentLength">
  634. <summary>
  635. The length of data to be sent
  636. </summary>
  637. </member>
  638. <member name="P:RestSharp.FileParameter.Writer">
  639. <summary>
  640. Provides raw data for file
  641. </summary>
  642. </member>
  643. <member name="P:RestSharp.FileParameter.FileName">
  644. <summary>
  645. Name of the file to use when uploading
  646. </summary>
  647. </member>
  648. <member name="P:RestSharp.FileParameter.ContentType">
  649. <summary>
  650. MIME content type of file
  651. </summary>
  652. </member>
  653. <member name="P:RestSharp.FileParameter.Name">
  654. <summary>
  655. Name of the parameter
  656. </summary>
  657. </member>
  658. <member name="T:RestSharp.Http">
  659. <summary>
  660. HttpWebRequest wrapper (async methods)
  661. </summary>
  662. <summary>
  663. HttpWebRequest wrapper
  664. </summary>
  665. <summary>
  666. HttpWebRequest wrapper (sync methods)
  667. </summary>
  668. </member>
  669. <member name="P:RestSharp.IHttp.AlwaysMultipartFormData">
  670. <summary>
  671. Always send a multipart/form-data request - even when no Files are present.
  672. </summary>
  673. </member>
  674. <member name="P:RestSharp.IHttp.RequestBodyBytes">
  675. <summary>
  676. An alternative to RequestBody, for when the caller already has the byte array.
  677. </summary>
  678. </member>
  679. <member name="M:RestSharp.Http.AsPostAsync(System.Action{RestSharp.HttpResponse},System.String)">
  680. <summary>
  681. Execute an async POST-style request with the specified HTTP Method.
  682. </summary>
  683. <param name="action"></param>
  684. <param name="httpMethod">The HTTP method to execute.</param>
  685. <returns></returns>
  686. </member>
  687. <member name="M:RestSharp.Http.AsGetAsync(System.Action{RestSharp.HttpResponse},System.String)">
  688. <summary>
  689. Execute an async GET-style request with the specified HTTP Method.
  690. </summary>
  691. <param name="action"></param>
  692. <param name="httpMethod">The HTTP method to execute.</param>
  693. <returns></returns>
  694. </member>
  695. <member name="M:RestSharp.Http.Create">
  696. <summary>
  697. Creates an IHttp
  698. </summary>
  699. <returns></returns>
  700. </member>
  701. <member name="M:RestSharp.Http.#ctor">
  702. <summary>
  703. Default constructor
  704. </summary>
  705. </member>
  706. <member name="M:RestSharp.Http.Post">
  707. <summary>
  708. Execute a POST request
  709. </summary>
  710. </member>
  711. <member name="M:RestSharp.Http.Put">
  712. <summary>
  713. Execute a PUT request
  714. </summary>
  715. </member>
  716. <member name="M:RestSharp.Http.Get">
  717. <summary>
  718. Execute a GET request
  719. </summary>
  720. </member>
  721. <member name="M:RestSharp.Http.Head">
  722. <summary>
  723. Execute a HEAD request
  724. </summary>
  725. </member>
  726. <member name="M:RestSharp.Http.Options">
  727. <summary>
  728. Execute an OPTIONS request
  729. </summary>
  730. </member>
  731. <member name="M:RestSharp.Http.Delete">
  732. <summary>
  733. Execute a DELETE request
  734. </summary>
  735. </member>
  736. <member name="M:RestSharp.Http.Patch">
  737. <summary>
  738. Execute a PATCH request
  739. </summary>
  740. </member>
  741. <member name="M:RestSharp.Http.Merge">
  742. <summary>
  743. Execute a MERGE request
  744. </summary>
  745. </member>
  746. <member name="M:RestSharp.Http.AsGet(System.String)">
  747. <summary>
  748. Execute a GET-style request with the specified HTTP Method.
  749. </summary>
  750. <param name="httpMethod">The HTTP method to execute.</param>
  751. <returns></returns>
  752. </member>
  753. <member name="M:RestSharp.Http.AsPost(System.String)">
  754. <summary>
  755. Execute a POST-style request with the specified HTTP Method.
  756. </summary>
  757. <param name="httpMethod">The HTTP method to execute.</param>
  758. <returns></returns>
  759. </member>
  760. <member name="P:RestSharp.Http.HasParameters">
  761. <summary>
  762. True if this HTTP request has any HTTP parameters
  763. </summary>
  764. </member>
  765. <member name="P:RestSharp.Http.HasCookies">
  766. <summary>
  767. True if this HTTP request has any HTTP cookies
  768. </summary>
  769. </member>
  770. <member name="P:RestSharp.Http.HasBody">
  771. <summary>
  772. True if a request body has been specified
  773. </summary>
  774. </member>
  775. <member name="P:RestSharp.Http.HasFiles">
  776. <summary>
  777. True if files have been set to be uploaded
  778. </summary>
  779. </member>
  780. <member name="P:RestSharp.Http.AlwaysMultipartFormData">
  781. <summary>
  782. Always send a multipart/form-data request - even when no Files are present.
  783. </summary>
  784. </member>
  785. <member name="P:RestSharp.Http.UserAgent">
  786. <summary>
  787. UserAgent to be sent with request
  788. </summary>
  789. </member>
  790. <member name="P:RestSharp.Http.Timeout">
  791. <summary>
  792. Timeout in milliseconds to be used for the request
  793. </summary>
  794. </member>
  795. <member name="P:RestSharp.Http.ReadWriteTimeout">
  796. <summary>
  797. The number of milliseconds before the writing or reading times out.
  798. </summary>
  799. </member>
  800. <member name="P:RestSharp.Http.Credentials">
  801. <summary>
  802. System.Net.ICredentials to be sent with request
  803. </summary>
  804. </member>
  805. <member name="P:RestSharp.Http.CookieContainer">
  806. <summary>
  807. The System.Net.CookieContainer to be used for the request
  808. </summary>
  809. </member>
  810. <member name="P:RestSharp.Http.ResponseWriter">
  811. <summary>
  812. The method to use to write the response instead of reading into RawBytes
  813. </summary>
  814. </member>
  815. <member name="P:RestSharp.Http.Files">
  816. <summary>
  817. Collection of files to be sent with request
  818. </summary>
  819. </member>
  820. <member name="P:RestSharp.Http.FollowRedirects">
  821. <summary>
  822. Whether or not HTTP 3xx response redirects should be automatically followed
  823. </summary>
  824. </member>
  825. <member name="P:RestSharp.Http.ClientCertificates">
  826. <summary>
  827. X509CertificateCollection to be sent with request
  828. </summary>
  829. </member>
  830. <member name="P:RestSharp.Http.MaxRedirects">
  831. <summary>
  832. Maximum number of automatic redirects to follow if FollowRedirects is true
  833. </summary>
  834. </member>
  835. <member name="P:RestSharp.Http.UseDefaultCredentials">
  836. <summary>
  837. Determine whether or not the "default credentials" (e.g. the user account under which the current process is running)
  838. will be sent along to the server.
  839. </summary>
  840. </member>
  841. <member name="P:RestSharp.Http.Headers">
  842. <summary>
  843. HTTP headers to be sent with request
  844. </summary>
  845. </member>
  846. <member name="P:RestSharp.Http.Parameters">
  847. <summary>
  848. HTTP parameters (QueryString or Form values) to be sent with request
  849. </summary>
  850. </member>
  851. <member name="P:RestSharp.Http.Cookies">
  852. <summary>
  853. HTTP cookies to be sent with request
  854. </summary>
  855. </member>
  856. <member name="P:RestSharp.Http.RequestBody">
  857. <summary>
  858. Request body to be sent with request
  859. </summary>
  860. </member>
  861. <member name="P:RestSharp.Http.RequestContentType">
  862. <summary>
  863. Content type of the request body.
  864. </summary>
  865. </member>
  866. <member name="P:RestSharp.Http.RequestBodyBytes">
  867. <summary>
  868. An alternative to RequestBody, for when the caller already has the byte array.
  869. </summary>
  870. </member>
  871. <member name="P:RestSharp.Http.Url">
  872. <summary>
  873. URL to call for this request
  874. </summary>
  875. </member>
  876. <member name="P:RestSharp.Http.PreAuthenticate">
  877. <summary>
  878. Flag to send authorisation header with the HttpWebRequest
  879. </summary>
  880. </member>
  881. <member name="P:RestSharp.Http.Proxy">
  882. <summary>
  883. Proxy info to be sent with request
  884. </summary>
  885. </member>
  886. <member name="T:RestSharp.HttpCookie">
  887. <summary>
  888. Representation of an HTTP cookie
  889. </summary>
  890. </member>
  891. <member name="P:RestSharp.HttpCookie.Comment">
  892. <summary>
  893. Comment of the cookie
  894. </summary>
  895. </member>
  896. <member name="P:RestSharp.HttpCookie.CommentUri">
  897. <summary>
  898. Comment of the cookie
  899. </summary>
  900. </member>
  901. <member name="P:RestSharp.HttpCookie.Discard">
  902. <summary>
  903. Indicates whether the cookie should be discarded at the end of the session
  904. </summary>
  905. </member>
  906. <member name="P:RestSharp.HttpCookie.Domain">
  907. <summary>
  908. Domain of the cookie
  909. </summary>
  910. </member>
  911. <member name="P:RestSharp.HttpCookie.Expired">
  912. <summary>
  913. Indicates whether the cookie is expired
  914. </summary>
  915. </member>
  916. <member name="P:RestSharp.HttpCookie.Expires">
  917. <summary>
  918. Date and time that the cookie expires
  919. </summary>
  920. </member>
  921. <member name="P:RestSharp.HttpCookie.HttpOnly">
  922. <summary>
  923. Indicates that this cookie should only be accessed by the server
  924. </summary>
  925. </member>
  926. <member name="P:RestSharp.HttpCookie.Name">
  927. <summary>
  928. Name of the cookie
  929. </summary>
  930. </member>
  931. <member name="P:RestSharp.HttpCookie.Path">
  932. <summary>
  933. Path of the cookie
  934. </summary>
  935. </member>
  936. <member name="P:RestSharp.HttpCookie.Port">
  937. <summary>
  938. Port of the cookie
  939. </summary>
  940. </member>
  941. <member name="P:RestSharp.HttpCookie.Secure">
  942. <summary>
  943. Indicates that the cookie should only be sent over secure channels
  944. </summary>
  945. </member>
  946. <member name="P:RestSharp.HttpCookie.TimeStamp">
  947. <summary>
  948. Date and time the cookie was created
  949. </summary>
  950. </member>
  951. <member name="P:RestSharp.HttpCookie.Value">
  952. <summary>
  953. Value of the cookie
  954. </summary>
  955. </member>
  956. <member name="P:RestSharp.HttpCookie.Version">
  957. <summary>
  958. Version of the cookie
  959. </summary>
  960. </member>
  961. <member name="T:RestSharp.HttpFile">
  962. <summary>
  963. Container for HTTP file
  964. </summary>
  965. </member>
  966. <member name="P:RestSharp.HttpFile.ContentLength">
  967. <summary>
  968. The length of data to be sent
  969. </summary>
  970. </member>
  971. <member name="P:RestSharp.HttpFile.Writer">
  972. <summary>
  973. Provides raw data for file
  974. </summary>
  975. </member>
  976. <member name="P:RestSharp.HttpFile.FileName">
  977. <summary>
  978. Name of the file to use when uploading
  979. </summary>
  980. </member>
  981. <member name="P:RestSharp.HttpFile.ContentType">
  982. <summary>
  983. MIME content type of file
  984. </summary>
  985. </member>
  986. <member name="P:RestSharp.HttpFile.Name">
  987. <summary>
  988. Name of the parameter
  989. </summary>
  990. </member>
  991. <member name="T:RestSharp.HttpHeader">
  992. <summary>
  993. Representation of an HTTP header
  994. </summary>
  995. </member>
  996. <member name="P:RestSharp.HttpHeader.Name">
  997. <summary>
  998. Name of the header
  999. </summary>
  1000. </member>
  1001. <member name="P:RestSharp.HttpHeader.Value">
  1002. <summary>
  1003. Value of the header
  1004. </summary>
  1005. </member>
  1006. <member name="T:RestSharp.HttpParameter">
  1007. <summary>
  1008. Representation of an HTTP parameter (QueryString or Form value)
  1009. </summary>
  1010. </member>
  1011. <member name="P:RestSharp.HttpParameter.Name">
  1012. <summary>
  1013. Name of the parameter
  1014. </summary>
  1015. </member>
  1016. <member name="P:RestSharp.HttpParameter.Value">
  1017. <summary>
  1018. Value of the parameter
  1019. </summary>
  1020. </member>
  1021. <member name="T:RestSharp.HttpResponse">
  1022. <summary>
  1023. HTTP response data
  1024. </summary>
  1025. </member>
  1026. <member name="T:RestSharp.IHttpResponse">
  1027. <summary>
  1028. HTTP response data
  1029. </summary>
  1030. </member>
  1031. <member name="P:RestSharp.IHttpResponse.ContentType">
  1032. <summary>
  1033. MIME content type of response
  1034. </summary>
  1035. </member>
  1036. <member name="P:RestSharp.IHttpResponse.ContentLength">
  1037. <summary>
  1038. Length in bytes of the response content
  1039. </summary>
  1040. </member>
  1041. <member name="P:RestSharp.IHttpResponse.ContentEncoding">
  1042. <summary>
  1043. Encoding of the response content
  1044. </summary>
  1045. </member>
  1046. <member name="P:RestSharp.IHttpResponse.Content">
  1047. <summary>
  1048. String representation of response content
  1049. </summary>
  1050. </member>
  1051. <member name="P:RestSharp.IHttpResponse.StatusCode">
  1052. <summary>
  1053. HTTP response status code
  1054. </summary>
  1055. </member>
  1056. <member name="P:RestSharp.IHttpResponse.StatusDescription">
  1057. <summary>
  1058. Description of HTTP status returned
  1059. </summary>
  1060. </member>
  1061. <member name="P:RestSharp.IHttpResponse.RawBytes">
  1062. <summary>
  1063. Response content
  1064. </summary>
  1065. </member>
  1066. <member name="P:RestSharp.IHttpResponse.ResponseUri">
  1067. <summary>
  1068. The URL that actually responded to the content (different from request if redirected)
  1069. </summary>
  1070. </member>
  1071. <member name="P:RestSharp.IHttpResponse.Server">
  1072. <summary>
  1073. HttpWebResponse.Server
  1074. </summary>
  1075. </member>
  1076. <member name="P:RestSharp.IHttpResponse.Headers">
  1077. <summary>
  1078. Headers returned by server with the response
  1079. </summary>
  1080. </member>
  1081. <member name="P:RestSharp.IHttpResponse.Cookies">
  1082. <summary>
  1083. Cookies returned by server with the response
  1084. </summary>
  1085. </member>
  1086. <member name="P:RestSharp.IHttpResponse.ResponseStatus">
  1087. <summary>
  1088. Status of the request. Will return Error for transport errors.
  1089. HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
  1090. </summary>
  1091. </member>
  1092. <member name="P:RestSharp.IHttpResponse.ErrorMessage">
  1093. <summary>
  1094. Transport or other non-HTTP error generated while attempting request
  1095. </summary>
  1096. </member>
  1097. <member name="P:RestSharp.IHttpResponse.ErrorException">
  1098. <summary>
  1099. Exception thrown when error is encountered.
  1100. </summary>
  1101. </member>
  1102. <member name="M:RestSharp.HttpResponse.#ctor">
  1103. <summary>
  1104. Default constructor
  1105. </summary>
  1106. </member>
  1107. <member name="P:RestSharp.HttpResponse.ContentType">
  1108. <summary>
  1109. MIME content type of response
  1110. </summary>
  1111. </member>
  1112. <member name="P:RestSharp.HttpResponse.ContentLength">
  1113. <summary>
  1114. Length in bytes of the response content
  1115. </summary>
  1116. </member>
  1117. <member name="P:RestSharp.HttpResponse.ContentEncoding">
  1118. <summary>
  1119. Encoding of the response content
  1120. </summary>
  1121. </member>
  1122. <member name="P:RestSharp.HttpResponse.Content">
  1123. <summary>
  1124. Lazy-loaded string representation of response content
  1125. </summary>
  1126. </member>
  1127. <member name="P:RestSharp.HttpResponse.StatusCode">
  1128. <summary>
  1129. HTTP response status code
  1130. </summary>
  1131. </member>
  1132. <member name="P:RestSharp.HttpResponse.StatusDescription">
  1133. <summary>
  1134. Description of HTTP status returned
  1135. </summary>
  1136. </member>
  1137. <member name="P:RestSharp.HttpResponse.RawBytes">
  1138. <summary>
  1139. Response content
  1140. </summary>
  1141. </member>
  1142. <member name="P:RestSharp.HttpResponse.ResponseUri">
  1143. <summary>
  1144. The URL that actually responded to the content (different from request if redirected)
  1145. </summary>
  1146. </member>
  1147. <member name="P:RestSharp.HttpResponse.Server">
  1148. <summary>
  1149. HttpWebResponse.Server
  1150. </summary>
  1151. </member>
  1152. <member name="P:RestSharp.HttpResponse.Headers">
  1153. <summary>
  1154. Headers returned by server with the response
  1155. </summary>
  1156. </member>
  1157. <member name="P:RestSharp.HttpResponse.Cookies">
  1158. <summary>
  1159. Cookies returned by server with the response
  1160. </summary>
  1161. </member>
  1162. <member name="P:RestSharp.HttpResponse.ResponseStatus">
  1163. <summary>
  1164. Status of the request. Will return Error for transport errors.
  1165. HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
  1166. </summary>
  1167. </member>
  1168. <member name="P:RestSharp.HttpResponse.ErrorMessage">
  1169. <summary>
  1170. Transport or other non-HTTP error generated while attempting request
  1171. </summary>
  1172. </member>
  1173. <member name="P:RestSharp.HttpResponse.ErrorException">
  1174. <summary>
  1175. Exception thrown when error is encountered.
  1176. </summary>
  1177. </member>
  1178. <member name="T:RestSharp.IRestClient">
  1179. <summary>
  1180. </summary>
  1181. </member>
  1182. <member name="M:RestSharp.IRestClient.ExecuteAsync(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle})">
  1183. <summary>
  1184. </summary>
  1185. <param name="request"></param>
  1186. <param name="callback"></param>
  1187. </member>
  1188. <member name="M:RestSharp.IRestClient.ExecuteAsync``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle})">
  1189. <summary>
  1190. </summary>
  1191. <param name="request"></param>
  1192. <param name="callback"></param>
  1193. </member>
  1194. <member name="M:RestSharp.IRestClient.ExecuteAsyncGet(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
  1195. <summary>
  1196. Executes a GET-style request and callback asynchronously, authenticating if needed
  1197. </summary>
  1198. <param name="request">Request to be executed</param>
  1199. <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
  1200. <param name="httpMethod">The HTTP method to execute</param>
  1201. </member>
  1202. <member name="M:RestSharp.IRestClient.ExecuteAsyncPost(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
  1203. <summary>
  1204. Executes a POST-style request and callback asynchronously, authenticating if needed
  1205. </summary>
  1206. <param name="request">Request to be executed</param>
  1207. <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
  1208. <param name="httpMethod">The HTTP method to execute</param>
  1209. </member>
  1210. <member name="M:RestSharp.IRestClient.ExecuteAsyncGet``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
  1211. <summary>
  1212. Executes a GET-style request and callback asynchronously, authenticating if needed
  1213. </summary>
  1214. <typeparam name="T">Target deserialization type</typeparam>
  1215. <param name="request">Request to be executed</param>
  1216. <param name="callback">Callback function to be executed upon completion</param>
  1217. <param name="httpMethod">The HTTP method to execute</param>
  1218. </member>
  1219. <member name="M:RestSharp.IRestClient.ExecuteAsyncPost``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
  1220. <summary>
  1221. Executes a GET-style request and callback asynchronously, authenticating if needed
  1222. </summary>
  1223. <typeparam name="T">Target deserialization type</typeparam>
  1224. <param name="request">Request to be executed</param>
  1225. <param name="callback">Callback function to be executed upon completion</param>
  1226. <param name="httpMethod">The HTTP method to execute</param>
  1227. </member>
  1228. <member name="M:RestSharp.IRestClient.ExecuteTaskAsync``1(RestSharp.IRestRequest,System.Threading.CancellationToken)">
  1229. <summary>
  1230. Executes the request and callback asynchronously, authenticating if needed
  1231. </summary>
  1232. <typeparam name="T">Target deserialization type</typeparam>
  1233. <param name="request">Request to be executed</param>
  1234. <param name="token">The cancellation token</param>
  1235. </member>
  1236. <member name="M:RestSharp.IRestClient.ExecuteTaskAsync``1(RestSharp.IRestRequest)">
  1237. <summary>
  1238. Executes the request asynchronously, authenticating if needed
  1239. </summary>
  1240. <typeparam name="T">Target deserialization type</typeparam>
  1241. <param name="request">Request to be executed</param>
  1242. </member>
  1243. <member name="M:RestSharp.IRestClient.ExecuteGetTaskAsync``1(RestSharp.IRestRequest)">
  1244. <summary>
  1245. Executes a GET-style request asynchronously, authenticating if needed
  1246. </summary>
  1247. <typeparam name="T">Target deserialization type</typeparam>
  1248. <param name="request">Request to be executed</param>
  1249. </member>
  1250. <member name="M:RestSharp.IRestClient.ExecuteGetTaskAsync``1(RestSharp.IRestRequest,System.Threading.CancellationToken)">
  1251. <summary>
  1252. Executes a GET-style request asynchronously, authenticating if needed
  1253. </summary>
  1254. <typeparam name="T">Target deserialization type</typeparam>
  1255. <param name="request">Request to be executed</param>
  1256. <param name="token">The cancellation token</param>
  1257. </member>
  1258. <member name="M:RestSharp.IRestClient.ExecutePostTaskAsync``1(RestSharp.IRestRequest)">
  1259. <summary>
  1260. Executes a POST-style request asynchronously, authenticating if needed
  1261. </summary>
  1262. <typeparam name="T">Target deserialization type</typeparam>
  1263. <param name="request">Request to be executed</param>
  1264. </member>
  1265. <member name="M:RestSharp.IRestClient.ExecutePostTaskAsync``1(RestSharp.IRestRequest,System.Threading.CancellationToken)">
  1266. <summary>
  1267. Executes a POST-style request asynchronously, authenticating if needed
  1268. </summary>
  1269. <typeparam name="T">Target deserialization type</typeparam>
  1270. <param name="request">Request to be executed</param>
  1271. <param name="token">The cancellation token</param>
  1272. </member>
  1273. <member name="M:RestSharp.IRestClient.ExecuteTaskAsync(RestSharp.IRestRequest,System.Threading.CancellationToken)">
  1274. <summary>
  1275. Executes the request and callback asynchronously, authenticating if needed
  1276. </summary>
  1277. <param name="request">Request to be executed</param>
  1278. <param name="token">The cancellation token</param>
  1279. </member>
  1280. <member name="M:RestSharp.IRestClient.ExecuteTaskAsync(RestSharp.IRestRequest)">
  1281. <summary>
  1282. Executes the request asynchronously, authenticating if needed
  1283. </summary>
  1284. <param name="request">Request to be executed</param>
  1285. </member>
  1286. <member name="M:RestSharp.IRestClient.ExecuteGetTaskAsync(RestSharp.IRestRequest)">
  1287. <summary>
  1288. Executes a GET-style asynchronously, authenticating if needed
  1289. </summary>
  1290. <param name="request">Request to be executed</param>
  1291. </member>
  1292. <member name="M:RestSharp.IRestClient.ExecuteGetTaskAsync(RestSharp.IRestRequest,System.Threading.CancellationToken)">
  1293. <summary>
  1294. Executes a GET-style asynchronously, authenticating if needed
  1295. </summary>
  1296. <param name="request">Request to be executed</param>
  1297. <param name="token">The cancellation token</param>
  1298. </member>
  1299. <member name="M:RestSharp.IRestClient.ExecutePostTaskAsync(RestSharp.IRestRequest)">
  1300. <summary>
  1301. Executes a POST-style asynchronously, authenticating if needed
  1302. </summary>
  1303. <param name="request">Request to be executed</param>
  1304. </member>
  1305. <member name="M:RestSharp.IRestClient.ExecutePostTaskAsync(RestSharp.IRestRequest,System.Threading.CancellationToken)">
  1306. <summary>
  1307. Executes a POST-style asynchronously, authenticating if needed
  1308. </summary>
  1309. <param name="request">Request to be executed</param>
  1310. <param name="token">The cancellation token</param>
  1311. </member>
  1312. <member name="P:RestSharp.IRestClient.CookieContainer">
  1313. <summary>
  1314. </summary>
  1315. </member>
  1316. <member name="P:RestSharp.IRestClient.UserAgent">
  1317. <summary>
  1318. </summary>
  1319. </member>
  1320. <member name="P:RestSharp.IRestClient.Timeout">
  1321. <summary>
  1322. </summary>
  1323. </member>
  1324. <member name="P:RestSharp.IRestClient.ReadWriteTimeout">
  1325. <summary>
  1326. </summary>
  1327. </member>
  1328. <member name="P:RestSharp.IRestClient.UseSynchronizationContext">
  1329. <summary>
  1330. </summary>
  1331. </member>
  1332. <member name="P:RestSharp.IRestClient.Authenticator">
  1333. <summary>
  1334. </summary>
  1335. </member>
  1336. <member name="P:RestSharp.IRestClient.BaseUrl">
  1337. <summary>
  1338. </summary>
  1339. </member>
  1340. <member name="P:RestSharp.IRestClient.PreAuthenticate">
  1341. <summary>
  1342. </summary>
  1343. </member>
  1344. <member name="P:RestSharp.IRestClient.DefaultParameters">
  1345. <summary>
  1346. </summary>
  1347. </member>
  1348. <member name="P:RestSharp.IRestClient.ClientCertificates">
  1349. <summary>
  1350. X509CertificateCollection to be sent with request
  1351. </summary>
  1352. </member>
  1353. <member name="M:RestSharp.IRestRequest.AddFile(System.String,System.String)">
  1354. <summary>
  1355. Adds a file to the Files collection to be included with a POST or PUT request
  1356. (other methods do not support file uploads).
  1357. </summary>
  1358. <param name="name">The parameter name to use in the request</param>
  1359. <param name="path">Full path to file to upload</param>
  1360. <returns>This request</returns>
  1361. </member>
  1362. <member name="M:RestSharp.IRestRequest.AddFile(System.String,System.Byte[],System.String)">
  1363. <summary>
  1364. Adds the bytes to the Files collection with the specified file name
  1365. </summary>
  1366. <param name="name">The parameter name to use in the request</param>
  1367. <param name="bytes">The file data</param>
  1368. <param name="fileName">The file name to use for the uploaded file</param>
  1369. <returns>This request</returns>
  1370. </member>
  1371. <member name="M:RestSharp.IRestRequest.AddFile(System.String,System.Byte[],System.String,System.String)">
  1372. <summary>
  1373. Adds the bytes to the Files collection with the specified file name and content type
  1374. </summary>
  1375. <param name="name">The parameter name to use in the request</param>
  1376. <param name="bytes">The file data</param>
  1377. <param name="fileName">The file name to use for the uploaded file</param>
  1378. <param name="contentType">The MIME type of the file to upload</param>
  1379. <returns>This request</returns>
  1380. </member>
  1381. <member name="M:RestSharp.IRestRequest.AddBody(System.Object,System.String)">
  1382. <summary>
  1383. Serializes obj to format specified by RequestFormat, but passes xmlNamespace if using the default XmlSerializer
  1384. The default format is XML. Change RequestFormat if you wish to use a different serialization format.
  1385. </summary>
  1386. <param name="obj">The object to serialize</param>
  1387. <param name="xmlNamespace">The XML namespace to use when serializing</param>
  1388. <returns>This request</returns>
  1389. </member>
  1390. <member name="M:RestSharp.IRestRequest.AddBody(System.Object)">
  1391. <summary>
  1392. Serializes obj to data format specified by RequestFormat and adds it to the request body.
  1393. The default format is XML. Change RequestFormat if you wish to use a different serialization format.
  1394. </summary>
  1395. <param name="obj">The object to serialize</param>
  1396. <returns>This request</returns>
  1397. </member>
  1398. <member name="M:RestSharp.IRestRequest.AddJsonBody(System.Object)">
  1399. <summary>
  1400. Serializes obj to JSON format and adds it to the request body.
  1401. </summary>
  1402. <param name="obj">The object to serialize</param>
  1403. <returns>This request</returns>
  1404. </member>
  1405. <member name="M:RestSharp.IRestRequest.AddXmlBody(System.Object)">
  1406. <summary>
  1407. Serializes obj to XML format and adds it to the request body.
  1408. </summary>
  1409. <param name="obj">The object to serialize</param>
  1410. <returns>This request</returns>
  1411. </member>
  1412. <member name="M:RestSharp.IRestRequest.AddXmlBody(System.Object,System.String)">
  1413. <summary>
  1414. Serializes obj to format specified by RequestFormat, but passes xmlNamespace if using the default XmlSerializer
  1415. Serializes obj to XML format and passes xmlNamespace then adds it to the request body.
  1416. </summary>
  1417. <param name="obj">The object to serialize</param>
  1418. <param name="xmlNamespace">The XML namespace to use when serializing</param>
  1419. <returns>This request</returns>
  1420. </member>
  1421. <member name="M:RestSharp.IRestRequest.AddObject(System.Object,System.String[])">
  1422. <summary>
  1423. Calls AddParameter() for all public, readable properties specified in the includedProperties list
  1424. </summary>
  1425. <example>
  1426. request.AddObject(product, "ProductId", "Price", ...);
  1427. </example>
  1428. <param name="obj">The object with properties to add as parameters</param>
  1429. <param name="includedProperties">The names of the properties to include</param>
  1430. <returns>This request</returns>
  1431. </member>
  1432. <member name="M:RestSharp.IRestRequest.AddObject(System.Object)">
  1433. <summary>
  1434. Calls AddParameter() for all public, readable properties of obj
  1435. </summary>
  1436. <param name="obj">The object with properties to add as parameters</param>
  1437. <returns>This request</returns>
  1438. </member>
  1439. <member name="M:RestSharp.IRestRequest.AddParameter(RestSharp.Parameter)">
  1440. <summary>
  1441. Add the parameter to the request
  1442. </summary>
  1443. <param name="p">Parameter to add</param>
  1444. <returns></returns>
  1445. </member>
  1446. <member name="M:RestSharp.IRestRequest.AddParameter(System.String,System.Object)">
  1447. <summary>
  1448. Adds a HTTP parameter to the request (QueryString for GET, DELETE, OPTIONS and HEAD; Encoded form for POST and PUT)
  1449. </summary>
  1450. <param name="name">Name of the parameter</param>
  1451. <param name="value">Value of the parameter</param>
  1452. <returns>This request</returns>
  1453. </member>
  1454. <member name="M:RestSharp.IRestRequest.AddParameter(System.String,System.Object,RestSharp.ParameterType)">
  1455. <summary>
  1456. Adds a parameter to the request. There are five types of parameters:
  1457. - GetOrPost: Either a QueryString value or encoded form value based on method
  1458. - HttpHeader: Adds the name/value pair to the HTTP request's Headers collection
  1459. - UrlSegment: Inserted into URL if there is a matching url token e.g. {AccountId}
  1460. - Cookie: Adds the name/value pair to the HTTP request's Cookies collection
  1461. - RequestBody: Used by AddBody() (not recommended to use directly)
  1462. </summary>
  1463. <param name="name">Name of the parameter</param>
  1464. <param name="value">Value of the parameter</param>
  1465. <param name="type">The type of parameter to add</param>
  1466. <returns>This request</returns>
  1467. </member>
  1468. <member name="M:RestSharp.IRestRequest.AddHeader(System.String,System.String)">
  1469. <summary>
  1470. Shortcut to AddParameter(name, value, HttpHeader) overload
  1471. </summary>
  1472. <param name="name">Name of the header to add</param>
  1473. <param name="value">Value of the header to add</param>
  1474. <returns></returns>
  1475. </member>
  1476. <member name="M:RestSharp.IRestRequest.AddCookie(System.String,System.String)">
  1477. <summary>
  1478. Shortcut to AddParameter(name, value, Cookie) overload
  1479. </summary>
  1480. <param name="name">Name of the cookie to add</param>
  1481. <param name="value">Value of the cookie to add</param>
  1482. <returns></returns>
  1483. </member>
  1484. <member name="M:RestSharp.IRestRequest.AddUrlSegment(System.String,System.String)">
  1485. <summary>
  1486. Shortcut to AddParameter(name, value, UrlSegment) overload
  1487. </summary>
  1488. <param name="name">Name of the segment to add</param>
  1489. <param name="value">Value of the segment to add</param>
  1490. <returns></returns>
  1491. </member>
  1492. <member name="M:RestSharp.IRestRequest.AddQueryParameter(System.String,System.String)">
  1493. <summary>
  1494. Shortcut to AddParameter(name, value, QueryString) overload
  1495. </summary>
  1496. <param name="name">Name of the parameter to add</param>
  1497. <param name="value">Value of the parameter to add</param>
  1498. <returns></returns>
  1499. </member>
  1500. <member name="P:RestSharp.IRestRequest.AlwaysMultipartFormData">
  1501. <summary>
  1502. Always send a multipart/form-data request - even when no Files are present.
  1503. </summary>
  1504. </member>
  1505. <member name="P:RestSharp.IRestRequest.JsonSerializer">
  1506. <summary>
  1507. Serializer to use when writing JSON request bodies. Used if RequestFormat is Json.
  1508. By default the included JsonSerializer is used (currently using JSON.NET default serialization).
  1509. </summary>
  1510. </member>
  1511. <member name="P:RestSharp.IRestRequest.XmlSerializer">
  1512. <summary>
  1513. Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
  1514. By default the included XmlSerializer is used.
  1515. </summary>
  1516. </member>
  1517. <member name="P:RestSharp.IRestRequest.ResponseWriter">
  1518. <summary>
  1519. Set this to write response to Stream rather than reading into memory.
  1520. </summary>
  1521. </member>
  1522. <member name="P:RestSharp.IRestRequest.Parameters">
  1523. <summary>
  1524. Container of all HTTP parameters to be passed with the request.
  1525. See AddParameter() for explanation of the types of parameters that can be passed
  1526. </summary>
  1527. </member>
  1528. <member name="P:RestSharp.IRestRequest.Files">
  1529. <summary>
  1530. Container of all the files to be uploaded with the request.
  1531. </summary>
  1532. </member>
  1533. <member name="P:RestSharp.IRestRequest.Method">
  1534. <summary>
  1535. Determines what HTTP method to use for this request. Supported methods: GET, POST, PUT, DELETE, HEAD, OPTIONS
  1536. Default is GET
  1537. </summary>
  1538. </member>
  1539. <member name="P:RestSharp.IRestRequest.Resource">
  1540. <summary>
  1541. The Resource URL to make the request against.
  1542. Tokens are substituted with UrlSegment parameters and match by name.
  1543. Should not include the scheme or domain. Do not include leading slash.
  1544. Combined with RestClient.BaseUrl to assemble final URL:
  1545. {BaseUrl}/{Resource} (BaseUrl is scheme + domain, e.g. http://example.com)
  1546. </summary>
  1547. <example>
  1548. // example for url token replacement
  1549. request.Resource = "Products/{ProductId}";
  1550. request.AddParameter("ProductId", 123, ParameterType.UrlSegment);
  1551. </example>
  1552. </member>
  1553. <member name="P:RestSharp.IRestRequest.RequestFormat">
  1554. <summary>
  1555. Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
  1556. By default XmlSerializer is used.
  1557. </summary>
  1558. </member>
  1559. <member name="P:RestSharp.IRestRequest.RootElement">
  1560. <summary>
  1561. Used by the default deserializers to determine where to start deserializing from.
  1562. Can be used to skip container or root elements that do not have corresponding deserialzation targets.
  1563. </summary>
  1564. </member>
  1565. <member name="P:RestSharp.IRestRequest.DateFormat">
  1566. <summary>
  1567. Used by the default deserializers to explicitly set which date format string to use when parsing dates.
  1568. </summary>
  1569. </member>
  1570. <member name="P:RestSharp.IRestRequest.XmlNamespace">
  1571. <summary>
  1572. Used by XmlDeserializer. If not specified, XmlDeserializer will flatten response by removing namespaces from element names.
  1573. </summary>
  1574. </member>
  1575. <member name="P:RestSharp.IRestRequest.Credentials">
  1576. <summary>
  1577. In general you would not need to set this directly. Used by the NtlmAuthenticator.
  1578. </summary>
  1579. </member>
  1580. <member name="P:RestSharp.IRestRequest.Timeout">
  1581. <summary>
  1582. Timeout in milliseconds to be used for the request. This timeout value overrides a timeout set on the RestClient.
  1583. </summary>
  1584. </member>
  1585. <member name="P:RestSharp.IRestRequest.ReadWriteTimeout">
  1586. <summary>
  1587. The number of milliseconds before the writing or reading times out. This timeout value overrides a timeout set on the RestClient.
  1588. </summary>
  1589. </member>
  1590. <member name="P:RestSharp.IRestRequest.Attempts">
  1591. <summary>
  1592. How many attempts were made to send this Request?
  1593. </summary>
  1594. <remarks>
  1595. This Number is incremented each time the RestClient sends the request.
  1596. Useful when using Asynchronous Execution with Callbacks
  1597. </remarks>
  1598. </member>
  1599. <member name="P:RestSharp.IRestRequest.UseDefaultCredentials">
  1600. <summary>
  1601. Determine whether or not the "default credentials" (e.g. the user account under which the current process is running)
  1602. will be sent along to the server. The default is false.
  1603. </summary>
  1604. </member>
  1605. <member name="T:RestSharp.IRestResponse">
  1606. <summary>
  1607. Container for data sent back from API
  1608. </summary>
  1609. </member>
  1610. <member name="P:RestSharp.IRestResponse.Request">
  1611. <summary>
  1612. The RestRequest that was made to get this RestResponse
  1613. </summary>
  1614. <remarks>
  1615. Mainly for debugging if ResponseStatus is not OK
  1616. </remarks>
  1617. </member>
  1618. <member name="P:RestSharp.IRestResponse.ContentType">
  1619. <summary>
  1620. MIME content type of response
  1621. </summary>
  1622. </member>
  1623. <member name="P:RestSharp.IRestResponse.ContentLength">
  1624. <summary>
  1625. Length in bytes of the response content
  1626. </summary>
  1627. </member>
  1628. <member name="P:RestSharp.IRestResponse.ContentEncoding">
  1629. <summary>
  1630. Encoding of the response content
  1631. </summary>
  1632. </member>
  1633. <member name="P:RestSharp.IRestResponse.Content">
  1634. <summary>
  1635. String representation of response content
  1636. </summary>
  1637. </member>
  1638. <member name="P:RestSharp.IRestResponse.StatusCode">
  1639. <summary>
  1640. HTTP response status code
  1641. </summary>
  1642. </member>
  1643. <member name="P:RestSharp.IRestResponse.StatusDescription">
  1644. <summary>
  1645. Description of HTTP status returned
  1646. </summary>
  1647. </member>
  1648. <member name="P:RestSharp.IRestResponse.RawBytes">
  1649. <summary>
  1650. Response content
  1651. </summary>
  1652. </member>
  1653. <member name="P:RestSharp.IRestResponse.ResponseUri">
  1654. <summary>
  1655. The URL that actually responded to the content (different from request if redirected)
  1656. </summary>
  1657. </member>
  1658. <member name="P:RestSharp.IRestResponse.Server">
  1659. <summary>
  1660. HttpWebResponse.Server
  1661. </summary>
  1662. </member>
  1663. <member name="P:RestSharp.IRestResponse.Cookies">
  1664. <summary>
  1665. Cookies returned by server with the response
  1666. </summary>
  1667. </member>
  1668. <member name="P:RestSharp.IRestResponse.Headers">
  1669. <summary>
  1670. Headers returned by server with the response
  1671. </summary>
  1672. </member>
  1673. <member name="P:RestSharp.IRestResponse.ResponseStatus">
  1674. <summary>
  1675. Status of the request. Will return Error for transport errors.
  1676. HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
  1677. </summary>
  1678. </member>
  1679. <member name="P:RestSharp.IRestResponse.ErrorMessage">
  1680. <summary>
  1681. Transport or other non-HTTP error generated while attempting request
  1682. </summary>
  1683. </member>
  1684. <member name="P:RestSharp.IRestResponse.ErrorException">
  1685. <summary>
  1686. Exceptions thrown during the request, if any.
  1687. </summary>
  1688. <remarks>Will contain only network transport or framework exceptions thrown during the request.
  1689. HTTP protocol errors are handled by RestSharp and will not appear here.</remarks>
  1690. </member>
  1691. <member name="T:RestSharp.IRestResponse`1">
  1692. <summary>
  1693. Container for data sent back from API including deserialized data
  1694. </summary>
  1695. <typeparam name="T">Type of data to deserialize to</typeparam>
  1696. </member>
  1697. <member name="P:RestSharp.IRestResponse`1.Data">
  1698. <summary>
  1699. Deserialized entity data
  1700. </summary>
  1701. </member>
  1702. <member name="T:RestSharp.Parameter">
  1703. <summary>
  1704. Parameter container for REST requests
  1705. </summary>
  1706. </member>
  1707. <member name="M:RestSharp.Parameter.ToString">
  1708. <summary>
  1709. Return a human-readable representation of this parameter
  1710. </summary>
  1711. <returns>String</returns>
  1712. </member>
  1713. <member name="P:RestSharp.Parameter.Name">
  1714. <summary>
  1715. Name of the parameter
  1716. </summary>
  1717. </member>
  1718. <member name="P:RestSharp.Parameter.Value">
  1719. <summary>
  1720. Value of the parameter
  1721. </summary>
  1722. </member>
  1723. <member name="P:RestSharp.Parameter.Type">
  1724. <summary>
  1725. Type of the parameter
  1726. </summary>
  1727. </member>
  1728. <member name="T:RestSharp.RestClient">
  1729. <summary>
  1730. Client to translate RestRequests into Http requests and process response result
  1731. </summary>
  1732. </member>
  1733. <member name="M:RestSharp.RestClient.ExecuteAsync(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle})">
  1734. <summary>
  1735. Executes the request and callback asynchronously, authenticating if needed
  1736. </summary>
  1737. <param name="request">Request to be executed</param>
  1738. <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
  1739. </member>
  1740. <member name="M:RestSharp.RestClient.ExecuteAsyncGet(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
  1741. <summary>
  1742. Executes a GET-style request and callback asynchronously, authenticating if needed
  1743. </summary>
  1744. <param name="request">Request to be executed</param>
  1745. <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
  1746. <param name="httpMethod">The HTTP method to execute</param>
  1747. </member>
  1748. <member name="M:RestSharp.RestClient.ExecuteAsyncPost(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse,RestSharp.RestRequestAsyncHandle},System.String)">
  1749. <summary>
  1750. Executes a POST-style request and callback asynchronously, authenticating if needed
  1751. </summary>
  1752. <param name="request">Request to be executed</param>
  1753. <param name="callback">Callback function to be executed upon completion providing access to the async handle.</param>
  1754. <param name="httpMethod">The HTTP method to execute</param>
  1755. </member>
  1756. <member name="M:RestSharp.RestClient.ExecuteAsync``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle})">
  1757. <summary>
  1758. Executes the request and callback asynchronously, authenticating if needed
  1759. </summary>
  1760. <typeparam name="T">Target deserialization type</typeparam>
  1761. <param name="request">Request to be executed</param>
  1762. <param name="callback">Callback function to be executed upon completion</param>
  1763. </member>
  1764. <member name="M:RestSharp.RestClient.ExecuteAsyncGet``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
  1765. <summary>
  1766. Executes a GET-style request and callback asynchronously, authenticating if needed
  1767. </summary>
  1768. <typeparam name="T">Target deserialization type</typeparam>
  1769. <param name="request">Request to be executed</param>
  1770. <param name="callback">Callback function to be executed upon completion</param>
  1771. <param name="httpMethod">The HTTP method to execute</param>
  1772. </member>
  1773. <member name="M:RestSharp.RestClient.ExecuteAsyncPost``1(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0},RestSharp.RestRequestAsyncHandle},System.String)">
  1774. <summary>
  1775. Executes a POST-style request and callback asynchronously, authenticating if needed
  1776. </summary>
  1777. <typeparam name="T">Target deserialization type</typeparam>
  1778. <param name="request">Request to be executed</param>
  1779. <param name="callback">Callback function to be executed upon completion</param>
  1780. <param name="httpMethod">The HTTP method to execute</param>
  1781. </member>
  1782. <member name="M:RestSharp.RestClient.ExecuteGetTaskAsync``1(RestSharp.IRestRequest)">
  1783. <summary>
  1784. Executes a GET-style request asynchronously, authenticating if needed
  1785. </summary>
  1786. <typeparam name="T">Target deserialization type</typeparam>
  1787. <param name="request">Request to be executed</param>
  1788. </member>
  1789. <member name="M:RestSharp.RestClient.ExecuteGetTaskAsync``1(RestSharp.IRestRequest,System.Threading.CancellationToken)">
  1790. <summary>
  1791. Executes a GET-style request asynchronously, authenticating if needed
  1792. </summary>
  1793. <typeparam name="T">Target deserialization type</typeparam>
  1794. <param name="request">Request to be executed</param>
  1795. <param name="token">The cancellation token</param>
  1796. </member>
  1797. <member name="M:RestSharp.RestClient.ExecutePostTaskAsync``1(RestSharp.IRestRequest)">
  1798. <summary>
  1799. Executes a POST-style request asynchronously, authenticating if needed
  1800. </summary>
  1801. <typeparam name="T">Target deserialization type</typeparam>
  1802. <param name="request">Request to be executed</param>
  1803. </member>
  1804. <member name="M:RestSharp.RestClient.ExecutePostTaskAsync``1(RestSharp.IRestRequest,System.Threading.CancellationToken)">
  1805. <summary>
  1806. Executes a POST-style request asynchronously, authenticating if needed
  1807. </summary>
  1808. <typeparam name="T">Target deserialization type</typeparam>
  1809. <param name="request">Request to be executed</param>
  1810. <param name="token">The cancellation token</param>
  1811. </member>
  1812. <member name="M:RestSharp.RestClient.ExecuteTaskAsync``1(RestSharp.IRestRequest)">
  1813. <summary>
  1814. Executes the request asynchronously, authenticating if needed
  1815. </summary>
  1816. <typeparam name="T">Target deserialization type</typeparam>
  1817. <param name="request">Request to be executed</param>
  1818. </member>
  1819. <member name="M:RestSharp.RestClient.ExecuteTaskAsync``1(RestSharp.IRestRequest,System.Threading.CancellationToken)">
  1820. <summary>
  1821. Executes the request asynchronously, authenticating if needed
  1822. </summary>
  1823. <typeparam name="T">Target deserialization type</typeparam>
  1824. <param name="request">Request to be executed</param>
  1825. <param name="token">The cancellation token</param>
  1826. </member>
  1827. <member name="M:RestSharp.RestClient.ExecuteTaskAsync(RestSharp.IRestRequest)">
  1828. <summary>
  1829. Executes the request asynchronously, authenticating if needed
  1830. </summary>
  1831. <param name="request">Request to be executed</param>
  1832. </member>
  1833. <member name="M:RestSharp.RestClient.ExecuteGetTaskAsync(RestSharp.IRestRequest)">
  1834. <summary>
  1835. Executes a GET-style asynchronously, authenticating if needed
  1836. </summary>
  1837. <param name="request">Request to be executed</param>
  1838. </member>
  1839. <member name="M:RestSharp.RestClient.ExecuteGetTaskAsync(RestSharp.IRestRequest,System.Threading.CancellationToken)">
  1840. <summary>
  1841. Executes a GET-style asynchronously, authenticating if needed
  1842. </summary>
  1843. <param name="request">Request to be executed</param>
  1844. <param name="token">The cancellation token</param>
  1845. </member>
  1846. <member name="M:RestSharp.RestClient.ExecutePostTaskAsync(RestSharp.IRestRequest)">
  1847. <summary>
  1848. Executes a POST-style asynchronously, authenticating if needed
  1849. </summary>
  1850. <param name="request">Request to be executed</param>
  1851. </member>
  1852. <member name="M:RestSharp.RestClient.ExecutePostTaskAsync(RestSharp.IRestRequest,System.Threading.CancellationToken)">
  1853. <summary>
  1854. Executes a POST-style asynchronously, authenticating if needed
  1855. </summary>
  1856. <param name="request">Request to be executed</param>
  1857. <param name="token">The cancellation token</param>
  1858. </member>
  1859. <member name="M:RestSharp.RestClient.ExecuteTaskAsync(RestSharp.IRestRequest,System.Threading.CancellationToken)">
  1860. <summary>
  1861. Executes the request asynchronously, authenticating if needed
  1862. </summary>
  1863. <param name="request">Request to be executed</param>
  1864. <param name="token">The cancellation token</param>
  1865. </member>
  1866. <member name="M:RestSharp.RestClient.#ctor">
  1867. <summary>
  1868. Default constructor that registers default content handlers
  1869. </summary>
  1870. </member>
  1871. <member name="M:RestSharp.RestClient.#ctor(System.Uri)">
  1872. <summary>
  1873. Sets the BaseUrl property for requests made by this client instance
  1874. </summary>
  1875. <param name="baseUrl"></param>
  1876. </member>
  1877. <member name="M:RestSharp.RestClient.#ctor(System.String)">
  1878. <summary>
  1879. Sets the BaseUrl property for requests made by this client instance
  1880. </summary>
  1881. <param name="baseUrl"></param>
  1882. </member>
  1883. <member name="M:RestSharp.RestClient.AddHandler(System.String,RestSharp.Deserializers.IDeserializer)">
  1884. <summary>
  1885. Registers a content handler to process response content
  1886. </summary>
  1887. <param name="contentType">MIME content type of the response content</param>
  1888. <param name="deserializer">Deserializer to use to process content</param>
  1889. </member>
  1890. <member name="M:RestSharp.RestClient.RemoveHandler(System.String)">
  1891. <summary>
  1892. Remove a content handler for the specified MIME content type
  1893. </summary>
  1894. <param name="contentType">MIME content type to remove</param>
  1895. </member>
  1896. <member name="M:RestSharp.RestClient.ClearHandlers">
  1897. <summary>
  1898. Remove all content handlers
  1899. </summary>
  1900. </member>
  1901. <member name="M:RestSharp.RestClient.GetHandler(System.String)">
  1902. <summary>
  1903. Retrieve the handler for the specified MIME content type
  1904. </summary>
  1905. <param name="contentType">MIME content type to retrieve</param>
  1906. <returns>IDeserializer instance</returns>
  1907. </member>
  1908. <member name="M:RestSharp.RestClient.BuildUri(RestSharp.IRestRequest)">
  1909. <summary>
  1910. Assembles URL to call based on parameters, method and resource
  1911. </summary>
  1912. <param name="request">RestRequest to execute</param>
  1913. <returns>Assembled System.Uri</returns>
  1914. </member>
  1915. <member name="M:RestSharp.RestClient.DownloadData(RestSharp.IRestRequest)">
  1916. <summary>
  1917. Executes the specified request and downloads the response data
  1918. </summary>
  1919. <param name="request">Request to execute</param>
  1920. <returns>Response data</returns>
  1921. </member>
  1922. <member name="M:RestSharp.RestClient.Execute(RestSharp.IRestRequest)">
  1923. <summary>
  1924. Executes the request and returns a response, authenticating if needed
  1925. </summary>
  1926. <param name="request">Request to be executed</param>
  1927. <returns>RestResponse</returns>
  1928. </member>
  1929. <member name="M:RestSharp.RestClient.Execute``1(RestSharp.IRestRequest)">
  1930. <summary>
  1931. Executes the specified request and deserializes the response content using the appropriate content handler
  1932. </summary>
  1933. <typeparam name="T">Target deserialization type</typeparam>
  1934. <param name="request">Request to execute</param>
  1935. <returns>RestResponse[[T]] with deserialized data in Data property</returns>
  1936. </member>
  1937. <member name="P:RestSharp.RestClient.DefaultParameters">
  1938. <summary>
  1939. Parameters included with every request made with this instance of RestClient
  1940. If specified in both client and request, the request wins
  1941. </summary>
  1942. </member>
  1943. <member name="P:RestSharp.RestClient.MaxRedirects">
  1944. <summary>
  1945. Maximum number of redirects to follow if FollowRedirects is true
  1946. </summary>
  1947. </member>
  1948. <member name="P:RestSharp.RestClient.ClientCertificates">
  1949. <summary>
  1950. X509CertificateCollection to be sent with request
  1951. </summary>
  1952. </member>
  1953. <member name="P:RestSharp.RestClient.Proxy">
  1954. <summary>
  1955. Proxy to use for requests made by this client instance.
  1956. Passed on to underlying WebRequest if set.
  1957. </summary>
  1958. </member>
  1959. <member name="P:RestSharp.RestClient.FollowRedirects">
  1960. <summary>
  1961. Default is true. Determine whether or not requests that result in
  1962. HTTP status codes of 3xx should follow returned redirect
  1963. </summary>
  1964. </member>
  1965. <member name="P:RestSharp.RestClient.CookieContainer">
  1966. <summary>
  1967. The CookieContainer used for requests made by this client instance
  1968. </summary>
  1969. </member>
  1970. <member name="P:RestSharp.RestClient.UserAgent">
  1971. <summary>
  1972. UserAgent to use for requests made by this client instance
  1973. </summary>
  1974. </member>
  1975. <member name="P:RestSharp.RestClient.Timeout">
  1976. <summary>
  1977. Timeout in milliseconds to use for requests made by this client instance
  1978. </summary>
  1979. </member>
  1980. <member name="P:RestSharp.RestClient.ReadWriteTimeout">
  1981. <summary>
  1982. The number of milliseconds before the writing or reading times out.
  1983. </summary>
  1984. </member>
  1985. <member name="P:RestSharp.RestClient.UseSynchronizationContext">
  1986. <summary>
  1987. Whether to invoke async callbacks using the SynchronizationContext.Current captured when invoked
  1988. </summary>
  1989. </member>
  1990. <member name="P:RestSharp.RestClient.Authenticator">
  1991. <summary>
  1992. Authenticator to use for requests made by this client instance
  1993. </summary>
  1994. </member>
  1995. <member name="P:RestSharp.RestClient.BaseUrl">
  1996. <summary>
  1997. Combined with Request.Resource to construct URL for request
  1998. Should include scheme and domain without trailing slash.
  1999. </summary>
  2000. <example>
  2001. client.BaseUrl = new Uri("http://example.com");
  2002. </example>
  2003. </member>
  2004. <member name="M:RestSharp.RestClientExtensions.ExecuteAsync(RestSharp.IRestClient,RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse})">
  2005. <summary>
  2006. Executes the request and callback asynchronously, authenticating if needed
  2007. </summary>
  2008. <param name="client">The IRestClient this method extends</param>
  2009. <param name="request">Request to be executed</param>
  2010. <param name="callback">Callback function to be executed upon completion</param>
  2011. </member>
  2012. <member name="M:RestSharp.RestClientExtensions.ExecuteAsync``1(RestSharp.IRestClient,RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse{``0}})">
  2013. <summary>
  2014. Executes the request and callback asynchronously, authenticating if needed
  2015. </summary>
  2016. <param name="client">The IRestClient this method extends</param>
  2017. <typeparam name="T">Target deserialization type</typeparam>
  2018. <param name="request">Request to be executed</param>
  2019. <param name="callback">Callback function to be executed upon completion providing access to the async handle</param>
  2020. </member>
  2021. <member name="M:RestSharp.RestClientExtensions.AddDefaultParameter(RestSharp.IRestClient,RestSharp.Parameter)">
  2022. <summary>
  2023. Add a parameter to use on every request made with this client instance
  2024. </summary>
  2025. <param name="restClient">The IRestClient instance</param>
  2026. <param name="p">Parameter to add</param>
  2027. <returns></returns>
  2028. </member>
  2029. <member name="M:RestSharp.RestClientExtensions.RemoveDefaultParameter(RestSharp.IRestClient,System.String)">
  2030. <summary>
  2031. Removes a parameter from the default parameters that are used on every request made with this client instance
  2032. </summary>
  2033. <param name="restClient">The IRestClient instance</param>
  2034. <param name="name">The name of the parameter that needs to be removed</param>
  2035. <returns></returns>
  2036. </member>
  2037. <member name="M:RestSharp.RestClientExtensions.AddDefaultParameter(RestSharp.IRestClient,System.String,System.Object)">
  2038. <summary>
  2039. Adds a HTTP parameter (QueryString for GET, DELETE, OPTIONS and HEAD; Encoded form for POST and PUT)
  2040. Used on every request made by this client instance
  2041. </summary>
  2042. <param name="restClient">The IRestClient instance</param>
  2043. <param name="name">Name of the parameter</param>
  2044. <param name="value">Value of the parameter</param>
  2045. <returns>This request</returns>
  2046. </member>
  2047. <member name="M:RestSharp.RestClientExtensions.AddDefaultParameter(RestSharp.IRestClient,System.String,System.Object,RestSharp.ParameterType)">
  2048. <summary>
  2049. Adds a parameter to the request. There are four types of parameters:
  2050. - GetOrPost: Either a QueryString value or encoded form value based on method
  2051. - HttpHeader: Adds the name/value pair to the HTTP request's Headers collection
  2052. - UrlSegment: Inserted into URL if there is a matching url token e.g. {AccountId}
  2053. - RequestBody: Used by AddBody() (not recommended to use directly)
  2054. </summary>
  2055. <param name="restClient">The IRestClient instance</param>
  2056. <param name="name">Name of the parameter</param>
  2057. <param name="value">Value of the parameter</param>
  2058. <param name="type">The type of parameter to add</param>
  2059. <returns>This request</returns>
  2060. </member>
  2061. <member name="M:RestSharp.RestClientExtensions.AddDefaultHeader(RestSharp.IRestClient,System.String,System.String)">
  2062. <summary>
  2063. Shortcut to AddDefaultParameter(name, value, HttpHeader) overload
  2064. </summary>
  2065. <param name="restClient">The IRestClient instance</param>
  2066. <param name="name">Name of the header to add</param>
  2067. <param name="value">Value of the header to add</param>
  2068. <returns></returns>
  2069. </member>
  2070. <member name="M:RestSharp.RestClientExtensions.AddDefaultUrlSegment(RestSharp.IRestClient,System.String,System.String)">
  2071. <summary>
  2072. Shortcut to AddDefaultParameter(name, value, UrlSegment) overload
  2073. </summary>
  2074. <param name="restClient">The IRestClient instance</param>
  2075. <param name="name">Name of the segment to add</param>
  2076. <param name="value">Value of the segment to add</param>
  2077. <returns></returns>
  2078. </member>
  2079. <member name="T:RestSharp.RestRequest">
  2080. <summary>
  2081. Container for data used to make requests
  2082. </summary>
  2083. </member>
  2084. <member name="M:RestSharp.RestRequest.#ctor">
  2085. <summary>
  2086. Default constructor
  2087. </summary>
  2088. </member>
  2089. <member name="M:RestSharp.RestRequest.#ctor(RestSharp.Method)">
  2090. <summary>
  2091. Sets Method property to value of method
  2092. </summary>
  2093. <param name="method">Method to use for this request</param>
  2094. </member>
  2095. <member name="M:RestSharp.RestRequest.#ctor(System.String)">
  2096. <summary>
  2097. Sets Resource property
  2098. </summary>
  2099. <param name="resource">Resource to use for this request</param>
  2100. </member>
  2101. <member name="M:RestSharp.RestRequest.#ctor(System.String,RestSharp.Method)">
  2102. <summary>
  2103. Sets Resource and Method properties
  2104. </summary>
  2105. <param name="resource">Resource to use for this request</param>
  2106. <param name="method">Method to use for this request</param>
  2107. </member>
  2108. <member name="M:RestSharp.RestRequest.#ctor(System.Uri)">
  2109. <summary>
  2110. Sets Resource property
  2111. </summary>
  2112. <param name="resource">Resource to use for this request</param>
  2113. </member>
  2114. <member name="M:RestSharp.RestRequest.#ctor(System.Uri,RestSharp.Method)">
  2115. <summary>
  2116. Sets Resource and Method properties
  2117. </summary>
  2118. <param name="resource">Resource to use for this request</param>
  2119. <param name="method">Method to use for this request</param>
  2120. </member>
  2121. <member name="M:RestSharp.RestRequest.AddFile(System.String,System.String)">
  2122. <summary>
  2123. Adds a file to the Files collection to be included with a POST or PUT request
  2124. (other methods do not support file uploads).
  2125. </summary>
  2126. <param name="name">The parameter name to use in the request</param>
  2127. <param name="path">Full path to file to upload</param>
  2128. <returns>This request</returns>
  2129. </member>
  2130. <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Byte[],System.String)">
  2131. <summary>
  2132. Adds the bytes to the Files collection with the specified file name
  2133. </summary>
  2134. <param name="name">The parameter name to use in the request</param>
  2135. <param name="bytes">The file data</param>
  2136. <param name="fileName">The file name to use for the uploaded file</param>
  2137. <returns>This request</returns>
  2138. </member>
  2139. <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Byte[],System.String,System.String)">
  2140. <summary>
  2141. Adds the bytes to the Files collection with the specified file name and content type
  2142. </summary>
  2143. <param name="name">The parameter name to use in the request</param>
  2144. <param name="bytes">The file data</param>
  2145. <param name="fileName">The file name to use for the uploaded file</param>
  2146. <param name="contentType">The MIME type of the file to upload</param>
  2147. <returns>This request</returns>
  2148. </member>
  2149. <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Action{System.IO.Stream},System.String)">
  2150. <summary>
  2151. Adds the bytes to the Files collection with the specified file name and content type
  2152. </summary>
  2153. <param name="name">The parameter name to use in the request</param>
  2154. <param name="writer">A function that writes directly to the stream. Should NOT close the stream.</param>
  2155. <param name="fileName">The file name to use for the uploaded file</param>
  2156. <returns>This request</returns>
  2157. </member>
  2158. <member name="M:RestSharp.RestRequest.AddFile(System.String,System.Action{System.IO.Stream},System.String,System.String)">
  2159. <summary>
  2160. Adds the bytes to the Files collection with the specified file name and content type
  2161. </summary>
  2162. <param name="name">The parameter name to use in the request</param>
  2163. <param name="writer">A function that writes directly to the stream. Should NOT close the stream.</param>
  2164. <param name="fileName">The file name to use for the uploaded file</param>
  2165. <param name="contentType">The MIME type of the file to upload</param>
  2166. <returns>This request</returns>
  2167. </member>
  2168. <member name="M:RestSharp.RestRequest.AddBody(System.Object,System.String)">
  2169. <summary>
  2170. Serializes obj to format specified by RequestFormat, but passes xmlNamespace if using the default XmlSerializer
  2171. The default format is XML. Change RequestFormat if you wish to use a different serialization format.
  2172. </summary>
  2173. <param name="obj">The object to serialize</param>
  2174. <param name="xmlNamespace">The XML namespace to use when serializing</param>
  2175. <returns>This request</returns>
  2176. </member>
  2177. <member name="M:RestSharp.RestRequest.AddBody(System.Object)">
  2178. <summary>
  2179. Serializes obj to data format specified by RequestFormat and adds it to the request body.
  2180. The default format is XML. Change RequestFormat if you wish to use a different serialization format.
  2181. </summary>
  2182. <param name="obj">The object to serialize</param>
  2183. <returns>This request</returns>
  2184. </member>
  2185. <member name="M:RestSharp.RestRequest.AddJsonBody(System.Object)">
  2186. <summary>
  2187. Serializes obj to JSON format and adds it to the request body.
  2188. </summary>
  2189. <param name="obj">The object to serialize</param>
  2190. <returns>This request</returns>
  2191. </member>
  2192. <member name="M:RestSharp.RestRequest.AddXmlBody(System.Object)">
  2193. <summary>
  2194. Serializes obj to XML format and adds it to the request body.
  2195. </summary>
  2196. <param name="obj">The object to serialize</param>
  2197. <returns>This request</returns>
  2198. </member>
  2199. <member name="M:RestSharp.RestRequest.AddXmlBody(System.Object,System.String)">
  2200. <summary>
  2201. Serializes obj to format specified by RequestFormat, but passes xmlNamespace if using the default XmlSerializer
  2202. Serializes obj to XML format and passes xmlNamespace then adds it to the request body.
  2203. </summary>
  2204. <param name="obj">The object to serialize</param>
  2205. <param name="xmlNamespace">The XML namespace to use when serializing</param>
  2206. <returns>This request</returns>
  2207. </member>
  2208. <member name="M:RestSharp.RestRequest.AddObject(System.Object,System.String[])">
  2209. <summary>
  2210. Calls AddParameter() for all public, readable properties specified in the includedProperties list
  2211. </summary>
  2212. <example>
  2213. request.AddObject(product, "ProductId", "Price", ...);
  2214. </example>
  2215. <param name="obj">The object with properties to add as parameters</param>
  2216. <param name="includedProperties">The names of the properties to include</param>
  2217. <returns>This request</returns>
  2218. </member>
  2219. <member name="M:RestSharp.RestRequest.AddObject(System.Object)">
  2220. <summary>
  2221. Calls AddParameter() for all public, readable properties of obj
  2222. </summary>
  2223. <param name="obj">The object with properties to add as parameters</param>
  2224. <returns>This request</returns>
  2225. </member>
  2226. <member name="M:RestSharp.RestRequest.AddParameter(RestSharp.Parameter)">
  2227. <summary>
  2228. Add the parameter to the request
  2229. </summary>
  2230. <param name="p">Parameter to add</param>
  2231. <returns></returns>
  2232. </member>
  2233. <member name="M:RestSharp.RestRequest.AddParameter(System.String,System.Object)">
  2234. <summary>
  2235. Adds a HTTP parameter to the request (QueryString for GET, DELETE, OPTIONS and HEAD; Encoded form for POST and PUT)
  2236. </summary>
  2237. <param name="name">Name of the parameter</param>
  2238. <param name="value">Value of the parameter</param>
  2239. <returns>This request</returns>
  2240. </member>
  2241. <member name="M:RestSharp.RestRequest.AddParameter(System.String,System.Object,RestSharp.ParameterType)">
  2242. <summary>
  2243. Adds a parameter to the request. There are four types of parameters:
  2244. - GetOrPost: Either a QueryString value or encoded form value based on method
  2245. - HttpHeader: Adds the name/value pair to the HTTP request's Headers collection
  2246. - UrlSegment: Inserted into URL if there is a matching url token e.g. {AccountId}
  2247. - RequestBody: Used by AddBody() (not recommended to use directly)
  2248. </summary>
  2249. <param name="name">Name of the parameter</param>
  2250. <param name="value">Value of the parameter</param>
  2251. <param name="type">The type of parameter to add</param>
  2252. <returns>This request</returns>
  2253. </member>
  2254. <member name="M:RestSharp.RestRequest.AddHeader(System.String,System.String)">
  2255. <summary>
  2256. Shortcut to AddParameter(name, value, HttpHeader) overload
  2257. </summary>
  2258. <param name="name">Name of the header to add</param>
  2259. <param name="value">Value of the header to add</param>
  2260. <returns></returns>
  2261. </member>
  2262. <member name="M:RestSharp.RestRequest.AddCookie(System.String,System.String)">
  2263. <summary>
  2264. Shortcut to AddParameter(name, value, Cookie) overload
  2265. </summary>
  2266. <param name="name">Name of the cookie to add</param>
  2267. <param name="value">Value of the cookie to add</param>
  2268. <returns></returns>
  2269. </member>
  2270. <member name="M:RestSharp.RestRequest.AddUrlSegment(System.String,System.String)">
  2271. <summary>
  2272. Shortcut to AddParameter(name, value, UrlSegment) overload
  2273. </summary>
  2274. <param name="name">Name of the segment to add</param>
  2275. <param name="value">Value of the segment to add</param>
  2276. <returns></returns>
  2277. </member>
  2278. <member name="M:RestSharp.RestRequest.AddQueryParameter(System.String,System.String)">
  2279. <summary>
  2280. Shortcut to AddParameter(name, value, QueryString) overload
  2281. </summary>
  2282. <param name="name">Name of the parameter to add</param>
  2283. <param name="value">Value of the parameter to add</param>
  2284. <returns></returns>
  2285. </member>
  2286. <member name="M:RestSharp.RestRequest.IncreaseNumAttempts">
  2287. <summary>
  2288. Internal Method so that RestClient can increase the number of attempts
  2289. </summary>
  2290. </member>
  2291. <member name="P:RestSharp.RestRequest.AlwaysMultipartFormData">
  2292. <summary>
  2293. Always send a multipart/form-data request - even when no Files are present.
  2294. </summary>
  2295. </member>
  2296. <member name="P:RestSharp.RestRequest.JsonSerializer">
  2297. <summary>
  2298. Serializer to use when writing JSON request bodies. Used if RequestFormat is Json.
  2299. By default the included JsonSerializer is used (currently using JSON.NET default serialization).
  2300. </summary>
  2301. </member>
  2302. <member name="P:RestSharp.RestRequest.XmlSerializer">
  2303. <summary>
  2304. Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
  2305. By default the included XmlSerializer is used.
  2306. </summary>
  2307. </member>
  2308. <member name="P:RestSharp.RestRequest.ResponseWriter">
  2309. <summary>
  2310. Set this to write response to Stream rather than reading into memory.
  2311. </summary>
  2312. </member>
  2313. <member name="P:RestSharp.RestRequest.UseDefaultCredentials">
  2314. <summary>
  2315. Determine whether or not the "default credentials" (e.g. the user account under which the current process is running)
  2316. will be sent along to the server. The default is false.
  2317. </summary>
  2318. </member>
  2319. <member name="P:RestSharp.RestRequest.Parameters">
  2320. <summary>
  2321. Container of all HTTP parameters to be passed with the request.
  2322. See AddParameter() for explanation of the types of parameters that can be passed
  2323. </summary>
  2324. </member>
  2325. <member name="P:RestSharp.RestRequest.Files">
  2326. <summary>
  2327. Container of all the files to be uploaded with the request.
  2328. </summary>
  2329. </member>
  2330. <member name="P:RestSharp.RestRequest.Method">
  2331. <summary>
  2332. Determines what HTTP method to use for this request. Supported methods: GET, POST, PUT, DELETE, HEAD, OPTIONS
  2333. Default is GET
  2334. </summary>
  2335. </member>
  2336. <member name="P:RestSharp.RestRequest.Resource">
  2337. <summary>
  2338. The Resource URL to make the request against.
  2339. Tokens are substituted with UrlSegment parameters and match by name.
  2340. Should not include the scheme or domain. Do not include leading slash.
  2341. Combined with RestClient.BaseUrl to assemble final URL:
  2342. {BaseUrl}/{Resource} (BaseUrl is scheme + domain, e.g. http://example.com)
  2343. </summary>
  2344. <example>
  2345. // example for url token replacement
  2346. request.Resource = "Products/{ProductId}";
  2347. request.AddParameter("ProductId", 123, ParameterType.UrlSegment);
  2348. </example>
  2349. </member>
  2350. <member name="P:RestSharp.RestRequest.RequestFormat">
  2351. <summary>
  2352. Serializer to use when writing XML request bodies. Used if RequestFormat is Xml.
  2353. By default XmlSerializer is used.
  2354. </summary>
  2355. </member>
  2356. <member name="P:RestSharp.RestRequest.RootElement">
  2357. <summary>
  2358. Used by the default deserializers to determine where to start deserializing from.
  2359. Can be used to skip container or root elements that do not have corresponding deserialzation targets.
  2360. </summary>
  2361. </member>
  2362. <member name="P:RestSharp.RestRequest.OnBeforeDeserialization">
  2363. <summary>
  2364. A function to run prior to deserializing starting (e.g. change settings if error encountered)
  2365. </summary>
  2366. </member>
  2367. <member name="P:RestSharp.RestRequest.DateFormat">
  2368. <summary>
  2369. Used by the default deserializers to explicitly set which date format string to use when parsing dates.
  2370. </summary>
  2371. </member>
  2372. <member name="P:RestSharp.RestRequest.XmlNamespace">
  2373. <summary>
  2374. Used by XmlDeserializer. If not specified, XmlDeserializer will flatten response by removing namespaces from element names.
  2375. </summary>
  2376. </member>
  2377. <member name="P:RestSharp.RestRequest.Credentials">
  2378. <summary>
  2379. In general you would not need to set this directly. Used by the NtlmAuthenticator.
  2380. </summary>
  2381. </member>
  2382. <member name="P:RestSharp.RestRequest.UserState">
  2383. <summary>
  2384. Gets or sets a user-defined state object that contains information about a request and which can be later
  2385. retrieved when the request completes.
  2386. </summary>
  2387. </member>
  2388. <member name="P:RestSharp.RestRequest.Timeout">
  2389. <summary>
  2390. Timeout in milliseconds to be used for the request. This timeout value overrides a timeout set on the RestClient.
  2391. </summary>
  2392. </member>
  2393. <member name="P:RestSharp.RestRequest.ReadWriteTimeout">
  2394. <summary>
  2395. The number of milliseconds before the writing or reading times out. This timeout value overrides a timeout set on the RestClient.
  2396. </summary>
  2397. </member>
  2398. <member name="P:RestSharp.RestRequest.Attempts">
  2399. <summary>
  2400. How many attempts were made to send this Request?
  2401. </summary>
  2402. <remarks>
  2403. This Number is incremented each time the RestClient sends the request.
  2404. Useful when using Asynchronous Execution with Callbacks
  2405. </remarks>
  2406. </member>
  2407. <member name="T:RestSharp.RestResponseBase">
  2408. <summary>
  2409. Base class for common properties shared by RestResponse and RestResponse[[T]]
  2410. </summary>
  2411. </member>
  2412. <member name="M:RestSharp.RestResponseBase.#ctor">
  2413. <summary>
  2414. Default constructor
  2415. </summary>
  2416. </member>
  2417. <member name="P:RestSharp.RestResponseBase.Request">
  2418. <summary>
  2419. The RestRequest that was made to get this RestResponse
  2420. </summary>
  2421. <remarks>
  2422. Mainly for debugging if ResponseStatus is not OK
  2423. </remarks>
  2424. </member>
  2425. <member name="P:RestSharp.RestResponseBase.ContentType">
  2426. <summary>
  2427. MIME content type of response
  2428. </summary>
  2429. </member>
  2430. <member name="P:RestSharp.RestResponseBase.ContentLength">
  2431. <summary>
  2432. Length in bytes of the response content
  2433. </summary>
  2434. </member>
  2435. <member name="P:RestSharp.RestResponseBase.ContentEncoding">
  2436. <summary>
  2437. Encoding of the response content
  2438. </summary>
  2439. </member>
  2440. <member name="P:RestSharp.RestResponseBase.Content">
  2441. <summary>
  2442. String representation of response content
  2443. </summary>
  2444. </member>
  2445. <member name="P:RestSharp.RestResponseBase.StatusCode">
  2446. <summary>
  2447. HTTP response status code
  2448. </summary>
  2449. </member>
  2450. <member name="P:RestSharp.RestResponseBase.StatusDescription">
  2451. <summary>
  2452. Description of HTTP status returned
  2453. </summary>
  2454. </member>
  2455. <member name="P:RestSharp.RestResponseBase.RawBytes">
  2456. <summary>
  2457. Response content
  2458. </summary>
  2459. </member>
  2460. <member name="P:RestSharp.RestResponseBase.ResponseUri">
  2461. <summary>
  2462. The URL that actually responded to the content (different from request if redirected)
  2463. </summary>
  2464. </member>
  2465. <member name="P:RestSharp.RestResponseBase.Server">
  2466. <summary>
  2467. HttpWebResponse.Server
  2468. </summary>
  2469. </member>
  2470. <member name="P:RestSharp.RestResponseBase.Cookies">
  2471. <summary>
  2472. Cookies returned by server with the response
  2473. </summary>
  2474. </member>
  2475. <member name="P:RestSharp.RestResponseBase.Headers">
  2476. <summary>
  2477. Headers returned by server with the response
  2478. </summary>
  2479. </member>
  2480. <member name="P:RestSharp.RestResponseBase.ResponseStatus">
  2481. <summary>
  2482. Status of the request. Will return Error for transport errors.
  2483. HTTP errors will still return ResponseStatus.Completed, check StatusCode instead
  2484. </summary>
  2485. </member>
  2486. <member name="P:RestSharp.RestResponseBase.ErrorMessage">
  2487. <summary>
  2488. Transport or other non-HTTP error generated while attempting request
  2489. </summary>
  2490. </member>
  2491. <member name="P:RestSharp.RestResponseBase.ErrorException">
  2492. <summary>
  2493. The exception thrown during the request, if any
  2494. </summary>
  2495. </member>
  2496. <member name="T:RestSharp.RestResponse`1">
  2497. <summary>
  2498. Container for data sent back from API including deserialized data
  2499. </summary>
  2500. <typeparam name="T">Type of data to deserialize to</typeparam>
  2501. </member>
  2502. <member name="P:RestSharp.RestResponse`1.Data">
  2503. <summary>
  2504. Deserialized entity data
  2505. </summary>
  2506. </member>
  2507. <member name="T:RestSharp.RestResponse">
  2508. <summary>
  2509. Container for data sent back from API
  2510. </summary>
  2511. </member>
  2512. <member name="P:RestSharp.RestResponseCookie.Comment">
  2513. <summary>
  2514. Comment of the cookie
  2515. </summary>
  2516. </member>
  2517. <member name="P:RestSharp.RestResponseCookie.CommentUri">
  2518. <summary>
  2519. Comment of the cookie
  2520. </summary>
  2521. </member>
  2522. <member name="P:RestSharp.RestResponseCookie.Discard">
  2523. <summary>
  2524. Indicates whether the cookie should be discarded at the end of the session
  2525. </summary>
  2526. </member>
  2527. <member name="P:RestSharp.RestResponseCookie.Domain">
  2528. <summary>
  2529. Domain of the cookie
  2530. </summary>
  2531. </member>
  2532. <member name="P:RestSharp.RestResponseCookie.Expired">
  2533. <summary>
  2534. Indicates whether the cookie is expired
  2535. </summary>
  2536. </member>
  2537. <member name="P:RestSharp.RestResponseCookie.Expires">
  2538. <summary>
  2539. Date and time that the cookie expires
  2540. </summary>
  2541. </member>
  2542. <member name="P:RestSharp.RestResponseCookie.HttpOnly">
  2543. <summary>
  2544. Indicates that this cookie should only be accessed by the server
  2545. </summary>
  2546. </member>
  2547. <member name="P:RestSharp.RestResponseCookie.Name">
  2548. <summary>
  2549. Name of the cookie
  2550. </summary>
  2551. </member>
  2552. <member name="P:RestSharp.RestResponseCookie.Path">
  2553. <summary>
  2554. Path of the cookie
  2555. </summary>
  2556. </member>
  2557. <member name="P:RestSharp.RestResponseCookie.Port">
  2558. <summary>
  2559. Port of the cookie
  2560. </summary>
  2561. </member>
  2562. <member name="P:RestSharp.RestResponseCookie.Secure">
  2563. <summary>
  2564. Indicates that the cookie should only be sent over secure channels
  2565. </summary>
  2566. </member>
  2567. <member name="P:RestSharp.RestResponseCookie.TimeStamp">
  2568. <summary>
  2569. Date and time the cookie was created
  2570. </summary>
  2571. </member>
  2572. <member name="P:RestSharp.RestResponseCookie.Value">
  2573. <summary>
  2574. Value of the cookie
  2575. </summary>
  2576. </member>
  2577. <member name="P:RestSharp.RestResponseCookie.Version">
  2578. <summary>
  2579. Version of the cookie
  2580. </summary>
  2581. </member>
  2582. <member name="T:RestSharp.Serializers.DotNetXmlSerializer">
  2583. <summary>
  2584. Wrapper for System.Xml.Serialization.XmlSerializer.
  2585. </summary>
  2586. </member>
  2587. <member name="M:RestSharp.Serializers.DotNetXmlSerializer.#ctor">
  2588. <summary>
  2589. Default constructor, does not specify namespace
  2590. </summary>
  2591. </member>
  2592. <member name="M:RestSharp.Serializers.DotNetXmlSerializer.#ctor(System.String)">
  2593. <summary>
  2594. Specify the namespaced to be used when serializing
  2595. </summary>
  2596. <param name="namespace">XML namespace</param>
  2597. </member>
  2598. <member name="M:RestSharp.Serializers.DotNetXmlSerializer.Serialize(System.Object)">
  2599. <summary>
  2600. Serialize the object as XML
  2601. </summary>
  2602. <param name="obj">Object to serialize</param>
  2603. <returns>XML as string</returns>
  2604. </member>
  2605. <member name="P:RestSharp.Serializers.DotNetXmlSerializer.RootElement">
  2606. <summary>
  2607. Name of the root element to use when serializing
  2608. </summary>
  2609. </member>
  2610. <member name="P:RestSharp.Serializers.DotNetXmlSerializer.Namespace">
  2611. <summary>
  2612. XML namespace to use when serializing
  2613. </summary>
  2614. </member>
  2615. <member name="P:RestSharp.Serializers.DotNetXmlSerializer.DateFormat">
  2616. <summary>
  2617. Format string to use when serializing dates
  2618. </summary>
  2619. </member>
  2620. <member name="P:RestSharp.Serializers.DotNetXmlSerializer.ContentType">
  2621. <summary>
  2622. Content type for serialized content
  2623. </summary>
  2624. </member>
  2625. <member name="P:RestSharp.Serializers.DotNetXmlSerializer.Encoding">
  2626. <summary>
  2627. Encoding for serialized content
  2628. </summary>
  2629. </member>
  2630. <member name="T:RestSharp.Serializers.DotNetXmlSerializer.EncodingStringWriter">
  2631. <summary>
  2632. Need to subclass StringWriter in order to override Encoding
  2633. </summary>
  2634. </member>
  2635. <member name="T:RestSharp.Serializers.JsonSerializer">
  2636. <summary>
  2637. Default JSON serializer for request bodies
  2638. Doesn't currently use the SerializeAs attribute, defers to Newtonsoft's attributes
  2639. </summary>
  2640. </member>
  2641. <member name="M:RestSharp.Serializers.JsonSerializer.#ctor">
  2642. <summary>
  2643. Default serializer
  2644. </summary>
  2645. </member>
  2646. <member name="M:RestSharp.Serializers.JsonSerializer.Serialize(System.Object)">
  2647. <summary>
  2648. Serialize the object as JSON
  2649. </summary>
  2650. <param name="obj">Object to serialize</param>
  2651. <returns>JSON as String</returns>
  2652. </member>
  2653. <member name="P:RestSharp.Serializers.JsonSerializer.DateFormat">
  2654. <summary>
  2655. Unused for JSON Serialization
  2656. </summary>
  2657. </member>
  2658. <member name="P:RestSharp.Serializers.JsonSerializer.RootElement">
  2659. <summary>
  2660. Unused for JSON Serialization
  2661. </summary>
  2662. </member>
  2663. <member name="P:RestSharp.Serializers.JsonSerializer.Namespace">
  2664. <summary>
  2665. Unused for JSON Serialization
  2666. </summary>
  2667. </member>
  2668. <member name="P:RestSharp.Serializers.JsonSerializer.ContentType">
  2669. <summary>
  2670. Content type for serialized content
  2671. </summary>
  2672. </member>
  2673. <member name="T:RestSharp.Serializers.SerializeAsAttribute">
  2674. <summary>
  2675. Allows control how class and property names and values are serialized by XmlSerializer
  2676. Currently not supported with the JsonSerializer
  2677. When specified at the property level the class-level specification is overridden
  2678. </summary>
  2679. </member>
  2680. <member name="M:RestSharp.Serializers.SerializeAsAttribute.TransformName(System.String)">
  2681. <summary>
  2682. Called by the attribute when NameStyle is speficied
  2683. </summary>
  2684. <param name="input">The string to transform</param>
  2685. <returns>String</returns>
  2686. </member>
  2687. <member name="P:RestSharp.Serializers.SerializeAsAttribute.Name">
  2688. <summary>
  2689. The name to use for the serialized element
  2690. </summary>
  2691. </member>
  2692. <member name="P:RestSharp.Serializers.SerializeAsAttribute.Attribute">
  2693. <summary>
  2694. Sets the value to be serialized as an Attribute instead of an Element
  2695. </summary>
  2696. </member>
  2697. <member name="P:RestSharp.Serializers.SerializeAsAttribute.Culture">
  2698. <summary>
  2699. The culture to use when serializing
  2700. </summary>
  2701. </member>
  2702. <member name="P:RestSharp.Serializers.SerializeAsAttribute.NameStyle">
  2703. <summary>
  2704. Transforms the casing of the name based on the selected value.
  2705. </summary>
  2706. </member>
  2707. <member name="P:RestSharp.Serializers.SerializeAsAttribute.Index">
  2708. <summary>
  2709. The order to serialize the element. Default is int.MaxValue.
  2710. </summary>
  2711. </member>
  2712. <member name="T:RestSharp.Serializers.NameStyle">
  2713. <summary>
  2714. Options for transforming casing of element names
  2715. </summary>
  2716. </member>
  2717. <member name="T:RestSharp.Serializers.XmlSerializer">
  2718. <summary>
  2719. Default XML Serializer
  2720. </summary>
  2721. </member>
  2722. <member name="M:RestSharp.Serializers.XmlSerializer.#ctor">
  2723. <summary>
  2724. Default constructor, does not specify namespace
  2725. </summary>
  2726. </member>
  2727. <member name="M:RestSharp.Serializers.XmlSerializer.#ctor(System.String)">
  2728. <summary>
  2729. Specify the namespaced to be used when serializing
  2730. </summary>
  2731. <param name="namespace">XML namespace</param>
  2732. </member>
  2733. <member name="M:RestSharp.Serializers.XmlSerializer.Serialize(System.Object)">
  2734. <summary>
  2735. Serialize the object as XML
  2736. </summary>
  2737. <param name="obj">Object to serialize</param>
  2738. <returns>XML as string</returns>
  2739. </member>
  2740. <member name="M:RestSharp.Serializers.XmlSerializer.IsNumeric(System.Object)">
  2741. <summary>
  2742. Determines if a given object is numeric in any way
  2743. (can be integer, double, null, etc).
  2744. </summary>
  2745. </member>
  2746. <member name="P:RestSharp.Serializers.XmlSerializer.RootElement">
  2747. <summary>
  2748. Name of the root element to use when serializing
  2749. </summary>
  2750. </member>
  2751. <member name="P:RestSharp.Serializers.XmlSerializer.Namespace">
  2752. <summary>
  2753. XML namespace to use when serializing
  2754. </summary>
  2755. </member>
  2756. <member name="P:RestSharp.Serializers.XmlSerializer.DateFormat">
  2757. <summary>
  2758. Format string to use when serializing dates
  2759. </summary>
  2760. </member>
  2761. <member name="P:RestSharp.Serializers.XmlSerializer.ContentType">
  2762. <summary>
  2763. Content type for serialized content
  2764. </summary>
  2765. </member>
  2766. <member name="T:RestSharp.Validation.Require">
  2767. <summary>
  2768. Helper methods for validating required values
  2769. </summary>
  2770. </member>
  2771. <member name="M:RestSharp.Validation.Require.Argument(System.String,System.Object)">
  2772. <summary>
  2773. Require a parameter to not be null
  2774. </summary>
  2775. <param name="argumentName">Name of the parameter</param>
  2776. <param name="argumentValue">Value of the parameter</param>
  2777. </member>
  2778. <member name="T:RestSharp.JsonArray">
  2779. <summary>
  2780. Represents the json array.
  2781. </summary>
  2782. </member>
  2783. <member name="M:RestSharp.JsonArray.#ctor">
  2784. <summary>
  2785. Initializes a new instance of the <see cref="T:RestSharp.JsonArray"/> class.
  2786. </summary>
  2787. </member>
  2788. <member name="M:RestSharp.JsonArray.#ctor(System.Int32)">
  2789. <summary>
  2790. Initializes a new instance of the <see cref="T:RestSharp.JsonArray"/> class.
  2791. </summary>
  2792. <param name="capacity">The capacity of the json array.</param>
  2793. </member>
  2794. <member name="M:RestSharp.JsonArray.ToString">
  2795. <summary>
  2796. The json representation of the array.
  2797. </summary>
  2798. <returns>The json representation of the array.</returns>
  2799. </member>
  2800. <member name="T:RestSharp.JsonObject">
  2801. <summary>
  2802. Represents the json object.
  2803. </summary>
  2804. </member>
  2805. <member name="F:RestSharp.JsonObject._members">
  2806. <summary>
  2807. The internal member dictionary.
  2808. </summary>
  2809. </member>
  2810. <member name="M:RestSharp.JsonObject.#ctor">
  2811. <summary>
  2812. Initializes a new instance of <see cref="T:RestSharp.JsonObject"/>.
  2813. </summary>
  2814. </member>
  2815. <member name="M:RestSharp.JsonObject.#ctor(System.Collections.Generic.IEqualityComparer{System.String})">
  2816. <summary>
  2817. Initializes a new instance of <see cref="T:RestSharp.JsonObject"/>.
  2818. </summary>
  2819. <param name="comparer">The <see cref="T:System.Collections.Generic.IEqualityComparer`1"/> implementation to use when comparing keys, or null to use the default <see cref="T:System.Collections.Generic.EqualityComparer`1"/> for the type of the key.</param>
  2820. </member>
  2821. <member name="M:RestSharp.JsonObject.Add(System.String,System.Object)">
  2822. <summary>
  2823. Adds the specified key.
  2824. </summary>
  2825. <param name="key">The key.</param>
  2826. <param name="value">The value.</param>
  2827. </member>
  2828. <member name="M:RestSharp.JsonObject.ContainsKey(System.String)">
  2829. <summary>
  2830. Determines whether the specified key contains key.
  2831. </summary>
  2832. <param name="key">The key.</param>
  2833. <returns>
  2834. <c>true</c> if the specified key contains key; otherwise, <c>false</c>.
  2835. </returns>
  2836. </member>
  2837. <member name="M:RestSharp.JsonObject.Remove(System.String)">
  2838. <summary>
  2839. Removes the specified key.
  2840. </summary>
  2841. <param name="key">The key.</param>
  2842. <returns></returns>
  2843. </member>
  2844. <member name="M:RestSharp.JsonObject.TryGetValue(System.String,System.Object@)">
  2845. <summary>
  2846. Tries the get value.
  2847. </summary>
  2848. <param name="key">The key.</param>
  2849. <param name="value">The value.</param>
  2850. <returns></returns>
  2851. </member>
  2852. <member name="M:RestSharp.JsonObject.Add(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
  2853. <summary>
  2854. Adds the specified item.
  2855. </summary>
  2856. <param name="item">The item.</param>
  2857. </member>
  2858. <member name="M:RestSharp.JsonObject.Clear">
  2859. <summary>
  2860. Clears this instance.
  2861. </summary>
  2862. </member>
  2863. <member name="M:RestSharp.JsonObject.Contains(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
  2864. <summary>
  2865. Determines whether [contains] [the specified item].
  2866. </summary>
  2867. <param name="item">The item.</param>
  2868. <returns>
  2869. <c>true</c> if [contains] [the specified item]; otherwise, <c>false</c>.
  2870. </returns>
  2871. </member>
  2872. <member name="M:RestSharp.JsonObject.CopyTo(System.Collections.Generic.KeyValuePair{System.String,System.Object}[],System.Int32)">
  2873. <summary>
  2874. Copies to.
  2875. </summary>
  2876. <param name="array">The array.</param>
  2877. <param name="arrayIndex">Index of the array.</param>
  2878. </member>
  2879. <member name="M:RestSharp.JsonObject.Remove(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
  2880. <summary>
  2881. Removes the specified item.
  2882. </summary>
  2883. <param name="item">The item.</param>
  2884. <returns></returns>
  2885. </member>
  2886. <member name="M:RestSharp.JsonObject.GetEnumerator">
  2887. <summary>
  2888. Gets the enumerator.
  2889. </summary>
  2890. <returns></returns>
  2891. </member>
  2892. <member name="M:RestSharp.JsonObject.System#Collections#IEnumerable#GetEnumerator">
  2893. <summary>
  2894. Returns an enumerator that iterates through a collection.
  2895. </summary>
  2896. <returns>
  2897. An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
  2898. </returns>
  2899. </member>
  2900. <member name="M:RestSharp.JsonObject.ToString">
  2901. <summary>
  2902. Returns a json <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
  2903. </summary>
  2904. <returns>
  2905. A json <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
  2906. </returns>
  2907. </member>
  2908. <member name="P:RestSharp.JsonObject.Item(System.Int32)">
  2909. <summary>
  2910. Gets the <see cref="T:System.Object"/> at the specified index.
  2911. </summary>
  2912. <value></value>
  2913. </member>
  2914. <member name="P:RestSharp.JsonObject.Keys">
  2915. <summary>
  2916. Gets the keys.
  2917. </summary>
  2918. <value>The keys.</value>
  2919. </member>
  2920. <member name="P:RestSharp.JsonObject.Values">
  2921. <summary>
  2922. Gets the values.
  2923. </summary>
  2924. <value>The values.</value>
  2925. </member>
  2926. <member name="P:RestSharp.JsonObject.Item(System.String)">
  2927. <summary>
  2928. Gets or sets the <see cref="T:System.Object"/> with the specified key.
  2929. </summary>
  2930. <value></value>
  2931. </member>
  2932. <member name="P:RestSharp.JsonObject.Count">
  2933. <summary>
  2934. Gets the count.
  2935. </summary>
  2936. <value>The count.</value>
  2937. </member>
  2938. <member name="P:RestSharp.JsonObject.IsReadOnly">
  2939. <summary>
  2940. Gets a value indicating whether this instance is read only.
  2941. </summary>
  2942. <value>
  2943. <c>true</c> if this instance is read only; otherwise, <c>false</c>.
  2944. </value>
  2945. </member>
  2946. <member name="T:RestSharp.SimpleJson">
  2947. <summary>
  2948. This class encodes and decodes JSON strings.
  2949. Spec. details, see http://www.json.org/
  2950. JSON uses Arrays and Objects. These correspond here to the datatypes JsonArray(IList&lt;object>) and JsonObject(IDictionary&lt;string,object>).
  2951. All numbers are parsed to doubles.
  2952. </summary>
  2953. </member>
  2954. <member name="M:RestSharp.SimpleJson.DeserializeObject(System.String)">
  2955. <summary>
  2956. Parses the string json into a value
  2957. </summary>
  2958. <param name="json">A JSON string.</param>
  2959. <returns>An IList&lt;object>, a IDictionary&lt;string,object>, a double, a string, null, true, or false</returns>
  2960. </member>
  2961. <member name="M:RestSharp.SimpleJson.TryDeserializeObject(System.String,System.Object@)">
  2962. <summary>
  2963. Try parsing the json string into a value.
  2964. </summary>
  2965. <param name="json">
  2966. A JSON string.
  2967. </param>
  2968. <param name="obj">
  2969. The object.
  2970. </param>
  2971. <returns>
  2972. Returns true if successfull otherwise false.
  2973. </returns>
  2974. </member>
  2975. <member name="M:RestSharp.SimpleJson.SerializeObject(System.Object,RestSharp.IJsonSerializerStrategy)">
  2976. <summary>
  2977. Converts a IDictionary&lt;string,object> / IList&lt;object> object into a JSON string
  2978. </summary>
  2979. <param name="json">A IDictionary&lt;string,object> / IList&lt;object></param>
  2980. <param name="jsonSerializerStrategy">Serializer strategy to use</param>
  2981. <returns>A JSON encoded string, or null if object 'json' is not serializable</returns>
  2982. </member>
  2983. <member name="M:RestSharp.SimpleJson.IsNumeric(System.Object)">
  2984. <summary>
  2985. Determines if a given object is numeric in any way
  2986. (can be integer, double, null, etc).
  2987. </summary>
  2988. </member>
  2989. <member name="T:RestSharp.Validation.Validate">
  2990. <summary>
  2991. Helper methods for validating values
  2992. </summary>
  2993. </member>
  2994. <member name="M:RestSharp.Validation.Validate.IsBetween(System.Int32,System.Int32,System.Int32)">
  2995. <summary>
  2996. Validate an integer value is between the specified values (exclusive of min/max)
  2997. </summary>
  2998. <param name="value">Value to validate</param>
  2999. <param name="min">Exclusive minimum value</param>
  3000. <param name="max">Exclusive maximum value</param>
  3001. </member>
  3002. <member name="M:RestSharp.Validation.Validate.IsValidLength(System.String,System.Int32)">
  3003. <summary>
  3004. Validate a string length
  3005. </summary>
  3006. <param name="value">String to be validated</param>
  3007. <param name="maxSize">Maximum length of the string</param>
  3008. </member>
  3009. </members>
  3010. </doc>