System.Text.Json.xml 442 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <doc>
  3. <assembly>
  4. <name>System.Text.Json</name>
  5. </assembly>
  6. <members>
  7. <member name="T:System.Text.Json.JsonCommentHandling">
  8. <summary>Defines how the <see cref="T:System.Text.Json.Utf8JsonReader" /> struct handles comments.</summary>
  9. </member>
  10. <member name="F:System.Text.Json.JsonCommentHandling.Allow">
  11. <summary>Allows comments within the JSON input and treats them as valid tokens. While reading, the caller can access the comment values.</summary>
  12. </member>
  13. <member name="F:System.Text.Json.JsonCommentHandling.Disallow">
  14. <summary>Doesn't allow comments within the JSON input. Comments are treated as invalid JSON if found, and a <see cref="T:System.Text.Json.JsonException" /> is thrown. This is the default value.</summary>
  15. </member>
  16. <member name="F:System.Text.Json.JsonCommentHandling.Skip">
  17. <summary>Allows comments within the JSON input and ignores them. The <see cref="T:System.Text.Json.Utf8JsonReader" /> behaves as if no comments are present.</summary>
  18. </member>
  19. <member name="T:System.Text.Json.JsonDocument">
  20. <summary>Provides a mechanism for examining the structural content of a JSON value without automatically instantiating data values.</summary>
  21. </member>
  22. <member name="M:System.Text.Json.JsonDocument.Dispose">
  23. <summary>Releases the resources used by this <see cref="T:System.Text.Json.JsonDocument" /> instance.</summary>
  24. </member>
  25. <member name="M:System.Text.Json.JsonDocument.Parse(System.Buffers.ReadOnlySequence{System.Byte},System.Text.Json.JsonDocumentOptions)">
  26. <summary>Parses a sequence as UTF-8-encoded text representing a single JSON byte value into a JsonDocument.</summary>
  27. <param name="utf8Json">The JSON text to parse.</param>
  28. <param name="options">Options to control the reader behavior during parsing.</param>
  29. <exception cref="T:System.Text.Json.JsonException">
  30. <paramref name="utf8Json" /> does not represent a valid single JSON value.</exception>
  31. <exception cref="T:System.ArgumentException">
  32. <paramref name="options" /> contains unsupported options.</exception>
  33. <returns>A JsonDocument representation of the JSON value.</returns>
  34. </member>
  35. <member name="M:System.Text.Json.JsonDocument.Parse(System.IO.Stream,System.Text.Json.JsonDocumentOptions)">
  36. <summary>Parses a <see cref="T:System.IO.Stream" /> as UTF-8-encoded data representing a single JSON value into a JsonDocument. The stream is read to completion.</summary>
  37. <param name="utf8Json">The JSON data to parse.</param>
  38. <param name="options">Options to control the reader behavior during parsing.</param>
  39. <exception cref="T:System.Text.Json.JsonException">
  40. <paramref name="utf8Json" /> does not represent a valid single JSON value.</exception>
  41. <exception cref="T:System.ArgumentException">
  42. <paramref name="options" /> contains unsupported options.</exception>
  43. <returns>A JsonDocument representation of the JSON value.</returns>
  44. </member>
  45. <member name="M:System.Text.Json.JsonDocument.Parse(System.ReadOnlyMemory{System.Byte},System.Text.Json.JsonDocumentOptions)">
  46. <summary>Parses memory as UTF-8-encoded text representing a single JSON byte value into a JsonDocument.</summary>
  47. <param name="utf8Json">The JSON text to parse.</param>
  48. <param name="options">Options to control the reader behavior during parsing.</param>
  49. <exception cref="T:System.Text.Json.JsonException">
  50. <paramref name="utf8Json" /> does not represent a valid single JSON value.</exception>
  51. <exception cref="T:System.ArgumentException">
  52. <paramref name="options" /> contains unsupported options.</exception>
  53. <returns>A JsonDocument representation of the JSON value.</returns>
  54. </member>
  55. <member name="M:System.Text.Json.JsonDocument.Parse(System.ReadOnlyMemory{System.Char},System.Text.Json.JsonDocumentOptions)">
  56. <summary>Parses text representing a single JSON value into a JsonDocument.</summary>
  57. <param name="json">The JSON text to parse.</param>
  58. <param name="options">Options to control the reader behavior during parsing.</param>
  59. <exception cref="T:System.Text.Json.JsonException">
  60. <paramref name="json" /> does not represent a valid single JSON value.</exception>
  61. <exception cref="T:System.ArgumentException">
  62. <paramref name="options" /> contains unsupported options.</exception>
  63. <returns>A JsonDocument representation of the JSON value.</returns>
  64. </member>
  65. <member name="M:System.Text.Json.JsonDocument.Parse(System.String,System.Text.Json.JsonDocumentOptions)">
  66. <summary>Parses text representing a single JSON string value into a JsonDocument.</summary>
  67. <param name="json">The JSON text to parse.</param>
  68. <param name="options">Options to control the reader behavior during parsing.</param>
  69. <exception cref="T:System.Text.Json.JsonException">
  70. <paramref name="json" /> does not represent a valid single JSON value.</exception>
  71. <exception cref="T:System.ArgumentException">
  72. <paramref name="options" /> contains unsupported options.</exception>
  73. <returns>A JsonDocument representation of the JSON value.</returns>
  74. </member>
  75. <member name="M:System.Text.Json.JsonDocument.ParseAsync(System.IO.Stream,System.Text.Json.JsonDocumentOptions,System.Threading.CancellationToken)">
  76. <summary>Parses a <see cref="T:System.IO.Stream" /> as UTF-8-encoded data representing a single JSON value into a JsonDocument. The stream is read to completion.</summary>
  77. <param name="utf8Json">The JSON data to parse.</param>
  78. <param name="options">Options to control the reader behavior during parsing.</param>
  79. <param name="cancellationToken">The token to monitor for cancellation requests.</param>
  80. <exception cref="T:System.Text.Json.JsonException">
  81. <paramref name="utf8Json" /> does not represent a valid single JSON value.</exception>
  82. <exception cref="T:System.ArgumentException">
  83. <paramref name="options" /> contains unsupported options.</exception>
  84. <returns>A task to produce a JsonDocument representation of the JSON value.</returns>
  85. </member>
  86. <member name="M:System.Text.Json.JsonDocument.ParseValue(System.Text.Json.Utf8JsonReader@)">
  87. <summary>Parses one JSON value (including objects or arrays) from the provided reader.</summary>
  88. <param name="reader">The reader to read.</param>
  89. <exception cref="T:System.ArgumentException">
  90. <paramref name="reader" /> contains unsupported options.
  91. -or-
  92. The current <paramref name="reader" /> token does not start or represent a value.</exception>
  93. <exception cref="T:System.Text.Json.JsonException">A value could not be read from the reader.</exception>
  94. <returns>A JsonDocument representing the value (and nested values) read from the reader.</returns>
  95. </member>
  96. <member name="M:System.Text.Json.JsonDocument.TryParseValue(System.Text.Json.Utf8JsonReader@,System.Text.Json.JsonDocument@)">
  97. <summary>Attempts to parse one JSON value (including objects or arrays) from the provided reader.</summary>
  98. <param name="reader">The reader to read.</param>
  99. <param name="document">When the method returns, contains the parsed document.</param>
  100. <exception cref="T:System.ArgumentException">
  101. <paramref name="reader" /> contains unsupported options.
  102. -or-
  103. The current <paramref name="reader" /> token does not start or represent a value.</exception>
  104. <exception cref="T:System.Text.Json.JsonException">A value could not be read from the reader.</exception>
  105. <returns>
  106. <see langword="true" /> if a value was read and parsed into a JsonDocument; <see langword="false" /> if the reader ran out of data while parsing. All other situations result in an exception being thrown.</returns>
  107. </member>
  108. <member name="M:System.Text.Json.JsonDocument.WriteTo(System.Text.Json.Utf8JsonWriter)">
  109. <summary>Writes the document to the provided writer as a JSON value.</summary>
  110. <param name="writer">The writer to which to write the document.</param>
  111. <exception cref="T:System.ArgumentNullException">The <paramref name="writer" /> parameter is <see langword="null" />.</exception>
  112. <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Text.Json.JsonElement.ValueKind" /> of this <see cref="P:System.Text.Json.JsonDocument.RootElement" /> would result in invalid JSON.</exception>
  113. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  114. </member>
  115. <member name="P:System.Text.Json.JsonDocument.RootElement">
  116. <summary>Gets the root element of this JSON document.</summary>
  117. <returns>A <see cref="T:System.Text.Json.JsonElement" /> representing the value of the document.</returns>
  118. </member>
  119. <member name="T:System.Text.Json.JsonDocumentOptions">
  120. <summary>Provides the ability for the user to define custom behavior when parsing JSON to create a <see cref="T:System.Text.Json.JsonDocument" />.</summary>
  121. </member>
  122. <member name="P:System.Text.Json.JsonDocumentOptions.AllowTrailingCommas">
  123. <summary>Gets or sets a value that indicates whether an extra comma at the end of a list of JSON values in an object or array is allowed (and ignored) within the JSON payload being read.</summary>
  124. <returns>
  125. <see langword="true" /> if an extra comma at the end of a list of JSON values in an object or array is allowed; otherwise, <see langword="false" />. Default is <see langword="false" /></returns>
  126. </member>
  127. <member name="P:System.Text.Json.JsonDocumentOptions.CommentHandling">
  128. <summary>Gets or sets a value that determines how the <see cref="T:System.Text.Json.JsonDocument" /> handles comments when reading through the JSON data.</summary>
  129. <exception cref="T:System.ArgumentOutOfRangeException">The comment handling enum is set to a value that is not supported (or not within the <see cref="T:System.Text.Json.JsonCommentHandling" /> enum range).</exception>
  130. <returns>One of the enumeration values that indicates how comments are handled.</returns>
  131. </member>
  132. <member name="P:System.Text.Json.JsonDocumentOptions.MaxDepth">
  133. <summary>Gets or sets the maximum depth allowed when parsing JSON data, with the default (that is, 0) indicating a maximum depth of 64.</summary>
  134. <exception cref="T:System.ArgumentOutOfRangeException">The max depth is set to a negative value.</exception>
  135. <returns>The maximum depth allowed when parsing JSON data.</returns>
  136. </member>
  137. <member name="T:System.Text.Json.JsonElement">
  138. <summary>Represents a specific JSON value within a <see cref="T:System.Text.Json.JsonDocument" />.</summary>
  139. </member>
  140. <member name="M:System.Text.Json.JsonElement.Clone">
  141. <summary>Gets a JsonElement that can be safely stored beyond the lifetime of the original <see cref="T:System.Text.Json.JsonDocument" />.</summary>
  142. <returns>A JsonElement that can be safely stored beyond the lifetime of the original <see cref="T:System.Text.Json.JsonDocument" />.</returns>
  143. </member>
  144. <member name="M:System.Text.Json.JsonElement.EnumerateArray">
  145. <summary>Gets an enumerator to enumerate the values in the JSON array represented by this JsonElement.</summary>
  146. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Array" />.</exception>
  147. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  148. <returns>An enumerator to enumerate the values in the JSON array represented by this JsonElement.</returns>
  149. </member>
  150. <member name="M:System.Text.Json.JsonElement.EnumerateObject">
  151. <summary>Gets an enumerator to enumerate the properties in the JSON object represented by this JsonElement.</summary>
  152. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Object" />.</exception>
  153. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  154. <returns>An enumerator to enumerate the properties in the JSON object represented by this JsonElement.</returns>
  155. </member>
  156. <member name="M:System.Text.Json.JsonElement.GetArrayLength">
  157. <summary>Gets the number of values contained within the current array value.</summary>
  158. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Array" />.</exception>
  159. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  160. <returns>The number of values contained within the current array value.</returns>
  161. </member>
  162. <member name="M:System.Text.Json.JsonElement.GetBoolean">
  163. <summary>Gets the value of the element as a <see cref="T:System.Boolean" />.</summary>
  164. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is neither <see cref="F:System.Text.Json.JsonValueKind.True" /> nor <see cref="F:System.Text.Json.JsonValueKind.False" />.</exception>
  165. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  166. <returns>The value of the element as a <see cref="T:System.Boolean" />.</returns>
  167. </member>
  168. <member name="M:System.Text.Json.JsonElement.GetByte">
  169. <summary>Gets the current JSON number as a <see cref="T:System.Byte" />.</summary>
  170. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
  171. <exception cref="T:System.FormatException">The value cannot be represented as a <see cref="T:System.Byte" />.</exception>
  172. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  173. <returns>The current JSON number as a <see cref="T:System.Byte" />.</returns>
  174. </member>
  175. <member name="M:System.Text.Json.JsonElement.GetBytesFromBase64">
  176. <summary>Gets the value of the element as a byte array.</summary>
  177. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.String" />.</exception>
  178. <exception cref="T:System.FormatException">The value is not encoded as Base64 text and hence cannot be decoded to bytes.</exception>
  179. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  180. <returns>The value decoded as a byte array.</returns>
  181. </member>
  182. <member name="M:System.Text.Json.JsonElement.GetDateTime">
  183. <summary>Gets the value of the element as a <see cref="T:System.DateTime" />.</summary>
  184. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.String" />.</exception>
  185. <exception cref="T:System.FormatException">The value cannot be read as a <see cref="T:System.DateTime" />.</exception>
  186. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  187. <returns>The value of the element as a <see cref="T:System.DateTime" />.</returns>
  188. </member>
  189. <member name="M:System.Text.Json.JsonElement.GetDateTimeOffset">
  190. <summary>Gets the value of the element as a <see cref="T:System.DateTimeOffset" />.</summary>
  191. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.String" />.</exception>
  192. <exception cref="T:System.FormatException">The value cannot be read as a <see cref="T:System.DateTimeOffset" />.</exception>
  193. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  194. <returns>The value of the element as a <see cref="T:System.DateTimeOffset" />.</returns>
  195. </member>
  196. <member name="M:System.Text.Json.JsonElement.GetDecimal">
  197. <summary>Gets the current JSON number as a <see cref="T:System.Decimal" />.</summary>
  198. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
  199. <exception cref="T:System.FormatException">The value cannot be represented as a <see cref="T:System.Decimal" />.</exception>
  200. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  201. <returns>The current JSON number as a <see cref="T:System.Decimal" />.</returns>
  202. </member>
  203. <member name="M:System.Text.Json.JsonElement.GetDouble">
  204. <summary>Gets the current JSON number as a <see cref="T:System.Double" />.</summary>
  205. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
  206. <exception cref="T:System.FormatException">The value cannot be represented as a <see cref="T:System.Double" />.</exception>
  207. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  208. <returns>The current JSON number as a <see cref="T:System.Double" />.</returns>
  209. </member>
  210. <member name="M:System.Text.Json.JsonElement.GetGuid">
  211. <summary>Gets the value of the element as a <see cref="T:System.Guid" />.</summary>
  212. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.String" />.</exception>
  213. <exception cref="T:System.FormatException">The value cannot be represented as a <see cref="T:System.Guid" />.</exception>
  214. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  215. <returns>The value of the element as a <see cref="T:System.Guid" />.</returns>
  216. </member>
  217. <member name="M:System.Text.Json.JsonElement.GetInt16">
  218. <summary>Gets the current JSON number as an <see cref="T:System.Int16" />.</summary>
  219. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
  220. <exception cref="T:System.FormatException">The value cannot be represented as an <see cref="T:System.Int16" />.</exception>
  221. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  222. <returns>The current JSON number as an <see cref="T:System.Int16" />.</returns>
  223. </member>
  224. <member name="M:System.Text.Json.JsonElement.GetInt32">
  225. <summary>Gets the current JSON number as an <see cref="T:System.Int32" />.</summary>
  226. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
  227. <exception cref="T:System.FormatException">The value cannot be represented as an <see cref="T:System.Int32" />.</exception>
  228. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  229. <returns>The current JSON number as an <see cref="T:System.Int32" />.</returns>
  230. </member>
  231. <member name="M:System.Text.Json.JsonElement.GetInt64">
  232. <summary>Gets the current JSON number as an <see cref="T:System.Int64" />.</summary>
  233. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
  234. <exception cref="T:System.FormatException">The value cannot be represented as a <see cref="T:System.Int64" />.</exception>
  235. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  236. <returns>The current JSON number as an <see cref="T:System.Int64" />.</returns>
  237. </member>
  238. <member name="M:System.Text.Json.JsonElement.GetProperty(System.ReadOnlySpan{System.Byte})">
  239. <summary>Gets a <see cref="T:System.Text.Json.JsonElement" /> representing the value of a required property identified by <paramref name="utf8PropertyName" />.</summary>
  240. <param name="utf8PropertyName">The UTF-8 representation (with no Byte-Order-Mark (BOM)) of the name of the property to return.</param>
  241. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Object" />.</exception>
  242. <exception cref="T:System.Collections.Generic.KeyNotFoundException">No property was found with the requested name.</exception>
  243. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  244. <returns>A <see cref="T:System.Text.Json.JsonElement" /> representing the value of the requested property.</returns>
  245. </member>
  246. <member name="M:System.Text.Json.JsonElement.GetProperty(System.ReadOnlySpan{System.Char})">
  247. <summary>Gets a <see cref="T:System.Text.Json.JsonElement" /> representing the value of a required property identified by <paramref name="propertyName" />.</summary>
  248. <param name="propertyName">The name of the property whose value is to be returned.</param>
  249. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Object" />.</exception>
  250. <exception cref="T:System.Collections.Generic.KeyNotFoundException">No property was found with the requested name.</exception>
  251. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  252. <returns>A <see cref="T:System.Text.Json.JsonElement" /> representing the value of the requested property.</returns>
  253. </member>
  254. <member name="M:System.Text.Json.JsonElement.GetProperty(System.String)">
  255. <summary>Gets a <see cref="T:System.Text.Json.JsonElement" /> representing the value of a required property identified by <paramref name="propertyName" />.</summary>
  256. <param name="propertyName">The name of the property whose value is to be returned.</param>
  257. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Object" />.</exception>
  258. <exception cref="T:System.Collections.Generic.KeyNotFoundException">No property was found with the requested name.</exception>
  259. <exception cref="T:System.ArgumentNullException">
  260. <paramref name="propertyName" /> is <see langword="null" />.</exception>
  261. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  262. <returns>A <see cref="T:System.Text.Json.JsonElement" /> representing the value of the requested property.</returns>
  263. </member>
  264. <member name="M:System.Text.Json.JsonElement.GetRawText">
  265. <summary>Gets a string that represents the original input data backing this value.</summary>
  266. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  267. <returns>The original input data backing this value.</returns>
  268. </member>
  269. <member name="M:System.Text.Json.JsonElement.GetSByte">
  270. <summary>Gets the current JSON number as an <see cref="T:System.SByte" />.</summary>
  271. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
  272. <exception cref="T:System.FormatException">The value cannot be represented as an <see cref="T:System.SByte" />.</exception>
  273. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  274. <returns>The current JSON number as an <see cref="T:System.SByte" />.</returns>
  275. </member>
  276. <member name="M:System.Text.Json.JsonElement.GetSingle">
  277. <summary>Gets the current JSON number as a <see cref="T:System.Single" />.</summary>
  278. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
  279. <exception cref="T:System.FormatException">The value cannot be represented as a <see cref="T:System.Single" />.</exception>
  280. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  281. <returns>The current JSON number as a <see cref="T:System.Single" />.</returns>
  282. </member>
  283. <member name="M:System.Text.Json.JsonElement.GetString">
  284. <summary>Gets the value of the element as a <see cref="T:System.String" />.</summary>
  285. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is neither <see cref="F:System.Text.Json.JsonValueKind.String" /> nor <see cref="F:System.Text.Json.JsonValueKind.Null" />.</exception>
  286. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  287. <returns>The value of the element as a <see cref="T:System.String" />.</returns>
  288. </member>
  289. <member name="M:System.Text.Json.JsonElement.GetUInt16">
  290. <summary>Gets the current JSON number as a <see cref="T:System.UInt16" />.</summary>
  291. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
  292. <exception cref="T:System.FormatException">The value cannot be represented as a <see cref="T:System.UInt16" />.</exception>
  293. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  294. <returns>The current JSON number as a <see cref="T:System.UInt16" />.</returns>
  295. </member>
  296. <member name="M:System.Text.Json.JsonElement.GetUInt32">
  297. <summary>Gets the current JSON number as a <see cref="T:System.UInt32" />.</summary>
  298. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
  299. <exception cref="T:System.FormatException">The value cannot be represented as a <see cref="T:System.UInt32" />.</exception>
  300. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  301. <returns>The current JSON number as a <see cref="T:System.UInt32" />.</returns>
  302. </member>
  303. <member name="M:System.Text.Json.JsonElement.GetUInt64">
  304. <summary>Gets the current JSON number as a <see cref="T:System.UInt64" />.</summary>
  305. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
  306. <exception cref="T:System.FormatException">The value cannot be represented as a <see cref="T:System.UInt64" />.</exception>
  307. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  308. <returns>The current JSON number as a <see cref="T:System.UInt64" />.</returns>
  309. </member>
  310. <member name="M:System.Text.Json.JsonElement.ParseValue(System.Text.Json.Utf8JsonReader@)">
  311. <summary>Parses one JSON value (including objects or arrays) from the provided reader.</summary>
  312. <param name="reader">The reader to read.</param>
  313. <exception cref="T:System.ArgumentException">
  314. <paramref name="reader" /> is using unsupported options.</exception>
  315. <exception cref="T:System.ArgumentException">The current <paramref name="reader" /> token does not start or represent a value.</exception>
  316. <exception cref="T:System.Text.Json.JsonException">A value could not be read from the reader.</exception>
  317. <returns>A JsonElement representing the value (and nested values) read from the reader.</returns>
  318. </member>
  319. <member name="M:System.Text.Json.JsonElement.ToString">
  320. <summary>Gets a string representation for the current value appropriate to the value type.</summary>
  321. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  322. <returns>A string representation for the current value appropriate to the value type.</returns>
  323. </member>
  324. <member name="M:System.Text.Json.JsonElement.TryGetByte(System.Byte@)">
  325. <summary>Attempts to represent the current JSON number as a <see cref="T:System.Byte" />.</summary>
  326. <param name="value">When the method returns, contains the byte equivalent of the current JSON number if the conversion succeeded.</param>
  327. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
  328. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  329. <returns>
  330. <see langword="true" /> if the number can be represented as a <see cref="T:System.Byte" />; otherwise, <see langword="false" />.</returns>
  331. </member>
  332. <member name="M:System.Text.Json.JsonElement.TryGetBytesFromBase64(System.Byte[]@)">
  333. <summary>Attempts to represent the current JSON string as a byte array, assuming that it is Base64 encoded.</summary>
  334. <param name="value">If the method succeeds, contains the decoded binary representation of the Base64 text.</param>
  335. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.String" />.</exception>
  336. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  337. <returns>
  338. <see langword="true" /> if the entire token value is encoded as valid Base64 text and can be successfully decoded to bytes; otherwise, <see langword="false" />.</returns>
  339. </member>
  340. <member name="M:System.Text.Json.JsonElement.TryGetDateTime(System.DateTime@)">
  341. <summary>Attempts to represent the current JSON string as a <see cref="T:System.DateTime" />.</summary>
  342. <param name="value">When this method returns, contains the date and time value equivalent to the current JSON string.</param>
  343. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.String" />.</exception>
  344. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  345. <returns>
  346. <see langword="true" /> if the string can be represented as a <see cref="T:System.DateTime" />; otherwise, <see langword="false" />.</returns>
  347. </member>
  348. <member name="M:System.Text.Json.JsonElement.TryGetDateTimeOffset(System.DateTimeOffset@)">
  349. <summary>Attempts to represent the current JSON string as a <see cref="T:System.DateTimeOffset" />.</summary>
  350. <param name="value">When this method returns, contains the date and time equivalent to the current JSON string.</param>
  351. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.String" />.</exception>
  352. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  353. <returns>
  354. <see langword="true" /> if the string can be represented as a <see cref="T:System.DateTimeOffset" />; otherwise, <see langword="false" />.</returns>
  355. </member>
  356. <member name="M:System.Text.Json.JsonElement.TryGetDecimal(System.Decimal@)">
  357. <summary>Attempts to represent the current JSON number as a <see cref="T:System.Decimal" />.</summary>
  358. <param name="value">When this method returns, contains the decimal equivalent of the current JSON number.</param>
  359. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
  360. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  361. <returns>
  362. <see langword="true" /> if the number can be represented as a <see cref="T:System.Decimal" />; otherwise, <see langword="false" />.</returns>
  363. </member>
  364. <member name="M:System.Text.Json.JsonElement.TryGetDouble(System.Double@)">
  365. <summary>Attempts to represent the current JSON number as a <see cref="T:System.Double" />.</summary>
  366. <param name="value">When this method returns, contains a double-precision floating point value equivalent to the current JSON number.</param>
  367. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
  368. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  369. <returns>
  370. <see langword="true" /> if the number can be represented as a <see cref="T:System.Double" />; otherwise, <see langword="false" />.</returns>
  371. </member>
  372. <member name="M:System.Text.Json.JsonElement.TryGetGuid(System.Guid@)">
  373. <summary>Attempts to represent the current JSON string as a <see cref="T:System.Guid" />.</summary>
  374. <param name="value">When this method returns, contains the GUID equivalent to the current JSON string.</param>
  375. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.String" />.</exception>
  376. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  377. <returns>
  378. <see langword="true" /> if the string can be represented as a <see cref="T:System.Guid" />; otherwise, <see langword="false" />.</returns>
  379. </member>
  380. <member name="M:System.Text.Json.JsonElement.TryGetInt16(System.Int16@)">
  381. <summary>Attempts to represent the current JSON number as an <see cref="T:System.Int16" />.</summary>
  382. <param name="value">When the method returns, contains the 16-bit integer equivalent of the current JSON number if the conversion succeeded.</param>
  383. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
  384. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  385. <returns>
  386. <see langword="true" /> if the number can be represented as an <see cref="T:System.Int16" />; otherwise, <see langword="false" />.</returns>
  387. </member>
  388. <member name="M:System.Text.Json.JsonElement.TryGetInt32(System.Int32@)">
  389. <summary>Attempts to represent the current JSON number as an <see cref="T:System.Int32" />.</summary>
  390. <param name="value">When this method returns, contains the 32-bit integer value equivalent to the current JSON number.</param>
  391. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
  392. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  393. <returns>
  394. <see langword="true" /> if the number can be represented as an <see cref="T:System.Int32" />; otherwise, <see langword="false" />.</returns>
  395. </member>
  396. <member name="M:System.Text.Json.JsonElement.TryGetInt64(System.Int64@)">
  397. <summary>Attempts to represent the current JSON number as a <see cref="T:System.Int64" />.</summary>
  398. <param name="value">When this method returns, contains the 64-bit integer value equivalent to the current JSON number.</param>
  399. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
  400. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  401. <returns>
  402. <see langword="true" /> if the number can be represented as a <see cref="T:System.Int64" />; otherwise, <see langword="false" />.</returns>
  403. </member>
  404. <member name="M:System.Text.Json.JsonElement.TryGetProperty(System.ReadOnlySpan{System.Byte},System.Text.Json.JsonElement@)">
  405. <summary>Looks for a property named <paramref name="utf8PropertyName" /> in the current object, returning a value that indicates whether or not such a property exists. When the property exists, the method assigns its value to the <paramref name="value" /> argument.</summary>
  406. <param name="utf8PropertyName">The UTF-8 (with no Byte-Order-Mark (BOM)) representation of the name of the property to return.</param>
  407. <param name="value">Receives the value of the located property.</param>
  408. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Object" />.</exception>
  409. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  410. <returns>
  411. <see langword="true" /> if the property was found; otherwise, <see langword="false" />.</returns>
  412. </member>
  413. <member name="M:System.Text.Json.JsonElement.TryGetProperty(System.ReadOnlySpan{System.Char},System.Text.Json.JsonElement@)">
  414. <summary>Looks for a property named <paramref name="propertyName" /> in the current object, returning a value that indicates whether or not such a property exists. When the property exists, the method assigns its value to the <paramref name="value" /> argument.</summary>
  415. <param name="propertyName">The name of the property to find.</param>
  416. <param name="value">When this method returns, contains the value of the specified property.</param>
  417. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Object" />.</exception>
  418. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  419. <returns>
  420. <see langword="true" /> if the property was found; otherwise, <see langword="false" />.</returns>
  421. </member>
  422. <member name="M:System.Text.Json.JsonElement.TryGetProperty(System.String,System.Text.Json.JsonElement@)">
  423. <summary>Looks for a property named <paramref name="propertyName" /> in the current object, returning a value that indicates whether or not such a property exists. When the property exists, its value is assigned to the <paramref name="value" /> argument.</summary>
  424. <param name="propertyName">The name of the property to find.</param>
  425. <param name="value">When this method returns, contains the value of the specified property.</param>
  426. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Object" />.</exception>
  427. <exception cref="T:System.ArgumentNullException">
  428. <paramref name="propertyName" /> is <see langword="null" />.</exception>
  429. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  430. <returns>
  431. <see langword="true" /> if the property was found; otherwise, <see langword="false" />.</returns>
  432. </member>
  433. <member name="M:System.Text.Json.JsonElement.TryGetSByte(System.SByte@)">
  434. <summary>Attempts to represent the current JSON number as an <see cref="T:System.SByte" />.</summary>
  435. <param name="value">When the method returns, contains the signed byte equivalent of the current JSON number if the conversion succeeded.</param>
  436. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
  437. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  438. <returns>
  439. <see langword="true" /> if the number can be represented as an <see cref="T:System.SByte" />; otherwise, <see langword="false" />.</returns>
  440. </member>
  441. <member name="M:System.Text.Json.JsonElement.TryGetSingle(System.Single@)">
  442. <summary>Attempts to represent the current JSON number as a <see cref="T:System.Single" />.</summary>
  443. <param name="value">When this method returns, contains the single-precision floating point value equivalent to the current JSON number.</param>
  444. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
  445. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  446. <returns>
  447. <see langword="true" /> if the number can be represented as a <see cref="T:System.Single" />; otherwise, <see langword="false" />.</returns>
  448. </member>
  449. <member name="M:System.Text.Json.JsonElement.TryGetUInt16(System.UInt16@)">
  450. <summary>Attempts to represent the current JSON number as a <see cref="T:System.UInt16" />.</summary>
  451. <param name="value">When the method returns, contains the unsigned 16-bit integer equivalent of the current JSON number if the conversion succeeded.</param>
  452. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
  453. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  454. <returns>
  455. <see langword="true" /> if the number can be represented as a <see cref="T:System.UInt16" />; otherwise, <see langword="false" />.</returns>
  456. </member>
  457. <member name="M:System.Text.Json.JsonElement.TryGetUInt32(System.UInt32@)">
  458. <summary>Attempts to represent the current JSON number as a <see cref="T:System.UInt32" />.</summary>
  459. <param name="value">When this method returns, contains unsigned 32-bit integer value equivalent to the current JSON number.</param>
  460. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
  461. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  462. <returns>
  463. <see langword="true" /> if the number can be represented as a <see cref="T:System.UInt32" />; otherwise, <see langword="false" />.</returns>
  464. </member>
  465. <member name="M:System.Text.Json.JsonElement.TryGetUInt64(System.UInt64@)">
  466. <summary>Attempts to represent the current JSON number as a <see cref="T:System.UInt64" />.</summary>
  467. <param name="value">When this method returns, contains unsigned 64-bit integer value equivalent to the current JSON number.</param>
  468. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
  469. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  470. <returns>
  471. <see langword="true" /> if the number can be represented as a <see cref="T:System.UInt64" />; otherwise, <see langword="false" />.</returns>
  472. </member>
  473. <member name="M:System.Text.Json.JsonElement.TryParseValue(System.Text.Json.Utf8JsonReader@,System.Nullable{System.Text.Json.JsonElement}@)">
  474. <summary>Attempts to parse one JSON value (including objects or arrays) from the provided reader.</summary>
  475. <param name="reader">The reader to read.</param>
  476. <param name="element">Receives the parsed element.</param>
  477. <exception cref="T:System.ArgumentException">
  478. <paramref name="reader" /> is using unsupported options.</exception>
  479. <exception cref="T:System.ArgumentException">The current <paramref name="reader" /> token does not start or represent a value.</exception>
  480. <exception cref="T:System.Text.Json.JsonException">A value could not be read from the reader.</exception>
  481. <returns>
  482. <see langword="true" /> if a value was read and parsed into a JsonElement; <see langword="false" /> if the reader ran out of data while parsing.
  483. All other situations result in an exception being thrown.</returns>
  484. </member>
  485. <member name="M:System.Text.Json.JsonElement.ValueEquals(System.ReadOnlySpan{System.Byte})">
  486. <summary>Compares the text represented by a UTF8-encoded byte span to the string value of this element.</summary>
  487. <param name="utf8Text">The UTF-8 encoded text to compare against.</param>
  488. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.String" />.</exception>
  489. <returns>
  490. <see langword="true" /> if the string value of this element has the same UTF-8 encoding as
  491. <paramref name="utf8Text" />; otherwise, <see langword="false" />.</returns>
  492. </member>
  493. <member name="M:System.Text.Json.JsonElement.ValueEquals(System.ReadOnlySpan{System.Char})">
  494. <summary>Compares a specified read-only character span to the string value of this element.</summary>
  495. <param name="text">The text to compare against.</param>
  496. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.String" />.</exception>
  497. <returns>
  498. <see langword="true" /> if the string value of this element matches <paramref name="text" />; otherwise, <see langword="false" />.</returns>
  499. </member>
  500. <member name="M:System.Text.Json.JsonElement.ValueEquals(System.String)">
  501. <summary>Compares a specified string to the string value of this element.</summary>
  502. <param name="text">The text to compare against.</param>
  503. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.String" />.</exception>
  504. <returns>
  505. <see langword="true" /> if the string value of this element matches <paramref name="text" />; otherwise, <see langword="false" />.</returns>
  506. </member>
  507. <member name="M:System.Text.Json.JsonElement.WriteTo(System.Text.Json.Utf8JsonWriter)">
  508. <summary>Writes the element to the specified writer as a JSON value.</summary>
  509. <param name="writer">The writer to which to write the element.</param>
  510. <exception cref="T:System.ArgumentNullException">The <paramref name="writer" /> parameter is <see langword="null" />.</exception>
  511. <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Text.Json.JsonElement.ValueKind" /> of this value is <see cref="F:System.Text.Json.JsonValueKind.Undefined" />.</exception>
  512. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  513. </member>
  514. <member name="P:System.Text.Json.JsonElement.Item(System.Int32)">
  515. <summary>Gets the value at the specified index if the current value is an <see cref="F:System.Text.Json.JsonValueKind.Array" />.</summary>
  516. <param name="index">The item index.</param>
  517. <exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Array" />.</exception>
  518. <exception cref="T:System.IndexOutOfRangeException">
  519. <paramref name="index" /> is not in the range [0, <see cref="M:System.Text.Json.JsonElement.GetArrayLength" />()).</exception>
  520. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  521. <returns>The value at the specified index.</returns>
  522. </member>
  523. <member name="P:System.Text.Json.JsonElement.ValueKind">
  524. <summary>Gets the type of the current JSON value.</summary>
  525. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  526. <returns>The type of the current JSON value.</returns>
  527. </member>
  528. <member name="T:System.Text.Json.JsonElement.ArrayEnumerator">
  529. <summary>Represents an enumerator for the contents of a JSON array.</summary>
  530. </member>
  531. <member name="M:System.Text.Json.JsonElement.ArrayEnumerator.Dispose">
  532. <summary>Releases the resources used by this <see cref="T:System.Text.Json.JsonElement.ArrayEnumerator" /> instance.</summary>
  533. </member>
  534. <member name="M:System.Text.Json.JsonElement.ArrayEnumerator.GetEnumerator">
  535. <summary>Returns an enumerator that iterates through a collection.</summary>
  536. <returns>An enumerator that can be used to iterate through the array.</returns>
  537. </member>
  538. <member name="M:System.Text.Json.JsonElement.ArrayEnumerator.MoveNext">
  539. <summary>Advances the enumerator to the next element of the collection.</summary>
  540. <returns>
  541. <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
  542. </member>
  543. <member name="M:System.Text.Json.JsonElement.ArrayEnumerator.Reset">
  544. <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
  545. </member>
  546. <member name="M:System.Text.Json.JsonElement.ArrayEnumerator.System#Collections#Generic#IEnumerable{System#Text#Json#JsonElement}#GetEnumerator">
  547. <summary>Returns an enumerator that iterates through a collection.</summary>
  548. <returns>An enumerator for an array of <see cref="T:System.Text.Json.JsonElement" /> that can be used to iterate through the collection.</returns>
  549. </member>
  550. <member name="M:System.Text.Json.JsonElement.ArrayEnumerator.System#Collections#IEnumerable#GetEnumerator">
  551. <summary>Returns an enumerator that iterates through a collection.</summary>
  552. <returns>An enumerator that can be used to iterate through the collection.</returns>
  553. </member>
  554. <member name="P:System.Text.Json.JsonElement.ArrayEnumerator.Current">
  555. <summary>Gets the element in the collection at the current position of the enumerator.</summary>
  556. <returns>The element in the collection at the current position of the enumerator.</returns>
  557. </member>
  558. <member name="P:System.Text.Json.JsonElement.ArrayEnumerator.System#Collections#IEnumerator#Current">
  559. <summary>Gets the element in the collection at the current position of the enumerator.</summary>
  560. <returns>The element in the collection at the current position of the enumerator.</returns>
  561. </member>
  562. <member name="T:System.Text.Json.JsonElement.ObjectEnumerator">
  563. <summary>Represents an enumerator for the properties of a JSON object.</summary>
  564. </member>
  565. <member name="M:System.Text.Json.JsonElement.ObjectEnumerator.Dispose">
  566. <summary>Releases the resources used by this <see cref="T:System.Text.Json.JsonElement.ObjectEnumerator" /> instance.</summary>
  567. </member>
  568. <member name="M:System.Text.Json.JsonElement.ObjectEnumerator.GetEnumerator">
  569. <summary>Returns an enumerator that iterates the properties of an object.</summary>
  570. <returns>An enumerator that can be used to iterate through the object.</returns>
  571. </member>
  572. <member name="M:System.Text.Json.JsonElement.ObjectEnumerator.MoveNext">
  573. <summary>Advances the enumerator to the next element of the collection.</summary>
  574. <returns>
  575. <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
  576. </member>
  577. <member name="M:System.Text.Json.JsonElement.ObjectEnumerator.Reset">
  578. <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
  579. </member>
  580. <member name="M:System.Text.Json.JsonElement.ObjectEnumerator.System#Collections#Generic#IEnumerable{System#Text#Json#JsonProperty}#GetEnumerator">
  581. <summary>Returns an enumerator that iterates through a collection.</summary>
  582. <returns>An enumerator for <see cref="T:System.Text.Json.JsonProperty" /> objects that can be used to iterate through the collection.</returns>
  583. </member>
  584. <member name="M:System.Text.Json.JsonElement.ObjectEnumerator.System#Collections#IEnumerable#GetEnumerator">
  585. <summary>Returns an enumerator that iterates through a collection.</summary>
  586. <returns>An enumerator that can be used to iterate through the collection.</returns>
  587. </member>
  588. <member name="P:System.Text.Json.JsonElement.ObjectEnumerator.Current">
  589. <summary>Gets the element in the collection at the current position of the enumerator.</summary>
  590. <returns>The element in the collection at the current position of the enumerator.</returns>
  591. </member>
  592. <member name="P:System.Text.Json.JsonElement.ObjectEnumerator.System#Collections#IEnumerator#Current">
  593. <summary>Gets the element in the collection at the current position of the enumerator.</summary>
  594. <returns>The element in the collection at the current position of the enumerator.</returns>
  595. </member>
  596. <member name="T:System.Text.Json.JsonEncodedText">
  597. <summary>Provides methods to transform UTF-8 or UTF-16 encoded text into a form that is suitable for JSON.</summary>
  598. </member>
  599. <member name="M:System.Text.Json.JsonEncodedText.Encode(System.ReadOnlySpan{System.Byte},System.Text.Encodings.Web.JavaScriptEncoder)">
  600. <summary>Encodes a UTF-8 text value as a JSON string.</summary>
  601. <param name="utf8Value">The UTF-8 encoded text to convert to JSON encoded text.</param>
  602. <param name="encoder">The encoder to use when escaping the string, or <see langword="null" /> to use the default encoder.</param>
  603. <exception cref="T:System.ArgumentException">
  604. <paramref name="utf8Value" /> is too large.
  605. -or-
  606. <paramref name="utf8Value" /> contains invalid UTF-8 bytes.</exception>
  607. <returns>The encoded JSON text.</returns>
  608. </member>
  609. <member name="M:System.Text.Json.JsonEncodedText.Encode(System.ReadOnlySpan{System.Char},System.Text.Encodings.Web.JavaScriptEncoder)">
  610. <summary>Encodes a specified text value as a JSON string.</summary>
  611. <param name="value">The value to convert to JSON encoded text.</param>
  612. <param name="encoder">The encoder to use when escaping the string, or <see langword="null" /> to use the default encoder.</param>
  613. <exception cref="T:System.ArgumentException">
  614. <paramref name="value" /> is too large.
  615. -or-
  616. <paramref name="value" /> contains invalid UTF-16 characters.</exception>
  617. <returns>The encoded JSON text.</returns>
  618. </member>
  619. <member name="M:System.Text.Json.JsonEncodedText.Encode(System.String,System.Text.Encodings.Web.JavaScriptEncoder)">
  620. <summary>Encodes the string text value as a JSON string.</summary>
  621. <param name="value">The value to convert to JSON encoded text.</param>
  622. <param name="encoder">The encoder to use when escaping the string, or <see langword="null" /> to use the default encoder.</param>
  623. <exception cref="T:System.ArgumentNullException">
  624. <paramref name="value" /> is <see langword="null" />.</exception>
  625. <exception cref="T:System.ArgumentException">
  626. <paramref name="value" /> is too large.
  627. -or-
  628. <paramref name="value" /> contains invalid UTF-16 characters.</exception>
  629. <returns>The encoded JSON text.</returns>
  630. </member>
  631. <member name="M:System.Text.Json.JsonEncodedText.Equals(System.Object)">
  632. <summary>Determines whether this instance and a specified object, which must also be a <see cref="T:System.Text.Json.JsonEncodedText" /> instance, have the same value.</summary>
  633. <param name="obj">The object to compare to this instance.</param>
  634. <returns>
  635. <see langword="true" /> if the current instance and <paramref name="obj" /> are equal; otherwise, <see langword="false" />.</returns>
  636. </member>
  637. <member name="M:System.Text.Json.JsonEncodedText.Equals(System.Text.Json.JsonEncodedText)">
  638. <summary>Determines whether this instance and another specified <see cref="T:System.Text.Json.JsonEncodedText" /> instance have the same value.</summary>
  639. <param name="other">The object to compare to this instance.</param>
  640. <returns>
  641. <see langword="true" /> if this instance and <paramref name="other" /> have the same value; otherwise, <see langword="false" />.</returns>
  642. </member>
  643. <member name="M:System.Text.Json.JsonEncodedText.GetHashCode">
  644. <summary>Returns the hash code for this <see cref="T:System.Text.Json.JsonEncodedText" />.</summary>
  645. <returns>The hash code for this instance.</returns>
  646. </member>
  647. <member name="M:System.Text.Json.JsonEncodedText.ToString">
  648. <summary>Converts the value of this instance to a <see cref="T:System.String" />.</summary>
  649. <returns>The underlying UTF-16 encoded string.</returns>
  650. </member>
  651. <member name="P:System.Text.Json.JsonEncodedText.EncodedUtf8Bytes">
  652. <summary>Gets the UTF-8 encoded representation of the pre-encoded JSON text.</summary>
  653. <returns>The UTF-8 encoded representation of the pre-encoded JSON text.</returns>
  654. </member>
  655. <member name="T:System.Text.Json.JsonException">
  656. <summary>Defines a custom exception object that is thrown when invalid JSON text is encountered, when the defined maximum depth is passed, or the JSON text is not compatible with the type of a property on an object.</summary>
  657. </member>
  658. <member name="M:System.Text.Json.JsonException.#ctor">
  659. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.JsonException" /> class.</summary>
  660. </member>
  661. <member name="M:System.Text.Json.JsonException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  662. <summary>Creates a new exception object with serialized data.</summary>
  663. <param name="info">The serialized object data about the exception being thrown.</param>
  664. <param name="context">An object that contains contextual information about the source or destination.</param>
  665. <exception cref="T:System.ArgumentNullException">
  666. <paramref name="info" /> is <see langword="null" />.</exception>
  667. </member>
  668. <member name="M:System.Text.Json.JsonException.#ctor(System.String)">
  669. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.JsonException" /> class with a specified error message.</summary>
  670. <param name="message">The context-specific error message.</param>
  671. </member>
  672. <member name="M:System.Text.Json.JsonException.#ctor(System.String,System.Exception)">
  673. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.JsonException" /> class, with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
  674. <param name="message">The context-specific error message.</param>
  675. <param name="innerException">The exception that caused the current exception.</param>
  676. </member>
  677. <member name="M:System.Text.Json.JsonException.#ctor(System.String,System.String,System.Nullable{System.Int64},System.Nullable{System.Int64})">
  678. <summary>Creates a new exception object to relay error information to the user.</summary>
  679. <param name="message">The context-specific error message.</param>
  680. <param name="path">The path where the invalid JSON was encountered.</param>
  681. <param name="lineNumber">The line number (starting at 0) at which the invalid JSON was encountered when deserializing.</param>
  682. <param name="bytePositionInLine">The byte count within the current line (starting at 0) where the invalid JSON was encountered.</param>
  683. </member>
  684. <member name="M:System.Text.Json.JsonException.#ctor(System.String,System.String,System.Nullable{System.Int64},System.Nullable{System.Int64},System.Exception)">
  685. <summary>Creates a new exception object to relay error information to the user that includes a specified inner exception.</summary>
  686. <param name="message">The context-specific error message.</param>
  687. <param name="path">The path where the invalid JSON was encountered.</param>
  688. <param name="lineNumber">The line number (starting at 0) at which the invalid JSON was encountered when deserializing.</param>
  689. <param name="bytePositionInLine">The byte count (starting at 0) within the current line where the invalid JSON was encountered.</param>
  690. <param name="innerException">The exception that caused the current exception.</param>
  691. </member>
  692. <member name="M:System.Text.Json.JsonException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  693. <summary>Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception.</summary>
  694. <param name="info">The serialized object data about the exception being thrown.</param>
  695. <param name="context">An object that contains contextual information about the source or destination.</param>
  696. </member>
  697. <member name="P:System.Text.Json.JsonException.BytePositionInLine">
  698. <summary>Gets the zero-based number of bytes read within the current line before the exception.</summary>
  699. <returns>The zero-based number of bytes read within the current line before the exception.</returns>
  700. </member>
  701. <member name="P:System.Text.Json.JsonException.LineNumber">
  702. <summary>Gets the zero-based number of lines read before the exception.</summary>
  703. <returns>The zero-based number of lines read before the exception.</returns>
  704. </member>
  705. <member name="P:System.Text.Json.JsonException.Message">
  706. <summary>Gets a message that describes the current exception.</summary>
  707. <returns>The error message that describes the current exception.</returns>
  708. </member>
  709. <member name="P:System.Text.Json.JsonException.Path">
  710. <summary>Gets The path within the JSON where the exception was encountered.</summary>
  711. <returns>The path within the JSON where the exception was encountered.</returns>
  712. </member>
  713. <member name="T:System.Text.Json.JsonNamingPolicy">
  714. <summary>Determines the naming policy used to convert a string-based name to another format, such as a camel-casing format.</summary>
  715. </member>
  716. <member name="M:System.Text.Json.JsonNamingPolicy.#ctor">
  717. <summary>Initializes a new instance of <see cref="T:System.Text.Json.JsonNamingPolicy" />.</summary>
  718. </member>
  719. <member name="M:System.Text.Json.JsonNamingPolicy.ConvertName(System.String)">
  720. <summary>When overridden in a derived class, converts the specified name according to the policy.</summary>
  721. <param name="name">The name to convert.</param>
  722. <returns>The converted name.</returns>
  723. </member>
  724. <member name="P:System.Text.Json.JsonNamingPolicy.CamelCase">
  725. <summary>Gets the naming policy for camel-casing.</summary>
  726. <returns>The naming policy for camel-casing.</returns>
  727. </member>
  728. <member name="T:System.Text.Json.JsonProperty">
  729. <summary>Represents a single property for a JSON object.</summary>
  730. </member>
  731. <member name="M:System.Text.Json.JsonProperty.NameEquals(System.ReadOnlySpan{System.Byte})">
  732. <summary>Compares the specified UTF-8 encoded text to the name of this property.</summary>
  733. <param name="utf8Text">The UTF-8 encoded text to compare against.</param>
  734. <exception cref="T:System.InvalidOperationException">This value's <see cref="T:System.Type" /> is not <see cref="F:System.Text.Json.JsonTokenType.PropertyName" />.</exception>
  735. <returns>
  736. <see langword="true" /> if the name of this property has the same UTF-8 encoding as <paramref name="utf8Text" />; otherwise, <see langword="false" />.</returns>
  737. </member>
  738. <member name="M:System.Text.Json.JsonProperty.NameEquals(System.ReadOnlySpan{System.Char})">
  739. <summary>Compares the specified text as a character span to the name of this property.</summary>
  740. <param name="text">The text to compare against.</param>
  741. <exception cref="T:System.InvalidOperationException">This value's <see cref="T:System.Type" /> is not <see cref="F:System.Text.Json.JsonTokenType.PropertyName" />.</exception>
  742. <returns>
  743. <see langword="true" /> if the name of this property matches <paramref name="text" />; otherwise, <see langword="false" />.</returns>
  744. </member>
  745. <member name="M:System.Text.Json.JsonProperty.NameEquals(System.String)">
  746. <summary>Compares the specified string to the name of this property.</summary>
  747. <param name="text">The text to compare against.</param>
  748. <exception cref="T:System.InvalidOperationException">This value's <see cref="T:System.Type" /> is not <see cref="F:System.Text.Json.JsonTokenType.PropertyName" />.</exception>
  749. <returns>
  750. <see langword="true" /> if the name of this property matches <paramref name="text" />; otherwise <see langword="false" />.</returns>
  751. </member>
  752. <member name="M:System.Text.Json.JsonProperty.ToString">
  753. <summary>Provides a string representation of the property for debugging purposes.</summary>
  754. <returns>A string containing the uninterpreted value of the property, beginning at the declaring open-quote and ending at the last character that is part of the value.</returns>
  755. </member>
  756. <member name="M:System.Text.Json.JsonProperty.WriteTo(System.Text.Json.Utf8JsonWriter)">
  757. <summary>Writes the property to the provided writer as a named JSON object property.</summary>
  758. <param name="writer">The writer to which to write the property.</param>
  759. <exception cref="T:System.ArgumentNullException">
  760. <paramref name="writer" /> is <see langword="null" />.</exception>
  761. <exception cref="T:System.ArgumentException">
  762. <see cref="P:System.Text.Json.JsonProperty.Name" /> is too large to be a JSON object property.</exception>
  763. <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Text.Json.JsonElement.ValueKind" /> of this JSON property's <see cref="P:System.Text.Json.JsonProperty.Value" /> would result in invalid JSON.</exception>
  764. <exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
  765. </member>
  766. <member name="P:System.Text.Json.JsonProperty.Name">
  767. <summary>Gets the name of this property.</summary>
  768. <returns>The name of this property.</returns>
  769. </member>
  770. <member name="P:System.Text.Json.JsonProperty.Value">
  771. <summary>Gets the value of this property.</summary>
  772. <returns>The value of this property.</returns>
  773. </member>
  774. <member name="T:System.Text.Json.JsonReaderOptions">
  775. <summary>Provides the ability for the user to define custom behavior when reading JSON.</summary>
  776. </member>
  777. <member name="P:System.Text.Json.JsonReaderOptions.AllowTrailingCommas">
  778. <summary>Gets or sets a value that defines whether an extra comma at the end of a list of JSON values in an object or array is allowed (and ignored) within the JSON payload being read.</summary>
  779. <returns>
  780. <see langword="true" /> if an extra comma is allowed; otherwise, <see langword="false" />.</returns>
  781. </member>
  782. <member name="P:System.Text.Json.JsonReaderOptions.CommentHandling">
  783. <summary>Gets or sets a value that determines how the <see cref="T:System.Text.Json.Utf8JsonReader" /> handles comments when reading through the JSON data.</summary>
  784. <exception cref="T:System.ArgumentOutOfRangeException">The property is being set to a value that is not a member of the <see cref="T:System.Text.Json.JsonCommentHandling" /> enumeration.</exception>
  785. <returns>One of the enumeration values that indicates how comments are handled.</returns>
  786. </member>
  787. <member name="P:System.Text.Json.JsonReaderOptions.MaxDepth">
  788. <summary>Gets or sets the maximum depth allowed when reading JSON, with the default (that is, 0) indicating a maximum depth of 64.</summary>
  789. <exception cref="T:System.ArgumentOutOfRangeException">The maximum depth is being set to a negative value.</exception>
  790. <returns>The maximum depth allowed when reading JSON.</returns>
  791. </member>
  792. <member name="T:System.Text.Json.JsonReaderState">
  793. <summary>Defines an opaque type that holds and saves all the relevant state information, which must be provided to the <see cref="T:System.Text.Json.Utf8JsonReader" /> to continue reading after processing incomplete data.</summary>
  794. </member>
  795. <member name="M:System.Text.Json.JsonReaderState.#ctor(System.Text.Json.JsonReaderOptions)">
  796. <summary>Constructs a new <see cref="T:System.Text.Json.JsonReaderState" /> instance.</summary>
  797. <param name="options">Defines the customized behavior of the <see cref="T:System.Text.Json.Utf8JsonReader" /> that is different from the JSON RFC (for example how to handle comments, or the maximum depth allowed when reading). By default, the <see cref="T:System.Text.Json.Utf8JsonReader" /> follows the JSON RFC strictly (comments within the JSON are invalid) and reads up to a maximum depth of 64.</param>
  798. <exception cref="T:System.ArgumentException">The maximum depth is set to a non-positive value (&lt; 0).</exception>
  799. </member>
  800. <member name="P:System.Text.Json.JsonReaderState.Options">
  801. <summary>Gets the custom behavior to use when reading JSON data using the <see cref="T:System.Text.Json.Utf8JsonReader" /> struct that may deviate from strict adherence to the JSON specification, which is the default behavior.</summary>
  802. <returns>The custom behavior to use when reading JSON data.</returns>
  803. </member>
  804. <member name="T:System.Text.Json.JsonSerializer">
  805. <summary>Provides functionality to serialize objects or value types to JSON and to deserialize JSON into objects or value types.</summary>
  806. </member>
  807. <member name="M:System.Text.Json.JsonSerializer.Deserialize(System.IO.Stream,System.Type,System.Text.Json.JsonSerializerOptions)">
  808. <summary>Reads the UTF-8 encoded text representing a single JSON value into a <paramref name="returnType" />.
  809. The Stream will be read to completion.</summary>
  810. <param name="utf8Json">JSON data to parse.</param>
  811. <param name="returnType">The type of the object to convert to and return.</param>
  812. <param name="options">Options to control the behavior during reading.</param>
  813. <exception cref="T:System.ArgumentNullException">
  814. <paramref name="utf8Json" /> or <paramref name="returnType" /> is <see langword="null" />.</exception>
  815. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid, the <paramref name="returnType" /> is not compatible with the JSON, or there is remaining data in the Stream.</exception>
  816. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="returnType" /> or its serializable members.</exception>
  817. <returns>A <paramref name="returnType" /> representation of the JSON value.</returns>
  818. </member>
  819. <member name="M:System.Text.Json.JsonSerializer.Deserialize(System.IO.Stream,System.Type,System.Text.Json.Serialization.JsonSerializerContext)">
  820. <summary>Reads the UTF-8 encoded text representing a single JSON value into a <paramref name="returnType" />.
  821. The Stream will be read to completion.</summary>
  822. <param name="utf8Json">JSON data to parse.</param>
  823. <param name="returnType">The type of the object to convert to and return.</param>
  824. <param name="context">A metadata provider for serializable types.</param>
  825. <exception cref="T:System.ArgumentNullException">
  826. <paramref name="utf8Json" />, <paramref name="returnType" />, or <paramref name="context" /> is <see langword="null" />.</exception>
  827. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid, the <paramref name="returnType" /> is not compatible with the JSON, or there is remaining data in the Stream.</exception>
  828. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="returnType" /> or its serializable members.</exception>
  829. <exception cref="T:System.InvalidOperationException">The <see cref="M:System.Text.Json.Serialization.JsonSerializerContext.GetTypeInfo(System.Type)" /> method on the provided <paramref name="context" /> did not return a compatible <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> for <paramref name="returnType" />.</exception>
  830. <returns>A <paramref name="returnType" /> representation of the JSON value.</returns>
  831. </member>
  832. <member name="M:System.Text.Json.JsonSerializer.Deserialize(System.ReadOnlySpan{System.Byte},System.Type,System.Text.Json.JsonSerializerOptions)">
  833. <summary>Parses the UTF-8 encoded text representing a single JSON value into an instance of a specified type.</summary>
  834. <param name="utf8Json">The JSON text to parse.</param>
  835. <param name="returnType">The type of the object to convert to and return.</param>
  836. <param name="options">Options to control the behavior during parsing.</param>
  837. <exception cref="T:System.ArgumentNullException">
  838. <paramref name="returnType" /> is <see langword="null" />.</exception>
  839. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid.
  840. -or-
  841. <typeparamref name="returnType" /> is not compatible with the JSON.
  842. -or-
  843. There is remaining data in the span beyond a single JSON value.</exception>
  844. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="System.Text.Json.Serialization.JsonConverter" /> for <paramref name="returnType" /> or its serializable members.</exception>
  845. <returns>A <paramref name="returnType" /> representation of the JSON value.</returns>
  846. </member>
  847. <member name="M:System.Text.Json.JsonSerializer.Deserialize(System.ReadOnlySpan{System.Byte},System.Type,System.Text.Json.Serialization.JsonSerializerContext)">
  848. <summary>Parses the UTF-8 encoded text representing a single JSON value into a <paramref name="returnType" />.</summary>
  849. <param name="utf8Json">JSON text to parse.</param>
  850. <param name="returnType">The type of the object to convert to and return.</param>
  851. <param name="context">A metadata provider for serializable types.</param>
  852. <exception cref="T:System.ArgumentNullException">
  853. <paramref name="returnType" /> is <see langword="null" />.</exception>
  854. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid, <paramref name="returnType" /> is not compatible with the JSON, or there is remaining data in the Stream.</exception>
  855. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="returnType" /> or its serializable members.</exception>
  856. <exception cref="T:System.InvalidOperationException">The <see cref="M:System.Text.Json.Serialization.JsonSerializerContext.GetTypeInfo(System.Type)" /> method on the provided <paramref name="context" /> did not return a compatible <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> for <paramref name="returnType" />.</exception>
  857. <returns>A <paramref name="returnType" /> representation of the JSON value.</returns>
  858. </member>
  859. <member name="M:System.Text.Json.JsonSerializer.Deserialize(System.ReadOnlySpan{System.Char},System.Type,System.Text.Json.JsonSerializerOptions)">
  860. <summary>Parses the text representing a single JSON value into an instance of a specified type.</summary>
  861. <param name="json">The JSON text to parse.</param>
  862. <param name="returnType">The type of the object to convert to and return.</param>
  863. <param name="options">Options to control the behavior during parsing.</param>
  864. <exception cref="T:System.ArgumentNullException">
  865. <paramref name="returnType" /> is <see langword="null" />.</exception>
  866. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid.
  867. -or-
  868. <paramref name="returnType" /> is not compatible with the JSON.
  869. -or-
  870. There is remaining data in the span beyond a single JSON value.</exception>
  871. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="returnType" /> or its serializable members.</exception>
  872. <returns>A <paramref name="returnType" /> representation of the JSON value.</returns>
  873. </member>
  874. <member name="M:System.Text.Json.JsonSerializer.Deserialize(System.ReadOnlySpan{System.Char},System.Type,System.Text.Json.Serialization.JsonSerializerContext)">
  875. <summary>Parses the text representing a single JSON value into a <paramref name="returnType" />.</summary>
  876. <param name="json">JSON text to parse.</param>
  877. <param name="returnType">The type of the object to convert to and return.</param>
  878. <param name="context">A metadata provider for serializable types.</param>
  879. <exception cref="T:System.ArgumentNullException">
  880. <paramref name="json" /> or <paramref name="returnType" /> is <see langword="null" />.
  881. -or-
  882. <paramref name="context" /> is <see langword="null" />.</exception>
  883. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid.
  884. -or-
  885. <paramref name="returnType" /> is not compatible with the JSON.
  886. -or-
  887. There is remaining data in the string beyond a single JSON value.</exception>
  888. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="returnType" /> or its serializable members.</exception>
  889. <exception cref="T:System.InvalidOperationException">The <see cref="M:System.Text.Json.Serialization.JsonSerializerContext.GetTypeInfo(System.Type)" /> method of the provided <paramref name="context" /> returns <see langword="null" /> for the type to convert.</exception>
  890. <returns>A <paramref name="returnType" /> representation of the JSON value.</returns>
  891. </member>
  892. <member name="M:System.Text.Json.JsonSerializer.Deserialize(System.String,System.Type,System.Text.Json.JsonSerializerOptions)">
  893. <summary>Parses the text representing a single JSON value into an instance of a specified type.</summary>
  894. <param name="json">The JSON text to parse.</param>
  895. <param name="returnType">The type of the object to convert to and return.</param>
  896. <param name="options">Options to control the behavior during parsing.</param>
  897. <exception cref="T:System.ArgumentNullException">
  898. <paramref name="json" /> or <paramref name="returnType" /> is <see langword="null" />.</exception>
  899. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid.
  900. -or-
  901. <typeparamref name="TValue" /> is not compatible with the JSON.
  902. -or-
  903. There is remaining data in the string beyond a single JSON value.</exception>
  904. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="System.Text.Json.Serialization.JsonConverter" /> for <paramref name="returnType" /> or its serializable members.</exception>
  905. <returns>A <paramref name="returnType" /> representation of the JSON value.</returns>
  906. </member>
  907. <member name="M:System.Text.Json.JsonSerializer.Deserialize(System.String,System.Type,System.Text.Json.Serialization.JsonSerializerContext)">
  908. <summary>Parses the text representing a single JSON value into a <paramref name="returnType" />.</summary>
  909. <param name="json">JSON text to parse.</param>
  910. <param name="returnType">The type of the object to convert to and return.</param>
  911. <param name="context">A metadata provider for serializable types.</param>
  912. <exception cref="T:System.ArgumentNullException">
  913. <paramref name="json" /> or <paramref name="returnType" /> is <see langword="null" />.
  914. -or-
  915. <paramref name="context" /> is <see langword="null" />.</exception>
  916. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid.
  917. -or-
  918. <paramref name="returnType" /> is not compatible with the JSON.
  919. -or-
  920. There is remaining data in the string beyond a single JSON value.</exception>
  921. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="returnType" /> or its serializable members.</exception>
  922. <exception cref="T:System.InvalidOperationException">The <see cref="M:System.Text.Json.Serialization.JsonSerializerContext.GetTypeInfo(System.Type)" /> method of the provided <paramref name="context" /> returns <see langword="null" /> for the type to convert.</exception>
  923. <returns>A <paramref name="returnType" /> representation of the JSON value.</returns>
  924. </member>
  925. <member name="M:System.Text.Json.JsonSerializer.Deserialize(System.Text.Json.JsonDocument,System.Type,System.Text.Json.JsonSerializerOptions)">
  926. <summary>Converts the <see cref="T:System.Text.Json.JsonDocument" /> representing a single JSON value into a <paramref name="returnType" />.</summary>
  927. <param name="document">The <see cref="T:System.Text.Json.JsonDocument" /> to convert.</param>
  928. <param name="returnType">The type of the object to convert to and return.</param>
  929. <param name="options">Options to control the behavior during parsing.</param>
  930. <exception cref="T:System.ArgumentNullException">
  931. <paramref name="document" /> or <paramref name="returnType" /> is <see langword="null" />.</exception>
  932. <exception cref="T:System.Text.Json.JsonException">
  933. <paramref name="returnType" /> is not compatible with the JSON.</exception>
  934. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="returnType" /> or its serializable members.</exception>
  935. <returns>A <paramref name="returnType" /> representation of the JSON value.</returns>
  936. </member>
  937. <member name="M:System.Text.Json.JsonSerializer.Deserialize(System.Text.Json.JsonDocument,System.Type,System.Text.Json.Serialization.JsonSerializerContext)">
  938. <summary>Converts the <see cref="T:System.Text.Json.JsonDocument" /> representing a single JSON value into a <paramref name="returnType" />.</summary>
  939. <param name="document">The <see cref="T:System.Text.Json.JsonDocument" /> to convert.</param>
  940. <param name="returnType">The type of the object to convert to and return.</param>
  941. <param name="context">A metadata provider for serializable types.</param>
  942. <exception cref="T:System.ArgumentNullException">
  943. <paramref name="document" /> is <see langword="null" />.
  944. -or-
  945. <paramref name="returnType" /> is <see langword="null" />.
  946. -or-
  947. <paramref name="context" /> is <see langword="null" />.</exception>
  948. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid.
  949. -or-
  950. <paramref name="returnType" /> is not compatible with the JSON.
  951. -or-
  952. There is remaining data in the string beyond a single JSON value.</exception>
  953. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="returnType" /> or its serializable members.</exception>
  954. <exception cref="T:System.InvalidOperationException">The <see cref="M:System.Text.Json.Serialization.JsonSerializerContext.GetTypeInfo(System.Type)" /> method of the provided <paramref name="context" /> returns <see langword="null" /> for the type to convert.</exception>
  955. <returns>A <paramref name="returnType" /> representation of the JSON value.</returns>
  956. </member>
  957. <member name="M:System.Text.Json.JsonSerializer.Deserialize(System.Text.Json.JsonElement,System.Type,System.Text.Json.JsonSerializerOptions)">
  958. <summary>Converts the <see cref="T:System.Text.Json.JsonElement" /> representing a single JSON value into a <paramref name="returnType" />.</summary>
  959. <param name="element">The <see cref="T:System.Text.Json.JsonElement" /> to convert.</param>
  960. <param name="returnType">The type of the object to convert to and return.</param>
  961. <param name="options">Options to control the behavior during parsing.</param>
  962. <exception cref="T:System.ArgumentNullException">
  963. <paramref name="returnType" /> is <see langword="null" />.</exception>
  964. <exception cref="T:System.Text.Json.JsonException">
  965. <paramref name="returnType" /> is not compatible with the JSON.</exception>
  966. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="returnType" /> or its serializable members.</exception>
  967. <returns>A <paramref name="returnType" /> representation of the JSON value.</returns>
  968. </member>
  969. <member name="M:System.Text.Json.JsonSerializer.Deserialize(System.Text.Json.JsonElement,System.Type,System.Text.Json.Serialization.JsonSerializerContext)">
  970. <summary>Converts the <see cref="T:System.Text.Json.JsonElement" /> representing a single JSON value into a <paramref name="returnType" />.</summary>
  971. <param name="element">The <see cref="T:System.Text.Json.JsonElement" /> to convert.</param>
  972. <param name="returnType">The type of the object to convert to and return.</param>
  973. <param name="context">A metadata provider for serializable types.</param>
  974. <exception cref="T:System.ArgumentNullException">
  975. <paramref name="returnType" /> is <see langword="null" />.
  976. -or-
  977. <paramref name="context" /> is <see langword="null" />.</exception>
  978. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid.
  979. -or-
  980. <paramref name="returnType" /> is not compatible with the JSON.
  981. -or-
  982. There is remaining data in the string beyond a single JSON value.</exception>
  983. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="returnType" /> or its serializable members.</exception>
  984. <exception cref="T:System.InvalidOperationException">The <see cref="M:System.Text.Json.Serialization.JsonSerializerContext.GetTypeInfo(System.Type)" /> method of the provided <paramref name="context" /> returns <see langword="null" /> for the type to convert.</exception>
  985. <returns>A <paramref name="returnType" /> representation of the JSON value.</returns>
  986. </member>
  987. <member name="M:System.Text.Json.JsonSerializer.Deserialize(System.Text.Json.Nodes.JsonNode,System.Type,System.Text.Json.JsonSerializerOptions)">
  988. <summary>Converts the <see cref="T:System.Text.Json.Nodes.JsonNode" /> representing a single JSON value into a <paramref name="returnType" />.</summary>
  989. <param name="node">The <see cref="T:System.Text.Json.Nodes.JsonNode" /> to convert.</param>
  990. <param name="returnType">The type of the object to convert to and return.</param>
  991. <param name="options">Options to control the behavior during parsing.</param>
  992. <exception cref="T:System.Text.Json.JsonException">
  993. <paramref name="returnType" /> is not compatible with the JSON.</exception>
  994. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="returnType" /> or its serializable members.</exception>
  995. <returns>A <paramref name="returnType" /> representation of the JSON value.</returns>
  996. </member>
  997. <member name="M:System.Text.Json.JsonSerializer.Deserialize(System.Text.Json.Nodes.JsonNode,System.Type,System.Text.Json.Serialization.JsonSerializerContext)">
  998. <summary>Converts the <see cref="T:System.Text.Json.Nodes.JsonNode" /> representing a single JSON value into a <paramref name="returnType" />.</summary>
  999. <param name="node">The <see cref="T:System.Text.Json.Nodes.JsonNode" /> to convert.</param>
  1000. <param name="returnType">The type of the object to convert to and return.</param>
  1001. <param name="context">A metadata provider for serializable types.</param>
  1002. <exception cref="T:System.ArgumentNullException">
  1003. <paramref name="returnType" /> is <see langword="null" />.
  1004. -or-
  1005. <paramref name="context" /> is <see langword="null" />.</exception>
  1006. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid.
  1007. -or-
  1008. <paramref name="returnType" /> is not compatible with the JSON.
  1009. -or-
  1010. There is remaining data in the string beyond a single JSON value.</exception>
  1011. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="returnType" /> or its serializable members.</exception>
  1012. <exception cref="T:System.InvalidOperationException">The <see cref="M:System.Text.Json.Serialization.JsonSerializerContext.GetTypeInfo(System.Type)" /> method of the provided <paramref name="context" /> returns <see langword="null" /> for the type to convert.</exception>
  1013. <returns>A <paramref name="returnType" /> representation of the JSON value.</returns>
  1014. </member>
  1015. <member name="M:System.Text.Json.JsonSerializer.Deserialize(System.Text.Json.Utf8JsonReader@,System.Type,System.Text.Json.JsonSerializerOptions)">
  1016. <summary>Reads one JSON value (including objects or arrays) from the provided reader and converts it into an instance of a specified type.</summary>
  1017. <param name="reader">The reader to read the JSON from.</param>
  1018. <param name="returnType">The type of the object to convert to and return.</param>
  1019. <param name="options">Options to control the serializer behavior during reading.</param>
  1020. <exception cref="T:System.ArgumentNullException">
  1021. <paramref name="returnType" /> is <see langword="null" />.</exception>
  1022. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid.
  1023. -or-
  1024. <typeparamref name="returnType" /> is not compatible with the JSON.
  1025. -or-
  1026. A value could not be read from the reader.</exception>
  1027. <exception cref="T:System.ArgumentException">
  1028. <paramref name="reader" /> is using unsupported options.</exception>
  1029. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="System.Text.Json.Serialization.JsonConverter" /> for <paramref name="returnType" /> or its serializable members.</exception>
  1030. <returns>A <paramref name="returnType" /> representation of the JSON value.</returns>
  1031. </member>
  1032. <member name="M:System.Text.Json.JsonSerializer.Deserialize(System.Text.Json.Utf8JsonReader@,System.Type,System.Text.Json.Serialization.JsonSerializerContext)">
  1033. <summary>Reads one JSON value (including objects or arrays) from the provided reader into a <paramref name="returnType" />.</summary>
  1034. <param name="reader">The reader to read.</param>
  1035. <param name="returnType">The type of the object to convert to and return.</param>
  1036. <param name="context">A metadata provider for serializable types.</param>
  1037. <exception cref="T:System.ArgumentNullException">
  1038. <paramref name="returnType" /> or <paramref name="context" /> is <see langword="null" />.</exception>
  1039. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid, <paramref name="returnType" /> is not compatible with the JSON, or a value could not be read from the reader.</exception>
  1040. <exception cref="T:System.ArgumentException">
  1041. <paramref name="reader" /> is using unsupported options.</exception>
  1042. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="returnType" /> or its serializable members.</exception>
  1043. <exception cref="T:System.InvalidOperationException">The <see cref="M:System.Text.Json.Serialization.JsonSerializerContext.GetTypeInfo(System.Type)" /> method on the provided <paramref name="context" /> did not return a compatible <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> for <paramref name="returnType" />.</exception>
  1044. <returns>A <paramref name="returnType" /> representation of the JSON value.</returns>
  1045. </member>
  1046. <member name="M:System.Text.Json.JsonSerializer.Deserialize``1(System.IO.Stream,System.Text.Json.JsonSerializerOptions)">
  1047. <summary>Reads the UTF-8 encoded text representing a single JSON value into a <typeparamref name="TValue" />.
  1048. The Stream will be read to completion.</summary>
  1049. <param name="utf8Json">JSON data to parse.</param>
  1050. <param name="options">Options to control the behavior during reading.</param>
  1051. <typeparam name="TValue">The type to deserialize the JSON value into.</typeparam>
  1052. <exception cref="T:System.ArgumentNullException">
  1053. <paramref name="utf8Json" /> is <see langword="null" />.</exception>
  1054. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid, <typeparamref name="TValue" /> is not compatible with the JSON, or there is remaining data in the Stream.</exception>
  1055. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1056. <returns>A <typeparamref name="TValue" /> representation of the JSON value.</returns>
  1057. </member>
  1058. <member name="M:System.Text.Json.JsonSerializer.Deserialize``1(System.IO.Stream,System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0})">
  1059. <summary>Reads the UTF-8 encoded text representing a single JSON value into a <typeparamref name="TValue" />.
  1060. The Stream will be read to completion.</summary>
  1061. <param name="utf8Json">JSON data to parse.</param>
  1062. <param name="jsonTypeInfo">Metadata about the type to convert.</param>
  1063. <typeparam name="TValue">The type to deserialize the JSON value into.</typeparam>
  1064. <exception cref="T:System.ArgumentNullException">
  1065. <paramref name="utf8Json" /> or <paramref name="jsonTypeInfo" /> is <see langword="null" />.</exception>
  1066. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid, <typeparamref name="TValue" /> is not compatible with the JSON, or there is remaining data in the Stream.</exception>
  1067. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1068. <returns>A <typeparamref name="TValue" /> representation of the JSON value.</returns>
  1069. </member>
  1070. <member name="M:System.Text.Json.JsonSerializer.Deserialize``1(System.ReadOnlySpan{System.Byte},System.Text.Json.JsonSerializerOptions)">
  1071. <summary>Parses the UTF-8 encoded text representing a single JSON value into an instance of the type specified by a generic type parameter.</summary>
  1072. <param name="utf8Json">The JSON text to parse.</param>
  1073. <param name="options">Options to control the behavior during parsing.</param>
  1074. <typeparam name="TValue">The target type of the UTF-8 encoded text.</typeparam>
  1075. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid.
  1076. -or-
  1077. <typeparamref name="TValue" /> is not compatible with the JSON.
  1078. -or-
  1079. There is remaining data in the span beyond a single JSON value.</exception>
  1080. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1081. <returns>A <typeparamref name="TValue" /> representation of the JSON value.</returns>
  1082. </member>
  1083. <member name="M:System.Text.Json.JsonSerializer.Deserialize``1(System.ReadOnlySpan{System.Byte},System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0})">
  1084. <summary>Parses the UTF-8 encoded text representing a single JSON value into a <typeparamref name="TValue" />.</summary>
  1085. <param name="utf8Json">JSON text to parse.</param>
  1086. <param name="jsonTypeInfo">Metadata about the type to convert.</param>
  1087. <typeparam name="TValue">The type to deserialize the JSON value into.</typeparam>
  1088. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid, <typeparamref name="TValue" /> is not compatible with the JSON, or there is remaining data in the Stream.</exception>
  1089. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1090. <returns>A <typeparamref name="TValue" /> representation of the JSON value.</returns>
  1091. </member>
  1092. <member name="M:System.Text.Json.JsonSerializer.Deserialize``1(System.ReadOnlySpan{System.Char},System.Text.Json.JsonSerializerOptions)">
  1093. <summary>Parses the text representing a single JSON value into an instance of the type specified by a generic type parameter.</summary>
  1094. <param name="json">The JSON text to parse.</param>
  1095. <param name="options">Options to control the behavior during parsing.</param>
  1096. <typeparam name="TValue">The type to deserialize the JSON value into.</typeparam>
  1097. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid.
  1098. -or-
  1099. <typeparamref name="TValue" /> is not compatible with the JSON.
  1100. -or-
  1101. There is remaining data in the span beyond a single JSON value.</exception>
  1102. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1103. <returns>A <typeparamref name="TValue" /> representation of the JSON value.</returns>
  1104. </member>
  1105. <member name="M:System.Text.Json.JsonSerializer.Deserialize``1(System.ReadOnlySpan{System.Char},System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0})">
  1106. <summary>Parses the text representing a single JSON value into a <typeparamref name="TValue" />.</summary>
  1107. <param name="json">JSON text to parse.</param>
  1108. <param name="jsonTypeInfo">Metadata about the type to convert.</param>
  1109. <typeparam name="TValue">The type to deserialize the JSON value into.</typeparam>
  1110. <exception cref="T:System.ArgumentNullException">
  1111. <paramref name="json" /> is <see langword="null" />.
  1112. -or-
  1113. <paramref name="jsonTypeInfo" /> is <see langword="null" />.</exception>
  1114. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid.
  1115. -or-
  1116. <typeparamref name="TValue" /> is not compatible with the JSON.
  1117. -or-
  1118. There is remaining data in the string beyond a single JSON value.</exception>
  1119. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1120. <returns>A <typeparamref name="TValue" /> representation of the JSON value.</returns>
  1121. </member>
  1122. <member name="M:System.Text.Json.JsonSerializer.Deserialize``1(System.String,System.Text.Json.JsonSerializerOptions)">
  1123. <summary>Parses the text representing a single JSON value into an instance of the type specified by a generic type parameter.</summary>
  1124. <param name="json">The JSON text to parse.</param>
  1125. <param name="options">Options to control the behavior during parsing.</param>
  1126. <typeparam name="TValue">The target type of the JSON value.</typeparam>
  1127. <exception cref="T:System.ArgumentNullException">
  1128. <paramref name="json" /> is <see langword="null" />.</exception>
  1129. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid.
  1130. -or-
  1131. <typeparamref name="TValue" /> is not compatible with the JSON.
  1132. -or-
  1133. There is remaining data in the string beyond a single JSON value.</exception>
  1134. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1135. <returns>A <typeparamref name="TValue" /> representation of the JSON value.</returns>
  1136. </member>
  1137. <member name="M:System.Text.Json.JsonSerializer.Deserialize``1(System.String,System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0})">
  1138. <summary>Parses the text representing a single JSON value into a <typeparamref name="TValue" />.</summary>
  1139. <param name="json">JSON text to parse.</param>
  1140. <param name="jsonTypeInfo">Metadata about the type to convert.</param>
  1141. <typeparam name="TValue">The type to deserialize the JSON value into.</typeparam>
  1142. <exception cref="T:System.ArgumentNullException">
  1143. <paramref name="json" /> is <see langword="null" />.
  1144. -or-
  1145. <paramref name="jsonTypeInfo" /> is <see langword="null" />.</exception>
  1146. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid.
  1147. -or-
  1148. <typeparamref name="TValue" /> is not compatible with the JSON.
  1149. -or-
  1150. There is remaining data in the string beyond a single JSON value.</exception>
  1151. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1152. <returns>A <typeparamref name="TValue" /> representation of the JSON value.</returns>
  1153. </member>
  1154. <member name="M:System.Text.Json.JsonSerializer.Deserialize``1(System.Text.Json.JsonDocument,System.Text.Json.JsonSerializerOptions)">
  1155. <summary>Converts the <see cref="T:System.Text.Json.JsonDocument" /> representing a single JSON value into a <typeparamref name="TValue" />.</summary>
  1156. <param name="document">The <see cref="T:System.Text.Json.JsonDocument" /> to convert.</param>
  1157. <param name="options">Options to control the behavior during parsing.</param>
  1158. <typeparam name="TValue">The type to deserialize the JSON value into.</typeparam>
  1159. <exception cref="T:System.ArgumentNullException">
  1160. <paramref name="document" /> is <see langword="null" />.</exception>
  1161. <exception cref="T:System.Text.Json.JsonException">
  1162. <typeparamref name="TValue" /> is not compatible with the JSON.</exception>
  1163. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1164. <returns>A <typeparamref name="TValue" /> representation of the JSON value.</returns>
  1165. </member>
  1166. <member name="M:System.Text.Json.JsonSerializer.Deserialize``1(System.Text.Json.JsonDocument,System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0})">
  1167. <summary>Converts the <see cref="T:System.Text.Json.JsonDocument" /> representing a single JSON value into a <typeparamref name="TValue" />.</summary>
  1168. <param name="document">The <see cref="T:System.Text.Json.JsonDocument" /> to convert.</param>
  1169. <param name="jsonTypeInfo">Metadata about the type to convert.</param>
  1170. <typeparam name="TValue">The type to deserialize the JSON value into.</typeparam>
  1171. <exception cref="T:System.ArgumentNullException">
  1172. <paramref name="document" /> is <see langword="null" />.
  1173. -or-
  1174. <paramref name="jsonTypeInfo" /> is <see langword="null" />.</exception>
  1175. <exception cref="T:System.Text.Json.JsonException">
  1176. <typeparamref name="TValue" /> is not compatible with the JSON.</exception>
  1177. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1178. <returns>A <typeparamref name="TValue" /> representation of the JSON value.</returns>
  1179. </member>
  1180. <member name="M:System.Text.Json.JsonSerializer.Deserialize``1(System.Text.Json.JsonElement,System.Text.Json.JsonSerializerOptions)">
  1181. <summary>Converts the <see cref="T:System.Text.Json.JsonElement" /> representing a single JSON value into a <typeparamref name="TValue" />.</summary>
  1182. <param name="element">The <see cref="T:System.Text.Json.JsonElement" /> to convert.</param>
  1183. <param name="options">Options to control the behavior during parsing.</param>
  1184. <typeparam name="TValue">The type to deserialize the JSON value into.</typeparam>
  1185. <exception cref="T:System.Text.Json.JsonException">
  1186. <typeparamref name="TValue" /> is not compatible with the JSON.</exception>
  1187. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1188. <returns>A <typeparamref name="TValue" /> representation of the JSON value.</returns>
  1189. </member>
  1190. <member name="M:System.Text.Json.JsonSerializer.Deserialize``1(System.Text.Json.JsonElement,System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0})">
  1191. <summary>Converts the <see cref="T:System.Text.Json.JsonElement" /> representing a single JSON value into a <typeparamref name="TValue" />.</summary>
  1192. <param name="element">The <see cref="T:System.Text.Json.JsonElement" /> to convert.</param>
  1193. <param name="jsonTypeInfo">Metadata about the type to convert.</param>
  1194. <typeparam name="TValue">The type to deserialize the JSON value into.</typeparam>
  1195. <exception cref="T:System.ArgumentNullException">
  1196. <paramref name="jsonTypeInfo" /> is <see langword="null" />.</exception>
  1197. <exception cref="T:System.Text.Json.JsonException">
  1198. <typeparamref name="TValue" /> is not compatible with the JSON.</exception>
  1199. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1200. <returns>A <typeparamref name="TValue" /> representation of the JSON value.</returns>
  1201. </member>
  1202. <member name="M:System.Text.Json.JsonSerializer.Deserialize``1(System.Text.Json.Nodes.JsonNode,System.Text.Json.JsonSerializerOptions)">
  1203. <summary>Converts the <see cref="T:System.Text.Json.Nodes.JsonNode" /> representing a single JSON value into a <typeparamref name="TValue" />.</summary>
  1204. <param name="node">The <see cref="T:System.Text.Json.Nodes.JsonNode" /> to convert.</param>
  1205. <param name="options">Options to control the behavior during parsing.</param>
  1206. <typeparam name="TValue">The type to deserialize the JSON value into.</typeparam>
  1207. <exception cref="T:System.Text.Json.JsonException">
  1208. <typeparamref name="TValue" /> is not compatible with the JSON.</exception>
  1209. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1210. <returns>A <typeparamref name="TValue" /> representation of the JSON value.</returns>
  1211. </member>
  1212. <member name="M:System.Text.Json.JsonSerializer.Deserialize``1(System.Text.Json.Nodes.JsonNode,System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0})">
  1213. <summary>Converts the <see cref="T:System.Text.Json.Nodes.JsonNode" /> representing a single JSON value into a <typeparamref name="TValue" />.</summary>
  1214. <param name="node">The <see cref="T:System.Text.Json.Nodes.JsonNode" /> to convert.</param>
  1215. <param name="jsonTypeInfo">Metadata about the type to convert.</param>
  1216. <typeparam name="TValue">The type to deserialize the JSON value into.</typeparam>
  1217. <exception cref="T:System.ArgumentNullException">
  1218. <paramref name="jsonTypeInfo" /> is <see langword="null" />.</exception>
  1219. <exception cref="T:System.Text.Json.JsonException">
  1220. <typeparamref name="TValue" /> is not compatible with the JSON.</exception>
  1221. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1222. <returns>A <typeparamref name="TValue" /> representation of the JSON value.</returns>
  1223. </member>
  1224. <member name="M:System.Text.Json.JsonSerializer.Deserialize``1(System.Text.Json.Utf8JsonReader@,System.Text.Json.JsonSerializerOptions)">
  1225. <summary>Reads one JSON value (including objects or arrays) from the provided reader into an instance of the type specified by a generic type parameter.</summary>
  1226. <param name="reader">The reader to read the JSON from.</param>
  1227. <param name="options">Options to control serializer behavior during reading.</param>
  1228. <typeparam name="TValue">The target type of the JSON value.</typeparam>
  1229. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid.
  1230. -or-
  1231. <typeparamref name="TValue" /> is not compatible with the JSON.
  1232. -or-
  1233. A value could not be read from the reader.</exception>
  1234. <exception cref="T:System.ArgumentException">
  1235. <paramref name="reader" /> uses unsupported options.</exception>
  1236. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1237. <returns>A <typeparamref name="TValue" /> representation of the JSON value.</returns>
  1238. </member>
  1239. <member name="M:System.Text.Json.JsonSerializer.Deserialize``1(System.Text.Json.Utf8JsonReader@,System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0})">
  1240. <summary>Reads one JSON value (including objects or arrays) from the provided reader into a <typeparamref name="TValue" />.</summary>
  1241. <param name="reader">The reader to read.</param>
  1242. <param name="jsonTypeInfo">Metadata about the type to convert.</param>
  1243. <typeparam name="TValue">The type to deserialize the JSON value into.</typeparam>
  1244. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid, <typeparamref name="TValue" /> is not compatible with the JSON, or a value could not be read from the reader.</exception>
  1245. <exception cref="T:System.ArgumentException">
  1246. <paramref name="reader" /> is using unsupported options.</exception>
  1247. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1248. <returns>A <typeparamref name="TValue" /> representation of the JSON value.</returns>
  1249. </member>
  1250. <member name="M:System.Text.Json.JsonSerializer.DeserializeAsync(System.IO.Stream,System.Type,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken)">
  1251. <summary>Asynchronously reads the UTF-8 encoded text representing a single JSON value into an instance of a specified type. The stream will be read to completion.</summary>
  1252. <param name="utf8Json">The JSON data to parse.</param>
  1253. <param name="returnType">The type of the object to convert to and return.</param>
  1254. <param name="options">Options to control the behavior during reading.</param>
  1255. <param name="cancellationToken">A cancellation token that may be used to cancel the read operation.</param>
  1256. <exception cref="T:System.ArgumentNullException">
  1257. <paramref name="utf8Json" /> or <paramref name="returnType" /> is <see langword="null" />.</exception>
  1258. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid.
  1259. -or-
  1260. <typeparamref name="TValue" /> is not compatible with the JSON.
  1261. -or-
  1262. There is remaining data in the stream.</exception>
  1263. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="System.Text.Json.Serialization.JsonConverter" /> for <paramref name="returnType" /> or its serializable members.</exception>
  1264. <returns>A <paramref name="returnType" /> representation of the JSON value.</returns>
  1265. </member>
  1266. <member name="M:System.Text.Json.JsonSerializer.DeserializeAsync(System.IO.Stream,System.Type,System.Text.Json.Serialization.JsonSerializerContext,System.Threading.CancellationToken)">
  1267. <summary>Reads the UTF-8 encoded text representing a single JSON value into a <paramref name="returnType" />.
  1268. The Stream will be read to completion.</summary>
  1269. <param name="utf8Json">JSON data to parse.</param>
  1270. <param name="returnType">The type of the object to convert to and return.</param>
  1271. <param name="context">A metadata provider for serializable types.</param>
  1272. <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" /> that can be used to cancel the read operation.</param>
  1273. <exception cref="T:System.ArgumentNullException">
  1274. <paramref name="utf8Json" />, <paramref name="returnType" />, or <paramref name="context" /> is <see langword="null" />.</exception>
  1275. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid, the <paramref name="returnType" /> is not compatible with the JSON, or there is remaining data in the Stream.</exception>
  1276. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="returnType" /> or its serializable members.</exception>
  1277. <exception cref="T:System.InvalidOperationException">The <see cref="M:System.Text.Json.Serialization.JsonSerializerContext.GetTypeInfo(System.Type)" /> method on the provided <paramref name="context" /> did not return a compatible <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> for <paramref name="returnType" />.</exception>
  1278. <returns>A <paramref name="returnType" /> representation of the JSON value.</returns>
  1279. </member>
  1280. <member name="M:System.Text.Json.JsonSerializer.DeserializeAsync``1(System.IO.Stream,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken)">
  1281. <summary>Asynchronously reads the UTF-8 encoded text representing a single JSON value into an instance of a type specified by a generic type parameter. The stream will be read to completion.</summary>
  1282. <param name="utf8Json">The JSON data to parse.</param>
  1283. <param name="options">Options to control the behavior during reading.</param>
  1284. <param name="cancellationToken">A token that may be used to cancel the read operation.</param>
  1285. <typeparam name="TValue">The target type of the JSON value.</typeparam>
  1286. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid.
  1287. -or-
  1288. <typeparamref name="TValue" /> is not compatible with the JSON.
  1289. -or-
  1290. There is remaining data in the stream.</exception>
  1291. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1292. <exception cref="T:System.ArgumentNullException">
  1293. <paramref name="utf8Json" />is <see langword="null" />.</exception>
  1294. <returns>A <typeparamref name="TValue" /> representation of the JSON value.</returns>
  1295. </member>
  1296. <member name="M:System.Text.Json.JsonSerializer.DeserializeAsync``1(System.IO.Stream,System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0},System.Threading.CancellationToken)">
  1297. <summary>Reads the UTF-8 encoded text representing a single JSON value into a <typeparamref name="TValue" />.
  1298. The Stream will be read to completion.</summary>
  1299. <param name="utf8Json">JSON data to parse.</param>
  1300. <param name="jsonTypeInfo">Metadata about the type to convert.</param>
  1301. <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" /> which may be used to cancel the read operation.</param>
  1302. <typeparam name="TValue">The type to deserialize the JSON value into.</typeparam>
  1303. <exception cref="T:System.ArgumentNullException">
  1304. <paramref name="utf8Json" /> or <paramref name="jsonTypeInfo" /> is <see langword="null" />.</exception>
  1305. <exception cref="T:System.Text.Json.JsonException">The JSON is invalid, <typeparamref name="TValue" /> is not compatible with the JSON, or there is remaining data in the Stream.</exception>
  1306. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1307. <returns>A <typeparamref name="TValue" /> representation of the JSON value.</returns>
  1308. </member>
  1309. <member name="M:System.Text.Json.JsonSerializer.DeserializeAsyncEnumerable``1(System.IO.Stream,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken)">
  1310. <summary>Wraps the UTF-8 encoded text into an <see cref="T:System.Collections.Generic.IAsyncEnumerable`1" /> that can be used to deserialize root-level JSON arrays in a streaming manner.</summary>
  1311. <param name="utf8Json">JSON data to parse.</param>
  1312. <param name="options">Options to control the behavior during reading.</param>
  1313. <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" /> which may be used to cancel the read operation.</param>
  1314. <typeparam name="TValue">The element type to deserialize asynchronously.</typeparam>
  1315. <exception cref="T:System.ArgumentNullException">
  1316. <paramref name="utf8Json" /> is <see langword="null" />.</exception>
  1317. <returns>An <see cref="T:System.Collections.Generic.IAsyncEnumerable`1" /> representation of the provided JSON array.</returns>
  1318. </member>
  1319. <member name="M:System.Text.Json.JsonSerializer.Serialize(System.IO.Stream,System.Object,System.Type,System.Text.Json.JsonSerializerOptions)">
  1320. <summary>Converts the provided value to UTF-8 encoded JSON text and write it to the <see cref="T:System.IO.Stream" />.</summary>
  1321. <param name="utf8Json">The UTF-8 <see cref="T:System.IO.Stream" /> to write to.</param>
  1322. <param name="value">The value to convert.</param>
  1323. <param name="inputType">The type of the <paramref name="value" /> to convert.</param>
  1324. <param name="options">Options to control the conversion behavior.</param>
  1325. <exception cref="T:System.ArgumentException">
  1326. <paramref name="inputType" /> is not compatible with <paramref name="value" />.</exception>
  1327. <exception cref="T:System.ArgumentNullException">
  1328. <paramref name="utf8Json" /> or <paramref name="inputType" /> is <see langword="null" />.</exception>
  1329. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="inputType" /> or its serializable members.</exception>
  1330. </member>
  1331. <member name="M:System.Text.Json.JsonSerializer.Serialize(System.IO.Stream,System.Object,System.Type,System.Text.Json.Serialization.JsonSerializerContext)">
  1332. <summary>Converts the provided value to UTF-8 encoded JSON text and write it to the <see cref="T:System.IO.Stream" />.</summary>
  1333. <param name="utf8Json">The UTF-8 <see cref="T:System.IO.Stream" /> to write to.</param>
  1334. <param name="value">The value to convert.</param>
  1335. <param name="inputType">The type of the <paramref name="value" /> to convert.</param>
  1336. <param name="context">A metadata provider for serializable types.</param>
  1337. <exception cref="T:System.ArgumentException">
  1338. <paramref name="inputType" /> is not compatible with <paramref name="value" />.</exception>
  1339. <exception cref="T:System.ArgumentNullException">
  1340. <paramref name="utf8Json" />, <paramref name="inputType" />, or <paramref name="context" /> is <see langword="null" />.</exception>
  1341. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="inputType" /> or its serializable members.</exception>
  1342. </member>
  1343. <member name="M:System.Text.Json.JsonSerializer.Serialize(System.Object,System.Type,System.Text.Json.JsonSerializerOptions)">
  1344. <summary>Converts the value of a specified type into a JSON string.</summary>
  1345. <param name="value">The value to convert.</param>
  1346. <param name="inputType">The type of the <paramref name="value" /> to convert.</param>
  1347. <param name="options">Options to control the conversion behavior.</param>
  1348. <exception cref="T:System.ArgumentException">
  1349. <paramref name="inputType" /> is not compatible with <paramref name="value" />.</exception>
  1350. <exception cref="T:System.ArgumentNullException">
  1351. <paramref name="inputType" /> is <see langword="null" />.</exception>
  1352. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="System.Text.Json.Serialization.JsonConverter" /> for <paramref name="inputType" /> or its serializable members.</exception>
  1353. <returns>The JSON string representation of the value.</returns>
  1354. </member>
  1355. <member name="M:System.Text.Json.JsonSerializer.Serialize(System.Object,System.Type,System.Text.Json.Serialization.JsonSerializerContext)">
  1356. <summary>Converts the provided value into a <see cref="T:System.String" />.</summary>
  1357. <param name="value">The value to convert.</param>
  1358. <param name="inputType">The type of the <paramref name="value" /> to convert.</param>
  1359. <param name="context">A metadata provider for serializable types.</param>
  1360. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="inputType" /> or its serializable members.</exception>
  1361. <exception cref="T:System.InvalidOperationException">The <see cref="M:System.Text.Json.Serialization.JsonSerializerContext.GetTypeInfo(System.Type)" /> method of the provided <paramref name="context" /> returns <see langword="null" /> for the type to convert.</exception>
  1362. <exception cref="T:System.ArgumentNullException">
  1363. <paramref name="inputType" /> or <paramref name="context" /> is <see langword="null" />.</exception>
  1364. <returns>A <see cref="T:System.String" /> representation of the value.</returns>
  1365. </member>
  1366. <member name="M:System.Text.Json.JsonSerializer.Serialize(System.Text.Json.Utf8JsonWriter,System.Object,System.Type,System.Text.Json.JsonSerializerOptions)">
  1367. <summary>Writes the JSON representation of the specified type to the provided writer.</summary>
  1368. <param name="writer">The JSON writer to write to.</param>
  1369. <param name="value">The value to convert and write.</param>
  1370. <param name="inputType">The type of the <paramref name="value" /> to convert.</param>
  1371. <param name="options">Options to control serialization behavior.</param>
  1372. <exception cref="T:System.ArgumentException">
  1373. <paramref name="inputType" /> is not compatible with <paramref name="value" /></exception>
  1374. <exception cref="T:System.ArgumentNullException">
  1375. <paramref name="writer" /> or <paramref name="inputType" /> is <see langword="null" />.</exception>
  1376. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="System.Text.Json.Serialization.JsonConverter" /> for <paramref name="inputType" /> or its serializable members.</exception>
  1377. </member>
  1378. <member name="M:System.Text.Json.JsonSerializer.Serialize(System.Text.Json.Utf8JsonWriter,System.Object,System.Type,System.Text.Json.Serialization.JsonSerializerContext)">
  1379. <summary>Writes one JSON value (including objects or arrays) to the provided writer.</summary>
  1380. <param name="writer">A JSON writer to write to.</param>
  1381. <param name="value">The value to convert and write.</param>
  1382. <param name="inputType">The type of the <paramref name="value" /> to convert.</param>
  1383. <param name="context">A metadata provider for serializable types.</param>
  1384. <exception cref="T:System.ArgumentException">
  1385. <paramref name="inputType" /> is not compatible with <paramref name="value" />.</exception>
  1386. <exception cref="T:System.ArgumentNullException">
  1387. <paramref name="writer" /> or <paramref name="inputType" /> is <see langword="null" />.</exception>
  1388. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="inputType" /> or its serializable members.</exception>
  1389. <exception cref="T:System.InvalidOperationException">The <see cref="M:System.Text.Json.Serialization.JsonSerializerContext.GetTypeInfo(System.Type)" /> method of the provided <paramref name="context" /> returns <see langword="null" /> for the type to convert.</exception>
  1390. </member>
  1391. <member name="M:System.Text.Json.JsonSerializer.Serialize``1(``0,System.Text.Json.JsonSerializerOptions)">
  1392. <summary>Converts the value of a type specified by a generic type parameter into a JSON string.</summary>
  1393. <param name="value">The value to convert.</param>
  1394. <param name="options">Options to control serialization behavior.</param>
  1395. <typeparam name="TValue">The type of the value to serialize.</typeparam>
  1396. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1397. <returns>A JSON string representation of the value.</returns>
  1398. </member>
  1399. <member name="M:System.Text.Json.JsonSerializer.Serialize``1(``0,System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0})">
  1400. <summary>Converts the provided value into a <see cref="T:System.String" />.</summary>
  1401. <param name="value">The value to convert.</param>
  1402. <param name="jsonTypeInfo">Metadata about the type to convert.</param>
  1403. <typeparam name="TValue">The type of the value to serialize.</typeparam>
  1404. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1405. <exception cref="T:System.ArgumentNullException">
  1406. <paramref name="jsonTypeInfo" /> is <see langword="null" />.</exception>
  1407. <returns>A <see cref="T:System.String" /> representation of the value.</returns>
  1408. </member>
  1409. <member name="M:System.Text.Json.JsonSerializer.Serialize``1(System.IO.Stream,``0,System.Text.Json.JsonSerializerOptions)">
  1410. <summary>Converts the provided value to UTF-8 encoded JSON text and write it to the <see cref="T:System.IO.Stream" />.</summary>
  1411. <param name="utf8Json">The UTF-8 <see cref="T:System.IO.Stream" /> to write to.</param>
  1412. <param name="value">The value to convert.</param>
  1413. <param name="options">Options to control the conversion behavior.</param>
  1414. <typeparam name="TValue">The type of the value to serialize.</typeparam>
  1415. <exception cref="T:System.ArgumentNullException">
  1416. <paramref name="utf8Json" /> is <see langword="null" />.</exception>
  1417. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1418. </member>
  1419. <member name="M:System.Text.Json.JsonSerializer.Serialize``1(System.IO.Stream,``0,System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0})">
  1420. <summary>Converts the provided value to UTF-8 encoded JSON text and write it to the <see cref="T:System.IO.Stream" />.</summary>
  1421. <param name="utf8Json">The UTF-8 <see cref="T:System.IO.Stream" /> to write to.</param>
  1422. <param name="value">The value to convert.</param>
  1423. <param name="jsonTypeInfo">Metadata about the type to convert.</param>
  1424. <typeparam name="TValue">The type of the value to serialize.</typeparam>
  1425. <exception cref="T:System.ArgumentNullException">
  1426. <paramref name="utf8Json" /> is <see langword="null" />.</exception>
  1427. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1428. </member>
  1429. <member name="M:System.Text.Json.JsonSerializer.Serialize``1(System.Text.Json.Utf8JsonWriter,``0,System.Text.Json.JsonSerializerOptions)">
  1430. <summary>Writes the JSON representation of a type specified by a generic type parameter to the provided writer.</summary>
  1431. <param name="writer">A JSON writer to write to.</param>
  1432. <param name="value">The value to convert and write.</param>
  1433. <param name="options">Options to control serialization behavior.</param>
  1434. <typeparam name="TValue">The type of the value to serialize.</typeparam>
  1435. <exception cref="T:System.ArgumentNullException">
  1436. <paramref name="writer" /> is <see langword="null" />.</exception>
  1437. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1438. </member>
  1439. <member name="M:System.Text.Json.JsonSerializer.Serialize``1(System.Text.Json.Utf8JsonWriter,``0,System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0})">
  1440. <summary>Writes one JSON value (including objects or arrays) to the provided writer.</summary>
  1441. <param name="writer">The writer to write.</param>
  1442. <param name="value">The value to convert and write.</param>
  1443. <param name="jsonTypeInfo">Metadata about the type to convert.</param>
  1444. <typeparam name="TValue">The type of the value to serialize.</typeparam>
  1445. <exception cref="T:System.ArgumentNullException">
  1446. <paramref name="writer" /> or <paramref name="jsonTypeInfo" /> is <see langword="null" />.</exception>
  1447. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1448. </member>
  1449. <member name="M:System.Text.Json.JsonSerializer.SerializeAsync(System.IO.Stream,System.Object,System.Type,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken)">
  1450. <summary>Asynchronously converts the value of a specified type to UTF-8 encoded JSON text and writes it to the specified stream.</summary>
  1451. <param name="utf8Json">The UTF-8 stream to write to.</param>
  1452. <param name="value">The value to convert.</param>
  1453. <param name="inputType">The type of the <paramref name="value" /> to convert.</param>
  1454. <param name="options">Options to control serialization behavior.</param>
  1455. <param name="cancellationToken">A token that may be used to cancel the write operation.</param>
  1456. <exception cref="T:System.ArgumentException">
  1457. <paramref name="inputType" /> is not compatible with <paramref name="value" />.</exception>
  1458. <exception cref="T:System.ArgumentNullException">
  1459. <paramref name="utf8Json" /> or <paramref name="inputType" /> is <see langword="null" />.</exception>
  1460. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="System.Text.Json.Serialization.JsonConverter" /> for <paramref name="inputType" /> or its serializable members.</exception>
  1461. <returns>A task that represents the asynchronous write operation.</returns>
  1462. </member>
  1463. <member name="M:System.Text.Json.JsonSerializer.SerializeAsync(System.IO.Stream,System.Object,System.Type,System.Text.Json.Serialization.JsonSerializerContext,System.Threading.CancellationToken)">
  1464. <summary>Converts the provided value to UTF-8 encoded JSON text and write it to the <see cref="T:System.IO.Stream" />.</summary>
  1465. <param name="utf8Json">The UTF-8 <see cref="T:System.IO.Stream" /> to write to.</param>
  1466. <param name="value">The value to convert.</param>
  1467. <param name="inputType">The type of the <paramref name="value" /> to convert.</param>
  1468. <param name="context">A metadata provider for serializable types.</param>
  1469. <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" /> that can be used to cancel the write operation.</param>
  1470. <exception cref="T:System.ArgumentException">
  1471. <paramref name="inputType" /> is not compatible with <paramref name="value" />.</exception>
  1472. <exception cref="T:System.ArgumentNullException">
  1473. <paramref name="utf8Json" />, <paramref name="inputType" />, or <paramref name="context" /> is <see langword="null" />.</exception>
  1474. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="inputType" /> or its serializable members.</exception>
  1475. <returns>A task that represents the asynchronous write operation.</returns>
  1476. </member>
  1477. <member name="M:System.Text.Json.JsonSerializer.SerializeAsync``1(System.IO.Stream,``0,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken)">
  1478. <summary>Asynchronously converts a value of a type specified by a generic type parameter to UTF-8 encoded JSON text and writes it to a stream.</summary>
  1479. <param name="utf8Json">The UTF-8 stream to write to.</param>
  1480. <param name="value">The value to convert.</param>
  1481. <param name="options">Options to control serialization behavior.</param>
  1482. <param name="cancellationToken">A token that may be used to cancel the write operation.</param>
  1483. <typeparam name="TValue">The type of the value to serialize.</typeparam>
  1484. <exception cref="T:System.ArgumentNullException">
  1485. <paramref name="utf8Json" /> is <see langword="null" />.</exception>
  1486. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1487. <returns>A task that represents the asynchronous write operation.</returns>
  1488. </member>
  1489. <member name="M:System.Text.Json.JsonSerializer.SerializeAsync``1(System.IO.Stream,``0,System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0},System.Threading.CancellationToken)">
  1490. <summary>Converts the provided value to UTF-8 encoded JSON text and write it to the <see cref="T:System.IO.Stream" />.</summary>
  1491. <param name="utf8Json">The UTF-8 <see cref="T:System.IO.Stream" /> to write to.</param>
  1492. <param name="value">The value to convert.</param>
  1493. <param name="jsonTypeInfo">Metadata about the type to convert.</param>
  1494. <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" /> that can be used to cancel the write operation.</param>
  1495. <typeparam name="TValue">The type of the value to serialize.</typeparam>
  1496. <exception cref="T:System.ArgumentNullException">
  1497. <paramref name="utf8Json" /> is <see langword="null" />.</exception>
  1498. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1499. <returns>A task that represents the asynchronous write operation.</returns>
  1500. </member>
  1501. <member name="M:System.Text.Json.JsonSerializer.SerializeToDocument(System.Object,System.Type,System.Text.Json.JsonSerializerOptions)">
  1502. <summary>Converts the provided value into a <see cref="T:System.Text.Json.JsonDocument" />.</summary>
  1503. <param name="value">The value to convert.</param>
  1504. <param name="inputType">The type of the <paramref name="value" /> to convert.</param>
  1505. <param name="options">Options to control the conversion behavior.</param>
  1506. <exception cref="T:System.ArgumentException">
  1507. <paramref name="inputType" /> is not compatible with <paramref name="value" />.</exception>
  1508. <exception cref="T:System.ArgumentNullException">
  1509. <paramref name="inputType" /> is <see langword="null" />.</exception>
  1510. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="inputType" /> or its serializable members.</exception>
  1511. <returns>A <see cref="T:System.Text.Json.JsonDocument" /> representation of the value.</returns>
  1512. </member>
  1513. <member name="M:System.Text.Json.JsonSerializer.SerializeToDocument(System.Object,System.Type,System.Text.Json.Serialization.JsonSerializerContext)">
  1514. <summary>Converts the provided value into a <see cref="T:System.Text.Json.JsonDocument" />.</summary>
  1515. <param name="value">The value to convert.</param>
  1516. <param name="inputType">The type of the <paramref name="value" /> to convert.</param>
  1517. <param name="context">A metadata provider for serializable types.</param>
  1518. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="inputType" /> or its serializable members.</exception>
  1519. <exception cref="T:System.InvalidOperationException">The <see cref="M:System.Text.Json.Serialization.JsonSerializerContext.GetTypeInfo(System.Type)" /> method of the provided <paramref name="context" /> returns <see langword="null" /> for the type to convert.</exception>
  1520. <exception cref="T:System.ArgumentNullException">
  1521. <paramref name="inputType" /> or <paramref name="context" /> is <see langword="null" />.</exception>
  1522. <returns>A <see cref="T:System.Text.Json.JsonDocument" /> representation of the value.</returns>
  1523. </member>
  1524. <member name="M:System.Text.Json.JsonSerializer.SerializeToDocument``1(``0,System.Text.Json.JsonSerializerOptions)">
  1525. <summary>Converts the provided value into a <see cref="T:System.Text.Json.JsonDocument" />.</summary>
  1526. <param name="value">The value to convert.</param>
  1527. <param name="options">Options to control the conversion behavior.</param>
  1528. <typeparam name="TValue">The type of the value to serialize.</typeparam>
  1529. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1530. <returns>A <see cref="T:System.Text.Json.JsonDocument" /> representation of the JSON value.</returns>
  1531. </member>
  1532. <member name="M:System.Text.Json.JsonSerializer.SerializeToDocument``1(``0,System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0})">
  1533. <summary>Converts the provided value into a <see cref="T:System.Text.Json.JsonDocument" />.</summary>
  1534. <param name="value">The value to convert.</param>
  1535. <param name="jsonTypeInfo">Metadata about the type to convert.</param>
  1536. <typeparam name="TValue">The type of the value to serialize.</typeparam>
  1537. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1538. <exception cref="T:System.ArgumentNullException">
  1539. <paramref name="jsonTypeInfo" /> is <see langword="null" />.</exception>
  1540. <returns>A <see cref="T:System.Text.Json.JsonDocument" /> representation of the value.</returns>
  1541. </member>
  1542. <member name="M:System.Text.Json.JsonSerializer.SerializeToElement(System.Object,System.Type,System.Text.Json.JsonSerializerOptions)">
  1543. <summary>Converts the provided value into a <see cref="T:System.Text.Json.JsonDocument" />.</summary>
  1544. <param name="value">The value to convert.</param>
  1545. <param name="inputType">The type of the <paramref name="value" /> to convert.</param>
  1546. <param name="options">Options to control the conversion behavior.</param>
  1547. <exception cref="T:System.ArgumentException">
  1548. <paramref name="inputType" /> is not compatible with <paramref name="value" />.</exception>
  1549. <exception cref="T:System.ArgumentNullException">
  1550. <paramref name="inputType" /> is <see langword="null" />.</exception>
  1551. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="inputType" /> or its serializable members.</exception>
  1552. <returns>A <see cref="T:System.Text.Json.JsonDocument" /> representation of the value.</returns>
  1553. </member>
  1554. <member name="M:System.Text.Json.JsonSerializer.SerializeToElement(System.Object,System.Type,System.Text.Json.Serialization.JsonSerializerContext)">
  1555. <summary>Converts the provided value into a <see cref="T:System.Text.Json.JsonDocument" />.</summary>
  1556. <param name="value">The value to convert.</param>
  1557. <param name="inputType">The type of the <paramref name="value" /> to convert.</param>
  1558. <param name="context">A metadata provider for serializable types.</param>
  1559. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="inputType" /> or its serializable members.</exception>
  1560. <exception cref="T:System.InvalidOperationException">The <see cref="M:System.Text.Json.Serialization.JsonSerializerContext.GetTypeInfo(System.Type)" /> method of the provided <paramref name="context" /> returns <see langword="null" /> for the type to convert.</exception>
  1561. <exception cref="T:System.ArgumentNullException">
  1562. <paramref name="inputType" /> or <paramref name="context" /> is <see langword="null" />.</exception>
  1563. <returns>A <see cref="T:System.Text.Json.JsonDocument" /> representation of the value.</returns>
  1564. </member>
  1565. <member name="M:System.Text.Json.JsonSerializer.SerializeToElement``1(``0,System.Text.Json.JsonSerializerOptions)">
  1566. <summary>Converts the provided value into a <see cref="T:System.Text.Json.JsonDocument" />.</summary>
  1567. <param name="value">The value to convert.</param>
  1568. <param name="options">Options to control the conversion behavior.</param>
  1569. <typeparam name="TValue">The type of the value to serialize.</typeparam>
  1570. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1571. <returns>A <see cref="T:System.Text.Json.JsonDocument" /> representation of the JSON value.</returns>
  1572. </member>
  1573. <member name="M:System.Text.Json.JsonSerializer.SerializeToElement``1(``0,System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0})">
  1574. <summary>Converts the provided value into a <see cref="T:System.Text.Json.JsonDocument" />.</summary>
  1575. <param name="value">The value to convert.</param>
  1576. <param name="jsonTypeInfo">Metadata about the type to convert.</param>
  1577. <typeparam name="TValue">The type of the value to serialize.</typeparam>
  1578. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1579. <exception cref="T:System.ArgumentNullException">
  1580. <paramref name="jsonTypeInfo" /> is <see langword="null" />.</exception>
  1581. <returns>A <see cref="T:System.Text.Json.JsonDocument" /> representation of the value.</returns>
  1582. </member>
  1583. <member name="M:System.Text.Json.JsonSerializer.SerializeToNode(System.Object,System.Type,System.Text.Json.JsonSerializerOptions)">
  1584. <summary>Converts the provided value into a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  1585. <param name="value">The value to convert.</param>
  1586. <param name="inputType">The type of the <paramref name="value" /> to convert.</param>
  1587. <param name="options">Options to control the conversion behavior.</param>
  1588. <exception cref="T:System.ArgumentException">
  1589. <paramref name="inputType" /> is not compatible with <paramref name="value" />.</exception>
  1590. <exception cref="T:System.ArgumentNullException">
  1591. <paramref name="inputType" /> is <see langword="null" />.</exception>
  1592. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="inputType" /> or its serializable members.</exception>
  1593. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> representation of the value.</returns>
  1594. </member>
  1595. <member name="M:System.Text.Json.JsonSerializer.SerializeToNode(System.Object,System.Type,System.Text.Json.Serialization.JsonSerializerContext)">
  1596. <summary>Converts the provided value into a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  1597. <param name="value">The value to convert.</param>
  1598. <param name="inputType">The type of the <paramref name="value" /> to convert.</param>
  1599. <param name="context">A metadata provider for serializable types.</param>
  1600. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="inputType" /> or its serializable members.</exception>
  1601. <exception cref="T:System.InvalidOperationException">The <see cref="M:System.Text.Json.Serialization.JsonSerializerContext.GetTypeInfo(System.Type)" /> method of the provided <paramref name="context" /> returns <see langword="null" /> for the type to convert.</exception>
  1602. <exception cref="T:System.ArgumentNullException">
  1603. <paramref name="inputType" /> or <paramref name="context" /> is <see langword="null" />.</exception>
  1604. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> representation of the value.</returns>
  1605. </member>
  1606. <member name="M:System.Text.Json.JsonSerializer.SerializeToNode``1(``0,System.Text.Json.JsonSerializerOptions)">
  1607. <summary>Converts the provided value into a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  1608. <param name="value">The value to convert.</param>
  1609. <param name="options">Options to control the conversion behavior.</param>
  1610. <typeparam name="TValue">The type of the value to serialize.</typeparam>
  1611. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1612. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> representation of the JSON value.</returns>
  1613. </member>
  1614. <member name="M:System.Text.Json.JsonSerializer.SerializeToNode``1(``0,System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0})">
  1615. <summary>Converts the provided value into a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  1616. <param name="value">The value to convert.</param>
  1617. <param name="jsonTypeInfo">Metadata about the type to convert.</param>
  1618. <typeparam name="TValue">The type of the value to serialize.</typeparam>
  1619. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1620. <exception cref="T:System.ArgumentNullException">
  1621. <paramref name="jsonTypeInfo" /> is <see langword="null" />.</exception>
  1622. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> representation of the value.</returns>
  1623. </member>
  1624. <member name="M:System.Text.Json.JsonSerializer.SerializeToUtf8Bytes(System.Object,System.Type,System.Text.Json.JsonSerializerOptions)">
  1625. <summary>Converts a value of the specified type into a JSON string, encoded as UTF-8 bytes.</summary>
  1626. <param name="value">The value to convert.</param>
  1627. <param name="inputType">The type of the <paramref name="value" /> to convert.</param>
  1628. <param name="options">Options to control the conversion behavior.</param>
  1629. <exception cref="T:System.ArgumentException">
  1630. <paramref name="inputType" /> is not compatible with <paramref name="value" />.</exception>
  1631. <exception cref="T:System.ArgumentNullException">
  1632. <paramref name="inputType" /> is <see langword="null" />.</exception>
  1633. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="System.Text.Json.Serialization.JsonConverter" /> for <paramref name="inputType" /> or its serializable members.</exception>
  1634. <returns>A JSON string representation of the value, encoded as UTF-8 bytes.</returns>
  1635. </member>
  1636. <member name="M:System.Text.Json.JsonSerializer.SerializeToUtf8Bytes(System.Object,System.Type,System.Text.Json.Serialization.JsonSerializerContext)">
  1637. <summary>Converts the provided value into a <see cref="T:System.Byte" /> array.</summary>
  1638. <param name="value">The value to convert.</param>
  1639. <param name="inputType">The type of the <paramref name="value" /> to convert.</param>
  1640. <param name="context">A metadata provider for serializable types.</param>
  1641. <exception cref="T:System.ArgumentException">
  1642. <paramref name="inputType" /> is not compatible with <paramref name="value" />.</exception>
  1643. <exception cref="T:System.ArgumentNullException">
  1644. <paramref name="inputType" /> is <see langword="null" />.</exception>
  1645. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <paramref name="inputType" /> or its serializable members.</exception>
  1646. <exception cref="T:System.InvalidOperationException">The <see cref="M:System.Text.Json.Serialization.JsonSerializerContext.GetTypeInfo(System.Type)" /> method of the provided <paramref name="context" /> returns <see langword="null" /> for the type to convert.</exception>
  1647. <returns>A UTF-8 representation of the value.</returns>
  1648. </member>
  1649. <member name="M:System.Text.Json.JsonSerializer.SerializeToUtf8Bytes``1(``0,System.Text.Json.JsonSerializerOptions)">
  1650. <summary>Converts the value of a type specified by a generic type parameter into a JSON string, encoded as UTF-8 bytes.</summary>
  1651. <param name="value">The value to convert.</param>
  1652. <param name="options">Options to control the conversion behavior.</param>
  1653. <typeparam name="TValue">The type of the value.</typeparam>
  1654. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1655. <returns>A JSON string representation of the value, encoded as UTF-8 bytes.</returns>
  1656. </member>
  1657. <member name="M:System.Text.Json.JsonSerializer.SerializeToUtf8Bytes``1(``0,System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0})">
  1658. <summary>Converts the provided value into a <see cref="T:System.Byte" /> array.</summary>
  1659. <param name="value">The value to convert.</param>
  1660. <param name="jsonTypeInfo">Metadata about the type to convert.</param>
  1661. <typeparam name="TValue">The type of the value to serialize.</typeparam>
  1662. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for <typeparamref name="TValue" /> or its serializable members.</exception>
  1663. <exception cref="T:System.ArgumentNullException">
  1664. <paramref name="jsonTypeInfo" /> is <see langword="null" />.</exception>
  1665. <returns>A UTF-8 representation of the value.</returns>
  1666. </member>
  1667. <member name="T:System.Text.Json.JsonSerializerDefaults">
  1668. <summary>Specifies scenario-based default serialization options that can be used to construct a <see cref="T:System.Text.Json.JsonSerializerOptions" /> instance.</summary>
  1669. </member>
  1670. <member name="F:System.Text.Json.JsonSerializerDefaults.General">
  1671. <summary>
  1672. <para>General-purpose option values. These are the same settings that are applied if a <see cref="T:System.Text.Json.JsonSerializerDefaults" /> member isn't specified.</para>
  1673. <para>For information about the default property values that are applied, see JsonSerializerOptions properties.</para>
  1674. </summary>
  1675. </member>
  1676. <member name="F:System.Text.Json.JsonSerializerDefaults.Web">
  1677. <summary>
  1678. <para>Option values appropriate to Web-based scenarios.</para>
  1679. <para>This member implies that:</para>
  1680. <para>- Property names are treated as case-insensitive.</para>
  1681. <para>- "camelCase" name formatting should be employed.</para>
  1682. <para>- Quoted numbers (JSON strings for number properties) are allowed.</para>
  1683. </summary>
  1684. </member>
  1685. <member name="T:System.Text.Json.JsonSerializerOptions">
  1686. <summary>Provides options to be used with <see cref="T:System.Text.Json.JsonSerializer" />.</summary>
  1687. </member>
  1688. <member name="M:System.Text.Json.JsonSerializerOptions.#ctor">
  1689. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.JsonSerializerOptions" /> class.</summary>
  1690. </member>
  1691. <member name="M:System.Text.Json.JsonSerializerOptions.#ctor(System.Text.Json.JsonSerializerDefaults)">
  1692. <summary>Constructs a new <see cref="T:System.Text.Json.JsonSerializerOptions" /> instance with a predefined set of options determined by the specified <see cref="T:System.Text.Json.JsonSerializerDefaults" />.</summary>
  1693. <param name="defaults">The <see cref="T:System.Text.Json.JsonSerializerDefaults" /> to reason about.</param>
  1694. </member>
  1695. <member name="M:System.Text.Json.JsonSerializerOptions.#ctor(System.Text.Json.JsonSerializerOptions)">
  1696. <summary>Copies the options from a <see cref="T:System.Text.Json.JsonSerializerOptions" /> instance to a new instance.</summary>
  1697. <param name="options">The options instance to copy options from.</param>
  1698. <exception cref="T:System.ArgumentNullException">
  1699. <paramref name="options" /> is <see langword="null" />.</exception>
  1700. </member>
  1701. <member name="M:System.Text.Json.JsonSerializerOptions.AddContext``1">
  1702. <summary>Binds current <see cref="T:System.Text.Json.JsonSerializerOptions" /> instance with a new instance of the specified <see cref="T:System.Text.Json.Serialization.JsonSerializerContext" /> type.</summary>
  1703. <typeparam name="TContext">The generic definition of the specified context type.</typeparam>
  1704. </member>
  1705. <member name="M:System.Text.Json.JsonSerializerOptions.GetConverter(System.Type)">
  1706. <summary>Returns the converter for the specified type.</summary>
  1707. <param name="typeToConvert">The type to return a converter for.</param>
  1708. <exception cref="T:System.InvalidOperationException">The configured <see cref="System.Text.Json.Serialization.JsonConverter" /> for <paramref name="typeToConvert" /> returned an invalid converter.</exception>
  1709. <exception cref="T:System.NotSupportedException">There is no compatible <see cref="System.Text.Json.Serialization.JsonConverter" /> for <paramref name="typeToConvert" /> or its serializable members.</exception>
  1710. <returns>The first converter that supports the given type, or <see langword="null" /> if there is no converter.</returns>
  1711. </member>
  1712. <member name="P:System.Text.Json.JsonSerializerOptions.AllowTrailingCommas">
  1713. <summary>Get or sets a value that indicates whether an extra comma at the end of a list of JSON values in an object or array is allowed (and ignored) within the JSON payload being deserialized.</summary>
  1714. <exception cref="T:System.InvalidOperationException">This property was set after serialization or deserialization has occurred.</exception>
  1715. <returns>
  1716. <see langword="true" /> if an extra comma at the end of a list of JSON values in an object or array is allowed (and ignored); <see langword="false" /> otherwise.</returns>
  1717. </member>
  1718. <member name="P:System.Text.Json.JsonSerializerOptions.Converters">
  1719. <summary>Gets the list of user-defined converters that were registered.</summary>
  1720. <returns>The list of custom converters.</returns>
  1721. </member>
  1722. <member name="P:System.Text.Json.JsonSerializerOptions.DefaultBufferSize">
  1723. <summary>Gets or sets the default buffer size, in bytes, to use when creating temporary buffers.</summary>
  1724. <exception cref="T:System.ArgumentException">The buffer size is less than 1.</exception>
  1725. <exception cref="T:System.InvalidOperationException">This property was set after serialization or deserialization has occurred.</exception>
  1726. <returns>The default buffer size in bytes.</returns>
  1727. </member>
  1728. <member name="P:System.Text.Json.JsonSerializerOptions.DefaultIgnoreCondition">
  1729. <summary>Specifies a condition to determine when properties with default values are ignored during serialization or deserialization.
  1730. The default value is <see cref="F:System.Text.Json.Serialization.JsonIgnoreCondition.Never" />.</summary>
  1731. <exception cref="T:System.ArgumentException">This property is set to <see cref="F:System.Text.Json.Serialization.JsonIgnoreCondition.Always" />.</exception>
  1732. <exception cref="T:System.InvalidOperationException">This property is set after serialization or deserialization has occurred.
  1733. -or-
  1734. <see cref="P:System.Text.Json.JsonSerializerOptions.IgnoreNullValues" /> has been set to <see langword="true" />. These properties cannot be used together.</exception>
  1735. </member>
  1736. <member name="P:System.Text.Json.JsonSerializerOptions.DictionaryKeyPolicy">
  1737. <summary>Gets or sets the policy used to convert a <see cref="T:System.Collections.IDictionary" /> key's name to another format, such as camel-casing.</summary>
  1738. <returns>The policy used to convert a <see cref="T:System.Collections.IDictionary" /> key's name to another format.</returns>
  1739. </member>
  1740. <member name="P:System.Text.Json.JsonSerializerOptions.Encoder">
  1741. <summary>Gets or sets the encoder to use when escaping strings, or <see langword="null" /> to use the default encoder.</summary>
  1742. <returns>The JavaScript character encoding.</returns>
  1743. </member>
  1744. <member name="P:System.Text.Json.JsonSerializerOptions.IgnoreNullValues">
  1745. <summary>Gets or sets a value that determines whether <see langword="null" /> values are ignored during serialization and deserialization. The default value is <see langword="false" />.</summary>
  1746. <exception cref="T:System.InvalidOperationException">This property was set after serialization or deserialization has occurred.
  1747. -or-
  1748. <see cref="P:System.Text.Json.JsonSerializerOptions.DefaultIgnoreCondition" /> has been set to a non-default value. These properties cannot be used together.</exception>
  1749. <returns>
  1750. <see langword="true" /> to ignore null values during serialization and deserialization; otherwise, <see langword="false" />.</returns>
  1751. </member>
  1752. <member name="P:System.Text.Json.JsonSerializerOptions.IgnoreReadOnlyFields">
  1753. <summary>Determines whether read-only fields are ignored during serialization. A field is read-only if it is marked with the <see langword="readonly" /> keyword. The default value is <see langword="false" />.</summary>
  1754. <exception cref="T:System.InvalidOperationException">This property is set after serialization or deserialization has occurred.</exception>
  1755. <returns>
  1756. <see langword="true" /> if read-only fields should be ignored during serialization; <see langword="false" /> otherwise.</returns>
  1757. </member>
  1758. <member name="P:System.Text.Json.JsonSerializerOptions.IgnoreReadOnlyProperties">
  1759. <summary>Gets a value that determines whether read-only properties are ignored during serialization. The default value is <see langword="false" />.</summary>
  1760. <exception cref="T:System.InvalidOperationException">This property was set after serialization or deserialization has occurred.</exception>
  1761. <returns>
  1762. <see langword="true" /> to ignore read-only properties during serialization; otherwise, <see langword="false" />.</returns>
  1763. </member>
  1764. <member name="P:System.Text.Json.JsonSerializerOptions.IncludeFields">
  1765. <summary>Determines whether fields are handled during serialization and deserialization.
  1766. The default value is <see langword="false" />.</summary>
  1767. <exception cref="T:System.InvalidOperationException">This property is set after serialization or deserialization has occurred.</exception>
  1768. </member>
  1769. <member name="P:System.Text.Json.JsonSerializerOptions.MaxDepth">
  1770. <summary>Gets or sets the maximum depth allowed when serializing or deserializing JSON, with the default value of 0 indicating a maximum depth of 64.</summary>
  1771. <exception cref="T:System.InvalidOperationException">This property was set after serialization or deserialization has occurred.</exception>
  1772. <exception cref="T:System.ArgumentOutOfRangeException">The max depth is set to a negative value.</exception>
  1773. <returns>The maximum depth allowed when serializing or deserializing JSON.</returns>
  1774. </member>
  1775. <member name="P:System.Text.Json.JsonSerializerOptions.NumberHandling">
  1776. <summary>Specifies how number types should be handled when serializing or deserializing.</summary>
  1777. <exception cref="T:System.InvalidOperationException">This property is set after serialization or deserialization has occurred.</exception>
  1778. </member>
  1779. <member name="P:System.Text.Json.JsonSerializerOptions.PropertyNameCaseInsensitive">
  1780. <summary>Gets or sets a value that determines whether a property's name uses a case-insensitive comparison during deserialization. The default value is <see langword="false" />.</summary>
  1781. <returns>
  1782. <see langword="true" /> to compare property names using case-insensitive comparison; otherwise, <see langword="false" />.</returns>
  1783. </member>
  1784. <member name="P:System.Text.Json.JsonSerializerOptions.PropertyNamingPolicy">
  1785. <summary>Gets or sets a value that specifies the policy used to convert a property's name on an object to another format, such as camel-casing, or <see langword="null" /> to leave property names unchanged.</summary>
  1786. <returns>A property naming policy, or <see langword="null" /> to leave property names unchanged.</returns>
  1787. </member>
  1788. <member name="P:System.Text.Json.JsonSerializerOptions.ReadCommentHandling">
  1789. <summary>Gets or sets a value that defines how comments are handled during deserialization.</summary>
  1790. <exception cref="T:System.InvalidOperationException">This property was set after serialization or deserialization has occurred.</exception>
  1791. <exception cref="T:System.ArgumentOutOfRangeException">The comment handling enum is set to a value that is not supported (or not within the <see cref="T:System.Text.Json.JsonCommentHandling" /> enum range).</exception>
  1792. <returns>A value that indicates whether comments are allowed, disallowed, or skipped.</returns>
  1793. </member>
  1794. <member name="P:System.Text.Json.JsonSerializerOptions.ReferenceHandler">
  1795. <summary>Configures how object references are handled when reading and writing JSON.</summary>
  1796. </member>
  1797. <member name="P:System.Text.Json.JsonSerializerOptions.UnknownTypeHandling">
  1798. <summary>Defines how deserializing a type declared as an <see cref="T:System.Object" /> is handled during deserialization.</summary>
  1799. </member>
  1800. <member name="P:System.Text.Json.JsonSerializerOptions.WriteIndented">
  1801. <summary>Gets or sets a value that defines whether JSON should use pretty printing. By default, JSON is serialized without any extra white space.</summary>
  1802. <exception cref="T:System.InvalidOperationException">This property was set after serialization or deserialization has occurred.</exception>
  1803. <returns>
  1804. <see langword="true" /> if JSON should pretty print on serialization; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
  1805. </member>
  1806. <member name="T:System.Text.Json.JsonTokenType">
  1807. <summary>Defines the various JSON tokens that make up a JSON text.</summary>
  1808. </member>
  1809. <member name="F:System.Text.Json.JsonTokenType.Comment">
  1810. <summary>The token type is a comment string.</summary>
  1811. </member>
  1812. <member name="F:System.Text.Json.JsonTokenType.EndArray">
  1813. <summary>The token type is the end of a JSON array.</summary>
  1814. </member>
  1815. <member name="F:System.Text.Json.JsonTokenType.EndObject">
  1816. <summary>The token type is the end of a JSON object.</summary>
  1817. </member>
  1818. <member name="F:System.Text.Json.JsonTokenType.False">
  1819. <summary>The token type is the JSON literal false.</summary>
  1820. </member>
  1821. <member name="F:System.Text.Json.JsonTokenType.None">
  1822. <summary>There is no value (as distinct from <see cref="F:System.Text.Json.JsonTokenType.Null" />). This is the default token type if no data has been read by the <see cref="T:System.Text.Json.Utf8JsonReader" />.</summary>
  1823. </member>
  1824. <member name="F:System.Text.Json.JsonTokenType.Null">
  1825. <summary>The token type is the JSON literal null.</summary>
  1826. </member>
  1827. <member name="F:System.Text.Json.JsonTokenType.Number">
  1828. <summary>The token type is a JSON number.</summary>
  1829. </member>
  1830. <member name="F:System.Text.Json.JsonTokenType.PropertyName">
  1831. <summary>The token type is a JSON property name.</summary>
  1832. </member>
  1833. <member name="F:System.Text.Json.JsonTokenType.StartArray">
  1834. <summary>The token type is the start of a JSON array.</summary>
  1835. </member>
  1836. <member name="F:System.Text.Json.JsonTokenType.StartObject">
  1837. <summary>The token type is the start of a JSON object.</summary>
  1838. </member>
  1839. <member name="F:System.Text.Json.JsonTokenType.String">
  1840. <summary>The token type is a JSON string.</summary>
  1841. </member>
  1842. <member name="F:System.Text.Json.JsonTokenType.True">
  1843. <summary>The token type is the JSON literal true.</summary>
  1844. </member>
  1845. <member name="T:System.Text.Json.JsonValueKind">
  1846. <summary>Specifies the data type of a JSON value.</summary>
  1847. </member>
  1848. <member name="F:System.Text.Json.JsonValueKind.Array">
  1849. <summary>A JSON array.</summary>
  1850. </member>
  1851. <member name="F:System.Text.Json.JsonValueKind.False">
  1852. <summary>The JSON value false.</summary>
  1853. </member>
  1854. <member name="F:System.Text.Json.JsonValueKind.Null">
  1855. <summary>The JSON value null.</summary>
  1856. </member>
  1857. <member name="F:System.Text.Json.JsonValueKind.Number">
  1858. <summary>A JSON number.</summary>
  1859. </member>
  1860. <member name="F:System.Text.Json.JsonValueKind.Object">
  1861. <summary>A JSON object.</summary>
  1862. </member>
  1863. <member name="F:System.Text.Json.JsonValueKind.String">
  1864. <summary>A JSON string.</summary>
  1865. </member>
  1866. <member name="F:System.Text.Json.JsonValueKind.True">
  1867. <summary>The JSON value true.</summary>
  1868. </member>
  1869. <member name="F:System.Text.Json.JsonValueKind.Undefined">
  1870. <summary>There is no value (as distinct from <see cref="F:System.Text.Json.JsonValueKind.Null" />).</summary>
  1871. </member>
  1872. <member name="T:System.Text.Json.JsonWriterOptions">
  1873. <summary>Allows the user to define custom behavior when writing JSON using the <see cref="T:System.Text.Json.Utf8JsonWriter" />.</summary>
  1874. </member>
  1875. <member name="P:System.Text.Json.JsonWriterOptions.Encoder">
  1876. <summary>Gets or sets the encoder to use when escaping strings, or <see langword="null" /> to use the default encoder.</summary>
  1877. <returns>The JavaScript character encoder used to override the escaping behavior.</returns>
  1878. </member>
  1879. <member name="P:System.Text.Json.JsonWriterOptions.Indented">
  1880. <summary>Gets or sets a value that indicates whether the <see cref="T:System.Text.Json.Utf8JsonWriter" /> should format the JSON output, which includes indenting nested JSON tokens, adding new lines, and adding white space between property names and values.</summary>
  1881. <returns>
  1882. <see langword="true" /> to format the JSON output; <see langword="false" /> to write without any extra white space. The default is <see langword="false" />.</returns>
  1883. </member>
  1884. <member name="P:System.Text.Json.JsonWriterOptions.SkipValidation">
  1885. <summary>Gets or sets a value that indicates whether the <see cref="T:System.Text.Json.Utf8JsonWriter" /> should skip structural validation and allow the user to write invalid JSON.</summary>
  1886. <returns>
  1887. <see langword="true" /> to skip structural validation and allow invalid JSON; <see langword="false" /> to throw an <see cref="T:System.InvalidOperationException" /> on any attempt to write invalid JSON.</returns>
  1888. </member>
  1889. <member name="T:System.Text.Json.Nodes.JsonArray">
  1890. <summary>Represents a mutable JSON array.</summary>
  1891. </member>
  1892. <member name="M:System.Text.Json.Nodes.JsonArray.#ctor(System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  1893. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonArray" /> class that is empty.</summary>
  1894. <param name="options">Options to control the behavior.</param>
  1895. </member>
  1896. <member name="M:System.Text.Json.Nodes.JsonArray.#ctor(System.Text.Json.Nodes.JsonNode[])">
  1897. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonArray" /> class that contains items from the specified array.</summary>
  1898. <param name="items">The items to add to the new <see cref="T:System.Text.Json.Nodes.JsonArray" />.</param>
  1899. </member>
  1900. <member name="M:System.Text.Json.Nodes.JsonArray.#ctor(System.Text.Json.Nodes.JsonNodeOptions,System.Text.Json.Nodes.JsonNode[])">
  1901. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonArray" /> class that contains items from the specified params array.</summary>
  1902. <param name="options">Options to control the behavior.</param>
  1903. <param name="items">The items to add to the new <see cref="T:System.Text.Json.Nodes.JsonArray" />.</param>
  1904. </member>
  1905. <member name="M:System.Text.Json.Nodes.JsonArray.Add(System.Text.Json.Nodes.JsonNode)">
  1906. <summary>Adds a <see cref="T:System.Text.Json.Nodes.JsonNode" /> to the end of the <see cref="T:System.Text.Json.Nodes.JsonArray" />.</summary>
  1907. <param name="item">The <see cref="T:System.Text.Json.Nodes.JsonNode" /> to be added to the end of the <see cref="T:System.Text.Json.Nodes.JsonArray" />.</param>
  1908. </member>
  1909. <member name="M:System.Text.Json.Nodes.JsonArray.Add``1(``0)">
  1910. <summary>Adds an object to the end of the <see cref="T:System.Text.Json.Nodes.JsonArray" />.</summary>
  1911. <param name="value">The object to be added to the end of the <see cref="T:System.Text.Json.Nodes.JsonArray" />.</param>
  1912. <typeparam name="T">The type of object to be added.</typeparam>
  1913. </member>
  1914. <member name="M:System.Text.Json.Nodes.JsonArray.Clear">
  1915. <summary>Removes all elements from the <see cref="T:System.Text.Json.Nodes.JsonArray" />.</summary>
  1916. </member>
  1917. <member name="M:System.Text.Json.Nodes.JsonArray.Contains(System.Text.Json.Nodes.JsonNode)">
  1918. <summary>Determines whether an element is in the <see cref="T:System.Text.Json.Nodes.JsonArray" />.</summary>
  1919. <param name="item">The object to locate in the <see cref="T:System.Text.Json.Nodes.JsonArray" />.</param>
  1920. <returns>
  1921. <see langword="true" /> if <paramref name="item" /> is found in the <see cref="T:System.Text.Json.Nodes.JsonArray" />; otherwise, <see langword="false" />.</returns>
  1922. </member>
  1923. <member name="M:System.Text.Json.Nodes.JsonArray.Create(System.Text.Json.JsonElement,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  1924. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonArray" /> class that contains items from the specified <see cref="T:System.Text.Json.JsonElement" />.</summary>
  1925. <param name="element">The <see cref="T:System.Text.Json.JsonElement" />.</param>
  1926. <param name="options">Options to control the behavior.</param>
  1927. <exception cref="T:System.InvalidOperationException">The <paramref name="element" /> is not a <see cref="F:System.Text.Json.JsonValueKind.Array" />.</exception>
  1928. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonArray" /> class that contains items from the specified <see cref="T:System.Text.Json.JsonElement" />.</returns>
  1929. </member>
  1930. <member name="M:System.Text.Json.Nodes.JsonArray.GetEnumerator">
  1931. <summary>Returns an enumerator that iterates through the <see cref="T:System.Text.Json.Nodes.JsonArray" />.</summary>
  1932. <returns>A <see cref="T:System.Collections.Generic.IEnumerator`1" /> for the <see cref="T:System.Text.Json.Nodes.JsonNode" />.</returns>
  1933. </member>
  1934. <member name="M:System.Text.Json.Nodes.JsonArray.IndexOf(System.Text.Json.Nodes.JsonNode)">
  1935. <summary>The object to locate in the <see cref="T:System.Text.Json.Nodes.JsonArray" />.</summary>
  1936. <param name="item">The <see cref="T:System.Text.Json.Nodes.JsonNode" /> to locate in the <see cref="T:System.Text.Json.Nodes.JsonArray" />.</param>
  1937. <returns>The index of item if found in the list; otherwise, -1.</returns>
  1938. </member>
  1939. <member name="M:System.Text.Json.Nodes.JsonArray.Insert(System.Int32,System.Text.Json.Nodes.JsonNode)">
  1940. <summary>Inserts an element into the <see cref="T:System.Text.Json.Nodes.JsonArray" /> at the specified index.</summary>
  1941. <param name="index">The zero-based index at which <paramref name="item" /> should be inserted.</param>
  1942. <param name="item">The <see cref="T:System.Text.Json.Nodes.JsonNode" /> to insert.</param>
  1943. <exception cref="T:System.ArgumentOutOfRangeException">
  1944. <paramref name="index" /> is less than 0 or <paramref name="index" /> is greater than <see cref="P:System.Text.Json.Nodes.JsonArray.Count" />.</exception>
  1945. </member>
  1946. <member name="M:System.Text.Json.Nodes.JsonArray.Remove(System.Text.Json.Nodes.JsonNode)">
  1947. <summary>Removes the first occurrence of a specific <see cref="T:System.Text.Json.Nodes.JsonNode" /> from the <see cref="T:System.Text.Json.Nodes.JsonArray" />.</summary>
  1948. <param name="item">The <see cref="T:System.Text.Json.Nodes.JsonNode" /> to remove from the <see cref="T:System.Text.Json.Nodes.JsonArray" />.</param>
  1949. <returns>
  1950. <see langword="true" /> if <paramref name="item" /> is successfully removed; otherwise, <see langword="false" />.</returns>
  1951. </member>
  1952. <member name="M:System.Text.Json.Nodes.JsonArray.RemoveAt(System.Int32)">
  1953. <summary>Removes the element at the specified index of the <see cref="T:System.Text.Json.Nodes.JsonArray" />.</summary>
  1954. <param name="index">The zero-based index of the element to remove.</param>
  1955. <exception cref="T:System.ArgumentOutOfRangeException">
  1956. <paramref name="index" /> is less than 0 or <paramref name="index" /> is greater than <see cref="P:System.Text.Json.Nodes.JsonArray.Count" />.</exception>
  1957. </member>
  1958. <member name="M:System.Text.Json.Nodes.JsonArray.System#Collections#Generic#ICollection{System#Text#Json#Nodes#JsonNode}#CopyTo(System.Text.Json.Nodes.JsonNode[],System.Int32)">
  1959. <summary>Copies the entire <see cref="T:System.Array" /> to a compatible one-dimensional array, starting at the specified index of the target array.</summary>
  1960. <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Text.Json.Nodes.JsonArray" />. The Array must have zero-based indexing.</param>
  1961. <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
  1962. <exception cref="T:System.ArgumentNullException">
  1963. <paramref name="array" /> is <see langword="null" />.</exception>
  1964. <exception cref="T:System.ArgumentOutOfRangeException">
  1965. <paramref name="index" /> is less than 0.</exception>
  1966. <exception cref="T:System.ArgumentException">The number of elements in the source ICollection is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.</exception>
  1967. </member>
  1968. <member name="M:System.Text.Json.Nodes.JsonArray.System#Collections#IEnumerable#GetEnumerator">
  1969. <summary>Returns an enumerator that iterates through the <see cref="T:System.Text.Json.Nodes.JsonArray" />.</summary>
  1970. <returns>A <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Text.Json.Nodes.JsonArray" />.</returns>
  1971. </member>
  1972. <member name="M:System.Text.Json.Nodes.JsonArray.WriteTo(System.Text.Json.Utf8JsonWriter,System.Text.Json.JsonSerializerOptions)">
  1973. <summary>Writes the <see cref="T:System.Text.Json.Nodes.JsonNode" /> into the provided <see cref="T:System.Text.Json.Utf8JsonWriter" /> as JSON.</summary>
  1974. <param name="writer">The <see cref="T:System.Text.Json.Utf8JsonWriter" />.</param>
  1975. <param name="options">Options to control the serialization behavior.</param>
  1976. <exception cref="T:System.ArgumentNullException">The <paramref name="writer" /> parameter is <see langword="null" />.</exception>
  1977. </member>
  1978. <member name="P:System.Text.Json.Nodes.JsonArray.Count">
  1979. <summary>Gets the number of elements contained in the <see cref="T:System.Text.Json.Nodes.JsonArray" />.</summary>
  1980. </member>
  1981. <member name="P:System.Text.Json.Nodes.JsonArray.System#Collections#Generic#ICollection{System#Text#Json#Nodes#JsonNode}#IsReadOnly">
  1982. <summary>Returns <see langword="false" />.</summary>
  1983. </member>
  1984. <member name="T:System.Text.Json.Nodes.JsonNode">
  1985. <summary>The base class that represents a single node within a mutable JSON document.</summary>
  1986. </member>
  1987. <member name="M:System.Text.Json.Nodes.JsonNode.AsArray">
  1988. <summary>Casts to the derived <see cref="T:System.Text.Json.Nodes.JsonArray" /> type.</summary>
  1989. <exception cref="T:System.InvalidOperationException">The node is not a <see cref="T:System.Text.Json.Nodes.JsonArray" />.</exception>
  1990. <returns>A <see cref="T:System.Text.Json.Nodes.JsonArray" />.</returns>
  1991. </member>
  1992. <member name="M:System.Text.Json.Nodes.JsonNode.AsObject">
  1993. <summary>Casts to the derived <see cref="T:System.Text.Json.Nodes.JsonObject" /> type.</summary>
  1994. <exception cref="T:System.InvalidOperationException">The node is not a <see cref="T:System.Text.Json.Nodes.JsonObject" />.</exception>
  1995. <returns>A <see cref="T:System.Text.Json.Nodes.JsonObject" />.</returns>
  1996. </member>
  1997. <member name="M:System.Text.Json.Nodes.JsonNode.AsValue">
  1998. <summary>Casts to the derived <see cref="T:System.Text.Json.Nodes.JsonValue" /> type.</summary>
  1999. <exception cref="T:System.InvalidOperationException">The node is not a <see cref="T:System.Text.Json.Nodes.JsonValue" />.</exception>
  2000. <returns>A <see cref="T:System.Text.Json.Nodes.JsonValue" />.</returns>
  2001. </member>
  2002. <member name="M:System.Text.Json.Nodes.JsonNode.GetPath">
  2003. <summary>Gets the JSON path.</summary>
  2004. <returns>The JSON Path value.</returns>
  2005. </member>
  2006. <member name="M:System.Text.Json.Nodes.JsonNode.GetValue``1">
  2007. <summary>Gets the value for the current <see cref="T:System.Text.Json.Nodes.JsonValue" />.</summary>
  2008. <typeparam name="T">The type of the value to obtain from the <see cref="T:System.Text.Json.Nodes.JsonValue" />.</typeparam>
  2009. <exception cref="T:System.FormatException">The current <see cref="T:System.Text.Json.Nodes.JsonNode" /> cannot be represented as a {TValue}.</exception>
  2010. <exception cref="T:System.InvalidOperationException">The current <see cref="T:System.Text.Json.Nodes.JsonNode" /> is not a <see cref="T:System.Text.Json.Nodes.JsonValue" /> or is not compatible with {TValue}.</exception>
  2011. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</returns>
  2012. </member>
  2013. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Boolean">
  2014. <summary>Defines an explicit conversion of a given <see cref="T:System.Boolean" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2015. <param name="value">A <see cref="T:System.Boolean" /> to implicitly convert.</param>
  2016. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2017. </member>
  2018. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Byte">
  2019. <summary>Defines an explicit conversion of a given <see cref="T:System.Byte" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2020. <param name="value">A <see cref="T:System.Byte" /> to implicitly convert.</param>
  2021. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2022. </member>
  2023. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Char">
  2024. <summary>Defines an explicit conversion of a given <see cref="T:System.Char" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2025. <param name="value">A <see cref="T:System.Char" /> to implicitly convert.</param>
  2026. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2027. </member>
  2028. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.DateTime">
  2029. <summary>Defines an explicit conversion of a given <see cref="T:System.DateTime" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2030. <param name="value">A <see cref="T:System.DateTime" /> to implicitly convert.</param>
  2031. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2032. </member>
  2033. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.DateTimeOffset">
  2034. <summary>Defines an explicit conversion of a given <see cref="T:System.DateTimeOffset" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2035. <param name="value">A <see cref="T:System.DateTimeOffset" /> to implicitly convert.</param>
  2036. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2037. </member>
  2038. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Decimal">
  2039. <summary>Defines an explicit conversion of a given <see cref="T:System.Decimal" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2040. <param name="value">A <see cref="T:System.Decimal" /> to implicitly convert.</param>
  2041. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2042. </member>
  2043. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Double">
  2044. <summary>Defines an explicit conversion of a given <see cref="T:System.Double" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2045. <param name="value">A <see cref="T:System.Double" /> to implicitly convert.</param>
  2046. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2047. </member>
  2048. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Guid">
  2049. <summary>Defines an explicit conversion of a given <see cref="T:System.Guid" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2050. <param name="value">A <see cref="T:System.Guid" /> to implicitly convert.</param>
  2051. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2052. </member>
  2053. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Int16">
  2054. <summary>Defines an explicit conversion of a given <see cref="T:System.Int16" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2055. <param name="value">A <see cref="T:System.Int16" /> to implicitly convert.</param>
  2056. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2057. </member>
  2058. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Int32">
  2059. <summary>Defines an explicit conversion of a given <see cref="T:System.Int32" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2060. <param name="value">A <see cref="T:System.Int32" /> to implicitly convert.</param>
  2061. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2062. </member>
  2063. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Int64">
  2064. <summary>Defines an explicit conversion of a given <see cref="T:System.Int64" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2065. <param name="value">A <see cref="T:System.Int64" /> to implicitly convert.</param>
  2066. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2067. </member>
  2068. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Nullable{System.Boolean}">
  2069. <summary>Defines an explicit conversion of a given <see cref="T:System.Boolean" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2070. <param name="value">A <see cref="T:System.Boolean" /> to implicitly convert.</param>
  2071. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2072. </member>
  2073. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Nullable{System.Byte}">
  2074. <summary>Defines an explicit conversion of a given <see cref="T:System.Byte" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2075. <param name="value">A <see cref="T:System.Byte" /> to implicitly convert.</param>
  2076. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2077. </member>
  2078. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Nullable{System.Char}">
  2079. <summary>Defines an explicit conversion of a given <see cref="T:System.Char" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2080. <param name="value">A <see cref="T:System.Char" /> to implicitly convert.</param>
  2081. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2082. </member>
  2083. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Nullable{System.DateTime}">
  2084. <summary>Defines an explicit conversion of a given <see cref="T:System.DateTime" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2085. <param name="value">A <see cref="T:System.DateTime" /> to implicitly convert.</param>
  2086. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2087. </member>
  2088. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Nullable{System.DateTimeOffset}">
  2089. <summary>Defines an explicit conversion of a given <see cref="T:System.DateTimeOffset" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2090. <param name="value">A <see cref="T:System.DateTimeOffset" /> to implicitly convert.</param>
  2091. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2092. </member>
  2093. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Nullable{System.Decimal}">
  2094. <summary>Defines an explicit conversion of a given <see cref="T:System.Decimal" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2095. <param name="value">A <see cref="T:System.Decimal" /> to implicitly convert.</param>
  2096. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2097. </member>
  2098. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Nullable{System.Double}">
  2099. <summary>Defines an explicit conversion of a given <see cref="T:System.Double" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2100. <param name="value">A <see cref="T:System.Double" /> to implicitly convert.</param>
  2101. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2102. </member>
  2103. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Nullable{System.Guid}">
  2104. <summary>Defines an explicit conversion of a given <see cref="T:System.Guid" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2105. <param name="value">A <see cref="T:System.Guid" /> to implicitly convert.</param>
  2106. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2107. </member>
  2108. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Nullable{System.Int16}">
  2109. <summary>Defines an explicit conversion of a given <see cref="T:System.Int16" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2110. <param name="value">A <see cref="T:System.Int16" /> to implicitly convert.</param>
  2111. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2112. </member>
  2113. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Nullable{System.Int32}">
  2114. <summary>Defines an explicit conversion of a given <see cref="T:System.Int32" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2115. <param name="value">A <see cref="T:System.Int32" /> to implicitly convert.</param>
  2116. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2117. </member>
  2118. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Nullable{System.Int64}">
  2119. <summary>Defines an explicit conversion of a given <see cref="T:System.Int64" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2120. <param name="value">A <see cref="T:System.Int64" /> to implicitly convert.</param>
  2121. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2122. </member>
  2123. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Nullable{System.SByte}">
  2124. <summary>Defines an explicit conversion of a given <see cref="T:System.SByte" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2125. <param name="value">A <see cref="T:System.SByte" /> to implicitly convert.</param>
  2126. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2127. </member>
  2128. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Nullable{System.Single}">
  2129. <summary>Defines an explicit conversion of a given <see cref="T:System.Single" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2130. <param name="value">A <see cref="T:System.Single" /> to implicitly convert.</param>
  2131. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2132. </member>
  2133. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Nullable{System.UInt16}">
  2134. <summary>Defines an explicit conversion of a given <see cref="T:System.UInt16" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2135. <param name="value">A <see cref="T:System.UInt16" /> to implicitly convert.</param>
  2136. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2137. </member>
  2138. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Nullable{System.UInt32}">
  2139. <summary>Defines an explicit conversion of a given <see cref="T:System.UInt32" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2140. <param name="value">A <see cref="T:System.UInt32" /> to implicitly convert.</param>
  2141. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2142. </member>
  2143. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Nullable{System.UInt64}">
  2144. <summary>Defines an explicit conversion of a given <see cref="T:System.UInt64" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2145. <param name="value">A <see cref="T:System.UInt64" /> to implicitly convert.</param>
  2146. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2147. </member>
  2148. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.SByte">
  2149. <summary>Defines an explicit conversion of a given <see cref="T:System.SByte" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2150. <param name="value">A <see cref="T:System.SByte" /> to implicitly convert.</param>
  2151. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2152. </member>
  2153. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.Single">
  2154. <summary>Defines an explicit conversion of a given <see cref="T:System.Single" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2155. <param name="value">A <see cref="T:System.Single" /> to implicitly convert.</param>
  2156. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2157. </member>
  2158. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.String">
  2159. <summary>Defines an explicit conversion of a given <see cref="T:System.String" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2160. <param name="value">A <see cref="T:System.String" /> to implicitly convert.</param>
  2161. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2162. </member>
  2163. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.UInt16">
  2164. <summary>Defines an explicit conversion of a given <see cref="T:System.UInt16" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2165. <param name="value">A <see cref="T:System.UInt16" /> to implicitly convert.</param>
  2166. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2167. </member>
  2168. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.UInt32">
  2169. <summary>Defines an explicit conversion of a given <see cref="T:System.UInt32" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2170. <param name="value">A <see cref="T:System.UInt32" /> to implicitly convert.</param>
  2171. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2172. </member>
  2173. <member name="M:System.Text.Json.Nodes.JsonNode.op_Explicit(System.Text.Json.Nodes.JsonNode)~System.UInt64">
  2174. <summary>Defines an explicit conversion of a given <see cref="T:System.UInt64" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2175. <param name="value">A <see cref="T:System.UInt64" /> to implicitly convert.</param>
  2176. <returns>A value converted from the <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance.</returns>
  2177. </member>
  2178. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Boolean)~System.Text.Json.Nodes.JsonNode">
  2179. <summary>Defines an implicit conversion of a given <see cref="T:System.Boolean" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2180. <param name="value">A <see cref="T:System.Boolean" /> to implicitly convert.</param>
  2181. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2182. </member>
  2183. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Byte)~System.Text.Json.Nodes.JsonNode">
  2184. <summary>Defines an implicit conversion of a given <see cref="T:System.Byte" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2185. <param name="value">A <see cref="T:System.Byte" /> to implicitly convert.</param>
  2186. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2187. </member>
  2188. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Char)~System.Text.Json.Nodes.JsonNode">
  2189. <summary>Defines an implicit conversion of a given <see cref="T:System.Char" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2190. <param name="value">A <see cref="T:System.Char" /> to implicitly convert.</param>
  2191. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2192. </member>
  2193. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.DateTime)~System.Text.Json.Nodes.JsonNode">
  2194. <summary>Defines an implicit conversion of a given <see cref="T:System.DateTime" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2195. <param name="value">A <see cref="T:System.DateTime" /> to implicitly convert.</param>
  2196. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2197. </member>
  2198. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.DateTimeOffset)~System.Text.Json.Nodes.JsonNode">
  2199. <summary>Defines an implicit conversion of a given <see cref="T:System.DateTimeOffset" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2200. <param name="value">A <see cref="T:System.DateTimeOffset" /> to implicitly convert.</param>
  2201. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2202. </member>
  2203. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Decimal)~System.Text.Json.Nodes.JsonNode">
  2204. <summary>Defines an implicit conversion of a given <see cref="T:System.Decimal" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2205. <param name="value">A <see cref="T:System.Decimal" /> to implicitly convert.</param>
  2206. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2207. </member>
  2208. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Double)~System.Text.Json.Nodes.JsonNode">
  2209. <summary>Defines an implicit conversion of a given <see cref="T:System.Double" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2210. <param name="value">A <see cref="T:System.Double" /> to implicitly convert.</param>
  2211. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2212. </member>
  2213. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Guid)~System.Text.Json.Nodes.JsonNode">
  2214. <summary>Defines an implicit conversion of a given <see cref="T:System.Guid" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2215. <param name="value">A <see cref="T:System.Guid" /> to implicitly convert.</param>
  2216. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2217. </member>
  2218. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Int16)~System.Text.Json.Nodes.JsonNode">
  2219. <summary>Defines an implicit conversion of a given <see cref="T:System.Int16" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2220. <param name="value">A <see cref="T:System.Int16" /> to implicitly convert.</param>
  2221. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2222. </member>
  2223. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Int32)~System.Text.Json.Nodes.JsonNode">
  2224. <summary>Defines an implicit conversion of a given <see cref="T:System.Int32" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2225. <param name="value">A <see cref="T:System.Int32" /> to implicitly convert.</param>
  2226. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2227. </member>
  2228. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Int64)~System.Text.Json.Nodes.JsonNode">
  2229. <summary>Defines an implicit conversion of a given <see cref="T:System.Int64" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2230. <param name="value">A <see cref="T:System.Int64" /> to implicitly convert.</param>
  2231. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2232. </member>
  2233. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Nullable{System.Boolean})~System.Text.Json.Nodes.JsonNode">
  2234. <summary>Defines an implicit conversion of a given <see cref="T:System.Boolean" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2235. <param name="value">A <see cref="T:System.Boolean" /> to implicitly convert.</param>
  2236. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2237. </member>
  2238. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Nullable{System.Byte})~System.Text.Json.Nodes.JsonNode">
  2239. <summary>Defines an implicit conversion of a given <see cref="T:System.Byte" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2240. <param name="value">A <see cref="T:System.Byte" /> to implicitly convert.</param>
  2241. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2242. </member>
  2243. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Nullable{System.Char})~System.Text.Json.Nodes.JsonNode">
  2244. <summary>Defines an implicit conversion of a given <see cref="T:System.Char" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2245. <param name="value">A <see cref="T:System.Char" /> to implicitly convert.</param>
  2246. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2247. </member>
  2248. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Nullable{System.DateTime})~System.Text.Json.Nodes.JsonNode">
  2249. <summary>Defines an implicit conversion of a given <see cref="T:System.DateTime" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2250. <param name="value">A <see cref="T:System.DateTime" /> to implicitly convert.</param>
  2251. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2252. </member>
  2253. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Nullable{System.DateTimeOffset})~System.Text.Json.Nodes.JsonNode">
  2254. <summary>Defines an implicit conversion of a given <see cref="T:System.DateTimeOffset" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2255. <param name="value">A <see cref="T:System.DateTimeOffset" /> to implicitly convert.</param>
  2256. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2257. </member>
  2258. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Nullable{System.Decimal})~System.Text.Json.Nodes.JsonNode">
  2259. <summary>Defines an implicit conversion of a given <see cref="T:System.Decimal" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2260. <param name="value">A <see cref="T:System.Decimal" /> to implicitly convert.</param>
  2261. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2262. </member>
  2263. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Nullable{System.Double})~System.Text.Json.Nodes.JsonNode">
  2264. <summary>Defines an implicit conversion of a given <see cref="T:System.Double" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2265. <param name="value">A <see cref="T:System.Double" /> to implicitly convert.</param>
  2266. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2267. </member>
  2268. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Nullable{System.Guid})~System.Text.Json.Nodes.JsonNode">
  2269. <summary>Defines an implicit conversion of a given <see cref="T:System.Guid" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2270. <param name="value">A <see cref="T:System.Guid" /> to implicitly convert.</param>
  2271. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2272. </member>
  2273. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Nullable{System.Int16})~System.Text.Json.Nodes.JsonNode">
  2274. <summary>Defines an implicit conversion of a given <see cref="T:System.Int16" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2275. <param name="value">A <see cref="T:System.Int16" /> to implicitly convert.</param>
  2276. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2277. </member>
  2278. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Nullable{System.Int32})~System.Text.Json.Nodes.JsonNode">
  2279. <summary>Defines an implicit conversion of a given <see cref="T:System.Int32" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2280. <param name="value">A <see cref="T:System.Int32" /> to implicitly convert.</param>
  2281. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2282. </member>
  2283. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Nullable{System.Int64})~System.Text.Json.Nodes.JsonNode">
  2284. <summary>Defines an implicit conversion of a given <see cref="T:System.Int64" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2285. <param name="value">A <see cref="T:System.Int64" /> to implicitly convert.</param>
  2286. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2287. </member>
  2288. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Nullable{System.SByte})~System.Text.Json.Nodes.JsonNode">
  2289. <summary>Defines an implicit conversion of a given <see cref="T:System.SByte" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2290. <param name="value">A <see cref="T:System.SByte" /> to implicitly convert.</param>
  2291. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2292. </member>
  2293. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Nullable{System.Single})~System.Text.Json.Nodes.JsonNode">
  2294. <summary>Defines an implicit conversion of a given <see cref="T:System.Single" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2295. <param name="value">A <see cref="T:System.Single" /> to implicitly convert.</param>
  2296. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2297. </member>
  2298. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Nullable{System.UInt16})~System.Text.Json.Nodes.JsonNode">
  2299. <summary>Defines an implicit conversion of a given <see cref="T:System.UInt16" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2300. <param name="value">A <see cref="T:System.UInt16" /> to implicitly convert.</param>
  2301. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2302. </member>
  2303. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Nullable{System.UInt32})~System.Text.Json.Nodes.JsonNode">
  2304. <summary>Defines an implicit conversion of a given <see cref="T:System.UInt32" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2305. <param name="value">A <see cref="T:System.UInt32" /> to implicitly convert.</param>
  2306. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2307. </member>
  2308. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Nullable{System.UInt64})~System.Text.Json.Nodes.JsonNode">
  2309. <summary>Defines an implicit conversion of a given <see cref="T:System.UInt64" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2310. <param name="value">A <see cref="T:System.UInt64" /> to implicitly convert.</param>
  2311. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2312. </member>
  2313. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.SByte)~System.Text.Json.Nodes.JsonNode">
  2314. <summary>Defines an implicit conversion of a given <see cref="T:System.SByte" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2315. <param name="value">A <see cref="T:System.SByte" /> to implicitly convert.</param>
  2316. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2317. </member>
  2318. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.Single)~System.Text.Json.Nodes.JsonNode">
  2319. <summary>Defines an implicit conversion of a given <see cref="T:System.Single" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2320. <param name="value">A <see cref="T:System.Single" /> to implicitly convert.</param>
  2321. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2322. </member>
  2323. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.String)~System.Text.Json.Nodes.JsonNode">
  2324. <summary>Defines an implicit conversion of a given <see cref="T:System.String" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2325. <param name="value">A <see cref="T:System.String" /> to implicitly convert.</param>
  2326. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2327. </member>
  2328. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.UInt16)~System.Text.Json.Nodes.JsonNode">
  2329. <summary>Defines an implicit conversion of a given <see cref="T:System.UInt16" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2330. <param name="value">A <see cref="T:System.UInt16" /> to implicitly convert.</param>
  2331. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2332. </member>
  2333. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.UInt32)~System.Text.Json.Nodes.JsonNode">
  2334. <summary>Defines an implicit conversion of a given <see cref="T:System.UInt32" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2335. <param name="value">A <see cref="T:System.UInt32" /> to implicitly convert.</param>
  2336. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2337. </member>
  2338. <member name="M:System.Text.Json.Nodes.JsonNode.op_Implicit(System.UInt64)~System.Text.Json.Nodes.JsonNode">
  2339. <summary>Defines an implicit conversion of a given <see cref="T:System.UInt64" /> to a <see cref="T:System.Text.Json.Nodes.JsonNode" />.</summary>
  2340. <param name="value">A <see cref="T:System.UInt64" /> to implicitly convert.</param>
  2341. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> instance converted from the <paramref name="value" /> parameter.</returns>
  2342. </member>
  2343. <member name="M:System.Text.Json.Nodes.JsonNode.Parse(System.IO.Stream,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions},System.Text.Json.JsonDocumentOptions)">
  2344. <summary>Parse a <see cref="T:System.IO.Stream" /> as UTF-8-encoded data representing a single JSON value into a <see cref="T:System.Text.Json.Nodes.JsonNode" />. The Stream will be read to completion.</summary>
  2345. <param name="utf8Json">JSON text to parse.</param>
  2346. <param name="nodeOptions">Options to control the node behavior after parsing.</param>
  2347. <param name="documentOptions">Options to control the document behavior during parsing.</param>
  2348. <exception cref="T:System.Text.Json.JsonException">
  2349. <paramref name="utf8Json" /> does not represent a valid single JSON value.</exception>
  2350. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> representation of the JSON value.</returns>
  2351. </member>
  2352. <member name="M:System.Text.Json.Nodes.JsonNode.Parse(System.ReadOnlySpan{System.Byte},System.Nullable{System.Text.Json.Nodes.JsonNodeOptions},System.Text.Json.JsonDocumentOptions)">
  2353. <summary>Parses text representing a single JSON value.</summary>
  2354. <param name="utf8Json">JSON text to parse.</param>
  2355. <param name="nodeOptions">Options to control the node behavior after parsing.</param>
  2356. <param name="documentOptions">Options to control the document behavior during parsing.</param>
  2357. <exception cref="T:System.Text.Json.JsonException">
  2358. <paramref name="utf8Json" /> does not represent a valid single JSON value.</exception>
  2359. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> representation of the JSON value.</returns>
  2360. </member>
  2361. <member name="M:System.Text.Json.Nodes.JsonNode.Parse(System.String,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions},System.Text.Json.JsonDocumentOptions)">
  2362. <summary>Parses text representing a single JSON value.</summary>
  2363. <param name="json">JSON text to parse.</param>
  2364. <param name="nodeOptions">Options to control the node behavior after parsing.</param>
  2365. <param name="documentOptions">Options to control the document behavior during parsing.</param>
  2366. <exception cref="T:System.ArgumentNullException">
  2367. <paramref name="json" /> is <see langword="null" />.</exception>
  2368. <exception cref="T:System.Text.Json.JsonException">
  2369. <paramref name="json" /> does not represent a valid single JSON value.</exception>
  2370. <returns>A <see cref="T:System.Text.Json.Nodes.JsonNode" /> representation of the JSON value.</returns>
  2371. </member>
  2372. <member name="M:System.Text.Json.Nodes.JsonNode.Parse(System.Text.Json.Utf8JsonReader@,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2373. <summary>Parses one JSON value (including objects or arrays) from the provided reader.</summary>
  2374. <param name="reader">The reader to read.</param>
  2375. <param name="nodeOptions">Options to control the behavior.</param>
  2376. <exception cref="T:System.ArgumentException">
  2377. <paramref name="reader" /> is using unsupported options.</exception>
  2378. <exception cref="T:System.ArgumentException">The current <paramref name="reader" /> token does not start or represent a value.</exception>
  2379. <exception cref="T:System.Text.Json.JsonException">A value could not be read from the reader.</exception>
  2380. <returns>The <see cref="T:System.Text.Json.Nodes.JsonNode" /> from the reader.</returns>
  2381. </member>
  2382. <member name="M:System.Text.Json.Nodes.JsonNode.ToJsonString(System.Text.Json.JsonSerializerOptions)">
  2383. <summary>Converts the current instance to string in JSON format.</summary>
  2384. <param name="options">Options to control the serialization behavior.</param>
  2385. <returns>JSON representation of current instance.</returns>
  2386. </member>
  2387. <member name="M:System.Text.Json.Nodes.JsonNode.ToString">
  2388. <summary>Gets a string representation for the current value appropriate to the node type.</summary>
  2389. <returns>A string representation for the current value appropriate to the node type.</returns>
  2390. </member>
  2391. <member name="M:System.Text.Json.Nodes.JsonNode.WriteTo(System.Text.Json.Utf8JsonWriter,System.Text.Json.JsonSerializerOptions)">
  2392. <summary>Write the <see cref="T:System.Text.Json.Nodes.JsonNode" /> into the provided <see cref="T:System.Text.Json.Utf8JsonWriter" /> as JSON.</summary>
  2393. <param name="writer">The <see cref="T:System.Text.Json.Utf8JsonWriter" />.</param>
  2394. <param name="options">Options to control the serialization behavior.</param>
  2395. <exception cref="T:System.ArgumentNullException">The <paramref name="writer" /> parameter is <see langword="null" />.</exception>
  2396. </member>
  2397. <member name="P:System.Text.Json.Nodes.JsonNode.Item(System.Int32)">
  2398. <summary>Gets or sets the element at the specified index.</summary>
  2399. <param name="index">The zero-based index of the element to get or set.</param>
  2400. <exception cref="T:System.ArgumentOutOfRangeException">
  2401. <paramref name="index" /> is less than 0 or <paramref name="index" /> is greater than the number of properties.</exception>
  2402. <exception cref="T:System.InvalidOperationException">The current <see cref="T:System.Text.Json.Nodes.JsonNode" /> is not a <see cref="T:System.Text.Json.Nodes.JsonArray" />.</exception>
  2403. </member>
  2404. <member name="P:System.Text.Json.Nodes.JsonNode.Item(System.String)">
  2405. <summary>Gets or sets the element with the specified property name.
  2406. If the property is not found, <see langword="null" /> is returned.</summary>
  2407. <param name="propertyName">The name of the property to return.</param>
  2408. <exception cref="T:System.ArgumentNullException">
  2409. <paramref name="propertyName" /> is <see langword="null" />.</exception>
  2410. <exception cref="T:System.InvalidOperationException">The current <see cref="T:System.Text.Json.Nodes.JsonNode" /> is not a <see cref="T:System.Text.Json.Nodes.JsonObject" />.</exception>
  2411. </member>
  2412. <member name="P:System.Text.Json.Nodes.JsonNode.Options">
  2413. <summary>Options to control the behavior.</summary>
  2414. </member>
  2415. <member name="P:System.Text.Json.Nodes.JsonNode.Parent">
  2416. <summary>Gets the parent <see cref="T:System.Text.Json.Nodes.JsonNode" />.
  2417. If there is no parent, <see langword="null" /> is returned.
  2418. A parent can either be a <see cref="T:System.Text.Json.Nodes.JsonObject" /> or a <see cref="T:System.Text.Json.Nodes.JsonArray" />.</summary>
  2419. </member>
  2420. <member name="P:System.Text.Json.Nodes.JsonNode.Root">
  2421. <summary>Gets the root <see cref="T:System.Text.Json.Nodes.JsonNode" />.
  2422. If the current <see cref="T:System.Text.Json.Nodes.JsonNode" /> is a root, <see langword="null" /> is returned.</summary>
  2423. </member>
  2424. <member name="T:System.Text.Json.Nodes.JsonNodeOptions">
  2425. <summary>Options to control <see cref="T:System.Text.Json.Nodes.JsonNode" /> behavior.</summary>
  2426. </member>
  2427. <member name="P:System.Text.Json.Nodes.JsonNodeOptions.PropertyNameCaseInsensitive">
  2428. <summary>Specifies whether property names on <see cref="T:System.Text.Json.Nodes.JsonObject" /> are case insensitive.</summary>
  2429. </member>
  2430. <member name="T:System.Text.Json.Nodes.JsonObject">
  2431. <summary>Represents a mutable JSON object.</summary>
  2432. </member>
  2433. <member name="M:System.Text.Json.Nodes.JsonObject.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Text.Json.Nodes.JsonNode}},System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2434. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonObject" /> class that contains the specified <paramref name="properties" />.</summary>
  2435. <param name="properties">The properties to be added.</param>
  2436. <param name="options">Options to control the behavior.</param>
  2437. </member>
  2438. <member name="M:System.Text.Json.Nodes.JsonObject.#ctor(System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2439. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonObject" /> class that is empty.</summary>
  2440. <param name="options">Options to control the behavior.</param>
  2441. </member>
  2442. <member name="M:System.Text.Json.Nodes.JsonObject.Add(System.Collections.Generic.KeyValuePair{System.String,System.Text.Json.Nodes.JsonNode})">
  2443. <summary>Adds the specified property to the <see cref="T:System.Text.Json.Nodes.JsonObject" />.</summary>
  2444. <param name="property">The KeyValuePair structure representing the property name and value to add to the <see cref="T:System.Text.Json.Nodes.JsonObject" />.</param>
  2445. <exception cref="T:System.ArgumentException">An element with the same property name already exists in the <see cref="T:System.Text.Json.Nodes.JsonObject" />.</exception>
  2446. <exception cref="T:System.ArgumentNullException">The property name of <paramref name="property" /> is <see langword="null" />.</exception>
  2447. </member>
  2448. <member name="M:System.Text.Json.Nodes.JsonObject.Add(System.String,System.Text.Json.Nodes.JsonNode)">
  2449. <summary>Adds an element with the provided property name and value to the <see cref="T:System.Text.Json.Nodes.JsonObject" />.</summary>
  2450. <param name="propertyName">The property name of the element to add.</param>
  2451. <param name="value">The value of the element to add.</param>
  2452. <exception cref="T:System.ArgumentNullException">
  2453. <paramref name="propertyName" />is <see langword="null" />.</exception>
  2454. <exception cref="T:System.ArgumentException">An element with the same property name already exists in the <see cref="T:System.Text.Json.Nodes.JsonObject" />.</exception>
  2455. </member>
  2456. <member name="M:System.Text.Json.Nodes.JsonObject.Clear">
  2457. <summary>Removes all elements from the <see cref="T:System.Text.Json.Nodes.JsonObject" />.</summary>
  2458. </member>
  2459. <member name="M:System.Text.Json.Nodes.JsonObject.ContainsKey(System.String)">
  2460. <summary>Determines whether the <see cref="T:System.Text.Json.Nodes.JsonObject" /> contains an element with the specified property name.</summary>
  2461. <param name="propertyName">The property name to locate in the <see cref="T:System.Text.Json.Nodes.JsonObject" />.</param>
  2462. <exception cref="T:System.ArgumentNullException">
  2463. <paramref name="propertyName" /> is <see langword="null" />.</exception>
  2464. <returns>
  2465. <see langword="true" /> if the <see cref="T:System.Text.Json.Nodes.JsonObject" /> contains an element with the specified property name; otherwise, <see langword="false" />.</returns>
  2466. </member>
  2467. <member name="M:System.Text.Json.Nodes.JsonObject.Create(System.Text.Json.JsonElement,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2468. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonObject" /> class that contains properties from the specified <see cref="T:System.Text.Json.JsonElement" />.</summary>
  2469. <param name="element">The <see cref="T:System.Text.Json.JsonElement" />.</param>
  2470. <param name="options">Options to control the behavior.</param>
  2471. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonObject" /> class that contains properties from the specified <see cref="T:System.Text.Json.JsonElement" />.</returns>
  2472. </member>
  2473. <member name="M:System.Text.Json.Nodes.JsonObject.GetEnumerator">
  2474. <summary>Returns an enumerator that iterates through the <see cref="T:System.Text.Json.Nodes.JsonObject" />.</summary>
  2475. <returns>An enumerator that iterates through the <see cref="T:System.Text.Json.Nodes.JsonObject" />.</returns>
  2476. </member>
  2477. <member name="M:System.Text.Json.Nodes.JsonObject.Remove(System.String)">
  2478. <summary>Removes the element with the specified property name from the <see cref="T:System.Text.Json.Nodes.JsonObject" />.</summary>
  2479. <param name="propertyName">The property name of the element to remove.</param>
  2480. <exception cref="T:System.ArgumentNullException">
  2481. <paramref name="propertyName" /> is <see langword="null" />.</exception>
  2482. <returns>
  2483. <see langword="true" /> if the element is successfully removed; otherwise, <see langword="false" />.</returns>
  2484. </member>
  2485. <member name="M:System.Text.Json.Nodes.JsonObject.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String@System#Text#Json#Nodes#JsonNode}}#Contains(System.Collections.Generic.KeyValuePair{System.String,System.Text.Json.Nodes.JsonNode})">
  2486. <summary>Determines whether the <see cref="T:System.Text.Json.Nodes.JsonObject" /> contains a specific property name and <see cref="T:System.Text.Json.Nodes.JsonNode" /> reference.</summary>
  2487. <param name="item">The element to locate in the <see cref="T:System.Text.Json.Nodes.JsonObject" />.</param>
  2488. <returns>
  2489. <see langword="true" /> if the <see cref="T:System.Text.Json.Nodes.JsonObject" /> contains an element with the property name; otherwise, <see langword="false" />.</returns>
  2490. </member>
  2491. <member name="M:System.Text.Json.Nodes.JsonObject.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String@System#Text#Json#Nodes#JsonNode}}#CopyTo(System.Collections.Generic.KeyValuePair{System.String,System.Text.Json.Nodes.JsonNode}[],System.Int32)">
  2492. <summary>Copies the elements of the <see cref="T:System.Text.Json.Nodes.JsonObject" /> to an array of type KeyValuePair starting at the specified array index.</summary>
  2493. <param name="array">The one-dimensional Array that is the destination of the elements copied from <see cref="T:System.Text.Json.Nodes.JsonObject" />.</param>
  2494. <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
  2495. <exception cref="T:System.ArgumentNullException">
  2496. <paramref name="array" /> is <see langword="null" />.</exception>
  2497. <exception cref="T:System.ArgumentOutOfRangeException">
  2498. <paramref name="index" /> is less than 0.</exception>
  2499. <exception cref="T:System.ArgumentException">The number of elements in the source ICollection is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.</exception>
  2500. </member>
  2501. <member name="M:System.Text.Json.Nodes.JsonObject.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String@System#Text#Json#Nodes#JsonNode}}#Remove(System.Collections.Generic.KeyValuePair{System.String,System.Text.Json.Nodes.JsonNode})">
  2502. <summary>Removes a key and value from the <see cref="T:System.Text.Json.Nodes.JsonObject" />.</summary>
  2503. <param name="item">The KeyValuePair structure representing the property name and value to remove from the <see cref="T:System.Text.Json.Nodes.JsonObject" />.</param>
  2504. <returns>
  2505. <see langword="true" /> if the element is successfully removed; otherwise, <see langword="false" />.</returns>
  2506. </member>
  2507. <member name="M:System.Text.Json.Nodes.JsonObject.System#Collections#Generic#IDictionary{System#String@System#Text#Json#Nodes#JsonNode}#TryGetValue(System.String,System.Text.Json.Nodes.JsonNode@)">
  2508. <summary>Gets the value associated with the specified property name.</summary>
  2509. <param name="propertyName">The property name of the value to get.</param>
  2510. <param name="jsonNode">When this method returns, contains the value associated with the specified property name, if the property name is found; otherwise, <see langword="null" />.</param>
  2511. <exception cref="T:System.ArgumentNullException">
  2512. <paramref name="propertyName" /> is <see langword="null" />.</exception>
  2513. <returns>
  2514. <see langword="true" /> if the <see cref="T:System.Text.Json.Nodes.JsonObject" /> contains an element with the specified property name; otherwise, <see langword="false" />.</returns>
  2515. </member>
  2516. <member name="M:System.Text.Json.Nodes.JsonObject.System#Collections#IEnumerable#GetEnumerator">
  2517. <summary>Returns an enumerator that iterates through the <see cref="T:System.Text.Json.Nodes.JsonObject" />.</summary>
  2518. <returns>An enumerator that iterates through the <see cref="T:System.Text.Json.Nodes.JsonObject" />.</returns>
  2519. </member>
  2520. <member name="M:System.Text.Json.Nodes.JsonObject.TryGetPropertyValue(System.String,System.Text.Json.Nodes.JsonNode@)">
  2521. <summary>Returns the value of a property with the specified name.</summary>
  2522. <param name="propertyName">The name of the property to return.</param>
  2523. <param name="jsonNode">The JSON value of the property with the specified name.</param>
  2524. <returns>
  2525. <see langword="true" /> if a property with the specified name was found; otherwise, <see langword="false" />.</returns>
  2526. </member>
  2527. <member name="M:System.Text.Json.Nodes.JsonObject.WriteTo(System.Text.Json.Utf8JsonWriter,System.Text.Json.JsonSerializerOptions)">
  2528. <summary>Write the <see cref="T:System.Text.Json.Nodes.JsonNode" /> into the provided <see cref="T:System.Text.Json.Utf8JsonWriter" /> as JSON.</summary>
  2529. <param name="writer">The <see cref="T:System.Text.Json.Utf8JsonWriter" />.</param>
  2530. <param name="options">Options to control the serialization behavior.</param>
  2531. <exception cref="T:System.ArgumentNullException">The <paramref name="writer" /> parameter is <see langword="null" />.</exception>
  2532. </member>
  2533. <member name="P:System.Text.Json.Nodes.JsonObject.Count">
  2534. <summary>Gets the number of elements contained in <see cref="T:System.Text.Json.Nodes.JsonObject" />.</summary>
  2535. </member>
  2536. <member name="P:System.Text.Json.Nodes.JsonObject.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String@System#Text#Json#Nodes#JsonNode}}#IsReadOnly">
  2537. <summary>Returns <see langword="false" />.</summary>
  2538. </member>
  2539. <member name="P:System.Text.Json.Nodes.JsonObject.System#Collections#Generic#IDictionary{System#String@System#Text#Json#Nodes#JsonNode}#Keys">
  2540. <summary>Gets a collection containing the property names in the <see cref="T:System.Text.Json.Nodes.JsonObject" />.</summary>
  2541. </member>
  2542. <member name="P:System.Text.Json.Nodes.JsonObject.System#Collections#Generic#IDictionary{System#String@System#Text#Json#Nodes#JsonNode}#Values">
  2543. <summary>Gets a collection containing the property values in the <see cref="T:System.Text.Json.Nodes.JsonObject" />.</summary>
  2544. </member>
  2545. <member name="T:System.Text.Json.Nodes.JsonValue">
  2546. <summary>Represents a mutable JSON value.</summary>
  2547. </member>
  2548. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Boolean,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2549. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2550. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2551. <param name="options">Options to control the behavior.</param>
  2552. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2553. </member>
  2554. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Byte,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2555. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2556. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2557. <param name="options">Options to control the behavior.</param>
  2558. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2559. </member>
  2560. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Char,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2561. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2562. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2563. <param name="options">Options to control the behavior.</param>
  2564. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2565. </member>
  2566. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.DateTime,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2567. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2568. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2569. <param name="options">Options to control the behavior.</param>
  2570. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2571. </member>
  2572. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.DateTimeOffset,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2573. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2574. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2575. <param name="options">Options to control the behavior.</param>
  2576. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2577. </member>
  2578. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Decimal,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2579. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2580. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2581. <param name="options">Options to control the behavior.</param>
  2582. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2583. </member>
  2584. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Double,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2585. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2586. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2587. <param name="options">Options to control the behavior.</param>
  2588. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2589. </member>
  2590. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Guid,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2591. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2592. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2593. <param name="options">Options to control the behavior.</param>
  2594. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2595. </member>
  2596. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Int16,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2597. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2598. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2599. <param name="options">Options to control the behavior.</param>
  2600. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2601. </member>
  2602. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Int32,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2603. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2604. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2605. <param name="options">Options to control the behavior.</param>
  2606. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2607. </member>
  2608. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Int64,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2609. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2610. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2611. <param name="options">Options to control the behavior.</param>
  2612. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2613. </member>
  2614. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Nullable{System.Boolean},System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2615. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2616. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2617. <param name="options">Options to control the behavior.</param>
  2618. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2619. </member>
  2620. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Nullable{System.Byte},System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2621. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2622. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2623. <param name="options">Options to control the behavior.</param>
  2624. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2625. </member>
  2626. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Nullable{System.Char},System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2627. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2628. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2629. <param name="options">Options to control the behavior.</param>
  2630. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2631. </member>
  2632. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Nullable{System.DateTime},System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2633. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2634. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2635. <param name="options">Options to control the behavior.</param>
  2636. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2637. </member>
  2638. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Nullable{System.DateTimeOffset},System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2639. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2640. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2641. <param name="options">Options to control the behavior.</param>
  2642. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2643. </member>
  2644. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Nullable{System.Decimal},System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2645. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2646. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2647. <param name="options">Options to control the behavior.</param>
  2648. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2649. </member>
  2650. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Nullable{System.Double},System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2651. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2652. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2653. <param name="options">Options to control the behavior.</param>
  2654. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2655. </member>
  2656. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Nullable{System.Guid},System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2657. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2658. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2659. <param name="options">Options to control the behavior.</param>
  2660. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2661. </member>
  2662. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Nullable{System.Int16},System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2663. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2664. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2665. <param name="options">Options to control the behavior.</param>
  2666. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2667. </member>
  2668. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Nullable{System.Int32},System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2669. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2670. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2671. <param name="options">Options to control the behavior.</param>
  2672. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2673. </member>
  2674. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Nullable{System.Int64},System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2675. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2676. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2677. <param name="options">Options to control the behavior.</param>
  2678. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2679. </member>
  2680. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Nullable{System.SByte},System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2681. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2682. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2683. <param name="options">Options to control the behavior.</param>
  2684. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2685. </member>
  2686. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Nullable{System.Single},System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2687. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2688. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2689. <param name="options">Options to control the behavior.</param>
  2690. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2691. </member>
  2692. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Nullable{System.Text.Json.JsonElement},System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2693. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2694. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2695. <param name="options">Options to control the behavior.</param>
  2696. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2697. </member>
  2698. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Nullable{System.UInt16},System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2699. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2700. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2701. <param name="options">Options to control the behavior.</param>
  2702. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2703. </member>
  2704. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Nullable{System.UInt32},System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2705. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2706. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2707. <param name="options">Options to control the behavior.</param>
  2708. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2709. </member>
  2710. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Nullable{System.UInt64},System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2711. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2712. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2713. <param name="options">Options to control the behavior.</param>
  2714. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2715. </member>
  2716. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.SByte,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2717. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2718. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2719. <param name="options">Options to control the behavior.</param>
  2720. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2721. </member>
  2722. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Single,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2723. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2724. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2725. <param name="options">Options to control the behavior.</param>
  2726. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2727. </member>
  2728. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.String,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2729. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2730. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2731. <param name="options">Options to control the behavior.</param>
  2732. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2733. </member>
  2734. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.Text.Json.JsonElement,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2735. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2736. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2737. <param name="options">Options to control the behavior.</param>
  2738. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2739. </member>
  2740. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.UInt16,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2741. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2742. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2743. <param name="options">Options to control the behavior.</param>
  2744. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2745. </member>
  2746. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.UInt32,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2747. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2748. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2749. <param name="options">Options to control the behavior.</param>
  2750. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2751. </member>
  2752. <member name="M:System.Text.Json.Nodes.JsonValue.Create(System.UInt64,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2753. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2754. <param name="value">The underlying value of the new <see cref="T:System.Text.Json.Nodes.JsonValue" /> instance.</param>
  2755. <param name="options">Options to control the behavior.</param>
  2756. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2757. </member>
  2758. <member name="M:System.Text.Json.Nodes.JsonValue.Create``1(``0,System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2759. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2760. <param name="value">The value to create.</param>
  2761. <param name="options">Options to control the behavior.</param>
  2762. <typeparam name="T">The type of value to create.</typeparam>
  2763. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2764. </member>
  2765. <member name="M:System.Text.Json.Nodes.JsonValue.Create``1(``0,System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0},System.Nullable{System.Text.Json.Nodes.JsonNodeOptions})">
  2766. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</summary>
  2767. <param name="value">The value to create.</param>
  2768. <param name="jsonTypeInfo">The <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> that will be used to serialize the value.</param>
  2769. <param name="options">Options to control the behavior.</param>
  2770. <typeparam name="T">The type of value to create.</typeparam>
  2771. <returns>The new instance of the <see cref="T:System.Text.Json.Nodes.JsonValue" /> class that contains the specified value.</returns>
  2772. </member>
  2773. <member name="M:System.Text.Json.Nodes.JsonValue.TryGetValue``1(``0@)">
  2774. <summary>Tries to obtain the current JSON value and returns a value that indicates whether the operation succeeded.</summary>
  2775. <param name="value">When this method returns, contains the parsed value.</param>
  2776. <typeparam name="T">The type of value to obtain.</typeparam>
  2777. <returns>
  2778. <see langword="true" /> if the value can be successfully obtained; otherwise, <see langword="false" />.</returns>
  2779. </member>
  2780. <member name="T:System.Text.Json.Serialization.IJsonOnDeserialized">
  2781. <summary>Specifies that the JSON type should have its <see cref="M:System.Text.Json.Serialization.IJsonOnDeserialized.OnDeserialized" /> method called after deserialization occurs.</summary>
  2782. </member>
  2783. <member name="M:System.Text.Json.Serialization.IJsonOnDeserialized.OnDeserialized">
  2784. <summary>The method that is called after deserialization.</summary>
  2785. </member>
  2786. <member name="T:System.Text.Json.Serialization.IJsonOnDeserializing">
  2787. <summary>Specifies that the type should have its <see cref="M:System.Text.Json.Serialization.IJsonOnDeserializing.OnDeserializing" /> method called before deserialization occurs.</summary>
  2788. </member>
  2789. <member name="M:System.Text.Json.Serialization.IJsonOnDeserializing.OnDeserializing">
  2790. <summary>The method that is called before deserialization.</summary>
  2791. </member>
  2792. <member name="T:System.Text.Json.Serialization.IJsonOnSerialized">
  2793. <summary>Specifies that the type should have its <see cref="M:System.Text.Json.Serialization.IJsonOnSerialized.OnSerialized" /> method called after serialization occurs.</summary>
  2794. </member>
  2795. <member name="M:System.Text.Json.Serialization.IJsonOnSerialized.OnSerialized">
  2796. <summary>The method that is called after serialization.</summary>
  2797. </member>
  2798. <member name="T:System.Text.Json.Serialization.IJsonOnSerializing">
  2799. <summary>Specifies that the type should have its <see cref="M:System.Text.Json.Serialization.IJsonOnSerializing.OnSerializing" /> method called before serialization occurs.</summary>
  2800. </member>
  2801. <member name="M:System.Text.Json.Serialization.IJsonOnSerializing.OnSerializing">
  2802. <summary>The method that is called before serialization.</summary>
  2803. </member>
  2804. <member name="T:System.Text.Json.Serialization.JsonAttribute">
  2805. <summary>Provides the base class for serialization attributes.</summary>
  2806. </member>
  2807. <member name="M:System.Text.Json.Serialization.JsonAttribute.#ctor">
  2808. <summary>Creates a new instance of the <see cref="T:System.Text.Json.Serialization.JsonAttribute" />.</summary>
  2809. </member>
  2810. <member name="T:System.Text.Json.Serialization.JsonConstructorAttribute">
  2811. <summary>When placed on a constructor, indicates that the constructor should be used to create instances of the type on deserialization.</summary>
  2812. </member>
  2813. <member name="M:System.Text.Json.Serialization.JsonConstructorAttribute.#ctor">
  2814. <summary>Initializes a new instance of <see cref="T:System.Text.Json.Serialization.JsonConstructorAttribute" />.</summary>
  2815. </member>
  2816. <member name="T:System.Text.Json.Serialization.JsonConverter">
  2817. <summary>Converts an object or value to or from JSON.</summary>
  2818. </member>
  2819. <member name="M:System.Text.Json.Serialization.JsonConverter.CanConvert(System.Type)">
  2820. <summary>When overridden in a derived class, determines whether the converter instance can convert the specified object type.</summary>
  2821. <param name="typeToConvert">The type of the object to check whether it can be converted by this converter instance.</param>
  2822. <returns>
  2823. <see langword="true" /> if the instance can convert the specified object type; otherwise, <see langword="false" />.</returns>
  2824. </member>
  2825. <member name="T:System.Text.Json.Serialization.JsonConverter`1">
  2826. <summary>Converts an object or value to or from JSON.</summary>
  2827. <typeparam name="T">The type of object or value handled by the converter.</typeparam>
  2828. </member>
  2829. <member name="M:System.Text.Json.Serialization.JsonConverter`1.#ctor">
  2830. <summary>Initializes a new <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> instance.</summary>
  2831. </member>
  2832. <member name="M:System.Text.Json.Serialization.JsonConverter`1.CanConvert(System.Type)">
  2833. <summary>Determines whether the specified type can be converted.</summary>
  2834. <param name="typeToConvert">The type to compare against.</param>
  2835. <returns>
  2836. <see langword="true" /> if the type can be converted; otherwise, <see langword="false" />.</returns>
  2837. </member>
  2838. <member name="M:System.Text.Json.Serialization.JsonConverter`1.Read(System.Text.Json.Utf8JsonReader@,System.Type,System.Text.Json.JsonSerializerOptions)">
  2839. <summary>Reads and converts the JSON to type <typeparamref name="T" />.</summary>
  2840. <param name="reader">The reader.</param>
  2841. <param name="typeToConvert">The type to convert.</param>
  2842. <param name="options">An object that specifies serialization options to use.</param>
  2843. <returns>The converted value.</returns>
  2844. </member>
  2845. <member name="M:System.Text.Json.Serialization.JsonConverter`1.ReadAsPropertyName(System.Text.Json.Utf8JsonReader@,System.Type,System.Text.Json.JsonSerializerOptions)">
  2846. <summary>Reads a dictionary key from a JSON property name.</summary>
  2847. <param name="reader">The <see cref="T:System.Text.Json.Utf8JsonReader" /> to read from.</param>
  2848. <param name="typeToConvert">The type to convert.</param>
  2849. <param name="options">The options to use when reading the value.</param>
  2850. <returns>The value that was converted.</returns>
  2851. </member>
  2852. <member name="M:System.Text.Json.Serialization.JsonConverter`1.Write(System.Text.Json.Utf8JsonWriter,`0,System.Text.Json.JsonSerializerOptions)">
  2853. <summary>Writes a specified value as JSON.</summary>
  2854. <param name="writer">The writer to write to.</param>
  2855. <param name="value">The value to convert to JSON.</param>
  2856. <param name="options">An object that specifies serialization options to use.</param>
  2857. </member>
  2858. <member name="M:System.Text.Json.Serialization.JsonConverter`1.WriteAsPropertyName(System.Text.Json.Utf8JsonWriter,`0,System.Text.Json.JsonSerializerOptions)">
  2859. <summary>Writes a dictionary key as a JSON property name.</summary>
  2860. <param name="writer">The <see cref="T:System.Text.Json.Utf8JsonWriter" /> to write to.</param>
  2861. <param name="value">The value to convert. The value of <see cref="P:System.Text.Json.Serialization.JsonConverter`1.HandleNull" /> determines if the converter handles <see langword="null" /> values.</param>
  2862. <param name="options">The options to use when writing the value.</param>
  2863. </member>
  2864. <member name="P:System.Text.Json.Serialization.JsonConverter`1.HandleNull">
  2865. <summary>Indicates whether <see langword="null" /> should be passed to the converter on serialization, and whether <see cref="F:System.Text.Json.JsonTokenType.Null" /> should be passed on deserialization.</summary>
  2866. </member>
  2867. <member name="T:System.Text.Json.Serialization.JsonConverterAttribute">
  2868. <summary>When placed on a property or type, specifies the converter type to use.</summary>
  2869. </member>
  2870. <member name="M:System.Text.Json.Serialization.JsonConverterAttribute.#ctor">
  2871. <summary>Initializes a new instance of <see cref="T:System.Text.Json.Serialization.JsonConverterAttribute" />.</summary>
  2872. </member>
  2873. <member name="M:System.Text.Json.Serialization.JsonConverterAttribute.#ctor(System.Type)">
  2874. <summary>Initializes a new instance of <see cref="T:System.Text.Json.Serialization.JsonConverterAttribute" /> with the specified converter type.</summary>
  2875. <param name="converterType">The type of the converter.</param>
  2876. </member>
  2877. <member name="M:System.Text.Json.Serialization.JsonConverterAttribute.CreateConverter(System.Type)">
  2878. <summary>When overridden in a derived class and <see cref="P:System.Text.Json.Serialization.JsonConverterAttribute.ConverterType" /> is <see langword="null" />, allows the derived class to create a <see cref="T:System.Text.Json.Serialization.JsonConverter" /> in order to pass additional state.</summary>
  2879. <param name="typeToConvert">The type of the converter.</param>
  2880. <returns>The custom converter.</returns>
  2881. </member>
  2882. <member name="P:System.Text.Json.Serialization.JsonConverterAttribute.ConverterType">
  2883. <summary>Gets the type of the <see cref="T:System.Text.Json.Serialization.JsonConverterAttribute" />, or <see langword="null" /> if it was created without a type.</summary>
  2884. <returns>The type of the <see cref="T:System.Text.Json.Serialization.JsonConverterAttribute" />, or <see langword="null" /> if it was created without a type.</returns>
  2885. </member>
  2886. <member name="T:System.Text.Json.Serialization.JsonConverterFactory">
  2887. <summary>Supports converting several types by using a factory pattern.</summary>
  2888. </member>
  2889. <member name="M:System.Text.Json.Serialization.JsonConverterFactory.#ctor">
  2890. <summary>When overidden in a derived class, initializes a new instance of the <see cref="T:System.Text.Json.Serialization.JsonConverterFactory" /> class.</summary>
  2891. </member>
  2892. <member name="M:System.Text.Json.Serialization.JsonConverterFactory.CreateConverter(System.Type,System.Text.Json.JsonSerializerOptions)">
  2893. <summary>Creates a converter for a specified type.</summary>
  2894. <param name="typeToConvert">The type handled by the converter.</param>
  2895. <param name="options">The serialization options to use.</param>
  2896. <returns>A converter for which <typeparamref name="T" /> is compatible with <paramref name="typeToConvert" />.</returns>
  2897. </member>
  2898. <member name="T:System.Text.Json.Serialization.JsonExtensionDataAttribute">
  2899. <summary>When placed on a property of type <see cref="T:System.Collections.Generic.IDictionary`2" />, any properties that do not have a matching member are added to that dictionary during deserialization and written during serialization.</summary>
  2900. </member>
  2901. <member name="M:System.Text.Json.Serialization.JsonExtensionDataAttribute.#ctor">
  2902. <summary>Instantiates a new instance of the <see cref="T:System.Text.Json.Serialization.JsonExtensionDataAttribute" /> class.</summary>
  2903. </member>
  2904. <member name="T:System.Text.Json.Serialization.JsonIgnoreAttribute">
  2905. <summary>Prevents a property from being serialized or deserialized.</summary>
  2906. </member>
  2907. <member name="M:System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor">
  2908. <summary>Initializes a new instance of <see cref="T:System.Text.Json.Serialization.JsonIgnoreAttribute" />.</summary>
  2909. </member>
  2910. <member name="P:System.Text.Json.Serialization.JsonIgnoreAttribute.Condition">
  2911. <summary>Specifies the condition that must be met before a property will be ignored.</summary>
  2912. </member>
  2913. <member name="T:System.Text.Json.Serialization.JsonIgnoreCondition">
  2914. <summary>Controls how the <see cref="T:System.Text.Json.Serialization.JsonIgnoreAttribute" /> ignores properties on serialization and deserialization.</summary>
  2915. </member>
  2916. <member name="F:System.Text.Json.Serialization.JsonIgnoreCondition.Always">
  2917. <summary>Property will always be ignored.</summary>
  2918. </member>
  2919. <member name="F:System.Text.Json.Serialization.JsonIgnoreCondition.Never">
  2920. <summary>Property will always be serialized and deserialized, regardless of <see cref="P:System.Text.Json.JsonSerializerOptions.IgnoreNullValues" /> configuration.</summary>
  2921. </member>
  2922. <member name="F:System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault">
  2923. <summary>Property will only be ignored if it is <see langword="null" />.</summary>
  2924. </member>
  2925. <member name="F:System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingNull">
  2926. <summary>If the value is <see langword="null" />, the property is ignored during serialization. This is applied only to reference-type properties and fields.</summary>
  2927. </member>
  2928. <member name="T:System.Text.Json.Serialization.JsonIncludeAttribute">
  2929. <summary>Indicates that the member should be included for serialization and deserialization.</summary>
  2930. <exception cref="T:System.InvalidOperationException">The attribute is applied to a non-public property.</exception>
  2931. </member>
  2932. <member name="M:System.Text.Json.Serialization.JsonIncludeAttribute.#ctor">
  2933. <summary>Initializes a new instance of <see cref="T:System.Text.Json.Serialization.JsonIncludeAttribute" />.</summary>
  2934. </member>
  2935. <member name="T:System.Text.Json.Serialization.JsonKnownNamingPolicy">
  2936. <summary>The <see cref="T:System.Text.Json.JsonNamingPolicy" /> to be used at run time.</summary>
  2937. </member>
  2938. <member name="F:System.Text.Json.Serialization.JsonKnownNamingPolicy.CamelCase">
  2939. <summary>Specifies that the built-in <see cref="P:System.Text.Json.JsonNamingPolicy.CamelCase" /> be used to convert JSON property names.</summary>
  2940. </member>
  2941. <member name="F:System.Text.Json.Serialization.JsonKnownNamingPolicy.Unspecified">
  2942. <summary>Specifies that JSON property names should not be converted.</summary>
  2943. </member>
  2944. <member name="T:System.Text.Json.Serialization.JsonNumberHandling">
  2945. <summary>Determines how <see cref="T:System.Text.Json.JsonSerializer" /> handles numbers when serializing and deserializing.</summary>
  2946. </member>
  2947. <member name="F:System.Text.Json.Serialization.JsonNumberHandling.AllowNamedFloatingPointLiterals">
  2948. <summary>The "NaN", "Infinity", and "-Infinity" <see cref="F:System.Text.Json.JsonTokenType.String" /> tokens can be read as floating-point constants, and the <see cref="T:System.Single" /> and <see cref="T:System.Double" /> values for these constants will be written as their corresponding JSON string representations.</summary>
  2949. </member>
  2950. <member name="F:System.Text.Json.Serialization.JsonNumberHandling.AllowReadingFromString">
  2951. <summary>Numbers can be read from <see cref="F:System.Text.Json.JsonTokenType.String" /> tokens. Does not prevent numbers from being read from <see cref="F:System.Text.Json.JsonTokenType.Number" /> token.</summary>
  2952. </member>
  2953. <member name="F:System.Text.Json.Serialization.JsonNumberHandling.Strict">
  2954. <summary>Numbers will only be read from <see cref="F:System.Text.Json.JsonTokenType.Number" /> tokens and will only be written as JSON numbers (without quotes).</summary>
  2955. </member>
  2956. <member name="F:System.Text.Json.Serialization.JsonNumberHandling.WriteAsString">
  2957. <summary>Numbers will be written as JSON strings (with quotes), not as JSON numbers.</summary>
  2958. </member>
  2959. <member name="T:System.Text.Json.Serialization.JsonNumberHandlingAttribute">
  2960. <summary>When placed on a type, property, or field, indicates what <see cref="T:System.Text.Json.Serialization.JsonNumberHandling" /> settings should be used when serializing or deserializing numbers.</summary>
  2961. </member>
  2962. <member name="M:System.Text.Json.Serialization.JsonNumberHandlingAttribute.#ctor(System.Text.Json.Serialization.JsonNumberHandling)">
  2963. <summary>Initializes a new instance of <see cref="T:System.Text.Json.Serialization.JsonNumberHandlingAttribute" />.</summary>
  2964. <param name="handling">A bitwise combination of the enumeration values that specify how number types should be handled when serializing or deserializing.</param>
  2965. </member>
  2966. <member name="P:System.Text.Json.Serialization.JsonNumberHandlingAttribute.Handling">
  2967. <summary>Indicates what settings should be used when serializing or deserializing numbers.</summary>
  2968. <returns>An object that determines the number serialization and deserialization settings.</returns>
  2969. </member>
  2970. <member name="T:System.Text.Json.Serialization.JsonPropertyNameAttribute">
  2971. <summary>Specifies the property name that is present in the JSON when serializing and deserializing. This overrides any naming policy specified by <see cref="T:System.Text.Json.JsonNamingPolicy" />.</summary>
  2972. </member>
  2973. <member name="M:System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String)">
  2974. <summary>Initializes a new instance of <see cref="T:System.Text.Json.Serialization.JsonPropertyNameAttribute" /> with the specified property name.</summary>
  2975. <param name="name">The name of the property.</param>
  2976. </member>
  2977. <member name="P:System.Text.Json.Serialization.JsonPropertyNameAttribute.Name">
  2978. <summary>Gets the name of the property.</summary>
  2979. <returns>The name of the property.</returns>
  2980. </member>
  2981. <member name="T:System.Text.Json.Serialization.JsonPropertyOrderAttribute">
  2982. <summary>Specifies the property order that is present in the JSON when serializing. Lower values are serialized first.
  2983. If the attribute is not specified, the default value is 0.</summary>
  2984. </member>
  2985. <member name="M:System.Text.Json.Serialization.JsonPropertyOrderAttribute.#ctor(System.Int32)">
  2986. <summary>Initializes a new instance of <see cref="T:System.Text.Json.Serialization.JsonPropertyNameAttribute" /> with the specified order.</summary>
  2987. <param name="order">The order of the property.</param>
  2988. </member>
  2989. <member name="P:System.Text.Json.Serialization.JsonPropertyOrderAttribute.Order">
  2990. <summary>Gets the serialization order of the property.</summary>
  2991. </member>
  2992. <member name="T:System.Text.Json.Serialization.JsonSerializableAttribute">
  2993. <summary>Instructs the System.Text.Json source generator to generate source code to help optimize performance when serializing and deserializing instances of the specified type and types in its object graph.</summary>
  2994. </member>
  2995. <member name="M:System.Text.Json.Serialization.JsonSerializableAttribute.#ctor(System.Type)">
  2996. <summary>Initializes a new instance of <see cref="T:System.Text.Json.Serialization.JsonSerializableAttribute" /> with the specified type.</summary>
  2997. <param name="type">The type to generate source code for.</param>
  2998. </member>
  2999. <member name="P:System.Text.Json.Serialization.JsonSerializableAttribute.GenerationMode">
  3000. <summary>Determines what the source generator should generate for the type. If the value is <see cref="F:System.Text.Json.Serialization.JsonSourceGenerationMode.Default" />, then the setting specified on <see cref="P:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute.GenerationMode" /> will be used.</summary>
  3001. </member>
  3002. <member name="P:System.Text.Json.Serialization.JsonSerializableAttribute.TypeInfoPropertyName">
  3003. <summary>The name of the property for the generated <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo`1" /> for the type on the generated, derived <see cref="T:System.Text.Json.Serialization.JsonSerializerContext" /> type.</summary>
  3004. </member>
  3005. <member name="T:System.Text.Json.Serialization.JsonSerializerContext">
  3006. <summary>Provides metadata about a set of types that is relevant to JSON serialization.</summary>
  3007. </member>
  3008. <member name="M:System.Text.Json.Serialization.JsonSerializerContext.#ctor(System.Text.Json.JsonSerializerOptions,System.Text.Json.JsonSerializerOptions)">
  3009. <summary>Creates an instance of <see cref="T:System.Text.Json.Serialization.JsonSerializerContext" /> and binds it with the indicated <see cref="T:System.Text.Json.JsonSerializerOptions" />.</summary>
  3010. <param name="instanceOptions">The run-time provided options for the context instance.</param>
  3011. <param name="defaultOptions">The default run-time options for the context. Its values are defined at design time via <see cref="T:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute" />.</param>
  3012. </member>
  3013. <member name="M:System.Text.Json.Serialization.JsonSerializerContext.GetTypeInfo(System.Type)">
  3014. <summary>Returns a <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance representing the given type.</summary>
  3015. <param name="type">The type to fetch metadata about.</param>
  3016. <returns>The metadata for the specified type, or <see langword="null" /> if the context has no metadata for the type.</returns>
  3017. </member>
  3018. <member name="P:System.Text.Json.Serialization.JsonSerializerContext.Options">
  3019. <summary>Gets the run-time specified options of the context. If no options were passed when instanciating the context, then a new instance is bound and returned.</summary>
  3020. </member>
  3021. <member name="T:System.Text.Json.Serialization.JsonSourceGenerationMode">
  3022. <summary>The generation mode for the System.Text.Json source generator.</summary>
  3023. </member>
  3024. <member name="F:System.Text.Json.Serialization.JsonSourceGenerationMode.Default">
  3025. <summary>When specified on <see cref="P:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute.GenerationMode" />, indicates that both type-metadata initialization logic and optimized serialization logic should be generated for all types. When specified on <see cref="P:System.Text.Json.Serialization.JsonSerializableAttribute.GenerationMode" />, indicates that the setting on <see cref="P:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute.GenerationMode" /> should be used.</summary>
  3026. </member>
  3027. <member name="F:System.Text.Json.Serialization.JsonSourceGenerationMode.Metadata">
  3028. <summary>Instructs the JSON source generator to generate type-metadata initialization logic.</summary>
  3029. </member>
  3030. <member name="F:System.Text.Json.Serialization.JsonSourceGenerationMode.Serialization">
  3031. <summary>Instructs the JSON source generator to generate optimized serialization logic.</summary>
  3032. </member>
  3033. <member name="T:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute">
  3034. <summary>Instructs the System.Text.Json source generator to assume the specified options will be used at run time via <see cref="T:System.Text.Json.JsonSerializerOptions" />.</summary>
  3035. </member>
  3036. <member name="M:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute.#ctor">
  3037. <summary>Instructs the System.Text.Json source generator to assume the specified options will be used at run time via <see cref="T:System.Text.Json.JsonSerializerOptions" />.</summary>
  3038. </member>
  3039. <member name="P:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute.DefaultIgnoreCondition">
  3040. <summary>Gets or sets the default ignore condition.</summary>
  3041. </member>
  3042. <member name="P:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute.GenerationMode">
  3043. <summary>Gets or sets the source generation mode for types that don't explicitly set the mode with <see cref="P:System.Text.Json.Serialization.JsonSerializableAttribute.GenerationMode" />.</summary>
  3044. </member>
  3045. <member name="P:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute.IgnoreReadOnlyFields">
  3046. <summary>Gets or sets a value that indicates whether to ignore read-only fields.</summary>
  3047. </member>
  3048. <member name="P:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute.IgnoreReadOnlyProperties">
  3049. <summary>Gets or sets a value that indicates whether to ignore read-only properties.</summary>
  3050. </member>
  3051. <member name="P:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute.IgnoreRuntimeCustomConverters">
  3052. <summary>Gets or sets a value that indicates whether to ignore custom converters provided at run time.</summary>
  3053. </member>
  3054. <member name="P:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute.IncludeFields">
  3055. <summary>Gets or sets a value that indicates whether to include fields for serialization and deserialization.</summary>
  3056. </member>
  3057. <member name="P:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute.PropertyNamingPolicy">
  3058. <summary>Gets or sets a built-in naming policy to convert JSON property names with.</summary>
  3059. </member>
  3060. <member name="P:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute.WriteIndented">
  3061. <summary>Gets or sets a value that indicates whether JSON output should be pretty-printed.</summary>
  3062. </member>
  3063. <member name="T:System.Text.Json.Serialization.JsonStringEnumConverter">
  3064. <summary>Converts enumeration values to and from strings.</summary>
  3065. </member>
  3066. <member name="M:System.Text.Json.Serialization.JsonStringEnumConverter.#ctor">
  3067. <summary>Initializes an instance of the <see cref="T:System.Text.Json.Serialization.JsonStringEnumConverter" /> class with the default naming policy that allows integer values.</summary>
  3068. </member>
  3069. <member name="M:System.Text.Json.Serialization.JsonStringEnumConverter.#ctor(System.Text.Json.JsonNamingPolicy,System.Boolean)">
  3070. <summary>Initializes an instance of the <see cref="T:System.Text.Json.Serialization.JsonStringEnumConverter" /> class with a specified naming policy and a value that indicates whether undefined enumeration values are allowed.</summary>
  3071. <param name="namingPolicy">The optional naming policy for writing enum values.</param>
  3072. <param name="allowIntegerValues">
  3073. <see langword="true" /> to allow undefined enum values; otherwise, <see langword="false" />. When <see langword="true" />, if an enum value isn't defined, it will output as a number rather than a string.</param>
  3074. </member>
  3075. <member name="M:System.Text.Json.Serialization.JsonStringEnumConverter.CanConvert(System.Type)">
  3076. <summary>Determines whether the specified type can be converted to an enum.</summary>
  3077. <param name="typeToConvert">The type to be checked.</param>
  3078. <returns>
  3079. <see langword="true" /> if the type can be converted; otherwise, <see langword="false" />.</returns>
  3080. </member>
  3081. <member name="M:System.Text.Json.Serialization.JsonStringEnumConverter.CreateConverter(System.Type,System.Text.Json.JsonSerializerOptions)">
  3082. <summary>Creates a converter for the specified type.</summary>
  3083. <param name="typeToConvert">The type handled by the converter.</param>
  3084. <param name="options">The serialization options to use.</param>
  3085. <returns>A converter for which <typeparamref name="T" /> is compatible with <paramref name="typeToConvert" />.</returns>
  3086. </member>
  3087. <member name="T:System.Text.Json.Serialization.JsonUnknownTypeHandling">
  3088. <summary>Defines how deserializing a type declared as an <see cref="T:System.Object" /> is handled during deserialization.</summary>
  3089. </member>
  3090. <member name="F:System.Text.Json.Serialization.JsonUnknownTypeHandling.JsonElement">
  3091. <summary>A type declared as <see cref="T:System.Object" /> is deserialized as a <see cref="F:System.Text.Json.Serialization.JsonUnknownTypeHandling.JsonElement" />.</summary>
  3092. </member>
  3093. <member name="F:System.Text.Json.Serialization.JsonUnknownTypeHandling.JsonNode">
  3094. <summary>A type declared as <see cref="T:System.Object" /> is deserialized as a <see cref="F:System.Text.Json.Serialization.JsonUnknownTypeHandling.JsonNode" />.</summary>
  3095. </member>
  3096. <member name="T:System.Text.Json.Serialization.Metadata.JsonMetadataServices">
  3097. <summary>Provides helpers to create and initialize metadata for JSON-serializable types.</summary>
  3098. </member>
  3099. <member name="M:System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateArrayInfo``1(System.Text.Json.JsonSerializerOptions,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Serialization.JsonNumberHandling,System.Action{System.Text.Json.Utf8JsonWriter,``0[]})">
  3100. <summary>Creates metadata for an array.</summary>
  3101. <param name="options">The <see cref="T:System.Text.Json.JsonSerializerOptions" /> to use.</param>
  3102. <param name="elementInfo">A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance representing the element type.</param>
  3103. <param name="numberHandling">The <see cref="T:System.Text.Json.Serialization.JsonNumberHandling" /> option to apply to number collection elements.</param>
  3104. <param name="serializeFunc">An optimized serialization implementation assuming pre-determined <see cref="T:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute" /> defaults.</param>
  3105. <typeparam name="TElement">The generic definition of the element type.</typeparam>
  3106. </member>
  3107. <member name="M:System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateConcurrentQueueInfo``2(System.Text.Json.JsonSerializerOptions,System.Func{``0},System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Serialization.JsonNumberHandling,System.Action{System.Text.Json.Utf8JsonWriter,``0})">
  3108. <summary>Creates metadata for types assignable to <see cref="T:System.Collections.Generic.Queue`1" />.</summary>
  3109. <param name="options" />
  3110. <param name="createObjectFunc">A <see cref="T:System.Func`1" /> to create an instance of the list when deserializing.</param>
  3111. <param name="elementInfo">A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance representing the element type.</param>
  3112. <param name="numberHandling">The <see cref="T:System.Text.Json.Serialization.JsonNumberHandling" /> option to apply to number collection elements.</param>
  3113. <param name="serializeFunc">An optimized serialization implementation assuming pre-determined <see cref="T:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute" /> defaults.</param>
  3114. <typeparam name="TCollection">The type of the collection.</typeparam>
  3115. <typeparam name="TElement">The generic definition of the element type.</typeparam>
  3116. </member>
  3117. <member name="M:System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateConcurrentStackInfo``2(System.Text.Json.JsonSerializerOptions,System.Func{``0},System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Serialization.JsonNumberHandling,System.Action{System.Text.Json.Utf8JsonWriter,``0})">
  3118. <summary>Creates metadata for types assignable to <see cref="T:System.Collections.Concurrent.ConcurrentStack`1" />.</summary>
  3119. <param name="options" />
  3120. <param name="createObjectFunc">A <see cref="T:System.Func`1" /> to create an instance of the list when deserializing.</param>
  3121. <param name="elementInfo">A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance representing the element type.</param>
  3122. <param name="numberHandling">The <see cref="T:System.Text.Json.Serialization.JsonNumberHandling" /> option to apply to number collection elements.</param>
  3123. <param name="serializeFunc">An optimized serialization implementation assuming pre-determined <see cref="T:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute" /> defaults.</param>
  3124. <typeparam name="TCollection">The generic definition of the type.</typeparam>
  3125. <typeparam name="TElement">The generic definition of the element type.</typeparam>
  3126. </member>
  3127. <member name="M:System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateDictionaryInfo``3(System.Text.Json.JsonSerializerOptions,System.Func{``0},System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Serialization.JsonNumberHandling,System.Action{System.Text.Json.Utf8JsonWriter,``0})">
  3128. <summary>Creates metadata for types assignable to <see cref="T:System.Collections.Generic.Dictionary`2" />.</summary>
  3129. <param name="options" />
  3130. <param name="createObjectFunc">A <see cref="T:System.Func`1" /> to create an instance of the list when deserializing.</param>
  3131. <param name="keyInfo">A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance representing the key type.</param>
  3132. <param name="valueInfo">A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance representing the value type.</param>
  3133. <param name="numberHandling">The <see cref="T:System.Text.Json.Serialization.JsonNumberHandling" /> option to apply to number collection elements.</param>
  3134. <param name="serializeFunc">An optimized serialization implementation assuming pre-determined <see cref="T:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute" /> defaults.</param>
  3135. <typeparam name="TCollection">The generic definition of the type.</typeparam>
  3136. <typeparam name="TKey">The generic definition of the key type.</typeparam>
  3137. <typeparam name="TValue">The generic definition of the value type.</typeparam>
  3138. </member>
  3139. <member name="M:System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateICollectionInfo``2(System.Text.Json.JsonSerializerOptions,System.Func{``0},System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Serialization.JsonNumberHandling,System.Action{System.Text.Json.Utf8JsonWriter,``0})">
  3140. <summary>Creates metadata for types assignable to <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
  3141. <param name="options" />
  3142. <param name="createObjectFunc">A <see cref="T:System.Func`1" /> to create an instance of the list when deserializing.</param>
  3143. <param name="elementInfo">A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance representing the element type.</param>
  3144. <param name="numberHandling">The <see cref="T:System.Text.Json.Serialization.JsonNumberHandling" /> option to apply to number collection elements.</param>
  3145. <param name="serializeFunc">An optimized serialization implementation assuming pre-determined <see cref="T:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute" /> defaults.</param>
  3146. <typeparam name="TCollection">The generic definition of the type.</typeparam>
  3147. <typeparam name="TElement">The generic definition of the element type.</typeparam>
  3148. </member>
  3149. <member name="M:System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateIDictionaryInfo``1(System.Text.Json.JsonSerializerOptions,System.Func{``0},System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Serialization.JsonNumberHandling,System.Action{System.Text.Json.Utf8JsonWriter,``0})">
  3150. <summary>Creates metadata for types assignable to <see cref="T:System.Collections.IDictionary" />.</summary>
  3151. <param name="options" />
  3152. <param name="createObjectFunc">A <see cref="T:System.Func`1" /> to create an instance of the list when deserializing.</param>
  3153. <param name="stringInfo">A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance representing <see cref="T:System.String" /> instances.</param>
  3154. <param name="objectInfo">A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance representing <see cref="T:System.Object" /> instances.</param>
  3155. <param name="numberHandling">The <see cref="T:System.Text.Json.Serialization.JsonNumberHandling" /> option to apply to number collection elements.</param>
  3156. <param name="serializeFunc">An optimized serialization implementation assuming pre-determined <see cref="T:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute" /> defaults.</param>
  3157. <typeparam name="TCollection">The generic definition of the type.</typeparam>
  3158. </member>
  3159. <member name="M:System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateIDictionaryInfo``3(System.Text.Json.JsonSerializerOptions,System.Func{``0},System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Serialization.JsonNumberHandling,System.Action{System.Text.Json.Utf8JsonWriter,``0})">
  3160. <summary>Creates metadata for types assignable to <see cref="T:System.Collections.Generic.IDictionary`2" />.</summary>
  3161. <param name="options" />
  3162. <param name="createObjectFunc">A <see cref="T:System.Func`1" /> to create an instance of the list when deserializing.</param>
  3163. <param name="keyInfo">A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance representing the key type.</param>
  3164. <param name="valueInfo">A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance representing the value type.</param>
  3165. <param name="numberHandling">The <see cref="T:System.Text.Json.Serialization.JsonNumberHandling" /> option to apply to number collection elements.</param>
  3166. <param name="serializeFunc">An optimized serialization implementation assuming pre-determined <see cref="T:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute" /> defaults.</param>
  3167. <typeparam name="TCollection">The generic definition of the type.</typeparam>
  3168. <typeparam name="TKey">The generic definition of the key type.</typeparam>
  3169. <typeparam name="TValue">The generic definition of the value type.</typeparam>
  3170. </member>
  3171. <member name="M:System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateIEnumerableInfo``1(System.Text.Json.JsonSerializerOptions,System.Func{``0},System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Serialization.JsonNumberHandling,System.Action{System.Text.Json.Utf8JsonWriter,``0})">
  3172. <summary>Creates metadata for types assignable to <see cref="T:System.Collections.IList" />.</summary>
  3173. <param name="options" />
  3174. <param name="createObjectFunc">A <see cref="T:System.Func`1" /> to create an instance of the list when deserializing.</param>
  3175. <param name="elementInfo">A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance representing the element type.</param>
  3176. <param name="numberHandling">The <see cref="T:System.Text.Json.Serialization.JsonNumberHandling" /> option to apply to number collection elements.</param>
  3177. <param name="serializeFunc">An optimized serialization implementation assuming pre-determined <see cref="T:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute" /> defaults.</param>
  3178. <typeparam name="TCollection">The generic definition of the type.</typeparam>
  3179. </member>
  3180. <member name="M:System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateIEnumerableInfo``2(System.Text.Json.JsonSerializerOptions,System.Func{``0},System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Serialization.JsonNumberHandling,System.Action{System.Text.Json.Utf8JsonWriter,``0})">
  3181. <summary>Creates metadata for types assignable to <see cref="T:System.Collections.Generic.IEnumerable`1" />.</summary>
  3182. <param name="options" />
  3183. <param name="createObjectFunc">A <see cref="T:System.Func`1" /> to create an instance of the list when deserializing.</param>
  3184. <param name="elementInfo">A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance representing the element type.</param>
  3185. <param name="numberHandling">The <see cref="T:System.Text.Json.Serialization.JsonNumberHandling" /> option to apply to number collection elements.</param>
  3186. <param name="serializeFunc">An optimized serialization implementation assuming pre-determined <see cref="T:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute" /> defaults.</param>
  3187. <typeparam name="TCollection">The generic definition of the type.</typeparam>
  3188. <typeparam name="TElement">The generic definition of the element type.</typeparam>
  3189. </member>
  3190. <member name="M:System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateIListInfo``1(System.Text.Json.JsonSerializerOptions,System.Func{``0},System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Serialization.JsonNumberHandling,System.Action{System.Text.Json.Utf8JsonWriter,``0})">
  3191. <summary>Creates metadata for types assignable to <see cref="T:System.Collections.IList" />.</summary>
  3192. <param name="options" />
  3193. <param name="createObjectFunc">A <see cref="T:System.Func`1" /> to create an instance of the list when deserializing.</param>
  3194. <param name="objectInfo">A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance representing the element type.</param>
  3195. <param name="numberHandling">The <see cref="T:System.Text.Json.Serialization.JsonNumberHandling" /> option to apply to number collection elements.</param>
  3196. <param name="serializeFunc">An optimized serialization implementation assuming pre-determined <see cref="T:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute" /> defaults.</param>
  3197. <typeparam name="TCollection">The generic definition of the type.</typeparam>
  3198. </member>
  3199. <member name="M:System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateIListInfo``2(System.Text.Json.JsonSerializerOptions,System.Func{``0},System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Serialization.JsonNumberHandling,System.Action{System.Text.Json.Utf8JsonWriter,``0})">
  3200. <summary>Creates metadata for types assignable to <see cref="T:System.Collections.Generic.IList`1" />.</summary>
  3201. <param name="options" />
  3202. <param name="createObjectFunc">A <see cref="T:System.Func`1" /> to create an instance of the list when deserializing.</param>
  3203. <param name="elementInfo">A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance representing the element type.</param>
  3204. <param name="numberHandling">The <see cref="T:System.Text.Json.Serialization.JsonNumberHandling" /> option to apply to number collection elements.</param>
  3205. <param name="serializeFunc">An optimized serialization implementation assuming pre-determined <see cref="T:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute" /> defaults.</param>
  3206. <typeparam name="TCollection">The generic definition of the type.</typeparam>
  3207. <typeparam name="TElement">The generic definition of the element type.</typeparam>
  3208. </member>
  3209. <member name="M:System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateImmutableDictionaryInfo``3(System.Text.Json.JsonSerializerOptions,System.Func{``0},System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Serialization.JsonNumberHandling,System.Action{System.Text.Json.Utf8JsonWriter,``0},System.Func{System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``1,``2}},``0})">
  3210. <summary>Creates metadata for <see cref="T:System.Collections.Immutable.ImmutableDictionary`2" /> and types assignable to <see cref="T:System.Collections.Immutable.ImmutableDictionary`2" />.</summary>
  3211. <param name="options" />
  3212. <param name="createObjectFunc">A <see cref="T:System.Func`1" /> to create an instance of the list when deserializing.</param>
  3213. <param name="keyInfo">A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance representing the key type.</param>
  3214. <param name="valueInfo">A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance representing the value type.</param>
  3215. <param name="numberHandling">The <see cref="T:System.Text.Json.Serialization.JsonNumberHandling" /> option to apply to number collection elements.</param>
  3216. <param name="serializeFunc">An optimized serialization implementation assuming pre-determined <see cref="T:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute" /> defaults.</param>
  3217. <param name="createRangeFunc">A method to create an immutable dictionary instance.</param>
  3218. <typeparam name="TCollection">The generic definition of the type.</typeparam>
  3219. <typeparam name="TKey">The generic definition of the key type.</typeparam>
  3220. <typeparam name="TValue">The generic definition of the value type.</typeparam>
  3221. </member>
  3222. <member name="M:System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateImmutableEnumerableInfo``2(System.Text.Json.JsonSerializerOptions,System.Func{``0},System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Serialization.JsonNumberHandling,System.Action{System.Text.Json.Utf8JsonWriter,``0},System.Func{System.Collections.Generic.IEnumerable{``1},``0})">
  3223. <summary>Creates metadata for non-dictionary immutable collection types.</summary>
  3224. <param name="options" />
  3225. <param name="createObjectFunc">A <see cref="T:System.Func`1" /> to create an instance of the list when deserializing.</param>
  3226. <param name="elementInfo">A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance representing the element type.</param>
  3227. <param name="numberHandling">The <see cref="T:System.Text.Json.Serialization.JsonNumberHandling" /> option to apply to number collection elements.</param>
  3228. <param name="serializeFunc">An optimized serialization implementation assuming pre-determined <see cref="T:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute" /> defaults.</param>
  3229. <param name="createRangeFunc">A method to create an immutable dictionary instance.</param>
  3230. <typeparam name="TCollection">The generic definition of the type.</typeparam>
  3231. <typeparam name="TElement">The generic definition of the element type.</typeparam>
  3232. </member>
  3233. <member name="M:System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateIReadOnlyDictionaryInfo``3(System.Text.Json.JsonSerializerOptions,System.Func{``0},System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Serialization.JsonNumberHandling,System.Action{System.Text.Json.Utf8JsonWriter,``0})">
  3234. <summary>Creates metadata for types assignable to <see cref="T:System.Collections.Generic.IReadOnlyDictionary`2" />.</summary>
  3235. <param name="options" />
  3236. <param name="createObjectFunc">A <see cref="T:System.Func`1" /> to create an instance of the list when deserializing.</param>
  3237. <param name="keyInfo">A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance representing the key type.</param>
  3238. <param name="valueInfo">A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance representing the value type.</param>
  3239. <param name="numberHandling">The <see cref="T:System.Text.Json.Serialization.JsonNumberHandling" /> option to apply to number collection elements.</param>
  3240. <param name="serializeFunc">An optimized serialization implementation assuming pre-determined <see cref="T:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute" /> defaults.</param>
  3241. <typeparam name="TCollection">The generic definition of the type.</typeparam>
  3242. <typeparam name="TKey">The generic definition of the key type.</typeparam>
  3243. <typeparam name="TValue">The generic definition of the value type.</typeparam>
  3244. </member>
  3245. <member name="M:System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateISetInfo``2(System.Text.Json.JsonSerializerOptions,System.Func{``0},System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Serialization.JsonNumberHandling,System.Action{System.Text.Json.Utf8JsonWriter,``0})">
  3246. <summary>Creates metadata for types assignable to <see cref="T:System.Collections.Generic.ISet`1" />.</summary>
  3247. <param name="options" />
  3248. <param name="createObjectFunc">A <see cref="T:System.Func`1" /> to create an instance of the list when deserializing.</param>
  3249. <param name="elementInfo">A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance representing the element type.</param>
  3250. <param name="numberHandling">The <see cref="T:System.Text.Json.Serialization.JsonNumberHandling" /> option to apply to number collection elements.</param>
  3251. <param name="serializeFunc">An optimized serialization implementation assuming pre-determined <see cref="T:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute" /> defaults.</param>
  3252. <typeparam name="TCollection">The generic definition of the type.</typeparam>
  3253. <typeparam name="TElement">The generic definition of the element type.</typeparam>
  3254. </member>
  3255. <member name="M:System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateListInfo``2(System.Text.Json.JsonSerializerOptions,System.Func{``0},System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Serialization.JsonNumberHandling,System.Action{System.Text.Json.Utf8JsonWriter,``0})">
  3256. <summary>Creates metadata for types assignable to <see cref="T:System.Collections.Generic.List`1" />.</summary>
  3257. <param name="options" />
  3258. <param name="createObjectFunc">A <see cref="T:System.Func`1" /> to create an instance of the list when deserializing.</param>
  3259. <param name="elementInfo">A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance representing the element type.</param>
  3260. <param name="numberHandling">The <see cref="T:System.Text.Json.Serialization.JsonNumberHandling" /> option to apply to number collection elements.</param>
  3261. <param name="serializeFunc">An optimized serialization implementation assuming pre-determined <see cref="T:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute" /> defaults.</param>
  3262. <typeparam name="TCollection">The generic definition of the type.</typeparam>
  3263. <typeparam name="TElement">The generic definition of the element type.</typeparam>
  3264. </member>
  3265. <member name="M:System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo``1(System.Text.Json.JsonSerializerOptions,System.Text.Json.Serialization.Metadata.JsonObjectInfoValues{``0})">
  3266. <summary>Creates metadata for a complex class or struct.</summary>
  3267. <param name="options">The <see cref="T:System.Text.Json.JsonSerializerOptions" /> to initialize the metadata with.</param>
  3268. <param name="objectInfo">Provides serialization metadata about an object type with constructors, properties, and fields.</param>
  3269. <typeparam name="T">The type of the class or struct.</typeparam>
  3270. <exception cref="T:System.ArgumentNullException">
  3271. <paramref name="options" /> or <paramref name="objectInfo" /> is <see langword="null" />.</exception>
  3272. <returns>A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo`1" /> instance representing the class or struct.</returns>
  3273. </member>
  3274. <member name="M:System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreatePropertyInfo``1(System.Text.Json.JsonSerializerOptions,System.Boolean,System.Boolean,System.Boolean,System.Type,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Serialization.JsonConverter{``0},System.Func{System.Object,``0},System.Action{System.Object,``0},System.Nullable{System.Text.Json.Serialization.JsonIgnoreCondition},System.Boolean,System.Nullable{System.Text.Json.Serialization.JsonNumberHandling},System.String,System.String)">
  3275. <summary>Creates metadata for a property or field.</summary>
  3276. <param name="options">The <see cref="T:System.Text.Json.JsonSerializerOptions" /> to initialize the metadata with.</param>
  3277. <param name="isProperty">Whether the CLR member is a property or field.</param>
  3278. <param name="isPublic">Whether the CLR member is public.</param>
  3279. <param name="isVirtual">Whether the CLR member is a virtual property.</param>
  3280. <param name="declaringType">The declaring type of the property or field.</param>
  3281. <param name="propertyTypeInfo">The <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> info for the property or field's type.</param>
  3282. <param name="converter">A <see cref="T:System.Text.Json.Serialization.JsonConverter" /> for the property or field, specified by <see cref="T:System.Text.Json.Serialization.JsonConverterAttribute" />.</param>
  3283. <param name="getter">Provides a mechanism to get the property or field's value.</param>
  3284. <param name="setter">Provides a mechanism to set the property or field's value.</param>
  3285. <param name="ignoreCondition">Specifies a condition for the property to be ignored.</param>
  3286. <param name="hasJsonInclude">Whether the property was annotated with <see cref="T:System.Text.Json.Serialization.JsonIncludeAttribute" />.</param>
  3287. <param name="numberHandling">If the property or field is a number, specifies how it should processed when serializing and deserializing.</param>
  3288. <param name="propertyName">The CLR name of the property or field.</param>
  3289. <param name="jsonPropertyName">The name to be used when processing the property or field, specified by <see cref="T:System.Text.Json.Serialization.JsonPropertyNameAttribute" />.</param>
  3290. <typeparam name="T">The type that the converter for the property returns or accepts when converting JSON data.</typeparam>
  3291. <returns>A <see cref="T:System.Text.Json.Serialization.Metadata.JsonPropertyInfo" /> instance intialized with the provided metadata.</returns>
  3292. </member>
  3293. <member name="M:System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateQueueInfo``2(System.Text.Json.JsonSerializerOptions,System.Func{``0},System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Serialization.JsonNumberHandling,System.Action{System.Text.Json.Utf8JsonWriter,``0})">
  3294. <summary>Creates metadata for types assignable to <see cref="T:System.Collections.Generic.Queue`1" />.</summary>
  3295. <param name="options" />
  3296. <param name="createObjectFunc">A <see cref="T:System.Func`1" /> to create an instance of the list when deserializing.</param>
  3297. <param name="elementInfo">A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance representing the element type.</param>
  3298. <param name="numberHandling">The <see cref="T:System.Text.Json.Serialization.JsonNumberHandling" /> option to apply to number collection elements.</param>
  3299. <param name="serializeFunc">An optimized serialization implementation assuming pre-determined <see cref="T:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute" /> defaults.</param>
  3300. <typeparam name="TCollection">The generic definition of the type.</typeparam>
  3301. <typeparam name="TElement">The generic definition of the element type.</typeparam>
  3302. </member>
  3303. <member name="M:System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateStackInfo``2(System.Text.Json.JsonSerializerOptions,System.Func{``0},System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Serialization.JsonNumberHandling,System.Action{System.Text.Json.Utf8JsonWriter,``0})">
  3304. <summary>Creates metadata for types assignable to <see cref="T:System.Collections.Generic.Stack`1" />.</summary>
  3305. <param name="options" />
  3306. <param name="createObjectFunc">A <see cref="T:System.Func`1" /> to create an instance of the list when deserializing.</param>
  3307. <param name="elementInfo">A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance representing the element type.</param>
  3308. <param name="numberHandling">The <see cref="T:System.Text.Json.Serialization.JsonNumberHandling" /> option to apply to number collection elements.</param>
  3309. <param name="serializeFunc">An optimized serialization implementation assuming pre-determined <see cref="T:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute" /> defaults.</param>
  3310. <typeparam name="TCollection">The generic definition of the type.</typeparam>
  3311. <typeparam name="TElement">The generic definition of the element type.</typeparam>
  3312. </member>
  3313. <member name="M:System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateStackOrQueueInfo``1(System.Text.Json.JsonSerializerOptions,System.Func{``0},System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Serialization.JsonNumberHandling,System.Action{System.Text.Json.Utf8JsonWriter,``0},System.Action{``0,System.Object})">
  3314. <summary>Creates metadata for types assignable to <see cref="T:System.Collections.IList" />.</summary>
  3315. <param name="options" />
  3316. <param name="createObjectFunc">A <see cref="T:System.Func`1" /> to create an instance of the list when deserializing.</param>
  3317. <param name="elementInfo">A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance representing the element type.</param>
  3318. <param name="numberHandling">The <see cref="T:System.Text.Json.Serialization.JsonNumberHandling" /> option to apply to number collection elements.</param>
  3319. <param name="serializeFunc">An optimized serialization implementation assuming pre-determined <see cref="T:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute" /> defaults.</param>
  3320. <param name="addFunc">A method for adding elements to the collection when using the serializer's code-paths.</param>
  3321. <typeparam name="TCollection">The generic definition of the type.</typeparam>
  3322. </member>
  3323. <member name="M:System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateValueInfo``1(System.Text.Json.JsonSerializerOptions,System.Text.Json.Serialization.JsonConverter)">
  3324. <summary>Creates metadata for a primitive or a type with a custom converter.</summary>
  3325. <param name="options" />
  3326. <param name="converter" />
  3327. <typeparam name="T">The generic type definition.</typeparam>
  3328. <returns>A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo`1" /> instance representing the type.</returns>
  3329. </member>
  3330. <member name="M:System.Text.Json.Serialization.Metadata.JsonMetadataServices.GetEnumConverter``1(System.Text.Json.JsonSerializerOptions)">
  3331. <summary>Creates a <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> instance that converts <typeparamref name="T" /> values.</summary>
  3332. <param name="options">The <see cref="T:System.Text.Json.JsonSerializerOptions" /> to use for serialization and deserialization.</param>
  3333. <typeparam name="T">The generic definition for the enum type.</typeparam>
  3334. </member>
  3335. <member name="M:System.Text.Json.Serialization.Metadata.JsonMetadataServices.GetNullableConverter``1(System.Text.Json.Serialization.Metadata.JsonTypeInfo{``0})">
  3336. <summary>Creates a <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> instance that converts <typeparamref name="T??" /> values.</summary>
  3337. <param name="underlyingTypeInfo">Serialization metadata for the underlying nullable type.</param>
  3338. <typeparam name="T">The generic definition for the underlying nullable type.</typeparam>
  3339. </member>
  3340. <member name="P:System.Text.Json.Serialization.Metadata.JsonMetadataServices.BooleanConverter">
  3341. <summary>Returns a <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> instance that converts <see cref="T:System.Boolean" /> values.</summary>
  3342. </member>
  3343. <member name="P:System.Text.Json.Serialization.Metadata.JsonMetadataServices.ByteArrayConverter">
  3344. <summary>Returns a <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> instance that converts byte array values.</summary>
  3345. </member>
  3346. <member name="P:System.Text.Json.Serialization.Metadata.JsonMetadataServices.ByteConverter">
  3347. <summary>Returns a <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> instance that converts <see cref="T:System.Byte" /> values.</summary>
  3348. </member>
  3349. <member name="P:System.Text.Json.Serialization.Metadata.JsonMetadataServices.CharConverter">
  3350. <summary>Returns a <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> instance that converts <see cref="T:System.Char" /> values.</summary>
  3351. </member>
  3352. <member name="P:System.Text.Json.Serialization.Metadata.JsonMetadataServices.DateTimeConverter">
  3353. <summary>Returns a <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> instance that converts <see cref="T:System.DateTime" /> values.</summary>
  3354. </member>
  3355. <member name="P:System.Text.Json.Serialization.Metadata.JsonMetadataServices.DateTimeOffsetConverter">
  3356. <summary>Returns a <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> instance that converts <see cref="T:System.DateTimeOffset" /> values.</summary>
  3357. </member>
  3358. <member name="P:System.Text.Json.Serialization.Metadata.JsonMetadataServices.DecimalConverter">
  3359. <summary>Returns a <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> instance that converts <see cref="T:System.Decimal" /> values.</summary>
  3360. </member>
  3361. <member name="P:System.Text.Json.Serialization.Metadata.JsonMetadataServices.DoubleConverter">
  3362. <summary>Returns a <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> instance that converts <see cref="T:System.Double" /> values.</summary>
  3363. </member>
  3364. <member name="P:System.Text.Json.Serialization.Metadata.JsonMetadataServices.GuidConverter">
  3365. <summary>Returns a <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> instance that converts <see cref="T:System.Guid" /> values.</summary>
  3366. </member>
  3367. <member name="P:System.Text.Json.Serialization.Metadata.JsonMetadataServices.Int16Converter">
  3368. <summary>Returns a <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> instance that converts <see cref="T:System.Int16" /> values.</summary>
  3369. </member>
  3370. <member name="P:System.Text.Json.Serialization.Metadata.JsonMetadataServices.Int32Converter">
  3371. <summary>Returns a <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> instance that converts <see cref="T:System.Int32" /> values.</summary>
  3372. </member>
  3373. <member name="P:System.Text.Json.Serialization.Metadata.JsonMetadataServices.Int64Converter">
  3374. <summary>Returns a <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> instance that converts <see cref="T:System.Int64" /> values.</summary>
  3375. </member>
  3376. <member name="P:System.Text.Json.Serialization.Metadata.JsonMetadataServices.JsonElementConverter">
  3377. <summary>Gets a JSON converter that converts <see cref="T:System.Text.Json.JsonElement" /> values.</summary>
  3378. </member>
  3379. <member name="P:System.Text.Json.Serialization.Metadata.JsonMetadataServices.ObjectConverter">
  3380. <summary>Returns a <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> instance that converts <see cref="T:System.Object" /> values.</summary>
  3381. </member>
  3382. <member name="P:System.Text.Json.Serialization.Metadata.JsonMetadataServices.SByteConverter">
  3383. <summary>Returns a <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> instance that converts <see cref="T:System.SByte" /> values.</summary>
  3384. </member>
  3385. <member name="P:System.Text.Json.Serialization.Metadata.JsonMetadataServices.SingleConverter">
  3386. <summary>Returns a <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> instance that converts <see cref="T:System.Single" /> values.</summary>
  3387. </member>
  3388. <member name="P:System.Text.Json.Serialization.Metadata.JsonMetadataServices.StringConverter">
  3389. <summary>Returns a <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> instance that converts <see cref="T:System.String" /> values.</summary>
  3390. </member>
  3391. <member name="P:System.Text.Json.Serialization.Metadata.JsonMetadataServices.TimeSpanConverter">
  3392. <summary>Gets a JSON converter that converts <see cref="T:System.TimeSpan" /> values.</summary>
  3393. </member>
  3394. <member name="P:System.Text.Json.Serialization.Metadata.JsonMetadataServices.UInt16Converter">
  3395. <summary>Returns a <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> instance that converts <see cref="T:System.UInt16" /> values.</summary>
  3396. </member>
  3397. <member name="P:System.Text.Json.Serialization.Metadata.JsonMetadataServices.UInt32Converter">
  3398. <summary>Returns a <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> instance that converts <see cref="T:System.UInt32" /> values.</summary>
  3399. </member>
  3400. <member name="P:System.Text.Json.Serialization.Metadata.JsonMetadataServices.UInt64Converter">
  3401. <summary>Returns a <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> instance that converts <see cref="T:System.UInt64" /> values.</summary>
  3402. </member>
  3403. <member name="P:System.Text.Json.Serialization.Metadata.JsonMetadataServices.UriConverter">
  3404. <summary>Returns a <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> instance that converts <see cref="T:System.Uri" /> values.</summary>
  3405. </member>
  3406. <member name="P:System.Text.Json.Serialization.Metadata.JsonMetadataServices.VersionConverter">
  3407. <summary>Returns a <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> instance that converts <see cref="T:System.Version" /> values.</summary>
  3408. </member>
  3409. <member name="T:System.Text.Json.Serialization.Metadata.JsonObjectInfoValues`1">
  3410. <summary>Provides serialization metadata about an object type with constructors, properties, and fields.</summary>
  3411. <typeparam name="T">The object type to serialize or deserialize.</typeparam>
  3412. </member>
  3413. <member name="M:System.Text.Json.Serialization.Metadata.JsonObjectInfoValues`1.#ctor" />
  3414. <member name="P:System.Text.Json.Serialization.Metadata.JsonObjectInfoValues`1.ConstructorParameterMetadataInitializer">
  3415. <summary>Provides a mechanism to initialize metadata for a parameterized constructor of the class or struct to be used when deserializing.</summary>
  3416. </member>
  3417. <member name="P:System.Text.Json.Serialization.Metadata.JsonObjectInfoValues`1.NumberHandling">
  3418. <summary>Gets or sets an object that specifies how number properties and fields should be processed when serializing and deserializing.</summary>
  3419. </member>
  3420. <member name="P:System.Text.Json.Serialization.Metadata.JsonObjectInfoValues`1.ObjectCreator">
  3421. <summary>Gets or sets a mechanism to create an instance of the class or struct using a parameterless constructor during deserialization.</summary>
  3422. </member>
  3423. <member name="P:System.Text.Json.Serialization.Metadata.JsonObjectInfoValues`1.ObjectWithParameterizedConstructorCreator">
  3424. <summary>Gets or sets a mechanism to create an instance of the class or struct using a parameterized constructor during deserialization.</summary>
  3425. </member>
  3426. <member name="P:System.Text.Json.Serialization.Metadata.JsonObjectInfoValues`1.PropertyMetadataInitializer">
  3427. <summary>Gets or sets a mechanism to initialize metadata for properties and fields of the class or struct.</summary>
  3428. </member>
  3429. <member name="P:System.Text.Json.Serialization.Metadata.JsonObjectInfoValues`1.SerializeHandler">
  3430. <summary>Gets or sets a serialization implementation for instances of the class or struct that assumes options specified by <see cref="T:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute" />.</summary>
  3431. </member>
  3432. <member name="T:System.Text.Json.Serialization.Metadata.JsonParameterInfoValues">
  3433. <summary>Provides information about a constructor parameter required for JSON deserialization.</summary>
  3434. </member>
  3435. <member name="M:System.Text.Json.Serialization.Metadata.JsonParameterInfoValues.#ctor" />
  3436. <member name="P:System.Text.Json.Serialization.Metadata.JsonParameterInfoValues.DefaultValue">
  3437. <summary>Gets or sets the default value of the parameter.</summary>
  3438. </member>
  3439. <member name="P:System.Text.Json.Serialization.Metadata.JsonParameterInfoValues.HasDefaultValue">
  3440. <summary>Gets or sets a value that specifies whether a default value was specified for the parameter.</summary>
  3441. </member>
  3442. <member name="P:System.Text.Json.Serialization.Metadata.JsonParameterInfoValues.Name">
  3443. <summary>Gets or sets the name of the parameter.</summary>
  3444. </member>
  3445. <member name="P:System.Text.Json.Serialization.Metadata.JsonParameterInfoValues.ParameterType">
  3446. <summary>Gets or sets the type of the parameter.</summary>
  3447. </member>
  3448. <member name="P:System.Text.Json.Serialization.Metadata.JsonParameterInfoValues.Position">
  3449. <summary>Gets or sets the zero-based position of the parameter in the formal parameter list.</summary>
  3450. </member>
  3451. <member name="T:System.Text.Json.Serialization.Metadata.JsonPropertyInfo">
  3452. <summary>Provides JSON serialization-related metadata about a property or field.</summary>
  3453. </member>
  3454. <member name="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo">
  3455. <summary>Provides JSON serialization-related metadata about a type.</summary>
  3456. </member>
  3457. <member name="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo`1">
  3458. <summary>Provides JSON serialization-related metadata about a type.</summary>
  3459. <typeparam name="T">The generic definition of the type.</typeparam>
  3460. </member>
  3461. <member name="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.Serialize">
  3462. <summary>A method that serializes an instance of <typeparamref name="T" /> using <see cref="T:System.Text.Json.Serialization.JsonSourceGenerationOptionsAttribute" /> values specified at design time.</summary>
  3463. </member>
  3464. <member name="T:System.Text.Json.Serialization.ReferenceHandler">
  3465. <summary>This class defines how the <see cref="T:System.Text.Json.JsonSerializer" /> deals with references on serialization and deserialization.</summary>
  3466. </member>
  3467. <member name="M:System.Text.Json.Serialization.ReferenceHandler.#ctor">
  3468. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Serialization.ReferenceHandler" /> class.</summary>
  3469. </member>
  3470. <member name="M:System.Text.Json.Serialization.ReferenceHandler.CreateResolver">
  3471. <summary>Returns the <see cref="T:System.Text.Json.Serialization.ReferenceResolver" /> used for each serialization call.</summary>
  3472. <returns>The resolver to use for serialization and deserialization.</returns>
  3473. </member>
  3474. <member name="P:System.Text.Json.Serialization.ReferenceHandler.IgnoreCycles">
  3475. <summary>Ignores an object when a reference cycle is detected during serialization.</summary>
  3476. </member>
  3477. <member name="P:System.Text.Json.Serialization.ReferenceHandler.Preserve">
  3478. <summary>Metadata properties will be honored when deserializing JSON objects and arrays into reference types and written when serializing reference types. This is necessary to create round-trippable JSON from objects that contain cycles or duplicate references.</summary>
  3479. </member>
  3480. <member name="T:System.Text.Json.Serialization.ReferenceHandler`1">
  3481. <summary>This class defines how the <see cref="T:System.Text.Json.JsonSerializer" /> deals with references on serialization and deserialization.</summary>
  3482. <typeparam name="T">The type of the <see cref="T:System.Text.Json.Serialization.ReferenceResolver" /> to create on each serialization or deserialization call.</typeparam>
  3483. </member>
  3484. <member name="M:System.Text.Json.Serialization.ReferenceHandler`1.#ctor">
  3485. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Serialization.ReferenceHandler`1" /> generic class that can create a <see cref="T:System.Text.Json.Serialization.ReferenceResolver" /> instance of the specified type.</summary>
  3486. </member>
  3487. <member name="M:System.Text.Json.Serialization.ReferenceHandler`1.CreateResolver">
  3488. <summary>Creates a new <see cref="T:System.Text.Json.Serialization.ReferenceResolver" /> of type <typeparamref name="T" /> used for each serialization call.</summary>
  3489. <returns>The new resolver to use for serialization and deserialization.</returns>
  3490. </member>
  3491. <member name="T:System.Text.Json.Serialization.ReferenceResolver">
  3492. <summary>This class defines how the <see cref="T:System.Text.Json.JsonSerializer" /> deals with references on serialization and deserialization.
  3493. Defines the core behavior of preserving references on serialization and deserialization.</summary>
  3494. </member>
  3495. <member name="M:System.Text.Json.Serialization.ReferenceResolver.#ctor">
  3496. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Serialization.ReferenceResolver" /> class.</summary>
  3497. </member>
  3498. <member name="M:System.Text.Json.Serialization.ReferenceResolver.AddReference(System.String,System.Object)">
  3499. <summary>Adds an entry to the bag of references using the specified id and value.
  3500. This method gets called when an $id metadata property from a JSON object is read.</summary>
  3501. <param name="referenceId">The identifier of the JSON object or array.</param>
  3502. <param name="value">The value of the CLR reference type object that results from parsing the JSON object.</param>
  3503. </member>
  3504. <member name="M:System.Text.Json.Serialization.ReferenceResolver.GetReference(System.Object,System.Boolean@)">
  3505. <summary>Gets the reference identifier of the specified value if exists; otherwise a new id is assigned.
  3506. This method gets called before a CLR object is written so we can decide whether to write $id and enumerate the rest of its properties or $ref and step into the next object.</summary>
  3507. <param name="value">The value of the CLR reference type object to get an id for.</param>
  3508. <param name="alreadyExists">When this method returns, <see langword="true" /> if a reference to value already exists; otherwise, <see langword="false" />.</param>
  3509. <returns>The reference id for the specified object.</returns>
  3510. </member>
  3511. <member name="M:System.Text.Json.Serialization.ReferenceResolver.ResolveReference(System.String)">
  3512. <summary>Returns the CLR reference type object related to the specified reference id.
  3513. This method gets called when $ref metadata property is read.</summary>
  3514. <param name="referenceId">The reference id related to the returned object.</param>
  3515. <returns>The reference type object related to the specified reference id.</returns>
  3516. </member>
  3517. <member name="T:System.Text.Json.Utf8JsonReader">
  3518. <summary>Provides a high-performance API for forward-only, read-only access to UTF-8 encoded JSON text.</summary>
  3519. </member>
  3520. <member name="M:System.Text.Json.Utf8JsonReader.#ctor(System.Buffers.ReadOnlySequence{System.Byte},System.Boolean,System.Text.Json.JsonReaderState)">
  3521. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Utf8JsonReader" /> structure that processes a read-only sequence of UTF-8 encoded text and indicates whether the input contains all the text to process.</summary>
  3522. <param name="jsonData">The UTF-8 encoded JSON text to process.</param>
  3523. <param name="isFinalBlock">
  3524. <see langword="true" /> to indicate that the input sequence contains the entire data to process; <see langword="false" /> to indicate that the input span contains partial data with more data to follow.</param>
  3525. <param name="state">An object that contains the reader state. If this is the first call to the constructor, pass the default state; otherwise, pass the value of the <see cref="P:System.Text.Json.Utf8JsonReader.CurrentState" /> property from the previous instance of the <see cref="T:System.Text.Json.Utf8JsonReader" />.</param>
  3526. </member>
  3527. <member name="M:System.Text.Json.Utf8JsonReader.#ctor(System.Buffers.ReadOnlySequence{System.Byte},System.Text.Json.JsonReaderOptions)">
  3528. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Utf8JsonReader" /> structure that processes a read-only sequence of UTF-8 encoded text using the specified options.</summary>
  3529. <param name="jsonData">The UTF-8 encoded JSON text to process.</param>
  3530. <param name="options">Defines customized behavior of the <see cref="T:System.Text.Json.Utf8JsonReader" /> that differs from the JSON RFC (for example how to handle comments or maximum depth allowed when reading). By default, the <see cref="T:System.Text.Json.Utf8JsonReader" /> follows the JSON RFC strictly; comments within the JSON are invalid, and the maximum depth is 64.</param>
  3531. </member>
  3532. <member name="M:System.Text.Json.Utf8JsonReader.#ctor(System.ReadOnlySpan{System.Byte},System.Boolean,System.Text.Json.JsonReaderState)">
  3533. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Utf8JsonReader" /> structure that processes a read-only span of UTF-8 encoded text and indicates whether the input contains all the text to process.</summary>
  3534. <param name="jsonData">The UTF-8 encoded JSON text to process.</param>
  3535. <param name="isFinalBlock">
  3536. <see langword="true" /> to indicate that the input sequence contains the entire data to process; <see langword="false" /> to indicate that the input span contains partial data with more data to follow.</param>
  3537. <param name="state">An object that contains the reader state. If this is the first call to the constructor, pass the default state; otherwise, pass the value of the <see cref="P:System.Text.Json.Utf8JsonReader.CurrentState" /> property from the previous instance of the <see cref="T:System.Text.Json.Utf8JsonReader" />.</param>
  3538. </member>
  3539. <member name="M:System.Text.Json.Utf8JsonReader.#ctor(System.ReadOnlySpan{System.Byte},System.Text.Json.JsonReaderOptions)">
  3540. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Utf8JsonReader" /> structure that processes a read-only span of UTF-8 encoded text using the specified options.</summary>
  3541. <param name="jsonData">The UTF-8 encoded JSON text to process.</param>
  3542. <param name="options">Defines customized behavior of the <see cref="T:System.Text.Json.Utf8JsonReader" /> that differs from the JSON RFC (for example how to handle comments or maximum depth allowed when reading). By default, the <see cref="T:System.Text.Json.Utf8JsonReader" /> follows the JSON RFC strictly; comments within the JSON are invalid, and the maximum depth is 64.</param>
  3543. </member>
  3544. <member name="M:System.Text.Json.Utf8JsonReader.GetBoolean">
  3545. <summary>Reads the next JSON token value from the source as a <see cref="T:System.Boolean" />.</summary>
  3546. <exception cref="T:System.InvalidOperationException">The value of the JSON token isn't a boolean value (that is, <see cref="F:System.Text.Json.JsonTokenType.True" /> or <see cref="F:System.Text.Json.JsonTokenType.False" />).</exception>
  3547. <returns>
  3548. <see langword="true" /> if the <see cref="P:System.Text.Json.Utf8JsonReader.TokenType" /> is <see cref="F:System.Text.Json.JsonTokenType.True" />; <see langword="false" /> if the <see cref="P:System.Text.Json.Utf8JsonReader.TokenType" /> is <see cref="F:System.Text.Json.JsonTokenType.False" />.</returns>
  3549. </member>
  3550. <member name="M:System.Text.Json.Utf8JsonReader.GetByte">
  3551. <summary>Parses the current JSON token value from the source as a <see cref="T:System.Byte" />.</summary>
  3552. <exception cref="T:System.InvalidOperationException">The value of the JSON token is not a <see cref="F:System.Text.Json.JsonTokenType.Number" />.</exception>
  3553. <exception cref="T:System.FormatException">The numeric format of the JSON token value is incorrect (for example, it contains a fractional value or is written in scientific notation).
  3554. -or-
  3555. The JSON token value represents a number less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />.</exception>
  3556. <returns>The value of the UTF-8 encoded token.</returns>
  3557. </member>
  3558. <member name="M:System.Text.Json.Utf8JsonReader.GetBytesFromBase64">
  3559. <summary>Parses the current JSON token value from the source and decodes the Base64 encoded JSON string as a byte array.</summary>
  3560. <exception cref="T:System.InvalidOperationException">The type of the JSON token is not a <see cref="F:System.Text.Json.JsonTokenType.String" />.</exception>
  3561. <exception cref="T:System.FormatException">The value is not encoded as Base64 text, so it can't be decoded to bytes.
  3562. -or-
  3563. The value contains invalid or more than two padding characters.
  3564. -or-
  3565. The value is incomplete. That is, the JSON string length is not a multiple of 4.</exception>
  3566. <returns>The byte array that represents the current JSON token value.</returns>
  3567. </member>
  3568. <member name="M:System.Text.Json.Utf8JsonReader.GetComment">
  3569. <summary>Parses the current JSON token value from the source as a comment, transcoded it as a <see cref="T:System.String" />.</summary>
  3570. <exception cref="T:System.InvalidOperationException">The JSON token is not a comment.</exception>
  3571. <returns>The comment that represents the current JSON token value.</returns>
  3572. </member>
  3573. <member name="M:System.Text.Json.Utf8JsonReader.GetDateTime">
  3574. <summary>Reads the next JSON token value from the source and parses it to a <see cref="T:System.DateTime" />.</summary>
  3575. <exception cref="T:System.InvalidOperationException">The value of the JSON token isn't a <see cref="F:System.Text.Json.JsonTokenType.String" />.</exception>
  3576. <exception cref="T:System.FormatException">The JSON token value cannot be read as a <see cref="T:System.DateTime" />.
  3577. -or-
  3578. The entire UTF-8 encoded token value cannot be parsed to a <see cref="T:System.DateTime" /> value.
  3579. -or-
  3580. The JSON token value is of an unsupported format.</exception>
  3581. <returns>The date and time value, if the entire UTF-8 encoded token value can be successfully parsed.</returns>
  3582. </member>
  3583. <member name="M:System.Text.Json.Utf8JsonReader.GetDateTimeOffset">
  3584. <summary>Reads the next JSON token value from the source and parses it to a <see cref="T:System.DateTimeOffset" />.</summary>
  3585. <exception cref="T:System.InvalidOperationException">The value of the JSON token isn't a <see cref="F:System.Text.Json.JsonTokenType.String" />.</exception>
  3586. <exception cref="T:System.FormatException">The JSON token value cannot be read as a <see cref="T:System.DateTimeOffset" />.
  3587. -or-
  3588. The entire UTF-8 encoded token value cannot be parsed to a <see cref="T:System.DateTimeOffset" /> value.
  3589. -or-
  3590. The JSON token value is of an unsupported format.</exception>
  3591. <returns>The date and time offset, if the entire UTF-8 encoded token value can be successfully parsed.</returns>
  3592. </member>
  3593. <member name="M:System.Text.Json.Utf8JsonReader.GetDecimal">
  3594. <summary>Reads the next JSON token value from the source and parses it to a <see cref="T:System.Decimal" />.</summary>
  3595. <exception cref="T:System.InvalidOperationException">The JSON token value isn't a <see cref="F:System.Text.Json.JsonTokenType.Number" />.</exception>
  3596. <exception cref="T:System.FormatException">The JSON token value represents a number less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />.</exception>
  3597. <returns>The UTF-8 encoded token value parsed to a <see cref="T:System.Decimal" />.</returns>
  3598. </member>
  3599. <member name="M:System.Text.Json.Utf8JsonReader.GetDouble">
  3600. <summary>Reads the next JSON token value from the source and parses it to a <see cref="T:System.Double" />.</summary>
  3601. <exception cref="T:System.InvalidOperationException">The JSON token value isn't a <see cref="F:System.Text.Json.JsonTokenType.Number" />.</exception>
  3602. <exception cref="T:System.FormatException">The JSON token value represents a number less than <see cref="F:System.Double.MinValue" /> or greater than <see cref="F:System.Double.MaxValue" />.</exception>
  3603. <returns>The UTF-8 encoded token value parsed to a <see cref="T:System.Double" />.</returns>
  3604. </member>
  3605. <member name="M:System.Text.Json.Utf8JsonReader.GetGuid">
  3606. <summary>Reads the next JSON token value from the source and parses it to a <see cref="T:System.Guid" />.</summary>
  3607. <exception cref="T:System.InvalidOperationException">The value of the JSON token isn't a <see cref="F:System.Text.Json.JsonTokenType.String" />.</exception>
  3608. <exception cref="T:System.FormatException">The JSON token value is in an unsupported format for a Guid.
  3609. -or-
  3610. The entire UTF-8 encoded token value cannot be parsed to a <see cref="T:System.Guid" /> value.</exception>
  3611. <returns>The GUID value, if the entire UTF-8 encoded token value can be successfully parsed.</returns>
  3612. </member>
  3613. <member name="M:System.Text.Json.Utf8JsonReader.GetInt16">
  3614. <summary>Parses the current JSON token value from the source as a <see cref="T:System.Int16" />.</summary>
  3615. <exception cref="T:System.InvalidOperationException">The value of the JSON token is not a <see cref="F:System.Text.Json.JsonTokenType.Number" />.</exception>
  3616. <exception cref="T:System.FormatException">The numeric format of the JSON token value is incorrect (for example, it contains a fractional value or is written in scientific notation).
  3617. -or-
  3618. The JSON token value represents a number less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />.</exception>
  3619. <returns>The UTF-8 encoded token value parsed to an <see cref="T:System.Int16" />.</returns>
  3620. </member>
  3621. <member name="M:System.Text.Json.Utf8JsonReader.GetInt32">
  3622. <summary>Reads the next JSON token value from the source and parses it to an <see cref="T:System.Int32" />.</summary>
  3623. <exception cref="T:System.InvalidOperationException">The JSON token value isn't a <see cref="F:System.Text.Json.JsonTokenType.Number" />.</exception>
  3624. <exception cref="T:System.FormatException">The JSON token value is of the incorrect numeric format. For example, it contains a decimal or is written in scientific notation.
  3625. -or-
  3626. The JSON token value represents a number less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />.</exception>
  3627. <returns>The UTF-8 encoded token value parsed to an <see cref="T:System.Int32" />.</returns>
  3628. </member>
  3629. <member name="M:System.Text.Json.Utf8JsonReader.GetInt64">
  3630. <summary>Reads the next JSON token value from the source and parses it to an <see cref="T:System.Int64" />.</summary>
  3631. <exception cref="T:System.InvalidOperationException">The JSON token value isn't a <see cref="F:System.Text.Json.JsonTokenType.Number" />.</exception>
  3632. <exception cref="T:System.FormatException">The JSON token value is of the incorrect numeric format. For example, it contains a decimal or is written in scientific notation.
  3633. -or-
  3634. The JSON token value represents a number less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />.</exception>
  3635. <returns>The UTF-8 encoded token value parsed to an <see cref="T:System.Int64" />.</returns>
  3636. </member>
  3637. <member name="M:System.Text.Json.Utf8JsonReader.GetSByte">
  3638. <summary>Parses the current JSON token value from the source as an <see cref="T:System.SByte" />.</summary>
  3639. <exception cref="T:System.InvalidOperationException">The value of the JSON token is not a <see cref="F:System.Text.Json.JsonTokenType.Number" />.</exception>
  3640. <exception cref="T:System.FormatException">The numeric format of the JSON token value is incorrect (for example, it contains a fractional value or is written in scientific notation).
  3641. -or-
  3642. The JSON token value represents a number less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />.</exception>
  3643. <returns>The UTF-8 encoded token value parsed to an <see cref="T:System.SByte" />.</returns>
  3644. </member>
  3645. <member name="M:System.Text.Json.Utf8JsonReader.GetSingle">
  3646. <summary>Reads the next JSON token value from the source and parses it to a <see cref="T:System.Single" />.</summary>
  3647. <exception cref="T:System.InvalidOperationException">The JSON token value isn't a <see cref="F:System.Text.Json.JsonTokenType.Number" />.</exception>
  3648. <exception cref="T:System.FormatException">The JSON token value represents a number less than <see cref="F:System.Single.MinValue" /> or greater than <see cref="F:System.Single.MaxValue" />.</exception>
  3649. <returns>The UTF-8 encoded token value parsed to a <see cref="T:System.Single" />.</returns>
  3650. </member>
  3651. <member name="M:System.Text.Json.Utf8JsonReader.GetString">
  3652. <summary>Reads the next JSON token value from the source, unescaped, and transcoded as a string.</summary>
  3653. <exception cref="T:System.InvalidOperationException">The JSON token value isn't a string (that is, not a <see cref="F:System.Text.Json.JsonTokenType.String" />, <see cref="F:System.Text.Json.JsonTokenType.PropertyName" />, or <see cref="F:System.Text.Json.JsonTokenType.Null" />).
  3654. -or-
  3655. The JSON string contains invalid UTF-8 bytes or invalid UTF-16 surrogates.</exception>
  3656. <returns>The token value parsed to a string, or <see langword="null" /> if <see cref="P:System.Text.Json.Utf8JsonReader.TokenType" /> is <see cref="F:System.Text.Json.JsonTokenType.Null" />.</returns>
  3657. </member>
  3658. <member name="M:System.Text.Json.Utf8JsonReader.GetUInt16">
  3659. <summary>Parses the current JSON token value from the source as a <see cref="T:System.UInt16" />.</summary>
  3660. <exception cref="T:System.InvalidOperationException">The value of the JSON token is not a <see cref="F:System.Text.Json.JsonTokenType.Number" />.</exception>
  3661. <exception cref="T:System.FormatException">The numeric format of the JSON token value is incorrect (for example, it contains a fractional value or is written in scientific notation).
  3662. -or-
  3663. The JSON token value represents a number less than <see cref="F:System.UInt16.MinValue" /> or greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
  3664. <returns>The UTF-8 encoded token value parsed to a <see cref="T:System.UInt16" />.</returns>
  3665. </member>
  3666. <member name="M:System.Text.Json.Utf8JsonReader.GetUInt32">
  3667. <summary>Reads the next JSON token value from the source and parses it to a <see cref="T:System.UInt32" />.</summary>
  3668. <exception cref="T:System.InvalidOperationException">The JSON token value isn't a <see cref="F:System.Text.Json.JsonTokenType.Number" />.</exception>
  3669. <exception cref="T:System.FormatException">The JSON token value is of the incorrect numeric format. For example, it contains a decimal or is written in scientific notation.
  3670. -or-
  3671. The JSON token value represents a number less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
  3672. <returns>The UTF-8 encoded token value parsed to a <see cref="T:System.UInt32" />.</returns>
  3673. </member>
  3674. <member name="M:System.Text.Json.Utf8JsonReader.GetUInt64">
  3675. <summary>Reads the next JSON token value from the source and parses it to a <see cref="T:System.UInt64" />.</summary>
  3676. <exception cref="T:System.InvalidOperationException">The JSON token value isn't a <see cref="F:System.Text.Json.JsonTokenType.Number" />.</exception>
  3677. <exception cref="T:System.FormatException">The JSON token value is of the incorrect numeric format. For example, it contains a decimal or is written in scientific notation.
  3678. -or-
  3679. The JSON token value represents a number less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />.</exception>
  3680. <returns>The UTF-8 encoded token value parsed to a <see cref="T:System.UInt64" />.</returns>
  3681. </member>
  3682. <member name="M:System.Text.Json.Utf8JsonReader.Read">
  3683. <summary>Reads the next JSON token from the input source.</summary>
  3684. <exception cref="T:System.Text.Json.JsonException">An invalid JSON token according to the JSON RFC is encountered.
  3685. -or-
  3686. The current depth exceeds the recursive limit set by the maximum depth.</exception>
  3687. <returns>
  3688. <see langword="true" /> if the token was read successfully; otherwise, <see langword="false" />.</returns>
  3689. </member>
  3690. <member name="M:System.Text.Json.Utf8JsonReader.Skip">
  3691. <summary>Skips the children of the current JSON token.</summary>
  3692. <exception cref="T:System.InvalidOperationException">The reader was given partial data with more data to follow (that is, <see cref="P:System.Text.Json.Utf8JsonReader.IsFinalBlock" /> is <see langword="false" />).</exception>
  3693. <exception cref="T:System.Text.Json.JsonException">An invalid JSON token was encountered while skipping, according to the JSON RFC.
  3694. -or-
  3695. The current depth exceeds the recursive limit set by the maximum depth.</exception>
  3696. </member>
  3697. <member name="M:System.Text.Json.Utf8JsonReader.TryGetByte(System.Byte@)">
  3698. <summary>Tries to parse the current JSON token value from the source as a <see cref="T:System.Byte" /> and returns a value that indicates whether the operation succeeded.</summary>
  3699. <param name="value">When this method returns, contains the parsed value.</param>
  3700. <exception cref="T:System.InvalidOperationException">The JSON token value isn't a <see cref="F:System.Text.Json.JsonTokenType.Number" />.</exception>
  3701. <returns>
  3702. <see langword="true" /> if the entire UTF-8 encoded token value can be successfully parsed to a <see cref="T:System.Byte" /> value; otherwise, <see langword="false" />.</returns>
  3703. </member>
  3704. <member name="M:System.Text.Json.Utf8JsonReader.TryGetBytesFromBase64(System.Byte[]@)">
  3705. <summary>Tries to parse the current JSON token value from the source and decodes the Base64 encoded JSON string as a byte array and returns a value that indicates whether the operation succeeded.</summary>
  3706. <param name="value">When this method returns, contains the decoded binary representation of the Base64 text.</param>
  3707. <exception cref="T:System.InvalidOperationException">The JSON token is not a <see cref="F:System.Text.Json.JsonTokenType.String" />.</exception>
  3708. <returns>
  3709. <see langword="true" /> if the entire token value is encoded as valid Base64 text and can be successfully decoded to bytes; otherwise, <see langword="false" />.</returns>
  3710. </member>
  3711. <member name="M:System.Text.Json.Utf8JsonReader.TryGetDateTime(System.DateTime@)">
  3712. <summary>Tries to parse the current JSON token value from the source as a <see cref="T:System.DateTime" /> and returns a value that indicates whether the operation succeeded.</summary>
  3713. <param name="value">When this method returns, contains the parsed value.</param>
  3714. <exception cref="T:System.InvalidOperationException">The value of the JSON token isn't a <see cref="F:System.Text.Json.JsonTokenType.String" />.</exception>
  3715. <returns>
  3716. <see langword="true" /> if the entire UTF-8 encoded token value can be successfully parsed to a <see cref="T:System.DateTime" /> value; otherwise, <see langword="false" />.</returns>
  3717. </member>
  3718. <member name="M:System.Text.Json.Utf8JsonReader.TryGetDateTimeOffset(System.DateTimeOffset@)">
  3719. <summary>Tries to parse the current JSON token value from the source as a <see cref="T:System.DateTimeOffset" /> and returns a value that indicates whether the operation succeeded.</summary>
  3720. <param name="value">When this method returns, contains the parsed value.</param>
  3721. <exception cref="T:System.InvalidOperationException">The value of the JSON token isn't a <see cref="F:System.Text.Json.JsonTokenType.String" />.</exception>
  3722. <returns>
  3723. <see langword="true" /> if the entire UTF-8 encoded token value can be successfully parsed to a <see cref="T:System.DateTimeOffset" /> value; otherwise, <see langword="false" />.</returns>
  3724. </member>
  3725. <member name="M:System.Text.Json.Utf8JsonReader.TryGetDecimal(System.Decimal@)">
  3726. <summary>Tries to parse the current JSON token value from the source as a <see cref="T:System.Decimal" /> and returns a value that indicates whether the operation succeeded.</summary>
  3727. <param name="value">When this method returns, contains the parsed value.</param>
  3728. <exception cref="T:System.InvalidOperationException">The JSON token value isn't a <see cref="F:System.Text.Json.JsonTokenType.Number" />.</exception>
  3729. <returns>
  3730. <see langword="true" /> if the entire UTF-8 encoded token value can be successfully parsed to a <see cref="T:System.Decimal" /> value; otherwise, <see langword="false" />.</returns>
  3731. </member>
  3732. <member name="M:System.Text.Json.Utf8JsonReader.TryGetDouble(System.Double@)">
  3733. <summary>Tries to parse the current JSON token value from the source as a <see cref="T:System.Double" /> and returns a value that indicates whether the operation succeeded.</summary>
  3734. <param name="value">When this method returns, contains the parsed value.</param>
  3735. <exception cref="T:System.InvalidOperationException">The JSON token value isn't a <see cref="F:System.Text.Json.JsonTokenType.Number" />.</exception>
  3736. <returns>
  3737. <see langword="true" /> if the entire UTF-8 encoded token value can be successfully parsed to a <see cref="T:System.Double" /> value; otherwise, <see langword="false" />.</returns>
  3738. </member>
  3739. <member name="M:System.Text.Json.Utf8JsonReader.TryGetGuid(System.Guid@)">
  3740. <summary>Tries to parse the current JSON token value from the source as a <see cref="T:System.Guid" /> and returns a value that indicates whether the operation succeeded.</summary>
  3741. <param name="value">When this method returns, contains the parsed value.</param>
  3742. <exception cref="T:System.InvalidOperationException">The value of the JSON token isn't a <see cref="F:System.Text.Json.JsonTokenType.String" />.</exception>
  3743. <returns>
  3744. <see langword="true" /> if the entire UTF-8 encoded token value can be successfully parsed to a <see cref="T:System.Guid" /> value; otherwise, <see langword="false" />.</returns>
  3745. </member>
  3746. <member name="M:System.Text.Json.Utf8JsonReader.TryGetInt16(System.Int16@)">
  3747. <summary>Tries to parse the current JSON token value from the source as an <see cref="T:System.Int16" /> and returns a value that indicates whether the operation succeeded.</summary>
  3748. <param name="value">When this method returns, contains the parsed value.</param>
  3749. <exception cref="T:System.InvalidOperationException">The JSON token value isn't a <see cref="F:System.Text.Json.JsonTokenType.Number" />.</exception>
  3750. <returns>
  3751. <see langword="true" /> if the entire UTF-8 encoded token value can be successfully parsed to a <see cref="T:System.Int16" /> value; otherwise, <see langword="false" />.</returns>
  3752. </member>
  3753. <member name="M:System.Text.Json.Utf8JsonReader.TryGetInt32(System.Int32@)">
  3754. <summary>Tries to parse the current JSON token value from the source as an <see cref="T:System.Int32" /> and returns a value that indicates whether the operation succeeded.</summary>
  3755. <param name="value">When this method returns, contains the parsed value.</param>
  3756. <exception cref="T:System.InvalidOperationException">The JSON token value isn't a <see cref="F:System.Text.Json.JsonTokenType.Number" />.</exception>
  3757. <returns>
  3758. <see langword="true" /> if the entire UTF-8 encoded token value can be successfully parsed to an <see cref="T:System.Int32" /> value; otherwise, <see langword="false" />.</returns>
  3759. </member>
  3760. <member name="M:System.Text.Json.Utf8JsonReader.TryGetInt64(System.Int64@)">
  3761. <summary>Tries to parse the current JSON token value from the source as an <see cref="T:System.Int64" /> and returns a value that indicates whether the operation succeeded.</summary>
  3762. <param name="value">When this method returns, contains the parsed value.</param>
  3763. <exception cref="T:System.InvalidOperationException">The JSON token value isn't a <see cref="F:System.Text.Json.JsonTokenType.Number" />.</exception>
  3764. <returns>
  3765. <see langword="true" /> if the entire UTF-8 encoded token value can be successfully parsed to an <see cref="T:System.Int64" /> value; otherwise, <see langword="false" />.</returns>
  3766. </member>
  3767. <member name="M:System.Text.Json.Utf8JsonReader.TryGetSByte(System.SByte@)">
  3768. <summary>Tries to parse the current JSON token value from the source as an <see cref="T:System.SByte" /> and returns a value that indicates whether the operation succeeded.</summary>
  3769. <param name="value">When this method returns, contains the parsed value.</param>
  3770. <exception cref="T:System.InvalidOperationException">The JSON token value isn't a <see cref="F:System.Text.Json.JsonTokenType.Number" />.</exception>
  3771. <returns>
  3772. <see langword="true" /> if the entire UTF-8 encoded token value can be successfully parsed to an <see cref="T:System.SByte" /> value; otherwise, <see langword="false" />.</returns>
  3773. </member>
  3774. <member name="M:System.Text.Json.Utf8JsonReader.TryGetSingle(System.Single@)">
  3775. <summary>Tries to parse the current JSON token value from the source as a <see cref="T:System.Single" /> and returns a value that indicates whether the operation succeeded.</summary>
  3776. <param name="value">When this method returns, contains the parsed value.</param>
  3777. <exception cref="T:System.InvalidOperationException">The JSON token value isn't a <see cref="F:System.Text.Json.JsonTokenType.Number" />.</exception>
  3778. <returns>
  3779. <see langword="true" /> if the entire UTF-8 encoded token value can be successfully parsed to an <see cref="T:System.Single" /> value; otherwise, <see langword="false" />.</returns>
  3780. </member>
  3781. <member name="M:System.Text.Json.Utf8JsonReader.TryGetUInt16(System.UInt16@)">
  3782. <summary>Tries to parse the current JSON token value from the source as a <see cref="T:System.UInt16" /> and returns a value that indicates whether the operation succeeded.</summary>
  3783. <param name="value">When this method returns, contains the parsed value.</param>
  3784. <exception cref="T:System.InvalidOperationException">The JSON token value isn't a <see cref="F:System.Text.Json.JsonTokenType.Number" />.</exception>
  3785. <returns>
  3786. <see langword="true" /> if the entire UTF-8 encoded token value can be successfully parsed to a <see cref="T:System.UInt16" /> value; otherwise, <see langword="false" />.</returns>
  3787. </member>
  3788. <member name="M:System.Text.Json.Utf8JsonReader.TryGetUInt32(System.UInt32@)">
  3789. <summary>Tries to parse the current JSON token value from the source as a <see cref="T:System.UInt32" /> and returns a value that indicates whether the operation succeeded.</summary>
  3790. <param name="value">When this method returns, contains the parsed value.</param>
  3791. <exception cref="T:System.InvalidOperationException">The JSON token value isn't a <see cref="F:System.Text.Json.JsonTokenType.Number" />.</exception>
  3792. <returns>
  3793. <see langword="true" /> if the entire UTF-8 encoded token value can be successfully parsed to a <see cref="T:System.UInt32" /> value; otherwise, <see langword="false" />.</returns>
  3794. </member>
  3795. <member name="M:System.Text.Json.Utf8JsonReader.TryGetUInt64(System.UInt64@)">
  3796. <summary>Tries to parse the current JSON token value from the source as a <see cref="T:System.UInt64" /> and returns a value that indicates whether the operation succeeded.</summary>
  3797. <param name="value">When this method returns, contains the parsed value.</param>
  3798. <exception cref="T:System.InvalidOperationException">The JSON token value isn't a <see cref="F:System.Text.Json.JsonTokenType.Number" />.</exception>
  3799. <returns>
  3800. <see langword="true" /> if the entire UTF-8 encoded token value can be successfully parsed to a <see cref="T:System.UInt64" /> value; otherwise, <see langword="false" />.</returns>
  3801. </member>
  3802. <member name="M:System.Text.Json.Utf8JsonReader.TrySkip">
  3803. <summary>Tries to skip the children of the current JSON token.</summary>
  3804. <exception cref="T:System.Text.Json.JsonException">An invalid JSON token was encountered while skipping, according to the JSON RFC.
  3805. -or -
  3806. The current depth exceeds the recursive limit set by the maximum depth.</exception>
  3807. <returns>
  3808. <see langword="true" /> if there was enough data for the children to be skipped successfully; otherwise, <see langword="false" />.</returns>
  3809. </member>
  3810. <member name="M:System.Text.Json.Utf8JsonReader.ValueTextEquals(System.ReadOnlySpan{System.Byte})">
  3811. <summary>Compares the UTF-8 encoded text in a read-only byte span to the unescaped JSON token value in the source and returns a value that indicates whether they match.</summary>
  3812. <param name="utf8Text">The UTF-8 encoded text to compare against.</param>
  3813. <exception cref="T:System.InvalidOperationException">The JSON token is not a JSON string (that is, it is not <see cref="F:System.Text.Json.JsonTokenType.String" /> or <see cref="F:System.Text.Json.JsonTokenType.PropertyName" />).</exception>
  3814. <returns>
  3815. <see langword="true" /> if the JSON token value in the source matches the UTF-8 encoded lookup text; otherwise, <see langword="false" />.</returns>
  3816. </member>
  3817. <member name="M:System.Text.Json.Utf8JsonReader.ValueTextEquals(System.ReadOnlySpan{System.Char})">
  3818. <summary>Compares the text in a read-only character span to the unescaped JSON token value in the source and returns a value that indicates whether they match.</summary>
  3819. <param name="text">The text to compare against.</param>
  3820. <exception cref="T:System.InvalidOperationException">The JSON token is not a JSON string (that is, it is not <see cref="F:System.Text.Json.JsonTokenType.String" /> or <see cref="F:System.Text.Json.JsonTokenType.PropertyName" />).</exception>
  3821. <returns>
  3822. <see langword="true" /> if the JSON token value in the source matches the lookup text; otherwise, <see langword="false" />.</returns>
  3823. </member>
  3824. <member name="M:System.Text.Json.Utf8JsonReader.ValueTextEquals(System.String)">
  3825. <summary>Compares the string text to the unescaped JSON token value in the source and returns a value that indicates whether they match.</summary>
  3826. <param name="text">The text to compare against.</param>
  3827. <exception cref="T:System.InvalidOperationException">The JSON token is not a JSON string (that is, it is not <see cref="F:System.Text.Json.JsonTokenType.String" /> or <see cref="F:System.Text.Json.JsonTokenType.PropertyName" />).</exception>
  3828. <returns>
  3829. <see langword="true" /> if the JSON token value in the source matches the lookup text; otherwise, <see langword="false" />.</returns>
  3830. </member>
  3831. <member name="P:System.Text.Json.Utf8JsonReader.BytesConsumed">
  3832. <summary>Gets the total number of bytes consumed so far by this instance of the <see cref="T:System.Text.Json.Utf8JsonReader" />.</summary>
  3833. <returns>The total number of bytes consumed so far.</returns>
  3834. </member>
  3835. <member name="P:System.Text.Json.Utf8JsonReader.CurrentDepth">
  3836. <summary>Gets the depth of the current token.</summary>
  3837. <returns>The depth of the current token.</returns>
  3838. </member>
  3839. <member name="P:System.Text.Json.Utf8JsonReader.CurrentState">
  3840. <summary>Gets the current <see cref="T:System.Text.Json.Utf8JsonReader" /> state to pass to a <see cref="T:System.Text.Json.Utf8JsonReader" /> constructor with more data.</summary>
  3841. <returns>The current reader state.</returns>
  3842. </member>
  3843. <member name="P:System.Text.Json.Utf8JsonReader.HasValueSequence">
  3844. <summary>Gets a value that indicates which <c>Value</c> property to use to get the token value.</summary>
  3845. <returns>
  3846. <see langword="true" /> if <see cref="P:System.Text.Json.Utf8JsonReader.ValueSequence" /> should be used to get the token value; <see langword="false" /> if <see cref="P:System.Text.Json.Utf8JsonReader.ValueSpan" /> should be used instead.</returns>
  3847. </member>
  3848. <member name="P:System.Text.Json.Utf8JsonReader.IsFinalBlock">
  3849. <summary>Gets the mode of this instance of the <see cref="T:System.Text.Json.Utf8JsonReader" /> which indicates whether all the JSON data was provided or there is more data to come.</summary>
  3850. <returns>
  3851. <see langword="true" /> if the reader was constructed with the input span or sequence containing the entire JSON data to process; <see langword="false" /> if the reader was constructed with an input span or sequence that may contain partial JSON data with more data to follow.</returns>
  3852. </member>
  3853. <member name="P:System.Text.Json.Utf8JsonReader.Position">
  3854. <summary>Gets the current <see cref="T:System.SequencePosition" /> within the provided UTF-8 encoded input ReadOnlySequence&lt;byte&gt; or a default <see cref="T:System.SequencePosition" /> if the <see cref="T:System.Text.Json.Utf8JsonReader" /> struct was constructed with a ReadOnlySpan&lt;byte&gt;.</summary>
  3855. <returns>The current <see cref="T:System.SequencePosition" /> within the provided UTF-8 encoded input ReadOnlySequence&lt;byte&gt; or a default <see cref="T:System.SequencePosition" /> if the <see cref="T:System.Text.Json.Utf8JsonReader" /> struct was constructed with a ReadOnlySpan&lt;byte&gt;.</returns>
  3856. </member>
  3857. <member name="P:System.Text.Json.Utf8JsonReader.TokenStartIndex">
  3858. <summary>Gets the index that the last processed JSON token starts at (within the given UTF-8 encoded input text), skipping any white space.</summary>
  3859. <returns>The starting index of the last processed JSON token within the given UTF-8 encoded input text.</returns>
  3860. </member>
  3861. <member name="P:System.Text.Json.Utf8JsonReader.TokenType">
  3862. <summary>Gets the type of the last processed JSON token in the UTF-8 encoded JSON text.</summary>
  3863. <returns>The type of the last processed JSON token.</returns>
  3864. </member>
  3865. <member name="P:System.Text.Json.Utf8JsonReader.ValueSequence">
  3866. <summary>Gets the raw value of the last processed token as a ReadOnlySequence&lt;byte&gt; slice of the input payload, only if the token is contained within multiple segments.</summary>
  3867. <returns>A byte read-only sequence.</returns>
  3868. </member>
  3869. <member name="P:System.Text.Json.Utf8JsonReader.ValueSpan">
  3870. <summary>Gets the raw value of the last processed token as a ReadOnlySpan&lt;byte&gt; slice of the input payload, if the token fits in a single segment or if the reader was constructed with a JSON payload contained in a ReadOnlySpan&lt;byte&gt;.</summary>
  3871. <returns>A read-only span of bytes.</returns>
  3872. </member>
  3873. <member name="T:System.Text.Json.Utf8JsonWriter">
  3874. <summary>Provides a high-performance API for forward-only, non-cached writing of UTF-8 encoded JSON text.</summary>
  3875. </member>
  3876. <member name="M:System.Text.Json.Utf8JsonWriter.#ctor(System.Buffers.IBufferWriter{System.Byte},System.Text.Json.JsonWriterOptions)">
  3877. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Utf8JsonWriter" /> class using the specified <see cref="T:System.Buffers.IBufferWriter`1" /> to write the output to and customization options.</summary>
  3878. <param name="bufferWriter">The destination for writing JSON text.</param>
  3879. <param name="options">Defines the customized behavior of the <see cref="T:System.Text.Json.Utf8JsonWriter" />. By default, it writes minimized JSON (with no extra white space) and validates that the JSON being written is structurally valid according to the JSON RFC.</param>
  3880. <exception cref="T:System.ArgumentNullException">
  3881. <paramref name="bufferWriter" /> is <see langword="null" />.</exception>
  3882. </member>
  3883. <member name="M:System.Text.Json.Utf8JsonWriter.#ctor(System.IO.Stream,System.Text.Json.JsonWriterOptions)">
  3884. <summary>Initializes a new instance of the <see cref="T:System.Text.Json.Utf8JsonWriter" /> class using the specified stream to write the output to and customization options.</summary>
  3885. <param name="utf8Json">The destination for writing JSON text.</param>
  3886. <param name="options">Defines the customized behavior of the <see cref="T:System.Text.Json.Utf8JsonWriter" />. By default, it writes minimized JSON (with no extra white space) and validates that the JSON being written is structurally valid according to the JSON RFC.</param>
  3887. <exception cref="T:System.ArgumentNullException">
  3888. <paramref name="utf8Json" /> is <see langword="null" />.</exception>
  3889. </member>
  3890. <member name="M:System.Text.Json.Utf8JsonWriter.Dispose">
  3891. <summary>Commits any leftover JSON text that has not yet been flushed and releases all resources used by the current instance.</summary>
  3892. </member>
  3893. <member name="M:System.Text.Json.Utf8JsonWriter.DisposeAsync">
  3894. <summary>Asynchronously commits any leftover JSON text that has not yet been flushed and releases all resources used by the current instance.</summary>
  3895. <returns>A task representing the asynchronous dispose operation.</returns>
  3896. </member>
  3897. <member name="M:System.Text.Json.Utf8JsonWriter.Flush">
  3898. <summary>Commits the JSON text written so far, which makes it visible to the output destination.</summary>
  3899. <exception cref="T:System.ObjectDisposedException">This instance has been disposed.</exception>
  3900. </member>
  3901. <member name="M:System.Text.Json.Utf8JsonWriter.FlushAsync(System.Threading.CancellationToken)">
  3902. <summary>Asynchronously commits the JSON text written so far, which makes it visible to the output destination.</summary>
  3903. <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
  3904. <exception cref="T:System.ObjectDisposedException">This instance has been disposed.</exception>
  3905. <returns>A task representing the asynchronous flush operation.</returns>
  3906. </member>
  3907. <member name="M:System.Text.Json.Utf8JsonWriter.Reset">
  3908. <summary>Resets the internal state of this instance so that it can be reused.</summary>
  3909. <exception cref="T:System.ObjectDisposedException">This instance has been disposed.</exception>
  3910. </member>
  3911. <member name="M:System.Text.Json.Utf8JsonWriter.Reset(System.Buffers.IBufferWriter{System.Byte})">
  3912. <summary>Resets the internal state of this instance so that it can be reused with a new instance of <see cref="T:System.Buffers.IBufferWriter`1" />.</summary>
  3913. <param name="bufferWriter">The destination for writing JSON text.</param>
  3914. <exception cref="T:System.ArgumentNullException">
  3915. <paramref name="bufferWriter" /> is <see langword="null" />.</exception>
  3916. <exception cref="T:System.ObjectDisposedException">This instance has been disposed.</exception>
  3917. </member>
  3918. <member name="M:System.Text.Json.Utf8JsonWriter.Reset(System.IO.Stream)">
  3919. <summary>Resets the internal state of this instance so that it can be reused with a new instance of <see cref="T:System.IO.Stream" />.</summary>
  3920. <param name="utf8Json">The destination for writing JSON text.</param>
  3921. <exception cref="T:System.ArgumentNullException">
  3922. <paramref name="utf8Json" /> is <see langword="null" />.</exception>
  3923. <exception cref="T:System.ObjectDisposedException">This instance has been disposed.</exception>
  3924. </member>
  3925. <member name="M:System.Text.Json.Utf8JsonWriter.WriteBase64String(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})">
  3926. <summary>Writes the property name and raw bytes value (as a Base64 encoded JSON string) as part of a name/value pair of a JSON object.</summary>
  3927. <param name="utf8PropertyName">The UTF-8 encoded name of the property to write.</param>
  3928. <param name="bytes">The binary data to write as Base64 encoded text.</param>
  3929. <exception cref="T:System.ArgumentException">The specified property name or value is too large.</exception>
  3930. <exception cref="T:System.InvalidOperationException">Validation is enabled, and this method would result in writing invalid JSON.</exception>
  3931. </member>
  3932. <member name="M:System.Text.Json.Utf8JsonWriter.WriteBase64String(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Byte})">
  3933. <summary>Writes the property name and raw bytes value (as a Base64 encoded JSON string) as part of a name/value pair of a JSON object.</summary>
  3934. <param name="propertyName">The property name of the JSON object to be transcoded and written as UTF-8.</param>
  3935. <param name="bytes">The binary data to write as Base64 encoded text.</param>
  3936. <exception cref="T:System.ArgumentException">The specified property name or value is too large.</exception>
  3937. <exception cref="T:System.InvalidOperationException">Validation is enabled, and this method would result in writing invalid JSON.</exception>
  3938. </member>
  3939. <member name="M:System.Text.Json.Utf8JsonWriter.WriteBase64String(System.String,System.ReadOnlySpan{System.Byte})">
  3940. <summary>Writes the property name and raw bytes value (as a Base64 encoded JSON string) as part of a name/value pair of a JSON object.</summary>
  3941. <param name="propertyName">The property name of the JSON object to be transcoded and written as UTF-8.</param>
  3942. <param name="bytes">The binary data to write as Base64 encoded text.</param>
  3943. <exception cref="T:System.ArgumentException">The specified property name or value is too large.</exception>
  3944. <exception cref="T:System.InvalidOperationException">Validation is enabled, and this method would result in writing invalid JSON.</exception>
  3945. <exception cref="T:System.ArgumentNullException">The <paramref name="propertyName" /> parameter is <see langword="null" />.</exception>
  3946. </member>
  3947. <member name="M:System.Text.Json.Utf8JsonWriter.WriteBase64String(System.Text.Json.JsonEncodedText,System.ReadOnlySpan{System.Byte})">
  3948. <summary>Writes the pre-encoded property name and raw bytes value (as a Base64 encoded JSON string) as part of a name/value pair of a JSON object.</summary>
  3949. <param name="propertyName">The JSON-encoded name of the property to write.</param>
  3950. <param name="bytes">The binary data to write as Base64 encoded text.</param>
  3951. <exception cref="T:System.ArgumentException">The specified value is too large.</exception>
  3952. <exception cref="T:System.InvalidOperationException">Validation is enabled, and this method would result in writing invalid JSON.</exception>
  3953. </member>
  3954. <member name="M:System.Text.Json.Utf8JsonWriter.WriteBase64StringValue(System.ReadOnlySpan{System.Byte})">
  3955. <summary>Writes the raw bytes value as a Base64 encoded JSON string as an element of a JSON array.</summary>
  3956. <param name="bytes">The binary data to be written as a Base64 encoded JSON string element of a JSON array.</param>
  3957. <exception cref="T:System.ArgumentException">The specified value is too large.</exception>
  3958. <exception cref="T:System.InvalidOperationException">Validation is enabled, and this method would result in writing invalid JSON.</exception>
  3959. </member>
  3960. <member name="M:System.Text.Json.Utf8JsonWriter.WriteBoolean(System.ReadOnlySpan{System.Byte},System.Boolean)">
  3961. <summary>Writes a property name specified as a read-only span of bytes and a <see cref="T:System.Boolean" /> value (as a JSON literal true or false) as part of a name/value pair of a JSON object.</summary>
  3962. <param name="utf8PropertyName">The UTF-8 encoded property name of the JSON object to be written.</param>
  3963. <param name="value">The value to be written as a JSON literal true or false as part of the name/value pair.</param>
  3964. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  3965. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the operation would result in writing invalid JSON.</exception>
  3966. </member>
  3967. <member name="M:System.Text.Json.Utf8JsonWriter.WriteBoolean(System.ReadOnlySpan{System.Char},System.Boolean)">
  3968. <summary>Writes a property name specified as a read-only character span and a <see cref="T:System.Boolean" /> value (as a JSON literal true or false) as part of a name/value pair of a JSON object.</summary>
  3969. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  3970. <param name="value">The value to be written as a JSON literal true or false as part of the name/value pair.</param>
  3971. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  3972. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the operation would result in writing invalid JSON.</exception>
  3973. </member>
  3974. <member name="M:System.Text.Json.Utf8JsonWriter.WriteBoolean(System.String,System.Boolean)">
  3975. <summary>Writes a property name specified as a string and a <see cref="T:System.Boolean" /> value (as a JSON literal true or false) as part of a name/value pair of a JSON object.</summary>
  3976. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  3977. <param name="value">The value to be written as a JSON literal true or false as part of the name/value pair.</param>
  3978. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  3979. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the operation would result in writing invalid JSON.</exception>
  3980. <exception cref="T:System.ArgumentNullException">The <paramref name="propertyName" /> parameter is <see langword="null" />.</exception>
  3981. </member>
  3982. <member name="M:System.Text.Json.Utf8JsonWriter.WriteBoolean(System.Text.Json.JsonEncodedText,System.Boolean)">
  3983. <summary>Writes the pre-encoded property name and <see cref="T:System.Boolean" /> value (as a JSON literal true or false) as part of a name/value pair of a JSON object.</summary>
  3984. <param name="propertyName">The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  3985. <param name="value">The value to be written as a JSON literal true or false as part of the name/value pair.</param>
  3986. <exception cref="T:System.InvalidOperationException">Validation is enabled, and this method would result in writing invalid JSON.</exception>
  3987. </member>
  3988. <member name="M:System.Text.Json.Utf8JsonWriter.WriteBooleanValue(System.Boolean)">
  3989. <summary>Writes a <see cref="T:System.Boolean" /> value (as a JSON literal true or false) as an element of a JSON array.</summary>
  3990. <param name="value">The value to be written as a JSON literal true or false as an element of a JSON array.</param>
  3991. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the operation would result in writing invalid JSON.</exception>
  3992. </member>
  3993. <member name="M:System.Text.Json.Utf8JsonWriter.WriteCommentValue(System.ReadOnlySpan{System.Byte})">
  3994. <summary>Writes a UTF-8 text value as a JSON comment.</summary>
  3995. <param name="utf8Value">The UTF-8 encoded value to be written as a JSON comment within <c>/*..*/</c>.</param>
  3996. <exception cref="T:System.ArgumentException">The specified value is too large.
  3997. -or-
  3998. <paramref name="utf8Value" /> contains a comment delimiter (that is, <c>*/</c>).</exception>
  3999. </member>
  4000. <member name="M:System.Text.Json.Utf8JsonWriter.WriteCommentValue(System.ReadOnlySpan{System.Char})">
  4001. <summary>Writes a UTF-16 text value as a JSON comment.</summary>
  4002. <param name="value">The UTF-16 encoded value to be written as a UTF-8 transcoded JSON comment within <c>/*..*/</c>.</param>
  4003. <exception cref="T:System.ArgumentException">The specified value is too large.
  4004. -or-
  4005. <paramref name="value" /> contains a comment delimiter (that is, <c>*/</c>).</exception>
  4006. </member>
  4007. <member name="M:System.Text.Json.Utf8JsonWriter.WriteCommentValue(System.String)">
  4008. <summary>Writes a string text value as a JSON comment.</summary>
  4009. <param name="value">The UTF-16 encoded value to be written as a UTF-8 transcoded JSON comment within <c>/*..*/</c>.</param>
  4010. <exception cref="T:System.ArgumentException">The specified value is too large.
  4011. -or-
  4012. <paramref name="value" /> contains a comment delimiter (that is, <c>*/</c>).</exception>
  4013. <exception cref="T:System.ArgumentNullException">The <paramref name="value" /> parameter is <see langword="null" />.</exception>
  4014. </member>
  4015. <member name="M:System.Text.Json.Utf8JsonWriter.WriteEndArray">
  4016. <summary>Writes the end of a JSON array.</summary>
  4017. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the operation would result in writing invalid JSON.</exception>
  4018. </member>
  4019. <member name="M:System.Text.Json.Utf8JsonWriter.WriteEndObject">
  4020. <summary>Writes the end of a JSON object.</summary>
  4021. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the operation would result in writing invalid JSON.</exception>
  4022. </member>
  4023. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNull(System.ReadOnlySpan{System.Byte})">
  4024. <summary>Writes a property name specified as a read-only span of bytes and the JSON literal null as part of a name/value pair of a JSON object.</summary>
  4025. <param name="utf8PropertyName">The UTF-8 encoded property name of the JSON object to be written.</param>
  4026. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4027. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4028. </member>
  4029. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNull(System.ReadOnlySpan{System.Char})">
  4030. <summary>Writes a property name specified as a read-only character span and the JSON literal null as part of a name/value pair of a JSON object.</summary>
  4031. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4032. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4033. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4034. </member>
  4035. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNull(System.String)">
  4036. <summary>Writes a property name specified as a string and the JSON literal null as part of a name/value pair of a JSON object.</summary>
  4037. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4038. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4039. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4040. <exception cref="T:System.ArgumentNullException">The <paramref name="propertyName" /> parameter is <see langword="null" />.</exception>
  4041. </member>
  4042. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNull(System.Text.Json.JsonEncodedText)">
  4043. <summary>Writes the pre-encoded property name and the JSON literal null as part of a name/value pair of a JSON object.</summary>
  4044. <param name="propertyName">The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4045. <exception cref="T:System.InvalidOperationException">Validation is enabled, and this method would result in writing invalid JSON.</exception>
  4046. </member>
  4047. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNullValue">
  4048. <summary>Writes the JSON literal null as an element of a JSON array.</summary>
  4049. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the operation would result in writing invalid JSON.</exception>
  4050. </member>
  4051. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.ReadOnlySpan{System.Byte},System.Decimal)">
  4052. <summary>Writes a property name specified as a read-only span of bytes and a <see cref="T:System.Decimal" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4053. <param name="utf8PropertyName">The UTF-8 encoded property name of the JSON object to be written.</param>
  4054. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4055. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4056. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4057. </member>
  4058. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.ReadOnlySpan{System.Byte},System.Double)">
  4059. <summary>Writes a property name specified as a read-only span of bytes and a <see cref="T:System.Double" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4060. <param name="utf8PropertyName">The UTF-8 encoded property name of the JSON object to be written.</param>
  4061. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4062. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4063. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4064. </member>
  4065. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.ReadOnlySpan{System.Byte},System.Int32)">
  4066. <summary>Writes a property name specified as a read-only span of bytes and an <see cref="T:System.Int32" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4067. <param name="utf8PropertyName">The UTF-8 encoded property name of the JSON object to be written.</param>
  4068. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4069. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4070. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4071. </member>
  4072. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.ReadOnlySpan{System.Byte},System.Int64)">
  4073. <summary>Writes a property name specified as a read-only span of bytes and an <see cref="T:System.Int64" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4074. <param name="utf8PropertyName">The UTF-8 encoded property name of the JSON object to be written.</param>
  4075. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4076. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4077. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4078. </member>
  4079. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.ReadOnlySpan{System.Byte},System.Single)">
  4080. <summary>Writes a property name specified as a read-only span of bytes and a <see cref="T:System.Single" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4081. <param name="utf8PropertyName">The UTF-8 encoded property name of the JSON object to be written.</param>
  4082. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4083. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4084. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4085. </member>
  4086. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.ReadOnlySpan{System.Byte},System.UInt32)">
  4087. <summary>Writes a property name specified as a read-only span of bytes and a <see cref="T:System.UInt32" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4088. <param name="utf8PropertyName">The UTF-8 encoded property name of the JSON object to be written.</param>
  4089. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4090. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4091. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4092. </member>
  4093. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.ReadOnlySpan{System.Byte},System.UInt64)">
  4094. <summary>Writes a property name specified as a read-only span of bytes and a <see cref="T:System.UInt64" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4095. <param name="utf8PropertyName">The UTF-8 encoded property name of the JSON object to be written.</param>
  4096. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4097. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4098. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4099. </member>
  4100. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.ReadOnlySpan{System.Char},System.Decimal)">
  4101. <summary>Writes a property name specified as a read-only character span and a <see cref="T:System.Decimal" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4102. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4103. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4104. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4105. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4106. </member>
  4107. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.ReadOnlySpan{System.Char},System.Double)">
  4108. <summary>Writes a property name specified as a read-only character span and a <see cref="T:System.Double" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4109. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4110. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4111. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4112. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4113. </member>
  4114. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.ReadOnlySpan{System.Char},System.Int32)">
  4115. <summary>Writes a property name specified as a read-only character span and an <see cref="T:System.Int32" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4116. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4117. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4118. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4119. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4120. </member>
  4121. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.ReadOnlySpan{System.Char},System.Int64)">
  4122. <summary>Writes a property name specified as a read-only character span and an <see cref="T:System.Int64" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4123. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4124. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4125. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4126. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4127. </member>
  4128. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.ReadOnlySpan{System.Char},System.Single)">
  4129. <summary>Writes a property name specified as a read-only character span and a <see cref="T:System.Single" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4130. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4131. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4132. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4133. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4134. </member>
  4135. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.ReadOnlySpan{System.Char},System.UInt32)">
  4136. <summary>Writes a property name specified as a read-only character span and a <see cref="T:System.UInt32" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4137. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4138. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4139. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4140. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4141. </member>
  4142. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.ReadOnlySpan{System.Char},System.UInt64)">
  4143. <summary>Writes a property name specified as a read-only character span and a <see cref="T:System.UInt64" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4144. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4145. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4146. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4147. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4148. </member>
  4149. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.String,System.Decimal)">
  4150. <summary>Writes a property name specified as a string and a <see cref="T:System.Decimal" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4151. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4152. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4153. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4154. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4155. <exception cref="T:System.ArgumentNullException">The <paramref name="propertyName" /> parameter is <see langword="null" />.</exception>
  4156. </member>
  4157. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.String,System.Double)">
  4158. <summary>Writes a property name specified as a string and a <see cref="T:System.Double" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4159. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4160. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4161. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4162. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4163. <exception cref="T:System.ArgumentNullException">The <paramref name="propertyName" /> parameter is <see langword="null" />.</exception>
  4164. </member>
  4165. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.String,System.Int32)">
  4166. <summary>Writes a property name specified as a string and an <see cref="T:System.Int32" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4167. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4168. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4169. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4170. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4171. <exception cref="T:System.ArgumentNullException">The <paramref name="propertyName" /> parameter is <see langword="null" />.</exception>
  4172. </member>
  4173. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.String,System.Int64)">
  4174. <summary>Writes a property name specified as a string and an <see cref="T:System.Int64" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4175. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4176. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4177. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4178. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4179. <exception cref="T:System.ArgumentNullException">The <paramref name="propertyName" /> parameter is <see langword="null" />.</exception>
  4180. </member>
  4181. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.String,System.Single)">
  4182. <summary>Writes a property name specified as a string and a <see cref="T:System.Single" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4183. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4184. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4185. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4186. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4187. <exception cref="T:System.ArgumentNullException">The <paramref name="propertyName" /> parameter is <see langword="null" />.</exception>
  4188. </member>
  4189. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.String,System.UInt32)">
  4190. <summary>Writes a property name specified as a string and a <see cref="T:System.UInt32" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4191. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4192. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4193. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4194. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4195. <exception cref="T:System.ArgumentNullException">The <paramref name="propertyName" /> parameter is <see langword="null" />.</exception>
  4196. </member>
  4197. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.String,System.UInt64)">
  4198. <summary>Writes a property name specified as a string and a <see cref="T:System.UInt64" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4199. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4200. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4201. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4202. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4203. <exception cref="T:System.ArgumentNullException">The <paramref name="propertyName" /> parameter is <see langword="null" />.</exception>
  4204. </member>
  4205. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.Text.Json.JsonEncodedText,System.Decimal)">
  4206. <summary>Writes the pre-encoded property name and <see cref="T:System.Decimal" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4207. <param name="propertyName">The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4208. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4209. <exception cref="T:System.InvalidOperationException">Validation is enabled, and this method would result in writing invalid JSON.</exception>
  4210. </member>
  4211. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.Text.Json.JsonEncodedText,System.Double)">
  4212. <summary>Writes the pre-encoded property name and <see cref="T:System.Double" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4213. <param name="propertyName">The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4214. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4215. <exception cref="T:System.InvalidOperationException">Validation is enabled, and this method would result in writing invalid JSON.</exception>
  4216. </member>
  4217. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.Text.Json.JsonEncodedText,System.Int32)">
  4218. <summary>Writes the pre-encoded property name and <see cref="T:System.Int32" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4219. <param name="propertyName">The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4220. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4221. <exception cref="T:System.InvalidOperationException">Validation is enabled, and this method would result in writing invalid JSON.</exception>
  4222. </member>
  4223. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.Text.Json.JsonEncodedText,System.Int64)">
  4224. <summary>Writes the pre-encoded property name and <see cref="T:System.Int64" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4225. <param name="propertyName">The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4226. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4227. <exception cref="T:System.InvalidOperationException">Validation is enabled, and this method would result in writing invalid JSON.</exception>
  4228. </member>
  4229. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.Text.Json.JsonEncodedText,System.Single)">
  4230. <summary>Writes the pre-encoded property name and <see cref="T:System.Single" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4231. <param name="propertyName">The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4232. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4233. <exception cref="T:System.InvalidOperationException">Validation is enabled, and this method would result in writing invalid JSON.</exception>
  4234. </member>
  4235. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.Text.Json.JsonEncodedText,System.UInt32)">
  4236. <summary>Writes the pre-encoded property name and <see cref="T:System.UInt32" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4237. <param name="propertyName">The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4238. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4239. <exception cref="T:System.InvalidOperationException">Validation is enabled, and this method would result in writing invalid JSON.</exception>
  4240. </member>
  4241. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumber(System.Text.Json.JsonEncodedText,System.UInt64)">
  4242. <summary>Writes the pre-encoded property name and <see cref="T:System.UInt64" /> value (as a JSON number) as part of a name/value pair of a JSON object.</summary>
  4243. <param name="propertyName">The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4244. <param name="value">The value to be written as a JSON number as part of the name/value pair.</param>
  4245. <exception cref="T:System.InvalidOperationException">Validation is enabled, and this method would result in writing invalid JSON.</exception>
  4246. </member>
  4247. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumberValue(System.Decimal)">
  4248. <summary>Writes a <see cref="T:System.Decimal" /> value (as a JSON number) as an element of a JSON array.</summary>
  4249. <param name="value">The value to be written as a JSON number as an element of a JSON array.</param>
  4250. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the operation would result in writing invalid JSON.</exception>
  4251. </member>
  4252. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumberValue(System.Double)">
  4253. <summary>Writes a <see cref="T:System.Double" /> value (as a JSON number) as an element of a JSON array.</summary>
  4254. <param name="value">The value to be written as a JSON number as an element of a JSON array.</param>
  4255. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the operation would result in writing invalid JSON.</exception>
  4256. </member>
  4257. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumberValue(System.Int32)">
  4258. <summary>Writes an <see cref="T:System.Int32" /> value (as a JSON number) as an element of a JSON array.</summary>
  4259. <param name="value">The value to be written as a JSON number as an element of a JSON array.</param>
  4260. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the operation would result in writing invalid JSON.</exception>
  4261. </member>
  4262. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumberValue(System.Int64)">
  4263. <summary>Writes an <see cref="T:System.Int64" /> value (as a JSON number) as an element of a JSON array.</summary>
  4264. <param name="value">The value to be written as a JSON number as an element of a JSON array.</param>
  4265. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the operation would result in writing invalid JSON.</exception>
  4266. </member>
  4267. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumberValue(System.Single)">
  4268. <summary>Writes a <see cref="T:System.Single" /> value (as a JSON number) as an element of a JSON array.</summary>
  4269. <param name="value">The value to be written as a JSON number as an element of a JSON array.</param>
  4270. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the operation would result in writing invalid JSON.</exception>
  4271. </member>
  4272. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumberValue(System.UInt32)">
  4273. <summary>Writes a <see cref="T:System.UInt32" /> value (as a JSON number) as an element of a JSON array.</summary>
  4274. <param name="value">The value to be written as a JSON number as an element of a JSON array.</param>
  4275. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the operation would result in writing invalid JSON.</exception>
  4276. </member>
  4277. <member name="M:System.Text.Json.Utf8JsonWriter.WriteNumberValue(System.UInt64)">
  4278. <summary>Writes a <see cref="T:System.UInt64" /> value (as a JSON number) as an element of a JSON array.</summary>
  4279. <param name="value">The value to be written as a JSON number as an element of a JSON array.</param>
  4280. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the operation would result in writing invalid JSON.</exception>
  4281. </member>
  4282. <member name="M:System.Text.Json.Utf8JsonWriter.WritePropertyName(System.ReadOnlySpan{System.Byte})">
  4283. <summary>Writes the UTF-8 property name (as a JSON string) as the first part of a name/value pair of a JSON object.</summary>
  4284. <param name="utf8PropertyName">The UTF-8 encoded property name of the JSON object to be written.</param>
  4285. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4286. <exception cref="T:System.InvalidOperationException">Validation is enabled, and this write operation would produce invalid JSON.</exception>
  4287. </member>
  4288. <member name="M:System.Text.Json.Utf8JsonWriter.WritePropertyName(System.ReadOnlySpan{System.Char})">
  4289. <summary>Writes the property name (as a JSON string) as the first part of a name/value pair of a JSON object.</summary>
  4290. <param name="propertyName">The property name of the JSON object to be transcoded and written as UTF-8.</param>
  4291. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4292. <exception cref="T:System.InvalidOperationException">Validation is enabled, and this write operation would produce invalid JSON.</exception>
  4293. </member>
  4294. <member name="M:System.Text.Json.Utf8JsonWriter.WritePropertyName(System.String)">
  4295. <summary>Writes the property name (as a JSON string) as the first part of a name/value pair of a JSON object.</summary>
  4296. <param name="propertyName">The property name of the JSON object to be transcoded and written as UTF-8.</param>
  4297. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4298. <exception cref="T:System.InvalidOperationException">Validation is enabled, and this write operation would produce invalid JSON.</exception>
  4299. <exception cref="T:System.ArgumentNullException">
  4300. <paramref name="propertyName" /> is <see langword="null" />.</exception>
  4301. </member>
  4302. <member name="M:System.Text.Json.Utf8JsonWriter.WritePropertyName(System.Text.Json.JsonEncodedText)">
  4303. <summary>Writes the pre-encoded property name (as a JSON string) as the first part of a name/value pair of a JSON object.</summary>
  4304. <param name="propertyName">The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4305. <exception cref="T:System.InvalidOperationException">Validation is enabled, and this write operation would produce invalid JSON.</exception>
  4306. </member>
  4307. <member name="M:System.Text.Json.Utf8JsonWriter.WriteRawValue(System.ReadOnlySpan{System.Byte},System.Boolean)">
  4308. <summary>Writes the input as JSON content. It is expected that the input content is a single complete JSON value.</summary>
  4309. <param name="utf8Json">The raw JSON content to write.</param>
  4310. <param name="skipInputValidation">
  4311. <see langword="false" /> to validate if the input is an RFC 8259-compliant JSON payload; <see langword="true" /> otherwise.</param>
  4312. <exception cref="T:System.ArgumentException">The length of the input is zero or equal to <see cref="F:System.Int32.MaxValue" />.</exception>
  4313. <exception cref="T:System.Text.Json.JsonException">
  4314. <paramref name="skipInputValidation" /> is <see langword="false" />, and the input is not a valid, complete, single JSON value according to the JSON RFC, or the input JSON exceeds a recursive depth of 64.</exception>
  4315. </member>
  4316. <member name="M:System.Text.Json.Utf8JsonWriter.WriteRawValue(System.ReadOnlySpan{System.Char},System.Boolean)">
  4317. <summary>Writes the input as JSON content. It is expected that the input content is a single complete JSON value.</summary>
  4318. <param name="json">The raw JSON content to write.</param>
  4319. <param name="skipInputValidation">
  4320. <see langword="false" /> to validate if the input is an RFC 8259-compliant JSON payload; <see langword="true" /> otherwise.</param>
  4321. <exception cref="T:System.ArgumentException">The length of the input is zero or greater than 715,827,882 (<see cref="F:System.Int32.MaxValue" /> / 3).</exception>
  4322. <exception cref="T:System.Text.Json.JsonException">
  4323. <paramref name="skipInputValidation" /> is <see langword="false" />, and the input is not a valid, complete, single JSON value according to the JSON RFC, or the input JSON exceeds a recursive depth of 64.</exception>
  4324. </member>
  4325. <member name="M:System.Text.Json.Utf8JsonWriter.WriteRawValue(System.String,System.Boolean)">
  4326. <summary>Writes the input as JSON content. It is expected that the input content is a single complete JSON value.</summary>
  4327. <param name="json">The raw JSON content to write.</param>
  4328. <param name="skipInputValidation">
  4329. <see langword="false" /> to validate if the input is an RFC 8259-compliant JSON payload; <see langword="true" /> otherwise.</param>
  4330. <exception cref="T:System.ArgumentNullException">
  4331. <paramref name="json" /> is <see langword="null" />.</exception>
  4332. <exception cref="T:System.ArgumentException">The length of the input is zero or greater than 715,827,882 (<see cref="F:System.Int32.MaxValue" /> / 3).</exception>
  4333. <exception cref="T:System.Text.Json.JsonException">
  4334. <paramref name="skipInputValidation" /> is <see langword="false" />, and the input is not a valid, complete, single JSON value according to the JSON RFC, or the input JSON exceeds a recursive depth of 64.</exception>
  4335. </member>
  4336. <member name="M:System.Text.Json.Utf8JsonWriter.WriteStartArray">
  4337. <summary>Writes the beginning of a JSON array.</summary>
  4338. <exception cref="T:System.InvalidOperationException">The depth of the JSON exceeds the maximum depth of 1,000.
  4339. -or-
  4340. Validation is enabled, and this write operation would produce invalid JSON.</exception>
  4341. </member>
  4342. <member name="M:System.Text.Json.Utf8JsonWriter.WriteStartArray(System.ReadOnlySpan{System.Byte})">
  4343. <summary>Writes the beginning of a JSON array with a property name specified as a read-only span of bytes as the key.</summary>
  4344. <param name="utf8PropertyName">The UTF-8 encoded property name of the JSON array to be written.</param>
  4345. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4346. <exception cref="T:System.InvalidOperationException">The depth of the JSON exceeds the maximum depth of 1,000.
  4347. -or-
  4348. Validation is enabled, and this write operation would produce invalid JSON.</exception>
  4349. </member>
  4350. <member name="M:System.Text.Json.Utf8JsonWriter.WriteStartArray(System.ReadOnlySpan{System.Char})">
  4351. <summary>Writes the beginning of a JSON array with a property name specified as a read-only character span as the key.</summary>
  4352. <param name="propertyName">The UTF-16 encoded property name of the JSON array to be transcoded and written as UTF-8.</param>
  4353. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4354. <exception cref="T:System.InvalidOperationException">The depth of the JSON exceeds the maximum depth of 1,000.
  4355. -or-
  4356. Validation is enabled, and this write operation would produce invalid JSON.</exception>
  4357. </member>
  4358. <member name="M:System.Text.Json.Utf8JsonWriter.WriteStartArray(System.String)">
  4359. <summary>Writes the beginning of a JSON array with a property name specified as a string as the key.</summary>
  4360. <param name="propertyName">The UTF-16 encoded property name of the JSON array to be transcoded and written as UTF-8.</param>
  4361. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4362. <exception cref="T:System.InvalidOperationException">The depth of the JSON exceeds the maximum depth of 1,000.
  4363. -or-
  4364. Validation is enabled, and this write operation would produce invalid JSON.</exception>
  4365. <exception cref="T:System.ArgumentNullException">The <paramref name="propertyName" /> parameter is <see langword="null" />.</exception>
  4366. </member>
  4367. <member name="M:System.Text.Json.Utf8JsonWriter.WriteStartArray(System.Text.Json.JsonEncodedText)">
  4368. <summary>Writes the beginning of a JSON array with a pre-encoded property name as the key.</summary>
  4369. <param name="propertyName">The JSON encoded property name of the JSON array to be transcoded and written as UTF-8.</param>
  4370. <exception cref="T:System.InvalidOperationException">The depth of the JSON has exceeded the maximum depth of 1,000.
  4371. -or-
  4372. Validation is enabled, and this method would result in writing invalid JSON.</exception>
  4373. </member>
  4374. <member name="M:System.Text.Json.Utf8JsonWriter.WriteStartObject">
  4375. <summary>Writes the beginning of a JSON object.</summary>
  4376. <exception cref="T:System.InvalidOperationException">The depth of the JSON exceeds the maximum depth of 1,000.
  4377. -or-
  4378. Validation is enabled, and the operation would result in writing invalid JSON.</exception>
  4379. </member>
  4380. <member name="M:System.Text.Json.Utf8JsonWriter.WriteStartObject(System.ReadOnlySpan{System.Byte})">
  4381. <summary>Writes the beginning of a JSON object with a property name specified as a read-only span of bytes as the key.</summary>
  4382. <param name="utf8PropertyName">The UTF-8 encoded property name of the JSON object to be written.</param>
  4383. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4384. <exception cref="T:System.InvalidOperationException">The depth of the JSON exceeds the maximum depth of 1,000.
  4385. -or-
  4386. Validation is enabled, and this write operation would produce invalid JSON.</exception>
  4387. </member>
  4388. <member name="M:System.Text.Json.Utf8JsonWriter.WriteStartObject(System.ReadOnlySpan{System.Char})">
  4389. <summary>Writes the beginning of a JSON object with a property name specififed as a read-only character span as the key.</summary>
  4390. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4391. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4392. <exception cref="T:System.InvalidOperationException">The depth of the JSON exceeds the maximum depth of 1,000.
  4393. -or-
  4394. Validation is enabled, and this write operation would produce invalid JSON.</exception>
  4395. </member>
  4396. <member name="M:System.Text.Json.Utf8JsonWriter.WriteStartObject(System.String)">
  4397. <summary>Writes the beginning of a JSON object with a property name specified as a string as the key.</summary>
  4398. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4399. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4400. <exception cref="T:System.InvalidOperationException">The depth of the JSON exceeds the maximum depth of 1,000.
  4401. -or-
  4402. Validation is enabled, and this write operation would produce invalid JSON.</exception>
  4403. <exception cref="T:System.ArgumentNullException">The <paramref name="propertyName" /> parameter is <see langword="null" />.</exception>
  4404. </member>
  4405. <member name="M:System.Text.Json.Utf8JsonWriter.WriteStartObject(System.Text.Json.JsonEncodedText)">
  4406. <summary>Writes the beginning of a JSON object with a pre-encoded property name as the key.</summary>
  4407. <param name="propertyName">The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4408. <exception cref="T:System.InvalidOperationException">The depth of the JSON has exceeded the maximum depth of 1,000.
  4409. -or-
  4410. Validation is enabled, and this method would result in writing invalid JSON.</exception>
  4411. </member>
  4412. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.ReadOnlySpan{System.Byte},System.DateTime)">
  4413. <summary>Writes a UTF-8 property name and a <see cref="T:System.DateTime" /> value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4414. <param name="utf8PropertyName">The UTF-8 encoded property name of the JSON object to be written.</param>
  4415. <param name="value">The value to be written as a JSON string as part of the name/value pair.</param>
  4416. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4417. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4418. </member>
  4419. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.ReadOnlySpan{System.Byte},System.DateTimeOffset)">
  4420. <summary>Writes a UTF-8 property name and a <see cref="T:System.DateTimeOffset" /> value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4421. <param name="utf8PropertyName">The UTF-8 encoded property name of the JSON object to be written.</param>
  4422. <param name="value">The value to be written as a JSON string as part of the name/value pair.</param>
  4423. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4424. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4425. </member>
  4426. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.ReadOnlySpan{System.Byte},System.Guid)">
  4427. <summary>Writes a UTF-8 property name and a <see cref="T:System.Guid" /> value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4428. <param name="utf8PropertyName">The UTF-8 encoded property name of the JSON object to be written.</param>
  4429. <param name="value">The value to be written as a JSON string as part of the name/value pair.</param>
  4430. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4431. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4432. </member>
  4433. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})">
  4434. <summary>Writes a UTF-8 property name and UTF-8 text value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4435. <param name="utf8PropertyName">The UTF-8 encoded property name of the JSON object to be written.</param>
  4436. <param name="utf8Value">The UTF-8 encoded value to be written as a JSON string as part of the name/value pair.</param>
  4437. <exception cref="T:System.ArgumentException">The specified property name or value is too large.</exception>
  4438. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4439. </member>
  4440. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Char})">
  4441. <summary>Writes a UTF-8 property name and UTF-16 text value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4442. <param name="utf8PropertyName">The UTF-8 encoded property name of the JSON object to be written.</param>
  4443. <param name="value">The UTF-16 encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair.</param>
  4444. <exception cref="T:System.ArgumentException">The specified property name or value is too large.</exception>
  4445. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4446. </member>
  4447. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.ReadOnlySpan{System.Byte},System.String)">
  4448. <summary>Writes a UTF-8 property name and string text value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4449. <param name="utf8PropertyName">The UTF-8 encoded property name of the JSON object to be written.</param>
  4450. <param name="value">The UTF-16 encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair.</param>
  4451. <exception cref="T:System.ArgumentException">The specified property name or value is too large.</exception>
  4452. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4453. </member>
  4454. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.ReadOnlySpan{System.Byte},System.Text.Json.JsonEncodedText)">
  4455. <summary>Writes the UTF-8 property name and pre-encoded value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4456. <param name="utf8PropertyName">The UTF-8 encoded property name of the JSON object to be written.</param>
  4457. <param name="value">The JSON encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair.</param>
  4458. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4459. <exception cref="T:System.InvalidOperationException">Validation is enabled, and this method would result in writing invalid JSON.</exception>
  4460. </member>
  4461. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.ReadOnlySpan{System.Char},System.DateTime)">
  4462. <summary>Writes a property name specified as a read-only character span and a <see cref="T:System.DateTime" /> value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4463. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4464. <param name="value">The value to be written as a JSON string as part of the name/value pair.</param>
  4465. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4466. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4467. </member>
  4468. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.ReadOnlySpan{System.Char},System.DateTimeOffset)">
  4469. <summary>Writes a property name specified as a read-only character span and a <see cref="T:System.DateTimeOffset" /> value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4470. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4471. <param name="value">The value to be written as a JSON string as part of the name/value pair.</param>
  4472. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4473. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4474. </member>
  4475. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.ReadOnlySpan{System.Char},System.Guid)">
  4476. <summary>Writes a property name specified as a read-only character span and a <see cref="T:System.Guid" /> value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4477. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4478. <param name="value">The value to be written as a JSON string as part of the name/value pair.</param>
  4479. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4480. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4481. </member>
  4482. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Byte})">
  4483. <summary>Writes a UTF-16 property name and UTF-8 text value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4484. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4485. <param name="utf8Value">The UTF-8 encoded value to be written as a JSON string as part of the name/value pair.</param>
  4486. <exception cref="T:System.ArgumentException">The specified property name or value is too large.</exception>
  4487. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4488. </member>
  4489. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char})">
  4490. <summary>Writes a UTF-16 property name and UTF-16 text value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4491. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4492. <param name="value">The UTF-16 encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair.</param>
  4493. <exception cref="T:System.ArgumentException">The specified property name or value is too large.</exception>
  4494. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4495. </member>
  4496. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.ReadOnlySpan{System.Char},System.String)">
  4497. <summary>Writes a UTF-16 property name and string text value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4498. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4499. <param name="value">The UTF-16 encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair.</param>
  4500. <exception cref="T:System.ArgumentException">The specified property name or value is too large.</exception>
  4501. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4502. </member>
  4503. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.ReadOnlySpan{System.Char},System.Text.Json.JsonEncodedText)">
  4504. <summary>Writes the property name and pre-encoded value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4505. <param name="propertyName">The property name of the JSON object to be transcoded and written as UTF-8.</param>
  4506. <param name="value">The JSON encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair.</param>
  4507. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4508. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4509. </member>
  4510. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.String,System.DateTime)">
  4511. <summary>Writes a property name specified as a string and a <see cref="T:System.DateTime" /> value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4512. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4513. <param name="value">The value to be written as a JSON string as part of the name/value pair.</param>
  4514. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4515. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4516. <exception cref="T:System.ArgumentNullException">The <paramref name="propertyName" /> parameter is <see langword="null" />.</exception>
  4517. </member>
  4518. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.String,System.DateTimeOffset)">
  4519. <summary>Writes a property name specified as a string and a <see cref="T:System.DateTimeOffset" /> value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4520. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4521. <param name="value">The value to be written as a JSON string as part of the name/value pair.</param>
  4522. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4523. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4524. <exception cref="T:System.ArgumentNullException">The <paramref name="propertyName" /> parameter is <see langword="null" />.</exception>
  4525. </member>
  4526. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.String,System.Guid)">
  4527. <summary>Writes a property name specified as a string and a <see cref="T:System.Guid" /> value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4528. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4529. <param name="value">The value to be written as a JSON string as part of the name/value pair.</param>
  4530. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4531. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4532. <exception cref="T:System.ArgumentNullException">The <paramref name="propertyName" /> parameter is <see langword="null" />.</exception>
  4533. </member>
  4534. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.String,System.ReadOnlySpan{System.Byte})">
  4535. <summary>Writes a property name specified as a string and a UTF-8 text value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4536. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4537. <param name="utf8Value">The UTF-8 encoded value to be written as a JSON string as part of the name/value pair.</param>
  4538. <exception cref="T:System.ArgumentException">The specified property name or value is too large.</exception>
  4539. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4540. <exception cref="T:System.ArgumentNullException">The <paramref name="propertyName" /> parameter is <see langword="null" />.</exception>
  4541. </member>
  4542. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.String,System.ReadOnlySpan{System.Char})">
  4543. <summary>Writes a property name specified as a string and a UTF-16 text value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4544. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4545. <param name="value">The UTF-16 encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair.</param>
  4546. <exception cref="T:System.ArgumentException">The specified property name or value is too large.</exception>
  4547. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4548. <exception cref="T:System.ArgumentNullException">The <paramref name="propertyName" /> parameter is <see langword="null" />.</exception>
  4549. </member>
  4550. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.String,System.String)">
  4551. <summary>Writes a property name specified as a string and a string text value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4552. <param name="propertyName">The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4553. <param name="value">The UTF-16 encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair.</param>
  4554. <exception cref="T:System.ArgumentException">The specified property name or value is too large.</exception>
  4555. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4556. <exception cref="T:System.ArgumentNullException">The <paramref name="propertyName" /> parameter is <see langword="null" />.</exception>
  4557. </member>
  4558. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.String,System.Text.Json.JsonEncodedText)">
  4559. <summary>Writes the property name and pre-encoded value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4560. <param name="propertyName">The property name of the JSON object to be transcoded and written as UTF-8.</param>
  4561. <param name="value">The JSON encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair.</param>
  4562. <exception cref="T:System.ArgumentException">The specified property name is too large.</exception>
  4563. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4564. <exception cref="T:System.ArgumentNullException">The <paramref name="propertyName" /> parameter is <see langword="null" />.</exception>
  4565. </member>
  4566. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.Text.Json.JsonEncodedText,System.DateTime)">
  4567. <summary>Writes the pre-encoded property name and <see cref="T:System.DateTime" /> value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4568. <param name="propertyName">The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4569. <param name="value">The value to be written as a JSON string as part of the name/value pair.</param>
  4570. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4571. </member>
  4572. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.Text.Json.JsonEncodedText,System.DateTimeOffset)">
  4573. <summary>Writes the pre-encoded property name and <see cref="T:System.DateTimeOffset" /> value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4574. <param name="propertyName">The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4575. <param name="value">The value to be written as a JSON string as part of the name/value pair.</param>
  4576. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4577. </member>
  4578. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.Text.Json.JsonEncodedText,System.Guid)">
  4579. <summary>Writes the pre-encoded property name and <see cref="T:System.Guid" /> value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4580. <param name="propertyName">The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4581. <param name="value">The value to be written as a JSON string as part of the name/value pair.</param>
  4582. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4583. </member>
  4584. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.Text.Json.JsonEncodedText,System.ReadOnlySpan{System.Byte})">
  4585. <summary>Writes the pre-encoded property name and UTF-8 text value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4586. <param name="propertyName">The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4587. <param name="utf8Value">The UTF-8 encoded value to be written as a JSON string as part of the name/value pair.</param>
  4588. <exception cref="T:System.ArgumentException">The specified value is too large.</exception>
  4589. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4590. </member>
  4591. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.Text.Json.JsonEncodedText,System.ReadOnlySpan{System.Char})">
  4592. <summary>Writes the pre-encoded property name and text value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4593. <param name="propertyName">The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4594. <param name="value">The value to be written as a UTF-8 transcoded JSON string as part of the name/value pair.</param>
  4595. <exception cref="T:System.ArgumentException">The specified value is too large.</exception>
  4596. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4597. </member>
  4598. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.Text.Json.JsonEncodedText,System.String)">
  4599. <summary>Writes the pre-encoded property name and string text value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4600. <param name="propertyName">The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4601. <param name="value">The value to be written as a UTF-8 transcoded JSON string as part of the name/value pair.</param>
  4602. <exception cref="T:System.ArgumentException">The specified value is too large.</exception>
  4603. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4604. </member>
  4605. <member name="M:System.Text.Json.Utf8JsonWriter.WriteString(System.Text.Json.JsonEncodedText,System.Text.Json.JsonEncodedText)">
  4606. <summary>Writes the pre-encoded property name and pre-encoded value (as a JSON string) as part of a name/value pair of a JSON object.</summary>
  4607. <param name="propertyName">The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.</param>
  4608. <param name="value">The JSON encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair.</param>
  4609. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4610. </member>
  4611. <member name="M:System.Text.Json.Utf8JsonWriter.WriteStringValue(System.DateTime)">
  4612. <summary>Writes a <see cref="T:System.DateTime" /> value (as a JSON string) as an element of a JSON array.</summary>
  4613. <param name="value">The value to be written as a JSON string as an element of a JSON array.</param>
  4614. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the operation would result in writing invalid JSON.</exception>
  4615. </member>
  4616. <member name="M:System.Text.Json.Utf8JsonWriter.WriteStringValue(System.DateTimeOffset)">
  4617. <summary>Writes a <see cref="T:System.DateTimeOffset" /> value (as a JSON string) as an element of a JSON array.</summary>
  4618. <param name="value">The value to be written as a JSON string as an element of a JSON array.</param>
  4619. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the operation would result in writing invalid JSON.</exception>
  4620. </member>
  4621. <member name="M:System.Text.Json.Utf8JsonWriter.WriteStringValue(System.Guid)">
  4622. <summary>Writes a <see cref="T:System.Guid" /> value (as a JSON string) as an element of a JSON array.</summary>
  4623. <param name="value">The value to be written as a JSON string as an element of a JSON array.</param>
  4624. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the operation would result in writing invalid JSON.</exception>
  4625. </member>
  4626. <member name="M:System.Text.Json.Utf8JsonWriter.WriteStringValue(System.ReadOnlySpan{System.Byte})">
  4627. <summary>Writes a UTF-8 text value (as a JSON string) as an element of a JSON array.</summary>
  4628. <param name="utf8Value">The UTF-8 encoded value to be written as a JSON string element of a JSON array.</param>
  4629. <exception cref="T:System.ArgumentException">The specified value is too large.</exception>
  4630. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4631. </member>
  4632. <member name="M:System.Text.Json.Utf8JsonWriter.WriteStringValue(System.ReadOnlySpan{System.Char})">
  4633. <summary>Writes a UTF-16 text value (as a JSON string) as an element of a JSON array.</summary>
  4634. <param name="value">The UTF-16 encoded value to be written as a UTF-8 transcoded JSON string element of a JSON array.</param>
  4635. <exception cref="T:System.ArgumentException">The specified value is too large.</exception>
  4636. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4637. </member>
  4638. <member name="M:System.Text.Json.Utf8JsonWriter.WriteStringValue(System.String)">
  4639. <summary>Writes a string text value (as a JSON string) as an element of a JSON array.</summary>
  4640. <param name="value">The UTF-16 encoded value to be written as a UTF-8 transcoded JSON string element of a JSON array.</param>
  4641. <exception cref="T:System.ArgumentException">The specified value is too large.</exception>
  4642. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4643. </member>
  4644. <member name="M:System.Text.Json.Utf8JsonWriter.WriteStringValue(System.Text.Json.JsonEncodedText)">
  4645. <summary>Writes the pre-encoded text value (as a JSON string) as an element of a JSON array.</summary>
  4646. <param name="value">The JSON encoded value to be written as a UTF-8 transcoded JSON string element of a JSON array.</param>
  4647. <exception cref="T:System.InvalidOperationException">Validation is enabled, and the write operation would produce invalid JSON.</exception>
  4648. </member>
  4649. <member name="P:System.Text.Json.Utf8JsonWriter.BytesCommitted">
  4650. <summary>Gets the total number of bytes committed to the output by the current instance so far.</summary>
  4651. <returns>The total number of bytes committed to the output by the <see cref="T:System.Text.Json.Utf8JsonWriter" /> so far.</returns>
  4652. </member>
  4653. <member name="P:System.Text.Json.Utf8JsonWriter.BytesPending">
  4654. <summary>Gets the number of bytes written by the <see cref="T:System.Text.Json.Utf8JsonWriter" /> so far that have not yet been flushed to the output and committed.</summary>
  4655. <returns>The number of bytes written so far by the <see cref="T:System.Text.Json.Utf8JsonWriter" /> that have not yet been flushed to the output and committed.</returns>
  4656. </member>
  4657. <member name="P:System.Text.Json.Utf8JsonWriter.CurrentDepth">
  4658. <summary>Gets the depth of the current token.</summary>
  4659. <returns>The depth of the current token.</returns>
  4660. </member>
  4661. <member name="P:System.Text.Json.Utf8JsonWriter.Options">
  4662. <summary>Gets the custom behavior when writing JSON using this instance, which indicates whether to format the output while writing, whether to skip structural JSON validation, and which characters to escape.</summary>
  4663. <returns>The custom behavior of this instance of the writer for formatting, validating, and escaping.</returns>
  4664. </member>
  4665. </members>
  4666. </doc>