Google.Protobuf.xml 515 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Google.Protobuf</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Google.Protobuf.ByteArray">
  8. <summary>
  9. Provides a utility routine to copy small arrays much more quickly than Buffer.BlockCopy
  10. </summary>
  11. </member>
  12. <member name="F:Google.Protobuf.ByteArray.CopyThreshold">
  13. <summary>
  14. The threshold above which you should use Buffer.BlockCopy rather than ByteArray.Copy
  15. </summary>
  16. </member>
  17. <member name="M:Google.Protobuf.ByteArray.Copy(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Int32)">
  18. <summary>
  19. Determines which copy routine to use based on the number of bytes to be copied.
  20. </summary>
  21. </member>
  22. <member name="M:Google.Protobuf.ByteArray.Reverse(System.Byte[])">
  23. <summary>
  24. Reverses the order of bytes in the array
  25. </summary>
  26. </member>
  27. <member name="T:Google.Protobuf.ByteString">
  28. <summary>
  29. Immutable array of bytes.
  30. </summary>
  31. </member>
  32. <member name="T:Google.Protobuf.ByteString.Unsafe">
  33. <summary>
  34. Unsafe operations that can cause IO Failure and/or other catastrophic side-effects.
  35. </summary>
  36. </member>
  37. <member name="M:Google.Protobuf.ByteString.Unsafe.FromBytes(System.Byte[])">
  38. <summary>
  39. Constructs a new ByteString from the given byte array. The array is
  40. *not* copied, and must not be modified after this constructor is called.
  41. </summary>
  42. </member>
  43. <member name="M:Google.Protobuf.ByteString.AttachBytes(System.Byte[])">
  44. <summary>
  45. Internal use only. Ensure that the provided array is not mutated and belongs to this instance.
  46. </summary>
  47. </member>
  48. <member name="M:Google.Protobuf.ByteString.#ctor(System.Byte[])">
  49. <summary>
  50. Constructs a new ByteString from the given byte array. The array is
  51. *not* copied, and must not be modified after this constructor is called.
  52. </summary>
  53. </member>
  54. <member name="P:Google.Protobuf.ByteString.Empty">
  55. <summary>
  56. Returns an empty ByteString.
  57. </summary>
  58. </member>
  59. <member name="P:Google.Protobuf.ByteString.Length">
  60. <summary>
  61. Returns the length of this ByteString in bytes.
  62. </summary>
  63. </member>
  64. <member name="P:Google.Protobuf.ByteString.IsEmpty">
  65. <summary>
  66. Returns <c>true</c> if this byte string is empty, <c>false</c> otherwise.
  67. </summary>
  68. </member>
  69. <member name="P:Google.Protobuf.ByteString.Span">
  70. <summary>
  71. Provides read-only access to the data of this <see cref="T:Google.Protobuf.ByteString"/>.
  72. No data is copied so this is the most efficient way of accessing.
  73. </summary>
  74. </member>
  75. <member name="P:Google.Protobuf.ByteString.Memory">
  76. <summary>
  77. Provides read-only access to the data of this <see cref="T:Google.Protobuf.ByteString"/>.
  78. No data is copied so this is the most efficient way of accessing.
  79. </summary>
  80. </member>
  81. <member name="M:Google.Protobuf.ByteString.ToByteArray">
  82. <summary>
  83. Converts this <see cref="T:Google.Protobuf.ByteString"/> into a byte array.
  84. </summary>
  85. <remarks>The data is copied - changes to the returned array will not be reflected in this <c>ByteString</c>.</remarks>
  86. <returns>A byte array with the same data as this <c>ByteString</c>.</returns>
  87. </member>
  88. <member name="M:Google.Protobuf.ByteString.ToBase64">
  89. <summary>
  90. Converts this <see cref="T:Google.Protobuf.ByteString"/> into a standard base64 representation.
  91. </summary>
  92. <returns>A base64 representation of this <c>ByteString</c>.</returns>
  93. </member>
  94. <member name="M:Google.Protobuf.ByteString.FromBase64(System.String)">
  95. <summary>
  96. Constructs a <see cref="T:Google.Protobuf.ByteString" /> from the Base64 Encoded String.
  97. </summary>
  98. </member>
  99. <member name="M:Google.Protobuf.ByteString.FromStream(System.IO.Stream)">
  100. <summary>
  101. Constructs a <see cref="T:Google.Protobuf.ByteString"/> from data in the given stream, synchronously.
  102. </summary>
  103. <remarks>If successful, <paramref name="stream"/> will be read completely, from the position
  104. at the start of the call.</remarks>
  105. <param name="stream">The stream to copy into a ByteString.</param>
  106. <returns>A ByteString with content read from the given stream.</returns>
  107. </member>
  108. <member name="M:Google.Protobuf.ByteString.FromStreamAsync(System.IO.Stream,System.Threading.CancellationToken)">
  109. <summary>
  110. Constructs a <see cref="T:Google.Protobuf.ByteString"/> from data in the given stream, asynchronously.
  111. </summary>
  112. <remarks>If successful, <paramref name="stream"/> will be read completely, from the position
  113. at the start of the call.</remarks>
  114. <param name="stream">The stream to copy into a ByteString.</param>
  115. <param name="cancellationToken">The cancellation token to use when reading from the stream, if any.</param>
  116. <returns>A ByteString with content read from the given stream.</returns>
  117. </member>
  118. <member name="M:Google.Protobuf.ByteString.CopyFrom(System.Byte[])">
  119. <summary>
  120. Constructs a <see cref="T:Google.Protobuf.ByteString" /> from the given array. The contents
  121. are copied, so further modifications to the array will not
  122. be reflected in the returned ByteString.
  123. This method can also be invoked in <c>ByteString.CopyFrom(0xaa, 0xbb, ...)</c> form
  124. which is primarily useful for testing.
  125. </summary>
  126. </member>
  127. <member name="M:Google.Protobuf.ByteString.CopyFrom(System.Byte[],System.Int32,System.Int32)">
  128. <summary>
  129. Constructs a <see cref="T:Google.Protobuf.ByteString" /> from a portion of a byte array.
  130. </summary>
  131. </member>
  132. <member name="M:Google.Protobuf.ByteString.CopyFrom(System.ReadOnlySpan{System.Byte})">
  133. <summary>
  134. Constructs a <see cref="T:Google.Protobuf.ByteString" /> from a read only span. The contents
  135. are copied, so further modifications to the span will not
  136. be reflected in the returned <see cref="T:Google.Protobuf.ByteString" />.
  137. </summary>
  138. </member>
  139. <member name="M:Google.Protobuf.ByteString.CopyFrom(System.String,System.Text.Encoding)">
  140. <summary>
  141. Creates a new <see cref="T:Google.Protobuf.ByteString" /> by encoding the specified text with
  142. the given encoding.
  143. </summary>
  144. </member>
  145. <member name="M:Google.Protobuf.ByteString.CopyFromUtf8(System.String)">
  146. <summary>
  147. Creates a new <see cref="T:Google.Protobuf.ByteString" /> by encoding the specified text in UTF-8.
  148. </summary>
  149. </member>
  150. <member name="P:Google.Protobuf.ByteString.Item(System.Int32)">
  151. <summary>
  152. Returns the byte at the given index.
  153. </summary>
  154. </member>
  155. <member name="M:Google.Protobuf.ByteString.ToString(System.Text.Encoding)">
  156. <summary>
  157. Converts this <see cref="T:Google.Protobuf.ByteString"/> into a string by applying the given encoding.
  158. </summary>
  159. <remarks>
  160. This method should only be used to convert binary data which was the result of encoding
  161. text with the given encoding.
  162. </remarks>
  163. <param name="encoding">The encoding to use to decode the binary data into text.</param>
  164. <returns>The result of decoding the binary data with the given decoding.</returns>
  165. </member>
  166. <member name="M:Google.Protobuf.ByteString.ToStringUtf8">
  167. <summary>
  168. Converts this <see cref="T:Google.Protobuf.ByteString"/> into a string by applying the UTF-8 encoding.
  169. </summary>
  170. <remarks>
  171. This method should only be used to convert binary data which was the result of encoding
  172. text with UTF-8.
  173. </remarks>
  174. <returns>The result of decoding the binary data with the given decoding.</returns>
  175. </member>
  176. <member name="M:Google.Protobuf.ByteString.GetEnumerator">
  177. <summary>
  178. Returns an iterator over the bytes in this <see cref="T:Google.Protobuf.ByteString"/>.
  179. </summary>
  180. <returns>An iterator over the bytes in this object.</returns>
  181. </member>
  182. <member name="M:Google.Protobuf.ByteString.System#Collections#IEnumerable#GetEnumerator">
  183. <summary>
  184. Returns an iterator over the bytes in this <see cref="T:Google.Protobuf.ByteString"/>.
  185. </summary>
  186. <returns>An iterator over the bytes in this object.</returns>
  187. </member>
  188. <member name="M:Google.Protobuf.ByteString.CreateCodedInput">
  189. <summary>
  190. Creates a CodedInputStream from this ByteString's data.
  191. </summary>
  192. </member>
  193. <member name="M:Google.Protobuf.ByteString.op_Equality(Google.Protobuf.ByteString,Google.Protobuf.ByteString)">
  194. <summary>
  195. Compares two byte strings for equality.
  196. </summary>
  197. <param name="lhs">The first byte string to compare.</param>
  198. <param name="rhs">The second byte string to compare.</param>
  199. <returns><c>true</c> if the byte strings are equal; false otherwise.</returns>
  200. </member>
  201. <member name="M:Google.Protobuf.ByteString.op_Inequality(Google.Protobuf.ByteString,Google.Protobuf.ByteString)">
  202. <summary>
  203. Compares two byte strings for inequality.
  204. </summary>
  205. <param name="lhs">The first byte string to compare.</param>
  206. <param name="rhs">The second byte string to compare.</param>
  207. <returns><c>false</c> if the byte strings are equal; true otherwise.</returns>
  208. </member>
  209. <member name="M:Google.Protobuf.ByteString.Equals(System.Object)">
  210. <summary>
  211. Compares this byte string with another object.
  212. </summary>
  213. <param name="obj">The object to compare this with.</param>
  214. <returns><c>true</c> if <paramref name="obj"/> refers to an equal <see cref="T:Google.Protobuf.ByteString"/>; <c>false</c> otherwise.</returns>
  215. </member>
  216. <member name="M:Google.Protobuf.ByteString.GetHashCode">
  217. <summary>
  218. Returns a hash code for this object. Two equal byte strings
  219. will return the same hash code.
  220. </summary>
  221. <returns>A hash code for this object.</returns>
  222. </member>
  223. <member name="M:Google.Protobuf.ByteString.Equals(Google.Protobuf.ByteString)">
  224. <summary>
  225. Compares this byte string with another.
  226. </summary>
  227. <param name="other">The <see cref="T:Google.Protobuf.ByteString"/> to compare this with.</param>
  228. <returns><c>true</c> if <paramref name="other"/> refers to an equal byte string; <c>false</c> otherwise.</returns>
  229. </member>
  230. <member name="M:Google.Protobuf.ByteString.WriteRawBytesTo(Google.Protobuf.CodedOutputStream)">
  231. <summary>
  232. Used internally by CodedOutputStream to avoid creating a copy for the write
  233. </summary>
  234. </member>
  235. <member name="M:Google.Protobuf.ByteString.CopyTo(System.Byte[],System.Int32)">
  236. <summary>
  237. Copies the entire byte array to the destination array provided at the offset specified.
  238. </summary>
  239. </member>
  240. <member name="M:Google.Protobuf.ByteString.WriteTo(System.IO.Stream)">
  241. <summary>
  242. Writes the entire byte array to the provided stream
  243. </summary>
  244. </member>
  245. <member name="T:Google.Protobuf.CodedInputStream">
  246. <summary>
  247. Reads and decodes protocol message fields.
  248. </summary>
  249. <remarks>
  250. <para>
  251. This class is generally used by generated code to read appropriate
  252. primitives from the stream. It effectively encapsulates the lowest
  253. levels of protocol buffer format.
  254. </para>
  255. <para>
  256. Repeated fields and map fields are not handled by this class; use <see cref="T:Google.Protobuf.Collections.RepeatedField`1"/>
  257. and <see cref="T:Google.Protobuf.Collections.MapField`2"/> to serialize such fields.
  258. </para>
  259. </remarks>
  260. </member>
  261. <member name="F:Google.Protobuf.CodedInputStream.leaveOpen">
  262. <summary>
  263. Whether to leave the underlying stream open when disposing of this stream.
  264. This is always true when there's no stream.
  265. </summary>
  266. </member>
  267. <member name="F:Google.Protobuf.CodedInputStream.buffer">
  268. <summary>
  269. Buffer of data read from the stream or provided at construction time.
  270. </summary>
  271. </member>
  272. <member name="F:Google.Protobuf.CodedInputStream.input">
  273. <summary>
  274. The stream to read further input from, or null if the byte array buffer was provided
  275. directly on construction, with no further data available.
  276. </summary>
  277. </member>
  278. <member name="F:Google.Protobuf.CodedInputStream.state">
  279. <summary>
  280. The parser state is kept separately so that other parse implementations can reuse the same
  281. parsing primitives.
  282. </summary>
  283. </member>
  284. <member name="M:Google.Protobuf.CodedInputStream.#ctor(System.Byte[])">
  285. <summary>
  286. Creates a new CodedInputStream reading data from the given byte array.
  287. </summary>
  288. </member>
  289. <member name="M:Google.Protobuf.CodedInputStream.#ctor(System.Byte[],System.Int32,System.Int32)">
  290. <summary>
  291. Creates a new <see cref="T:Google.Protobuf.CodedInputStream"/> that reads from the given byte array slice.
  292. </summary>
  293. </member>
  294. <member name="M:Google.Protobuf.CodedInputStream.#ctor(System.IO.Stream)">
  295. <summary>
  296. Creates a new <see cref="T:Google.Protobuf.CodedInputStream"/> reading data from the given stream, which will be disposed
  297. when the returned object is disposed.
  298. </summary>
  299. <param name="input">The stream to read from.</param>
  300. </member>
  301. <member name="M:Google.Protobuf.CodedInputStream.#ctor(System.IO.Stream,System.Boolean)">
  302. <summary>
  303. Creates a new <see cref="T:Google.Protobuf.CodedInputStream"/> reading data from the given stream.
  304. </summary>
  305. <param name="input">The stream to read from.</param>
  306. <param name="leaveOpen"><c>true</c> to leave <paramref name="input"/> open when the returned
  307. <c cref="T:Google.Protobuf.CodedInputStream"/> is disposed; <c>false</c> to dispose of the given stream when the
  308. returned object is disposed.</param>
  309. </member>
  310. <member name="M:Google.Protobuf.CodedInputStream.#ctor(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Boolean)">
  311. <summary>
  312. Creates a new CodedInputStream reading data from the given
  313. stream and buffer, using the default limits.
  314. </summary>
  315. </member>
  316. <member name="M:Google.Protobuf.CodedInputStream.#ctor(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
  317. <summary>
  318. Creates a new CodedInputStream reading data from the given
  319. stream and buffer, using the specified limits.
  320. </summary>
  321. <remarks>
  322. This chains to the version with the default limits instead of vice versa to avoid
  323. having to check that the default values are valid every time.
  324. </remarks>
  325. </member>
  326. <member name="M:Google.Protobuf.CodedInputStream.CreateWithLimits(System.IO.Stream,System.Int32,System.Int32)">
  327. <summary>
  328. Creates a <see cref="T:Google.Protobuf.CodedInputStream"/> with the specified size and recursion limits, reading
  329. from an input stream.
  330. </summary>
  331. <remarks>
  332. This method exists separately from the constructor to reduce the number of constructor overloads.
  333. It is likely to be used considerably less frequently than the constructors, as the default limits
  334. are suitable for most use cases.
  335. </remarks>
  336. <param name="input">The input stream to read from</param>
  337. <param name="sizeLimit">The total limit of data to read from the stream.</param>
  338. <param name="recursionLimit">The maximum recursion depth to allow while reading.</param>
  339. <returns>A <c>CodedInputStream</c> reading from <paramref name="input"/> with the specified size
  340. and recursion limits.</returns>
  341. </member>
  342. <member name="P:Google.Protobuf.CodedInputStream.Position">
  343. <summary>
  344. Returns the current position in the input stream, or the position in the input buffer
  345. </summary>
  346. </member>
  347. <member name="P:Google.Protobuf.CodedInputStream.LastTag">
  348. <summary>
  349. Returns the last tag read, or 0 if no tags have been read or we've read beyond
  350. the end of the stream.
  351. </summary>
  352. </member>
  353. <member name="P:Google.Protobuf.CodedInputStream.SizeLimit">
  354. <summary>
  355. Returns the size limit for this stream.
  356. </summary>
  357. <remarks>
  358. This limit is applied when reading from the underlying stream, as a sanity check. It is
  359. not applied when reading from a byte array data source without an underlying stream.
  360. The default value is Int32.MaxValue.
  361. </remarks>
  362. <value>
  363. The size limit.
  364. </value>
  365. </member>
  366. <member name="P:Google.Protobuf.CodedInputStream.RecursionLimit">
  367. <summary>
  368. Returns the recursion limit for this stream. This limit is applied whilst reading messages,
  369. to avoid maliciously-recursive data.
  370. </summary>
  371. <remarks>
  372. The default limit is 100.
  373. </remarks>
  374. <value>
  375. The recursion limit for this stream.
  376. </value>
  377. </member>
  378. <member name="P:Google.Protobuf.CodedInputStream.DiscardUnknownFields">
  379. <summary>
  380. Internal-only property; when set to true, unknown fields will be discarded while parsing.
  381. </summary>
  382. </member>
  383. <member name="P:Google.Protobuf.CodedInputStream.ExtensionRegistry">
  384. <summary>
  385. Internal-only property; provides extension identifiers to compatible messages while parsing.
  386. </summary>
  387. </member>
  388. <member name="M:Google.Protobuf.CodedInputStream.Dispose">
  389. <summary>
  390. Disposes of this instance, potentially closing any underlying stream.
  391. </summary>
  392. <remarks>
  393. As there is no flushing to perform here, disposing of a <see cref="T:Google.Protobuf.CodedInputStream"/> which
  394. was constructed with the <c>leaveOpen</c> option parameter set to <c>true</c> (or one which
  395. was constructed to read from a byte array) has no effect.
  396. </remarks>
  397. </member>
  398. <member name="M:Google.Protobuf.CodedInputStream.CheckReadEndOfStreamTag">
  399. <summary>
  400. Verifies that the last call to ReadTag() returned tag 0 - in other words,
  401. we've reached the end of the stream when we expected to.
  402. </summary>
  403. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">The
  404. tag read was not the one specified</exception>
  405. </member>
  406. <member name="M:Google.Protobuf.CodedInputStream.PeekTag">
  407. <summary>
  408. Peeks at the next field tag. This is like calling <see cref="M:Google.Protobuf.CodedInputStream.ReadTag"/>, but the
  409. tag is not consumed. (So a subsequent call to <see cref="M:Google.Protobuf.CodedInputStream.ReadTag"/> will return the
  410. same value.)
  411. </summary>
  412. </member>
  413. <member name="M:Google.Protobuf.CodedInputStream.ReadTag">
  414. <summary>
  415. Reads a field tag, returning the tag of 0 for "end of stream".
  416. </summary>
  417. <remarks>
  418. If this method returns 0, it doesn't necessarily mean the end of all
  419. the data in this CodedInputStream; it may be the end of the logical stream
  420. for an embedded message, for example.
  421. </remarks>
  422. <returns>The next field tag, or 0 for end of stream. (0 is never a valid tag.)</returns>
  423. </member>
  424. <member name="M:Google.Protobuf.CodedInputStream.SkipLastField">
  425. <summary>
  426. Skips the data for the field with the tag we've just read.
  427. This should be called directly after <see cref="M:Google.Protobuf.CodedInputStream.ReadTag"/>, when
  428. the caller wishes to skip an unknown field.
  429. </summary>
  430. <remarks>
  431. This method throws <see cref="T:Google.Protobuf.InvalidProtocolBufferException"/> if the last-read tag was an end-group tag.
  432. If a caller wishes to skip a group, they should skip the whole group, by calling this method after reading the
  433. start-group tag. This behavior allows callers to call this method on any field they don't understand, correctly
  434. resulting in an error if an end-group tag has not been paired with an earlier start-group tag.
  435. </remarks>
  436. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">The last tag was an end-group tag</exception>
  437. <exception cref="T:System.InvalidOperationException">The last read operation read to the end of the logical stream</exception>
  438. </member>
  439. <member name="M:Google.Protobuf.CodedInputStream.SkipGroup(System.UInt32)">
  440. <summary>
  441. Skip a group.
  442. </summary>
  443. </member>
  444. <member name="M:Google.Protobuf.CodedInputStream.ReadDouble">
  445. <summary>
  446. Reads a double field from the stream.
  447. </summary>
  448. </member>
  449. <member name="M:Google.Protobuf.CodedInputStream.ReadFloat">
  450. <summary>
  451. Reads a float field from the stream.
  452. </summary>
  453. </member>
  454. <member name="M:Google.Protobuf.CodedInputStream.ReadUInt64">
  455. <summary>
  456. Reads a uint64 field from the stream.
  457. </summary>
  458. </member>
  459. <member name="M:Google.Protobuf.CodedInputStream.ReadInt64">
  460. <summary>
  461. Reads an int64 field from the stream.
  462. </summary>
  463. </member>
  464. <member name="M:Google.Protobuf.CodedInputStream.ReadInt32">
  465. <summary>
  466. Reads an int32 field from the stream.
  467. </summary>
  468. </member>
  469. <member name="M:Google.Protobuf.CodedInputStream.ReadFixed64">
  470. <summary>
  471. Reads a fixed64 field from the stream.
  472. </summary>
  473. </member>
  474. <member name="M:Google.Protobuf.CodedInputStream.ReadFixed32">
  475. <summary>
  476. Reads a fixed32 field from the stream.
  477. </summary>
  478. </member>
  479. <member name="M:Google.Protobuf.CodedInputStream.ReadBool">
  480. <summary>
  481. Reads a bool field from the stream.
  482. </summary>
  483. </member>
  484. <member name="M:Google.Protobuf.CodedInputStream.ReadString">
  485. <summary>
  486. Reads a string field from the stream.
  487. </summary>
  488. </member>
  489. <member name="M:Google.Protobuf.CodedInputStream.ReadMessage(Google.Protobuf.IMessage)">
  490. <summary>
  491. Reads an embedded message field value from the stream.
  492. </summary>
  493. </member>
  494. <member name="M:Google.Protobuf.CodedInputStream.ReadGroup(Google.Protobuf.IMessage)">
  495. <summary>
  496. Reads an embedded group field from the stream.
  497. </summary>
  498. </member>
  499. <member name="M:Google.Protobuf.CodedInputStream.ReadBytes">
  500. <summary>
  501. Reads a bytes field value from the stream.
  502. </summary>
  503. </member>
  504. <member name="M:Google.Protobuf.CodedInputStream.ReadUInt32">
  505. <summary>
  506. Reads a uint32 field value from the stream.
  507. </summary>
  508. </member>
  509. <member name="M:Google.Protobuf.CodedInputStream.ReadEnum">
  510. <summary>
  511. Reads an enum field value from the stream.
  512. </summary>
  513. </member>
  514. <member name="M:Google.Protobuf.CodedInputStream.ReadSFixed32">
  515. <summary>
  516. Reads an sfixed32 field value from the stream.
  517. </summary>
  518. </member>
  519. <member name="M:Google.Protobuf.CodedInputStream.ReadSFixed64">
  520. <summary>
  521. Reads an sfixed64 field value from the stream.
  522. </summary>
  523. </member>
  524. <member name="M:Google.Protobuf.CodedInputStream.ReadSInt32">
  525. <summary>
  526. Reads an sint32 field value from the stream.
  527. </summary>
  528. </member>
  529. <member name="M:Google.Protobuf.CodedInputStream.ReadSInt64">
  530. <summary>
  531. Reads an sint64 field value from the stream.
  532. </summary>
  533. </member>
  534. <member name="M:Google.Protobuf.CodedInputStream.ReadLength">
  535. <summary>
  536. Reads a length for length-delimited data.
  537. </summary>
  538. <remarks>
  539. This is internally just reading a varint, but this method exists
  540. to make the calling code clearer.
  541. </remarks>
  542. </member>
  543. <member name="M:Google.Protobuf.CodedInputStream.MaybeConsumeTag(System.UInt32)">
  544. <summary>
  545. Peeks at the next tag in the stream. If it matches <paramref name="tag"/>,
  546. the tag is consumed and the method returns <c>true</c>; otherwise, the
  547. stream is left in the original position and the method returns <c>false</c>.
  548. </summary>
  549. </member>
  550. <member name="M:Google.Protobuf.CodedInputStream.ReadRawVarint32">
  551. <summary>
  552. Reads a raw Varint from the stream. If larger than 32 bits, discard the upper bits.
  553. This method is optimised for the case where we've got lots of data in the buffer.
  554. That means we can check the size just once, then just read directly from the buffer
  555. without constant rechecking of the buffer length.
  556. </summary>
  557. </member>
  558. <member name="M:Google.Protobuf.CodedInputStream.ReadRawVarint32(System.IO.Stream)">
  559. <summary>
  560. Reads a varint from the input one byte at a time, so that it does not
  561. read any bytes after the end of the varint. If you simply wrapped the
  562. stream in a CodedInputStream and used ReadRawVarint32(Stream)
  563. then you would probably end up reading past the end of the varint since
  564. CodedInputStream buffers its input.
  565. </summary>
  566. <param name="input"></param>
  567. <returns></returns>
  568. </member>
  569. <member name="M:Google.Protobuf.CodedInputStream.ReadRawVarint64">
  570. <summary>
  571. Reads a raw varint from the stream.
  572. </summary>
  573. </member>
  574. <member name="M:Google.Protobuf.CodedInputStream.ReadRawLittleEndian32">
  575. <summary>
  576. Reads a 32-bit little-endian integer from the stream.
  577. </summary>
  578. </member>
  579. <member name="M:Google.Protobuf.CodedInputStream.ReadRawLittleEndian64">
  580. <summary>
  581. Reads a 64-bit little-endian integer from the stream.
  582. </summary>
  583. </member>
  584. <member name="M:Google.Protobuf.CodedInputStream.PushLimit(System.Int32)">
  585. <summary>
  586. Sets currentLimit to (current position) + byteLimit. This is called
  587. when descending into a length-delimited embedded message. The previous
  588. limit is returned.
  589. </summary>
  590. <returns>The old limit.</returns>
  591. </member>
  592. <member name="M:Google.Protobuf.CodedInputStream.PopLimit(System.Int32)">
  593. <summary>
  594. Discards the current limit, returning the previous limit.
  595. </summary>
  596. </member>
  597. <member name="P:Google.Protobuf.CodedInputStream.ReachedLimit">
  598. <summary>
  599. Returns whether or not all the data before the limit has been read.
  600. </summary>
  601. <returns></returns>
  602. </member>
  603. <member name="P:Google.Protobuf.CodedInputStream.IsAtEnd">
  604. <summary>
  605. Returns true if the stream has reached the end of the input. This is the
  606. case if either the end of the underlying input source has been reached or
  607. the stream has reached a limit created using PushLimit.
  608. </summary>
  609. </member>
  610. <member name="M:Google.Protobuf.CodedInputStream.RefillBuffer(System.Boolean)">
  611. <summary>
  612. Called when buffer is empty to read more bytes from the
  613. input. If <paramref name="mustSucceed"/> is true, RefillBuffer() guarantees that
  614. either there will be at least one byte in the buffer when it returns
  615. or it will throw an exception. If <paramref name="mustSucceed"/> is false,
  616. RefillBuffer() returns false if no more bytes were available.
  617. </summary>
  618. <param name="mustSucceed"></param>
  619. <returns></returns>
  620. </member>
  621. <member name="M:Google.Protobuf.CodedInputStream.ReadRawBytes(System.Int32)">
  622. <summary>
  623. Reads a fixed size of bytes from the input.
  624. </summary>
  625. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">
  626. the end of the stream or the current limit was reached
  627. </exception>
  628. </member>
  629. <member name="M:Google.Protobuf.CodedInputStream.ReadRawMessage(Google.Protobuf.IMessage)">
  630. <summary>
  631. Reads a top-level message or a nested message after the limits for this message have been pushed.
  632. (parser will proceed until the end of the current limit)
  633. NOTE: this method needs to be public because it's invoked by the generated code - e.g. msg.MergeFrom(CodedInputStream input) method
  634. </summary>
  635. </member>
  636. <member name="T:Google.Protobuf.CodedOutputStream">
  637. <summary>
  638. Encodes and writes protocol message fields.
  639. </summary>
  640. <remarks>
  641. <para>
  642. This class is generally used by generated code to write appropriate
  643. primitives to the stream. It effectively encapsulates the lowest
  644. levels of protocol buffer format. Unlike some other implementations,
  645. this does not include combined "write tag and value" methods. Generated
  646. code knows the exact byte representations of the tags they're going to write,
  647. so there's no need to re-encode them each time. Manually-written code calling
  648. this class should just call one of the <c>WriteTag</c> overloads before each value.
  649. </para>
  650. <para>
  651. Repeated fields and map fields are not handled by this class; use <c>RepeatedField&lt;T&gt;</c>
  652. and <c>MapField&lt;TKey, TValue&gt;</c> to serialize such fields.
  653. </para>
  654. </remarks>
  655. </member>
  656. <member name="M:Google.Protobuf.CodedOutputStream.ComputeDoubleSize(System.Double)">
  657. <summary>
  658. Computes the number of bytes that would be needed to encode a
  659. double field, including the tag.
  660. </summary>
  661. </member>
  662. <member name="M:Google.Protobuf.CodedOutputStream.ComputeFloatSize(System.Single)">
  663. <summary>
  664. Computes the number of bytes that would be needed to encode a
  665. float field, including the tag.
  666. </summary>
  667. </member>
  668. <member name="M:Google.Protobuf.CodedOutputStream.ComputeUInt64Size(System.UInt64)">
  669. <summary>
  670. Computes the number of bytes that would be needed to encode a
  671. uint64 field, including the tag.
  672. </summary>
  673. </member>
  674. <member name="M:Google.Protobuf.CodedOutputStream.ComputeInt64Size(System.Int64)">
  675. <summary>
  676. Computes the number of bytes that would be needed to encode an
  677. int64 field, including the tag.
  678. </summary>
  679. </member>
  680. <member name="M:Google.Protobuf.CodedOutputStream.ComputeInt32Size(System.Int32)">
  681. <summary>
  682. Computes the number of bytes that would be needed to encode an
  683. int32 field, including the tag.
  684. </summary>
  685. </member>
  686. <member name="M:Google.Protobuf.CodedOutputStream.ComputeFixed64Size(System.UInt64)">
  687. <summary>
  688. Computes the number of bytes that would be needed to encode a
  689. fixed64 field, including the tag.
  690. </summary>
  691. </member>
  692. <member name="M:Google.Protobuf.CodedOutputStream.ComputeFixed32Size(System.UInt32)">
  693. <summary>
  694. Computes the number of bytes that would be needed to encode a
  695. fixed32 field, including the tag.
  696. </summary>
  697. </member>
  698. <member name="M:Google.Protobuf.CodedOutputStream.ComputeBoolSize(System.Boolean)">
  699. <summary>
  700. Computes the number of bytes that would be needed to encode a
  701. bool field, including the tag.
  702. </summary>
  703. </member>
  704. <member name="M:Google.Protobuf.CodedOutputStream.ComputeStringSize(System.String)">
  705. <summary>
  706. Computes the number of bytes that would be needed to encode a
  707. string field, including the tag.
  708. </summary>
  709. </member>
  710. <member name="M:Google.Protobuf.CodedOutputStream.ComputeGroupSize(Google.Protobuf.IMessage)">
  711. <summary>
  712. Computes the number of bytes that would be needed to encode a
  713. group field, including the tag.
  714. </summary>
  715. </member>
  716. <member name="M:Google.Protobuf.CodedOutputStream.ComputeMessageSize(Google.Protobuf.IMessage)">
  717. <summary>
  718. Computes the number of bytes that would be needed to encode an
  719. embedded message field, including the tag.
  720. </summary>
  721. </member>
  722. <member name="M:Google.Protobuf.CodedOutputStream.ComputeBytesSize(Google.Protobuf.ByteString)">
  723. <summary>
  724. Computes the number of bytes that would be needed to encode a
  725. bytes field, including the tag.
  726. </summary>
  727. </member>
  728. <member name="M:Google.Protobuf.CodedOutputStream.ComputeUInt32Size(System.UInt32)">
  729. <summary>
  730. Computes the number of bytes that would be needed to encode a
  731. uint32 field, including the tag.
  732. </summary>
  733. </member>
  734. <member name="M:Google.Protobuf.CodedOutputStream.ComputeEnumSize(System.Int32)">
  735. <summary>
  736. Computes the number of bytes that would be needed to encode a
  737. enum field, including the tag. The caller is responsible for
  738. converting the enum value to its numeric value.
  739. </summary>
  740. </member>
  741. <member name="M:Google.Protobuf.CodedOutputStream.ComputeSFixed32Size(System.Int32)">
  742. <summary>
  743. Computes the number of bytes that would be needed to encode an
  744. sfixed32 field, including the tag.
  745. </summary>
  746. </member>
  747. <member name="M:Google.Protobuf.CodedOutputStream.ComputeSFixed64Size(System.Int64)">
  748. <summary>
  749. Computes the number of bytes that would be needed to encode an
  750. sfixed64 field, including the tag.
  751. </summary>
  752. </member>
  753. <member name="M:Google.Protobuf.CodedOutputStream.ComputeSInt32Size(System.Int32)">
  754. <summary>
  755. Computes the number of bytes that would be needed to encode an
  756. sint32 field, including the tag.
  757. </summary>
  758. </member>
  759. <member name="M:Google.Protobuf.CodedOutputStream.ComputeSInt64Size(System.Int64)">
  760. <summary>
  761. Computes the number of bytes that would be needed to encode an
  762. sint64 field, including the tag.
  763. </summary>
  764. </member>
  765. <member name="M:Google.Protobuf.CodedOutputStream.ComputeLengthSize(System.Int32)">
  766. <summary>
  767. Computes the number of bytes that would be needed to encode a length,
  768. as written by <see cref="M:Google.Protobuf.CodedOutputStream.WriteLength(System.Int32)"/>.
  769. </summary>
  770. </member>
  771. <member name="M:Google.Protobuf.CodedOutputStream.ComputeRawVarint32Size(System.UInt32)">
  772. <summary>
  773. Computes the number of bytes that would be needed to encode a varint.
  774. </summary>
  775. </member>
  776. <member name="M:Google.Protobuf.CodedOutputStream.ComputeRawVarint64Size(System.UInt64)">
  777. <summary>
  778. Computes the number of bytes that would be needed to encode a varint.
  779. </summary>
  780. </member>
  781. <member name="M:Google.Protobuf.CodedOutputStream.ComputeTagSize(System.Int32)">
  782. <summary>
  783. Computes the number of bytes that would be needed to encode a tag.
  784. </summary>
  785. </member>
  786. <member name="F:Google.Protobuf.CodedOutputStream.DefaultBufferSize">
  787. <summary>
  788. The buffer size used by CreateInstance(Stream).
  789. </summary>
  790. </member>
  791. <member name="M:Google.Protobuf.CodedOutputStream.#ctor(System.Byte[])">
  792. <summary>
  793. Creates a new CodedOutputStream that writes directly to the given
  794. byte array. If more bytes are written than fit in the array,
  795. OutOfSpaceException will be thrown.
  796. </summary>
  797. </member>
  798. <member name="M:Google.Protobuf.CodedOutputStream.#ctor(System.Byte[],System.Int32,System.Int32)">
  799. <summary>
  800. Creates a new CodedOutputStream that writes directly to the given
  801. byte array slice. If more bytes are written than fit in the array,
  802. OutOfSpaceException will be thrown.
  803. </summary>
  804. </member>
  805. <member name="M:Google.Protobuf.CodedOutputStream.#ctor(System.IO.Stream)">
  806. <summary>
  807. Creates a new <see cref="T:Google.Protobuf.CodedOutputStream" /> which write to the given stream, and disposes of that
  808. stream when the returned <c>CodedOutputStream</c> is disposed.
  809. </summary>
  810. <param name="output">The stream to write to. It will be disposed when the returned <c>CodedOutputStream is disposed.</c></param>
  811. </member>
  812. <member name="M:Google.Protobuf.CodedOutputStream.#ctor(System.IO.Stream,System.Int32)">
  813. <summary>
  814. Creates a new CodedOutputStream which write to the given stream and uses
  815. the specified buffer size.
  816. </summary>
  817. <param name="output">The stream to write to. It will be disposed when the returned <c>CodedOutputStream is disposed.</c></param>
  818. <param name="bufferSize">The size of buffer to use internally.</param>
  819. </member>
  820. <member name="M:Google.Protobuf.CodedOutputStream.#ctor(System.IO.Stream,System.Boolean)">
  821. <summary>
  822. Creates a new CodedOutputStream which write to the given stream.
  823. </summary>
  824. <param name="output">The stream to write to.</param>
  825. <param name="leaveOpen">If <c>true</c>, <paramref name="output"/> is left open when the returned <c>CodedOutputStream</c> is disposed;
  826. if <c>false</c>, the provided stream is disposed as well.</param>
  827. </member>
  828. <member name="M:Google.Protobuf.CodedOutputStream.#ctor(System.IO.Stream,System.Int32,System.Boolean)">
  829. <summary>
  830. Creates a new CodedOutputStream which write to the given stream and uses
  831. the specified buffer size.
  832. </summary>
  833. <param name="output">The stream to write to.</param>
  834. <param name="bufferSize">The size of buffer to use internally.</param>
  835. <param name="leaveOpen">If <c>true</c>, <paramref name="output"/> is left open when the returned <c>CodedOutputStream</c> is disposed;
  836. if <c>false</c>, the provided stream is disposed as well.</param>
  837. </member>
  838. <member name="P:Google.Protobuf.CodedOutputStream.Position">
  839. <summary>
  840. Returns the current position in the stream, or the position in the output buffer
  841. </summary>
  842. </member>
  843. <member name="M:Google.Protobuf.CodedOutputStream.WriteDouble(System.Double)">
  844. <summary>
  845. Writes a double field value, without a tag, to the stream.
  846. </summary>
  847. <param name="value">The value to write</param>
  848. </member>
  849. <member name="M:Google.Protobuf.CodedOutputStream.WriteFloat(System.Single)">
  850. <summary>
  851. Writes a float field value, without a tag, to the stream.
  852. </summary>
  853. <param name="value">The value to write</param>
  854. </member>
  855. <member name="M:Google.Protobuf.CodedOutputStream.WriteUInt64(System.UInt64)">
  856. <summary>
  857. Writes a uint64 field value, without a tag, to the stream.
  858. </summary>
  859. <param name="value">The value to write</param>
  860. </member>
  861. <member name="M:Google.Protobuf.CodedOutputStream.WriteInt64(System.Int64)">
  862. <summary>
  863. Writes an int64 field value, without a tag, to the stream.
  864. </summary>
  865. <param name="value">The value to write</param>
  866. </member>
  867. <member name="M:Google.Protobuf.CodedOutputStream.WriteInt32(System.Int32)">
  868. <summary>
  869. Writes an int32 field value, without a tag, to the stream.
  870. </summary>
  871. <param name="value">The value to write</param>
  872. </member>
  873. <member name="M:Google.Protobuf.CodedOutputStream.WriteFixed64(System.UInt64)">
  874. <summary>
  875. Writes a fixed64 field value, without a tag, to the stream.
  876. </summary>
  877. <param name="value">The value to write</param>
  878. </member>
  879. <member name="M:Google.Protobuf.CodedOutputStream.WriteFixed32(System.UInt32)">
  880. <summary>
  881. Writes a fixed32 field value, without a tag, to the stream.
  882. </summary>
  883. <param name="value">The value to write</param>
  884. </member>
  885. <member name="M:Google.Protobuf.CodedOutputStream.WriteBool(System.Boolean)">
  886. <summary>
  887. Writes a bool field value, without a tag, to the stream.
  888. </summary>
  889. <param name="value">The value to write</param>
  890. </member>
  891. <member name="M:Google.Protobuf.CodedOutputStream.WriteString(System.String)">
  892. <summary>
  893. Writes a string field value, without a tag, to the stream.
  894. The data is length-prefixed.
  895. </summary>
  896. <param name="value">The value to write</param>
  897. </member>
  898. <member name="M:Google.Protobuf.CodedOutputStream.WriteMessage(Google.Protobuf.IMessage)">
  899. <summary>
  900. Writes a message, without a tag, to the stream.
  901. The data is length-prefixed.
  902. </summary>
  903. <param name="value">The value to write</param>
  904. </member>
  905. <member name="M:Google.Protobuf.CodedOutputStream.WriteRawMessage(Google.Protobuf.IMessage)">
  906. <summary>
  907. Writes a message, without a tag, to the stream.
  908. Only the message data is written, without a length-delimiter.
  909. </summary>
  910. <param name="value">The value to write</param>
  911. </member>
  912. <member name="M:Google.Protobuf.CodedOutputStream.WriteGroup(Google.Protobuf.IMessage)">
  913. <summary>
  914. Writes a group, without a tag, to the stream.
  915. </summary>
  916. <param name="value">The value to write</param>
  917. </member>
  918. <member name="M:Google.Protobuf.CodedOutputStream.WriteBytes(Google.Protobuf.ByteString)">
  919. <summary>
  920. Write a byte string, without a tag, to the stream.
  921. The data is length-prefixed.
  922. </summary>
  923. <param name="value">The value to write</param>
  924. </member>
  925. <member name="M:Google.Protobuf.CodedOutputStream.WriteUInt32(System.UInt32)">
  926. <summary>
  927. Writes a uint32 value, without a tag, to the stream.
  928. </summary>
  929. <param name="value">The value to write</param>
  930. </member>
  931. <member name="M:Google.Protobuf.CodedOutputStream.WriteEnum(System.Int32)">
  932. <summary>
  933. Writes an enum value, without a tag, to the stream.
  934. </summary>
  935. <param name="value">The value to write</param>
  936. </member>
  937. <member name="M:Google.Protobuf.CodedOutputStream.WriteSFixed32(System.Int32)">
  938. <summary>
  939. Writes an sfixed32 value, without a tag, to the stream.
  940. </summary>
  941. <param name="value">The value to write.</param>
  942. </member>
  943. <member name="M:Google.Protobuf.CodedOutputStream.WriteSFixed64(System.Int64)">
  944. <summary>
  945. Writes an sfixed64 value, without a tag, to the stream.
  946. </summary>
  947. <param name="value">The value to write</param>
  948. </member>
  949. <member name="M:Google.Protobuf.CodedOutputStream.WriteSInt32(System.Int32)">
  950. <summary>
  951. Writes an sint32 value, without a tag, to the stream.
  952. </summary>
  953. <param name="value">The value to write</param>
  954. </member>
  955. <member name="M:Google.Protobuf.CodedOutputStream.WriteSInt64(System.Int64)">
  956. <summary>
  957. Writes an sint64 value, without a tag, to the stream.
  958. </summary>
  959. <param name="value">The value to write</param>
  960. </member>
  961. <member name="M:Google.Protobuf.CodedOutputStream.WriteLength(System.Int32)">
  962. <summary>
  963. Writes a length (in bytes) for length-delimited data.
  964. </summary>
  965. <remarks>
  966. This method simply writes a rawint, but exists for clarity in calling code.
  967. </remarks>
  968. <param name="length">Length value, in bytes.</param>
  969. </member>
  970. <member name="M:Google.Protobuf.CodedOutputStream.WriteTag(System.Int32,Google.Protobuf.WireFormat.WireType)">
  971. <summary>
  972. Encodes and writes a tag.
  973. </summary>
  974. <param name="fieldNumber">The number of the field to write the tag for</param>
  975. <param name="type">The wire format type of the tag to write</param>
  976. </member>
  977. <member name="M:Google.Protobuf.CodedOutputStream.WriteTag(System.UInt32)">
  978. <summary>
  979. Writes an already-encoded tag.
  980. </summary>
  981. <param name="tag">The encoded tag</param>
  982. </member>
  983. <member name="M:Google.Protobuf.CodedOutputStream.WriteRawTag(System.Byte)">
  984. <summary>
  985. Writes the given single-byte tag directly to the stream.
  986. </summary>
  987. <param name="b1">The encoded tag</param>
  988. </member>
  989. <member name="M:Google.Protobuf.CodedOutputStream.WriteRawTag(System.Byte,System.Byte)">
  990. <summary>
  991. Writes the given two-byte tag directly to the stream.
  992. </summary>
  993. <param name="b1">The first byte of the encoded tag</param>
  994. <param name="b2">The second byte of the encoded tag</param>
  995. </member>
  996. <member name="M:Google.Protobuf.CodedOutputStream.WriteRawTag(System.Byte,System.Byte,System.Byte)">
  997. <summary>
  998. Writes the given three-byte tag directly to the stream.
  999. </summary>
  1000. <param name="b1">The first byte of the encoded tag</param>
  1001. <param name="b2">The second byte of the encoded tag</param>
  1002. <param name="b3">The third byte of the encoded tag</param>
  1003. </member>
  1004. <member name="M:Google.Protobuf.CodedOutputStream.WriteRawTag(System.Byte,System.Byte,System.Byte,System.Byte)">
  1005. <summary>
  1006. Writes the given four-byte tag directly to the stream.
  1007. </summary>
  1008. <param name="b1">The first byte of the encoded tag</param>
  1009. <param name="b2">The second byte of the encoded tag</param>
  1010. <param name="b3">The third byte of the encoded tag</param>
  1011. <param name="b4">The fourth byte of the encoded tag</param>
  1012. </member>
  1013. <member name="M:Google.Protobuf.CodedOutputStream.WriteRawTag(System.Byte,System.Byte,System.Byte,System.Byte,System.Byte)">
  1014. <summary>
  1015. Writes the given five-byte tag directly to the stream.
  1016. </summary>
  1017. <param name="b1">The first byte of the encoded tag</param>
  1018. <param name="b2">The second byte of the encoded tag</param>
  1019. <param name="b3">The third byte of the encoded tag</param>
  1020. <param name="b4">The fourth byte of the encoded tag</param>
  1021. <param name="b5">The fifth byte of the encoded tag</param>
  1022. </member>
  1023. <member name="M:Google.Protobuf.CodedOutputStream.WriteRawVarint32(System.UInt32)">
  1024. <summary>
  1025. Writes a 32 bit value as a varint. The fast route is taken when
  1026. there's enough buffer space left to whizz through without checking
  1027. for each byte; otherwise, we resort to calling WriteRawByte each time.
  1028. </summary>
  1029. </member>
  1030. <member name="M:Google.Protobuf.CodedOutputStream.WriteRawBytes(System.Byte[])">
  1031. <summary>
  1032. Writes out an array of bytes.
  1033. </summary>
  1034. </member>
  1035. <member name="M:Google.Protobuf.CodedOutputStream.WriteRawBytes(System.Byte[],System.Int32,System.Int32)">
  1036. <summary>
  1037. Writes out part of an array of bytes.
  1038. </summary>
  1039. </member>
  1040. <member name="T:Google.Protobuf.CodedOutputStream.OutOfSpaceException">
  1041. <summary>
  1042. Indicates that a CodedOutputStream wrapping a flat byte array
  1043. ran out of space.
  1044. </summary>
  1045. </member>
  1046. <member name="M:Google.Protobuf.CodedOutputStream.Dispose">
  1047. <summary>
  1048. Flushes any buffered data and optionally closes the underlying stream, if any.
  1049. </summary>
  1050. <remarks>
  1051. <para>
  1052. By default, any underlying stream is closed by this method. To configure this behaviour,
  1053. use a constructor overload with a <c>leaveOpen</c> parameter. If this instance does not
  1054. have an underlying stream, this method does nothing.
  1055. </para>
  1056. <para>
  1057. For the sake of efficiency, calling this method does not prevent future write calls - but
  1058. if a later write ends up writing to a stream which has been disposed, that is likely to
  1059. fail. It is recommend that you not call any other methods after this.
  1060. </para>
  1061. </remarks>
  1062. </member>
  1063. <member name="M:Google.Protobuf.CodedOutputStream.Flush">
  1064. <summary>
  1065. Flushes any buffered data to the underlying stream (if there is one).
  1066. </summary>
  1067. </member>
  1068. <member name="M:Google.Protobuf.CodedOutputStream.CheckNoSpaceLeft">
  1069. <summary>
  1070. Verifies that SpaceLeft returns zero. It's common to create a byte array
  1071. that is exactly big enough to hold a message, then write to it with
  1072. a CodedOutputStream. Calling CheckNoSpaceLeft after writing verifies that
  1073. the message was actually as big as expected, which can help finding bugs.
  1074. </summary>
  1075. </member>
  1076. <member name="P:Google.Protobuf.CodedOutputStream.SpaceLeft">
  1077. <summary>
  1078. If writing to a flat array, returns the space left in the array. Otherwise,
  1079. throws an InvalidOperationException.
  1080. </summary>
  1081. </member>
  1082. <member name="T:Google.Protobuf.Collections.Lists">
  1083. <summary>
  1084. Utility to compare if two Lists are the same, and the hash code
  1085. of a List.
  1086. </summary>
  1087. </member>
  1088. <member name="M:Google.Protobuf.Collections.Lists.Equals``1(System.Collections.Generic.List{``0},System.Collections.Generic.List{``0})">
  1089. <summary>
  1090. Checks if two lists are equal.
  1091. </summary>
  1092. </member>
  1093. <member name="M:Google.Protobuf.Collections.Lists.GetHashCode``1(System.Collections.Generic.List{``0})">
  1094. <summary>
  1095. Gets the list's hash code.
  1096. </summary>
  1097. </member>
  1098. <member name="T:Google.Protobuf.Collections.MapField`2">
  1099. <summary>
  1100. Representation of a map field in a Protocol Buffer message.
  1101. </summary>
  1102. <typeparam name="TKey">Key type in the map. Must be a type supported by Protocol Buffer map keys.</typeparam>
  1103. <typeparam name="TValue">Value type in the map. Must be a type supported by Protocol Buffers.</typeparam>
  1104. <remarks>
  1105. <para>
  1106. For string keys, the equality comparison is provided by <see cref="P:System.StringComparer.Ordinal" />.
  1107. </para>
  1108. <para>
  1109. Null values are not permitted in the map, either for wrapper types or regular messages.
  1110. If a map is deserialized from a data stream and the value is missing from an entry, a default value
  1111. is created instead. For primitive types, that is the regular default value (0, the empty string and so
  1112. on); for message types, an empty instance of the message is created, as if the map entry contained a 0-length
  1113. encoded value for the field.
  1114. </para>
  1115. <para>
  1116. This implementation does not generally prohibit the use of key/value types which are not
  1117. supported by Protocol Buffers (e.g. using a key type of <code>byte</code>) but nor does it guarantee
  1118. that all operations will work in such cases.
  1119. </para>
  1120. <para>
  1121. The order in which entries are returned when iterating over this object is undefined, and may change
  1122. in future versions.
  1123. </para>
  1124. </remarks>
  1125. </member>
  1126. <member name="M:Google.Protobuf.Collections.MapField`2.Clone">
  1127. <summary>
  1128. Creates a deep clone of this object.
  1129. </summary>
  1130. <returns>
  1131. A deep clone of this object.
  1132. </returns>
  1133. </member>
  1134. <member name="M:Google.Protobuf.Collections.MapField`2.Add(`0,`1)">
  1135. <summary>
  1136. Adds the specified key/value pair to the map.
  1137. </summary>
  1138. <remarks>
  1139. This operation fails if the key already exists in the map. To replace an existing entry, use the indexer.
  1140. </remarks>
  1141. <param name="key">The key to add</param>
  1142. <param name="value">The value to add.</param>
  1143. <exception cref="T:System.ArgumentException">The given key already exists in map.</exception>
  1144. </member>
  1145. <member name="M:Google.Protobuf.Collections.MapField`2.ContainsKey(`0)">
  1146. <summary>
  1147. Determines whether the specified key is present in the map.
  1148. </summary>
  1149. <param name="key">The key to check.</param>
  1150. <returns><c>true</c> if the map contains the given key; <c>false</c> otherwise.</returns>
  1151. </member>
  1152. <member name="M:Google.Protobuf.Collections.MapField`2.Remove(`0)">
  1153. <summary>
  1154. Removes the entry identified by the given key from the map.
  1155. </summary>
  1156. <param name="key">The key indicating the entry to remove from the map.</param>
  1157. <returns><c>true</c> if the map contained the given key before the entry was removed; <c>false</c> otherwise.</returns>
  1158. </member>
  1159. <member name="M:Google.Protobuf.Collections.MapField`2.TryGetValue(`0,`1@)">
  1160. <summary>
  1161. Gets the value associated with the specified key.
  1162. </summary>
  1163. <param name="key">The key whose value to get.</param>
  1164. <param name="value">When this method returns, the value associated with the specified key, if the key is found;
  1165. otherwise, the default value for the type of the <paramref name="value"/> parameter.
  1166. This parameter is passed uninitialized.</param>
  1167. <returns><c>true</c> if the map contains an element with the specified key; otherwise, <c>false</c>.</returns>
  1168. </member>
  1169. <member name="P:Google.Protobuf.Collections.MapField`2.Item(`0)">
  1170. <summary>
  1171. Gets or sets the value associated with the specified key.
  1172. </summary>
  1173. <param name="key">The key of the value to get or set.</param>
  1174. <exception cref="T:System.Collections.Generic.KeyNotFoundException">The property is retrieved and key does not exist in the collection.</exception>
  1175. <returns>The value associated with the specified key. If the specified key is not found,
  1176. a get operation throws a <see cref="T:System.Collections.Generic.KeyNotFoundException"/>, and a set operation creates a new element with the specified key.</returns>
  1177. </member>
  1178. <member name="P:Google.Protobuf.Collections.MapField`2.Keys">
  1179. <summary>
  1180. Gets a collection containing the keys in the map.
  1181. </summary>
  1182. </member>
  1183. <member name="P:Google.Protobuf.Collections.MapField`2.Values">
  1184. <summary>
  1185. Gets a collection containing the values in the map.
  1186. </summary>
  1187. </member>
  1188. <member name="M:Google.Protobuf.Collections.MapField`2.Add(System.Collections.Generic.IDictionary{`0,`1})">
  1189. <summary>
  1190. Adds the specified entries to the map. The keys and values are not automatically cloned.
  1191. </summary>
  1192. <param name="entries">The entries to add to the map.</param>
  1193. </member>
  1194. <member name="M:Google.Protobuf.Collections.MapField`2.GetEnumerator">
  1195. <summary>
  1196. Returns an enumerator that iterates through the collection.
  1197. </summary>
  1198. <returns>
  1199. An enumerator that can be used to iterate through the collection.
  1200. </returns>
  1201. </member>
  1202. <member name="M:Google.Protobuf.Collections.MapField`2.System#Collections#IEnumerable#GetEnumerator">
  1203. <summary>
  1204. Returns an enumerator that iterates through a collection.
  1205. </summary>
  1206. <returns>
  1207. An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.
  1208. </returns>
  1209. </member>
  1210. <member name="M:Google.Protobuf.Collections.MapField`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#Add(System.Collections.Generic.KeyValuePair{`0,`1})">
  1211. <summary>
  1212. Adds the specified item to the map.
  1213. </summary>
  1214. <param name="item">The item to add to the map.</param>
  1215. </member>
  1216. <member name="M:Google.Protobuf.Collections.MapField`2.Clear">
  1217. <summary>
  1218. Removes all items from the map.
  1219. </summary>
  1220. </member>
  1221. <member name="M:Google.Protobuf.Collections.MapField`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#Contains(System.Collections.Generic.KeyValuePair{`0,`1})">
  1222. <summary>
  1223. Determines whether map contains an entry equivalent to the given key/value pair.
  1224. </summary>
  1225. <param name="item">The key/value pair to find.</param>
  1226. <returns></returns>
  1227. </member>
  1228. <member name="M:Google.Protobuf.Collections.MapField`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32)">
  1229. <summary>
  1230. Copies the key/value pairs in this map to an array.
  1231. </summary>
  1232. <param name="array">The array to copy the entries into.</param>
  1233. <param name="arrayIndex">The index of the array at which to start copying values.</param>
  1234. </member>
  1235. <member name="M:Google.Protobuf.Collections.MapField`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#Remove(System.Collections.Generic.KeyValuePair{`0,`1})">
  1236. <summary>
  1237. Removes the specified key/value pair from the map.
  1238. </summary>
  1239. <remarks>Both the key and the value must be found for the entry to be removed.</remarks>
  1240. <param name="item">The key/value pair to remove.</param>
  1241. <returns><c>true</c> if the key/value pair was found and removed; <c>false</c> otherwise.</returns>
  1242. </member>
  1243. <member name="P:Google.Protobuf.Collections.MapField`2.Count">
  1244. <summary>
  1245. Gets the number of elements contained in the map.
  1246. </summary>
  1247. </member>
  1248. <member name="P:Google.Protobuf.Collections.MapField`2.IsReadOnly">
  1249. <summary>
  1250. Gets a value indicating whether the map is read-only.
  1251. </summary>
  1252. </member>
  1253. <member name="M:Google.Protobuf.Collections.MapField`2.Equals(System.Object)">
  1254. <summary>
  1255. Determines whether the specified <see cref="T:System.Object" />, is equal to this instance.
  1256. </summary>
  1257. <param name="other">The <see cref="T:System.Object" /> to compare with this instance.</param>
  1258. <returns>
  1259. <c>true</c> if the specified <see cref="T:System.Object" /> is equal to this instance; otherwise, <c>false</c>.
  1260. </returns>
  1261. </member>
  1262. <member name="M:Google.Protobuf.Collections.MapField`2.GetHashCode">
  1263. <summary>
  1264. Returns a hash code for this instance.
  1265. </summary>
  1266. <returns>
  1267. A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
  1268. </returns>
  1269. </member>
  1270. <member name="M:Google.Protobuf.Collections.MapField`2.Equals(Google.Protobuf.Collections.MapField{`0,`1})">
  1271. <summary>
  1272. Compares this map with another for equality.
  1273. </summary>
  1274. <remarks>
  1275. The order of the key/value pairs in the maps is not deemed significant in this comparison.
  1276. </remarks>
  1277. <param name="other">The map to compare this with.</param>
  1278. <returns><c>true</c> if <paramref name="other"/> refers to an equal map; <c>false</c> otherwise.</returns>
  1279. </member>
  1280. <member name="M:Google.Protobuf.Collections.MapField`2.AddEntriesFrom(Google.Protobuf.CodedInputStream,Google.Protobuf.Collections.MapField{`0,`1}.Codec)">
  1281. <summary>
  1282. Adds entries to the map from the given stream.
  1283. </summary>
  1284. <remarks>
  1285. It is assumed that the stream is initially positioned after the tag specified by the codec.
  1286. This method will continue reading entries from the stream until the end is reached, or
  1287. a different tag is encountered.
  1288. </remarks>
  1289. <param name="input">Stream to read from</param>
  1290. <param name="codec">Codec describing how the key/value pairs are encoded</param>
  1291. </member>
  1292. <member name="M:Google.Protobuf.Collections.MapField`2.AddEntriesFrom(Google.Protobuf.ParseContext@,Google.Protobuf.Collections.MapField{`0,`1}.Codec)">
  1293. <summary>
  1294. Adds entries to the map from the given parse context.
  1295. </summary>
  1296. <remarks>
  1297. It is assumed that the input is initially positioned after the tag specified by the codec.
  1298. This method will continue reading entries from the input until the end is reached, or
  1299. a different tag is encountered.
  1300. </remarks>
  1301. <param name="ctx">Input to read from</param>
  1302. <param name="codec">Codec describing how the key/value pairs are encoded</param>
  1303. </member>
  1304. <member name="M:Google.Protobuf.Collections.MapField`2.WriteTo(Google.Protobuf.CodedOutputStream,Google.Protobuf.Collections.MapField{`0,`1}.Codec)">
  1305. <summary>
  1306. Writes the contents of this map to the given coded output stream, using the specified codec
  1307. to encode each entry.
  1308. </summary>
  1309. <param name="output">The output stream to write to.</param>
  1310. <param name="codec">The codec to use for each entry.</param>
  1311. </member>
  1312. <member name="M:Google.Protobuf.Collections.MapField`2.WriteTo(Google.Protobuf.WriteContext@,Google.Protobuf.Collections.MapField{`0,`1}.Codec)">
  1313. <summary>
  1314. Writes the contents of this map to the given write context, using the specified codec
  1315. to encode each entry.
  1316. </summary>
  1317. <param name="ctx">The write context to write to.</param>
  1318. <param name="codec">The codec to use for each entry.</param>
  1319. </member>
  1320. <member name="M:Google.Protobuf.Collections.MapField`2.CalculateSize(Google.Protobuf.Collections.MapField{`0,`1}.Codec)">
  1321. <summary>
  1322. Calculates the size of this map based on the given entry codec.
  1323. </summary>
  1324. <param name="codec">The codec to use to encode each entry.</param>
  1325. <returns></returns>
  1326. </member>
  1327. <member name="M:Google.Protobuf.Collections.MapField`2.ToString">
  1328. <summary>
  1329. Returns a string representation of this repeated field, in the same
  1330. way as it would be represented by the default JSON formatter.
  1331. </summary>
  1332. </member>
  1333. <member name="T:Google.Protobuf.Collections.MapField`2.Codec">
  1334. <summary>
  1335. A codec for a specific map field. This contains all the information required to encode and
  1336. decode the nested messages.
  1337. </summary>
  1338. </member>
  1339. <member name="M:Google.Protobuf.Collections.MapField`2.Codec.#ctor(Google.Protobuf.FieldCodec{`0},Google.Protobuf.FieldCodec{`1},System.UInt32)">
  1340. <summary>
  1341. Creates a new entry codec based on a separate key codec and value codec,
  1342. and the tag to use for each map entry.
  1343. </summary>
  1344. <param name="keyCodec">The key codec.</param>
  1345. <param name="valueCodec">The value codec.</param>
  1346. <param name="mapTag">The map tag to use to introduce each map entry.</param>
  1347. </member>
  1348. <member name="P:Google.Protobuf.Collections.MapField`2.Codec.MapTag">
  1349. <summary>
  1350. The tag used in the enclosing message to indicate map entries.
  1351. </summary>
  1352. </member>
  1353. <member name="T:Google.Protobuf.Collections.MapField`2.Codec.MessageAdapter">
  1354. <summary>
  1355. A mutable message class, used for parsing and serializing. This
  1356. delegates the work to a codec, but implements the <see cref="T:Google.Protobuf.IMessage"/> interface
  1357. for interop with <see cref="T:Google.Protobuf.CodedInputStream"/> and <see cref="T:Google.Protobuf.CodedOutputStream"/>.
  1358. This is nested inside Codec as it's tightly coupled to the associated codec,
  1359. and it's simpler if it has direct access to all its fields.
  1360. </summary>
  1361. </member>
  1362. <member name="T:Google.Protobuf.Collections.ProtobufEqualityComparers">
  1363. <summary>
  1364. Provides a central place to implement equality comparisons, primarily for bitwise float/double equality.
  1365. </summary>
  1366. </member>
  1367. <member name="M:Google.Protobuf.Collections.ProtobufEqualityComparers.GetEqualityComparer``1">
  1368. <summary>
  1369. Returns an equality comparer for <typeparamref name="T"/> suitable for Protobuf equality comparisons.
  1370. This is usually just the default equality comparer for the type, but floating point numbers are compared
  1371. bitwise.
  1372. </summary>
  1373. <typeparam name="T">The type of equality comparer to return.</typeparam>
  1374. <returns>The equality comparer.</returns>
  1375. </member>
  1376. <member name="P:Google.Protobuf.Collections.ProtobufEqualityComparers.BitwiseDoubleEqualityComparer">
  1377. <summary>
  1378. Returns an equality comparer suitable for comparing 64-bit floating point values, by bitwise comparison.
  1379. (NaN values are considered equal, but only when they have the same representation.)
  1380. </summary>
  1381. </member>
  1382. <member name="P:Google.Protobuf.Collections.ProtobufEqualityComparers.BitwiseSingleEqualityComparer">
  1383. <summary>
  1384. Returns an equality comparer suitable for comparing 32-bit floating point values, by bitwise comparison.
  1385. (NaN values are considered equal, but only when they have the same representation.)
  1386. </summary>
  1387. </member>
  1388. <member name="P:Google.Protobuf.Collections.ProtobufEqualityComparers.BitwiseNullableDoubleEqualityComparer">
  1389. <summary>
  1390. Returns an equality comparer suitable for comparing nullable 64-bit floating point values, by bitwise comparison.
  1391. (NaN values are considered equal, but only when they have the same representation.)
  1392. </summary>
  1393. </member>
  1394. <member name="P:Google.Protobuf.Collections.ProtobufEqualityComparers.BitwiseNullableSingleEqualityComparer">
  1395. <summary>
  1396. Returns an equality comparer suitable for comparing nullable 32-bit floating point values, by bitwise comparison.
  1397. (NaN values are considered equal, but only when they have the same representation.)
  1398. </summary>
  1399. </member>
  1400. <member name="T:Google.Protobuf.Collections.ReadOnlyDictionary`2">
  1401. <summary>
  1402. Read-only wrapper around another dictionary.
  1403. </summary>
  1404. </member>
  1405. <member name="T:Google.Protobuf.Collections.RepeatedField`1">
  1406. <summary>
  1407. The contents of a repeated field: essentially, a collection with some extra
  1408. restrictions (no null values) and capabilities (deep cloning).
  1409. </summary>
  1410. <remarks>
  1411. This implementation does not generally prohibit the use of types which are not
  1412. supported by Protocol Buffers but nor does it guarantee that all operations will work in such cases.
  1413. </remarks>
  1414. <typeparam name="T">The element type of the repeated field.</typeparam>
  1415. </member>
  1416. <member name="M:Google.Protobuf.Collections.RepeatedField`1.Clone">
  1417. <summary>
  1418. Creates a deep clone of this repeated field.
  1419. </summary>
  1420. <remarks>
  1421. If the field type is
  1422. a message type, each element is also cloned; otherwise, it is
  1423. assumed that the field type is primitive (including string and
  1424. bytes, both of which are immutable) and so a simple copy is
  1425. equivalent to a deep clone.
  1426. </remarks>
  1427. <returns>A deep clone of this repeated field.</returns>
  1428. </member>
  1429. <member name="M:Google.Protobuf.Collections.RepeatedField`1.AddEntriesFrom(Google.Protobuf.CodedInputStream,Google.Protobuf.FieldCodec{`0})">
  1430. <summary>
  1431. Adds the entries from the given input stream, decoding them with the specified codec.
  1432. </summary>
  1433. <param name="input">The input stream to read from.</param>
  1434. <param name="codec">The codec to use in order to read each entry.</param>
  1435. </member>
  1436. <member name="M:Google.Protobuf.Collections.RepeatedField`1.AddEntriesFrom(Google.Protobuf.ParseContext@,Google.Protobuf.FieldCodec{`0})">
  1437. <summary>
  1438. Adds the entries from the given parse context, decoding them with the specified codec.
  1439. </summary>
  1440. <param name="ctx">The input to read from.</param>
  1441. <param name="codec">The codec to use in order to read each entry.</param>
  1442. </member>
  1443. <member name="M:Google.Protobuf.Collections.RepeatedField`1.CalculateSize(Google.Protobuf.FieldCodec{`0})">
  1444. <summary>
  1445. Calculates the size of this collection based on the given codec.
  1446. </summary>
  1447. <param name="codec">The codec to use when encoding each field.</param>
  1448. <returns>The number of bytes that would be written to an output by one of the <c>WriteTo</c> methods,
  1449. using the same codec.</returns>
  1450. </member>
  1451. <member name="M:Google.Protobuf.Collections.RepeatedField`1.WriteTo(Google.Protobuf.CodedOutputStream,Google.Protobuf.FieldCodec{`0})">
  1452. <summary>
  1453. Writes the contents of this collection to the given <see cref="T:Google.Protobuf.CodedOutputStream"/>,
  1454. encoding each value using the specified codec.
  1455. </summary>
  1456. <param name="output">The output stream to write to.</param>
  1457. <param name="codec">The codec to use when encoding each value.</param>
  1458. </member>
  1459. <member name="M:Google.Protobuf.Collections.RepeatedField`1.WriteTo(Google.Protobuf.WriteContext@,Google.Protobuf.FieldCodec{`0})">
  1460. <summary>
  1461. Writes the contents of this collection to the given write context,
  1462. encoding each value using the specified codec.
  1463. </summary>
  1464. <param name="ctx">The write context to write to.</param>
  1465. <param name="codec">The codec to use when encoding each value.</param>
  1466. </member>
  1467. <member name="P:Google.Protobuf.Collections.RepeatedField`1.Capacity">
  1468. <summary>
  1469. Gets and sets the capacity of the RepeatedField's internal array. WHen set, the internal array is reallocated to the given capacity.
  1470. <exception cref="T:System.ArgumentOutOfRangeException">The new value is less than Count -or- when Count is less than 0.</exception>
  1471. </summary>
  1472. </member>
  1473. <member name="M:Google.Protobuf.Collections.RepeatedField`1.Add(`0)">
  1474. <summary>
  1475. Adds the specified item to the collection.
  1476. </summary>
  1477. <param name="item">The item to add.</param>
  1478. </member>
  1479. <member name="M:Google.Protobuf.Collections.RepeatedField`1.Clear">
  1480. <summary>
  1481. Removes all items from the collection.
  1482. </summary>
  1483. </member>
  1484. <member name="M:Google.Protobuf.Collections.RepeatedField`1.Contains(`0)">
  1485. <summary>
  1486. Determines whether this collection contains the given item.
  1487. </summary>
  1488. <param name="item">The item to find.</param>
  1489. <returns><c>true</c> if this collection contains the given item; <c>false</c> otherwise.</returns>
  1490. </member>
  1491. <member name="M:Google.Protobuf.Collections.RepeatedField`1.CopyTo(`0[],System.Int32)">
  1492. <summary>
  1493. Copies this collection to the given array.
  1494. </summary>
  1495. <param name="array">The array to copy to.</param>
  1496. <param name="arrayIndex">The first index of the array to copy to.</param>
  1497. </member>
  1498. <member name="M:Google.Protobuf.Collections.RepeatedField`1.Remove(`0)">
  1499. <summary>
  1500. Removes the specified item from the collection
  1501. </summary>
  1502. <param name="item">The item to remove.</param>
  1503. <returns><c>true</c> if the item was found and removed; <c>false</c> otherwise.</returns>
  1504. </member>
  1505. <member name="P:Google.Protobuf.Collections.RepeatedField`1.Count">
  1506. <summary>
  1507. Gets the number of elements contained in the collection.
  1508. </summary>
  1509. </member>
  1510. <member name="P:Google.Protobuf.Collections.RepeatedField`1.IsReadOnly">
  1511. <summary>
  1512. Gets a value indicating whether the collection is read-only.
  1513. </summary>
  1514. </member>
  1515. <member name="M:Google.Protobuf.Collections.RepeatedField`1.AddRange(System.Collections.Generic.IEnumerable{`0})">
  1516. <summary>
  1517. Adds all of the specified values into this collection.
  1518. </summary>
  1519. <param name="values">The values to add to this collection.</param>
  1520. </member>
  1521. <member name="M:Google.Protobuf.Collections.RepeatedField`1.Add(System.Collections.Generic.IEnumerable{`0})">
  1522. <summary>
  1523. Adds all of the specified values into this collection. This method is present to
  1524. allow repeated fields to be constructed from queries within collection initializers.
  1525. Within non-collection-initializer code, consider using the equivalent <see cref="M:Google.Protobuf.Collections.RepeatedField`1.AddRange(System.Collections.Generic.IEnumerable{`0})"/>
  1526. method instead for clarity.
  1527. </summary>
  1528. <param name="values">The values to add to this collection.</param>
  1529. </member>
  1530. <member name="M:Google.Protobuf.Collections.RepeatedField`1.GetEnumerator">
  1531. <summary>
  1532. Returns an enumerator that iterates through the collection.
  1533. </summary>
  1534. <returns>
  1535. An enumerator that can be used to iterate through the collection.
  1536. </returns>
  1537. </member>
  1538. <member name="M:Google.Protobuf.Collections.RepeatedField`1.Equals(System.Object)">
  1539. <summary>
  1540. Determines whether the specified <see cref="T:System.Object" />, is equal to this instance.
  1541. </summary>
  1542. <param name="obj">The <see cref="T:System.Object" /> to compare with this instance.</param>
  1543. <returns>
  1544. <c>true</c> if the specified <see cref="T:System.Object" /> is equal to this instance; otherwise, <c>false</c>.
  1545. </returns>
  1546. </member>
  1547. <member name="M:Google.Protobuf.Collections.RepeatedField`1.System#Collections#IEnumerable#GetEnumerator">
  1548. <summary>
  1549. Returns an enumerator that iterates through a collection.
  1550. </summary>
  1551. <returns>
  1552. An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.
  1553. </returns>
  1554. </member>
  1555. <member name="M:Google.Protobuf.Collections.RepeatedField`1.GetHashCode">
  1556. <summary>
  1557. Returns a hash code for this instance.
  1558. </summary>
  1559. <returns>
  1560. A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
  1561. </returns>
  1562. </member>
  1563. <member name="M:Google.Protobuf.Collections.RepeatedField`1.Equals(Google.Protobuf.Collections.RepeatedField{`0})">
  1564. <summary>
  1565. Compares this repeated field with another for equality.
  1566. </summary>
  1567. <param name="other">The repeated field to compare this with.</param>
  1568. <returns><c>true</c> if <paramref name="other"/> refers to an equal repeated field; <c>false</c> otherwise.</returns>
  1569. </member>
  1570. <member name="M:Google.Protobuf.Collections.RepeatedField`1.IndexOf(`0)">
  1571. <summary>
  1572. Returns the index of the given item within the collection, or -1 if the item is not
  1573. present.
  1574. </summary>
  1575. <param name="item">The item to find in the collection.</param>
  1576. <returns>The zero-based index of the item, or -1 if it is not found.</returns>
  1577. </member>
  1578. <member name="M:Google.Protobuf.Collections.RepeatedField`1.Insert(System.Int32,`0)">
  1579. <summary>
  1580. Inserts the given item at the specified index.
  1581. </summary>
  1582. <param name="index">The index at which to insert the item.</param>
  1583. <param name="item">The item to insert.</param>
  1584. </member>
  1585. <member name="M:Google.Protobuf.Collections.RepeatedField`1.RemoveAt(System.Int32)">
  1586. <summary>
  1587. Removes the item at the given index.
  1588. </summary>
  1589. <param name="index">The zero-based index of the item to remove.</param>
  1590. </member>
  1591. <member name="M:Google.Protobuf.Collections.RepeatedField`1.ToString">
  1592. <summary>
  1593. Returns a string representation of this repeated field, in the same
  1594. way as it would be represented by the default JSON formatter.
  1595. </summary>
  1596. </member>
  1597. <member name="P:Google.Protobuf.Collections.RepeatedField`1.Item(System.Int32)">
  1598. <summary>
  1599. Gets or sets the item at the specified index.
  1600. </summary>
  1601. <value>
  1602. The element at the specified index.
  1603. </value>
  1604. <param name="index">The zero-based index of the element to get or set.</param>
  1605. <returns>The item at the specified index.</returns>
  1606. </member>
  1607. <member name="T:Google.Protobuf.Compatibility.PropertyInfoExtensions">
  1608. <summary>
  1609. Extension methods for <see cref="T:System.Reflection.PropertyInfo"/>, effectively providing
  1610. the familiar members from previous desktop framework versions while
  1611. targeting the newer releases, .NET Core etc.
  1612. </summary>
  1613. </member>
  1614. <member name="M:Google.Protobuf.Compatibility.PropertyInfoExtensions.GetGetMethod(System.Reflection.PropertyInfo)">
  1615. <summary>
  1616. Returns the public getter of a property, or null if there is no such getter
  1617. (either because it's read-only, or the getter isn't public).
  1618. </summary>
  1619. </member>
  1620. <member name="M:Google.Protobuf.Compatibility.PropertyInfoExtensions.GetSetMethod(System.Reflection.PropertyInfo)">
  1621. <summary>
  1622. Returns the public setter of a property, or null if there is no such setter
  1623. (either because it's write-only, or the setter isn't public).
  1624. </summary>
  1625. </member>
  1626. <member name="T:Google.Protobuf.Compatibility.TypeExtensions">
  1627. <summary>
  1628. Provides extension methods on Type that just proxy to TypeInfo.
  1629. These are used to support the new type system from .NET 4.5, without
  1630. having calls to GetTypeInfo all over the place. While the methods here are meant to be
  1631. broadly compatible with the desktop framework, there are some subtle differences in behaviour - but
  1632. they're not expected to affect our use cases. While the class is internal, that should be fine: we can
  1633. evaluate each new use appropriately.
  1634. </summary>
  1635. </member>
  1636. <member name="M:Google.Protobuf.Compatibility.TypeExtensions.IsAssignableFrom(System.Type,System.Type)">
  1637. <summary>
  1638. See https://msdn.microsoft.com/en-us/library/system.type.isassignablefrom
  1639. </summary>
  1640. </member>
  1641. <member name="M:Google.Protobuf.Compatibility.TypeExtensions.GetProperty(System.Type,System.String)">
  1642. <summary>
  1643. Returns a representation of the public property associated with the given name in the given type,
  1644. including inherited properties or null if there is no such public property.
  1645. Here, "public property" means a property where either the getter, or the setter, or both, is public.
  1646. </summary>
  1647. </member>
  1648. <member name="M:Google.Protobuf.Compatibility.TypeExtensions.GetMethod(System.Type,System.String)">
  1649. <summary>
  1650. Returns a representation of the public method associated with the given name in the given type,
  1651. including inherited methods.
  1652. </summary>
  1653. <remarks>
  1654. This has a few differences compared with Type.GetMethod in the desktop framework. It will throw
  1655. if there is an ambiguous match even between a private method and a public one, but it *won't* throw
  1656. if there are two overloads at different levels in the type hierarchy (e.g. class Base declares public void Foo(int) and
  1657. class Child : Base declares public void Foo(long)).
  1658. </remarks>
  1659. <exception cref="T:System.Reflection.AmbiguousMatchException">One type in the hierarchy declared more than one method with the same name</exception>
  1660. </member>
  1661. <member name="T:Google.Protobuf.Extension">
  1662. <summary>
  1663. Represents a non-generic extension definition. This API is experimental and subject to change.
  1664. </summary>
  1665. </member>
  1666. <member name="M:Google.Protobuf.Extension.#ctor(System.Int32)">
  1667. <summary>
  1668. Internal use. Creates a new extension with the specified field number.
  1669. </summary>
  1670. </member>
  1671. <member name="P:Google.Protobuf.Extension.FieldNumber">
  1672. <summary>
  1673. Gets the field number of this extension
  1674. </summary>
  1675. </member>
  1676. <member name="T:Google.Protobuf.Extension`2">
  1677. <summary>
  1678. Represents a type-safe extension identifier used for getting and setting single extension values in <see cref="T:Google.Protobuf.IExtendableMessage`1"/> instances.
  1679. This API is experimental and subject to change.
  1680. </summary>
  1681. <typeparam name="TTarget">The message type this field applies to</typeparam>
  1682. <typeparam name="TValue">The field value type of this extension</typeparam>
  1683. </member>
  1684. <member name="M:Google.Protobuf.Extension`2.#ctor(System.Int32,Google.Protobuf.FieldCodec{`1})">
  1685. <summary>
  1686. Creates a new extension identifier with the specified field number and codec
  1687. </summary>
  1688. </member>
  1689. <member name="T:Google.Protobuf.RepeatedExtension`2">
  1690. <summary>
  1691. Represents a type-safe extension identifier used for getting repeated extension values in <see cref="T:Google.Protobuf.IExtendableMessage`1"/> instances.
  1692. This API is experimental and subject to change.
  1693. </summary>
  1694. <typeparam name="TTarget">The message type this field applies to</typeparam>
  1695. <typeparam name="TValue">The repeated field value type of this extension</typeparam>
  1696. </member>
  1697. <member name="M:Google.Protobuf.RepeatedExtension`2.#ctor(System.Int32,Google.Protobuf.FieldCodec{`1})">
  1698. <summary>
  1699. Creates a new repeated extension identifier with the specified field number and codec
  1700. </summary>
  1701. </member>
  1702. <member name="T:Google.Protobuf.ExtensionRegistry">
  1703. <summary>
  1704. Provides extensions to messages while parsing. This API is experimental and subject to change.
  1705. </summary>
  1706. </member>
  1707. <member name="M:Google.Protobuf.ExtensionRegistry.#ctor">
  1708. <summary>
  1709. Creates a new empty extension registry
  1710. </summary>
  1711. </member>
  1712. <member name="P:Google.Protobuf.ExtensionRegistry.Count">
  1713. <summary>
  1714. Gets the total number of extensions in this extension registry
  1715. </summary>
  1716. </member>
  1717. <member name="P:Google.Protobuf.ExtensionRegistry.System#Collections#Generic#ICollection{Google#Protobuf#Extension}#IsReadOnly">
  1718. <summary>
  1719. Returns whether the registry is readonly
  1720. </summary>
  1721. </member>
  1722. <member name="M:Google.Protobuf.ExtensionRegistry.Add(Google.Protobuf.Extension)">
  1723. <summary>
  1724. Adds the specified extension to the registry
  1725. </summary>
  1726. </member>
  1727. <member name="M:Google.Protobuf.ExtensionRegistry.AddRange(System.Collections.Generic.IEnumerable{Google.Protobuf.Extension})">
  1728. <summary>
  1729. Adds the specified extensions to the registry
  1730. </summary>
  1731. </member>
  1732. <member name="M:Google.Protobuf.ExtensionRegistry.Clear">
  1733. <summary>
  1734. Clears the registry of all values
  1735. </summary>
  1736. </member>
  1737. <member name="M:Google.Protobuf.ExtensionRegistry.Contains(Google.Protobuf.Extension)">
  1738. <summary>
  1739. Gets whether the extension registry contains the specified extension
  1740. </summary>
  1741. </member>
  1742. <member name="M:Google.Protobuf.ExtensionRegistry.System#Collections#Generic#ICollection{Google#Protobuf#Extension}#CopyTo(Google.Protobuf.Extension[],System.Int32)">
  1743. <summary>
  1744. Copies the arrays in the registry set to the specified array at the specified index
  1745. </summary>
  1746. <param name="array">The array to copy to</param>
  1747. <param name="arrayIndex">The array index to start at</param>
  1748. </member>
  1749. <member name="M:Google.Protobuf.ExtensionRegistry.GetEnumerator">
  1750. <summary>
  1751. Returns an enumerator to enumerate through the items in the registry
  1752. </summary>
  1753. <returns>Returns an enumerator for the extensions in this registry</returns>
  1754. </member>
  1755. <member name="M:Google.Protobuf.ExtensionRegistry.Remove(Google.Protobuf.Extension)">
  1756. <summary>
  1757. Removes the specified extension from the set
  1758. </summary>
  1759. <param name="item">The extension</param>
  1760. <returns><c>true</c> if the extension was removed, otherwise <c>false</c></returns>
  1761. </member>
  1762. <member name="M:Google.Protobuf.ExtensionRegistry.Clone">
  1763. <summary>
  1764. Clones the registry into a new registry
  1765. </summary>
  1766. </member>
  1767. <member name="T:Google.Protobuf.ExtensionSet">
  1768. <summary>
  1769. Methods for managing <see cref="T:Google.Protobuf.ExtensionSet`1"/>s with null checking.
  1770. Most users will not use this class directly and its API is experimental and subject to change.
  1771. </summary>
  1772. </member>
  1773. <member name="M:Google.Protobuf.ExtensionSet.Get``2(Google.Protobuf.ExtensionSet{``0}@,Google.Protobuf.Extension{``0,``1})">
  1774. <summary>
  1775. Gets the value of the specified extension
  1776. </summary>
  1777. </member>
  1778. <member name="M:Google.Protobuf.ExtensionSet.Get``2(Google.Protobuf.ExtensionSet{``0}@,Google.Protobuf.RepeatedExtension{``0,``1})">
  1779. <summary>
  1780. Gets the value of the specified repeated extension or null if it doesn't exist in this set
  1781. </summary>
  1782. </member>
  1783. <member name="M:Google.Protobuf.ExtensionSet.GetOrInitialize``2(Google.Protobuf.ExtensionSet{``0}@,Google.Protobuf.RepeatedExtension{``0,``1})">
  1784. <summary>
  1785. Gets the value of the specified repeated extension, registering it if it doesn't exist
  1786. </summary>
  1787. </member>
  1788. <member name="M:Google.Protobuf.ExtensionSet.Set``2(Google.Protobuf.ExtensionSet{``0}@,Google.Protobuf.Extension{``0,``1},``1)">
  1789. <summary>
  1790. Sets the value of the specified extension. This will make a new instance of ExtensionSet if the set is null.
  1791. </summary>
  1792. </member>
  1793. <member name="M:Google.Protobuf.ExtensionSet.Has``2(Google.Protobuf.ExtensionSet{``0}@,Google.Protobuf.Extension{``0,``1})">
  1794. <summary>
  1795. Gets whether the value of the specified extension is set
  1796. </summary>
  1797. </member>
  1798. <member name="M:Google.Protobuf.ExtensionSet.Clear``2(Google.Protobuf.ExtensionSet{``0}@,Google.Protobuf.Extension{``0,``1})">
  1799. <summary>
  1800. Clears the value of the specified extension
  1801. </summary>
  1802. </member>
  1803. <member name="M:Google.Protobuf.ExtensionSet.Clear``2(Google.Protobuf.ExtensionSet{``0}@,Google.Protobuf.RepeatedExtension{``0,``1})">
  1804. <summary>
  1805. Clears the value of the specified extension
  1806. </summary>
  1807. </member>
  1808. <member name="M:Google.Protobuf.ExtensionSet.TryMergeFieldFrom``1(Google.Protobuf.ExtensionSet{``0}@,Google.Protobuf.CodedInputStream)">
  1809. <summary>
  1810. Tries to merge a field from the coded input, returning true if the field was merged.
  1811. If the set is null or the field was not otherwise merged, this returns false.
  1812. </summary>
  1813. </member>
  1814. <member name="M:Google.Protobuf.ExtensionSet.TryMergeFieldFrom``1(Google.Protobuf.ExtensionSet{``0}@,Google.Protobuf.ParseContext@)">
  1815. <summary>
  1816. Tries to merge a field from the coded input, returning true if the field was merged.
  1817. If the set is null or the field was not otherwise merged, this returns false.
  1818. </summary>
  1819. </member>
  1820. <member name="M:Google.Protobuf.ExtensionSet.MergeFrom``1(Google.Protobuf.ExtensionSet{``0}@,Google.Protobuf.ExtensionSet{``0})">
  1821. <summary>
  1822. Merges the second set into the first set, creating a new instance if first is null
  1823. </summary>
  1824. </member>
  1825. <member name="M:Google.Protobuf.ExtensionSet.Clone``1(Google.Protobuf.ExtensionSet{``0})">
  1826. <summary>
  1827. Clones the set into a new set. If the set is null, this returns null
  1828. </summary>
  1829. </member>
  1830. <member name="T:Google.Protobuf.ExtensionSet`1">
  1831. <summary>
  1832. Used for keeping track of extensions in messages.
  1833. <see cref="T:Google.Protobuf.IExtendableMessage`1"/> methods route to this set.
  1834. Most users will not need to use this class directly
  1835. </summary>
  1836. <typeparam name="TTarget">The message type that extensions in this set target</typeparam>
  1837. </member>
  1838. <member name="M:Google.Protobuf.ExtensionSet`1.GetHashCode">
  1839. <summary>
  1840. Gets a hash code of the set
  1841. </summary>
  1842. </member>
  1843. <member name="M:Google.Protobuf.ExtensionSet`1.Equals(System.Object)">
  1844. <summary>
  1845. Returns whether this set is equal to the other object
  1846. </summary>
  1847. </member>
  1848. <member name="M:Google.Protobuf.ExtensionSet`1.CalculateSize">
  1849. <summary>
  1850. Calculates the size of this extension set
  1851. </summary>
  1852. </member>
  1853. <member name="M:Google.Protobuf.ExtensionSet`1.WriteTo(Google.Protobuf.CodedOutputStream)">
  1854. <summary>
  1855. Writes the extension values in this set to the output stream
  1856. </summary>
  1857. </member>
  1858. <member name="M:Google.Protobuf.ExtensionSet`1.WriteTo(Google.Protobuf.WriteContext@)">
  1859. <summary>
  1860. Writes the extension values in this set to the write context
  1861. </summary>
  1862. </member>
  1863. <member name="T:Google.Protobuf.FieldCodec">
  1864. <summary>
  1865. Factory methods for <see cref="T:Google.Protobuf.FieldCodec`1"/>.
  1866. </summary>
  1867. </member>
  1868. <member name="M:Google.Protobuf.FieldCodec.ForString(System.UInt32)">
  1869. <summary>
  1870. Retrieves a codec suitable for a string field with the given tag.
  1871. </summary>
  1872. <param name="tag">The tag.</param>
  1873. <returns>A codec for the given tag.</returns>
  1874. </member>
  1875. <member name="M:Google.Protobuf.FieldCodec.ForBytes(System.UInt32)">
  1876. <summary>
  1877. Retrieves a codec suitable for a bytes field with the given tag.
  1878. </summary>
  1879. <param name="tag">The tag.</param>
  1880. <returns>A codec for the given tag.</returns>
  1881. </member>
  1882. <member name="M:Google.Protobuf.FieldCodec.ForBool(System.UInt32)">
  1883. <summary>
  1884. Retrieves a codec suitable for a bool field with the given tag.
  1885. </summary>
  1886. <param name="tag">The tag.</param>
  1887. <returns>A codec for the given tag.</returns>
  1888. </member>
  1889. <member name="M:Google.Protobuf.FieldCodec.ForInt32(System.UInt32)">
  1890. <summary>
  1891. Retrieves a codec suitable for an int32 field with the given tag.
  1892. </summary>
  1893. <param name="tag">The tag.</param>
  1894. <returns>A codec for the given tag.</returns>
  1895. </member>
  1896. <member name="M:Google.Protobuf.FieldCodec.ForSInt32(System.UInt32)">
  1897. <summary>
  1898. Retrieves a codec suitable for an sint32 field with the given tag.
  1899. </summary>
  1900. <param name="tag">The tag.</param>
  1901. <returns>A codec for the given tag.</returns>
  1902. </member>
  1903. <member name="M:Google.Protobuf.FieldCodec.ForFixed32(System.UInt32)">
  1904. <summary>
  1905. Retrieves a codec suitable for a fixed32 field with the given tag.
  1906. </summary>
  1907. <param name="tag">The tag.</param>
  1908. <returns>A codec for the given tag.</returns>
  1909. </member>
  1910. <member name="M:Google.Protobuf.FieldCodec.ForSFixed32(System.UInt32)">
  1911. <summary>
  1912. Retrieves a codec suitable for an sfixed32 field with the given tag.
  1913. </summary>
  1914. <param name="tag">The tag.</param>
  1915. <returns>A codec for the given tag.</returns>
  1916. </member>
  1917. <member name="M:Google.Protobuf.FieldCodec.ForUInt32(System.UInt32)">
  1918. <summary>
  1919. Retrieves a codec suitable for a uint32 field with the given tag.
  1920. </summary>
  1921. <param name="tag">The tag.</param>
  1922. <returns>A codec for the given tag.</returns>
  1923. </member>
  1924. <member name="M:Google.Protobuf.FieldCodec.ForInt64(System.UInt32)">
  1925. <summary>
  1926. Retrieves a codec suitable for an int64 field with the given tag.
  1927. </summary>
  1928. <param name="tag">The tag.</param>
  1929. <returns>A codec for the given tag.</returns>
  1930. </member>
  1931. <member name="M:Google.Protobuf.FieldCodec.ForSInt64(System.UInt32)">
  1932. <summary>
  1933. Retrieves a codec suitable for an sint64 field with the given tag.
  1934. </summary>
  1935. <param name="tag">The tag.</param>
  1936. <returns>A codec for the given tag.</returns>
  1937. </member>
  1938. <member name="M:Google.Protobuf.FieldCodec.ForFixed64(System.UInt32)">
  1939. <summary>
  1940. Retrieves a codec suitable for a fixed64 field with the given tag.
  1941. </summary>
  1942. <param name="tag">The tag.</param>
  1943. <returns>A codec for the given tag.</returns>
  1944. </member>
  1945. <member name="M:Google.Protobuf.FieldCodec.ForSFixed64(System.UInt32)">
  1946. <summary>
  1947. Retrieves a codec suitable for an sfixed64 field with the given tag.
  1948. </summary>
  1949. <param name="tag">The tag.</param>
  1950. <returns>A codec for the given tag.</returns>
  1951. </member>
  1952. <member name="M:Google.Protobuf.FieldCodec.ForUInt64(System.UInt32)">
  1953. <summary>
  1954. Retrieves a codec suitable for a uint64 field with the given tag.
  1955. </summary>
  1956. <param name="tag">The tag.</param>
  1957. <returns>A codec for the given tag.</returns>
  1958. </member>
  1959. <member name="M:Google.Protobuf.FieldCodec.ForFloat(System.UInt32)">
  1960. <summary>
  1961. Retrieves a codec suitable for a float field with the given tag.
  1962. </summary>
  1963. <param name="tag">The tag.</param>
  1964. <returns>A codec for the given tag.</returns>
  1965. </member>
  1966. <member name="M:Google.Protobuf.FieldCodec.ForDouble(System.UInt32)">
  1967. <summary>
  1968. Retrieves a codec suitable for a double field with the given tag.
  1969. </summary>
  1970. <param name="tag">The tag.</param>
  1971. <returns>A codec for the given tag.</returns>
  1972. </member>
  1973. <member name="M:Google.Protobuf.FieldCodec.ForEnum``1(System.UInt32,System.Func{``0,System.Int32},System.Func{System.Int32,``0})">
  1974. <summary>
  1975. Retrieves a codec suitable for an enum field with the given tag.
  1976. </summary>
  1977. <param name="tag">The tag.</param>
  1978. <param name="toInt32">A conversion function from <see cref="T:System.Int32"/> to the enum type.</param>
  1979. <param name="fromInt32">A conversion function from the enum type to <see cref="T:System.Int32"/>.</param>
  1980. <returns>A codec for the given tag.</returns>
  1981. </member>
  1982. <member name="M:Google.Protobuf.FieldCodec.ForString(System.UInt32,System.String)">
  1983. <summary>
  1984. Retrieves a codec suitable for a string field with the given tag.
  1985. </summary>
  1986. <param name="tag">The tag.</param>
  1987. <param name="defaultValue">The default value.</param>
  1988. <returns>A codec for the given tag.</returns>
  1989. </member>
  1990. <member name="M:Google.Protobuf.FieldCodec.ForBytes(System.UInt32,Google.Protobuf.ByteString)">
  1991. <summary>
  1992. Retrieves a codec suitable for a bytes field with the given tag.
  1993. </summary>
  1994. <param name="tag">The tag.</param>
  1995. <param name="defaultValue">The default value.</param>
  1996. <returns>A codec for the given tag.</returns>
  1997. </member>
  1998. <member name="M:Google.Protobuf.FieldCodec.ForBool(System.UInt32,System.Boolean)">
  1999. <summary>
  2000. Retrieves a codec suitable for a bool field with the given tag.
  2001. </summary>
  2002. <param name="tag">The tag.</param>
  2003. <param name="defaultValue">The default value.</param>
  2004. <returns>A codec for the given tag.</returns>
  2005. </member>
  2006. <member name="M:Google.Protobuf.FieldCodec.ForInt32(System.UInt32,System.Int32)">
  2007. <summary>
  2008. Retrieves a codec suitable for an int32 field with the given tag.
  2009. </summary>
  2010. <param name="tag">The tag.</param>
  2011. <param name="defaultValue">The default value.</param>
  2012. <returns>A codec for the given tag.</returns>
  2013. </member>
  2014. <member name="M:Google.Protobuf.FieldCodec.ForSInt32(System.UInt32,System.Int32)">
  2015. <summary>
  2016. Retrieves a codec suitable for an sint32 field with the given tag.
  2017. </summary>
  2018. <param name="tag">The tag.</param>
  2019. <param name="defaultValue">The default value.</param>
  2020. <returns>A codec for the given tag.</returns>
  2021. </member>
  2022. <member name="M:Google.Protobuf.FieldCodec.ForFixed32(System.UInt32,System.UInt32)">
  2023. <summary>
  2024. Retrieves a codec suitable for a fixed32 field with the given tag.
  2025. </summary>
  2026. <param name="tag">The tag.</param>
  2027. <param name="defaultValue">The default value.</param>
  2028. <returns>A codec for the given tag.</returns>
  2029. </member>
  2030. <member name="M:Google.Protobuf.FieldCodec.ForSFixed32(System.UInt32,System.Int32)">
  2031. <summary>
  2032. Retrieves a codec suitable for an sfixed32 field with the given tag.
  2033. </summary>
  2034. <param name="tag">The tag.</param>
  2035. <param name="defaultValue">The default value.</param>
  2036. <returns>A codec for the given tag.</returns>
  2037. </member>
  2038. <member name="M:Google.Protobuf.FieldCodec.ForUInt32(System.UInt32,System.UInt32)">
  2039. <summary>
  2040. Retrieves a codec suitable for a uint32 field with the given tag.
  2041. </summary>
  2042. <param name="tag">The tag.</param>
  2043. <param name="defaultValue">The default value.</param>
  2044. <returns>A codec for the given tag.</returns>
  2045. </member>
  2046. <member name="M:Google.Protobuf.FieldCodec.ForInt64(System.UInt32,System.Int64)">
  2047. <summary>
  2048. Retrieves a codec suitable for an int64 field with the given tag.
  2049. </summary>
  2050. <param name="tag">The tag.</param>
  2051. <param name="defaultValue">The default value.</param>
  2052. <returns>A codec for the given tag.</returns>
  2053. </member>
  2054. <member name="M:Google.Protobuf.FieldCodec.ForSInt64(System.UInt32,System.Int64)">
  2055. <summary>
  2056. Retrieves a codec suitable for an sint64 field with the given tag.
  2057. </summary>
  2058. <param name="tag">The tag.</param>
  2059. <param name="defaultValue">The default value.</param>
  2060. <returns>A codec for the given tag.</returns>
  2061. </member>
  2062. <member name="M:Google.Protobuf.FieldCodec.ForFixed64(System.UInt32,System.UInt64)">
  2063. <summary>
  2064. Retrieves a codec suitable for a fixed64 field with the given tag.
  2065. </summary>
  2066. <param name="tag">The tag.</param>
  2067. <param name="defaultValue">The default value.</param>
  2068. <returns>A codec for the given tag.</returns>
  2069. </member>
  2070. <member name="M:Google.Protobuf.FieldCodec.ForSFixed64(System.UInt32,System.Int64)">
  2071. <summary>
  2072. Retrieves a codec suitable for an sfixed64 field with the given tag.
  2073. </summary>
  2074. <param name="tag">The tag.</param>
  2075. <param name="defaultValue">The default value.</param>
  2076. <returns>A codec for the given tag.</returns>
  2077. </member>
  2078. <member name="M:Google.Protobuf.FieldCodec.ForUInt64(System.UInt32,System.UInt64)">
  2079. <summary>
  2080. Retrieves a codec suitable for a uint64 field with the given tag.
  2081. </summary>
  2082. <param name="tag">The tag.</param>
  2083. <param name="defaultValue">The default value.</param>
  2084. <returns>A codec for the given tag.</returns>
  2085. </member>
  2086. <member name="M:Google.Protobuf.FieldCodec.ForFloat(System.UInt32,System.Single)">
  2087. <summary>
  2088. Retrieves a codec suitable for a float field with the given tag.
  2089. </summary>
  2090. <param name="tag">The tag.</param>
  2091. <param name="defaultValue">The default value.</param>
  2092. <returns>A codec for the given tag.</returns>
  2093. </member>
  2094. <member name="M:Google.Protobuf.FieldCodec.ForDouble(System.UInt32,System.Double)">
  2095. <summary>
  2096. Retrieves a codec suitable for a double field with the given tag.
  2097. </summary>
  2098. <param name="tag">The tag.</param>
  2099. <param name="defaultValue">The default value.</param>
  2100. <returns>A codec for the given tag.</returns>
  2101. </member>
  2102. <member name="M:Google.Protobuf.FieldCodec.ForEnum``1(System.UInt32,System.Func{``0,System.Int32},System.Func{System.Int32,``0},``0)">
  2103. <summary>
  2104. Retrieves a codec suitable for an enum field with the given tag.
  2105. </summary>
  2106. <param name="tag">The tag.</param>
  2107. <param name="toInt32">A conversion function from <see cref="T:System.Int32"/> to the enum type.</param>
  2108. <param name="fromInt32">A conversion function from the enum type to <see cref="T:System.Int32"/>.</param>
  2109. <param name="defaultValue">The default value.</param>
  2110. <returns>A codec for the given tag.</returns>
  2111. </member>
  2112. <member name="M:Google.Protobuf.FieldCodec.ForMessage``1(System.UInt32,Google.Protobuf.MessageParser{``0})">
  2113. <summary>
  2114. Retrieves a codec suitable for a message field with the given tag.
  2115. </summary>
  2116. <param name="tag">The tag.</param>
  2117. <param name="parser">A parser to use for the message type.</param>
  2118. <returns>A codec for the given tag.</returns>
  2119. </member>
  2120. <member name="M:Google.Protobuf.FieldCodec.ForGroup``1(System.UInt32,System.UInt32,Google.Protobuf.MessageParser{``0})">
  2121. <summary>
  2122. Retrieves a codec suitable for a group field with the given tag.
  2123. </summary>
  2124. <param name="startTag">The start group tag.</param>
  2125. <param name="endTag">The end group tag.</param>
  2126. <param name="parser">A parser to use for the group message type.</param>
  2127. <returns>A codec for given tag</returns>
  2128. </member>
  2129. <member name="M:Google.Protobuf.FieldCodec.ForClassWrapper``1(System.UInt32)">
  2130. <summary>
  2131. Creates a codec for a wrapper type of a class - which must be string or ByteString.
  2132. </summary>
  2133. </member>
  2134. <member name="M:Google.Protobuf.FieldCodec.ForStructWrapper``1(System.UInt32)">
  2135. <summary>
  2136. Creates a codec for a wrapper type of a struct - which must be Int32, Int64, UInt32, UInt64,
  2137. Bool, Single or Double.
  2138. </summary>
  2139. </member>
  2140. <member name="T:Google.Protobuf.FieldCodec.WrapperCodecs">
  2141. <summary>
  2142. Helper code to create codecs for wrapper types.
  2143. </summary>
  2144. <remarks>
  2145. Somewhat ugly with all the static methods, but the conversions involved to/from nullable types make it
  2146. slightly tricky to improve. So long as we keep the public API (ForClassWrapper, ForStructWrapper) in place,
  2147. we can refactor later if we come up with something cleaner.
  2148. </remarks>
  2149. </member>
  2150. <member name="M:Google.Protobuf.FieldCodec.WrapperCodecs.GetCodec``1">
  2151. <summary>
  2152. Returns a field codec which effectively wraps a value of type T in a message.
  2153. </summary>
  2154. </member>
  2155. <member name="T:Google.Protobuf.FieldCodec`1">
  2156. <summary>
  2157. <para>
  2158. An encode/decode pair for a single field. This effectively encapsulates
  2159. all the information needed to read or write the field value from/to a coded
  2160. stream.
  2161. </para>
  2162. <para>
  2163. This class is public and has to be as it is used by generated code, but its public
  2164. API is very limited - just what the generated code needs to call directly.
  2165. </para>
  2166. </summary>
  2167. <remarks>
  2168. This never writes default values to the stream, and does not address "packedness"
  2169. in repeated fields itself, other than to know whether or not the field *should* be packed.
  2170. </remarks>
  2171. </member>
  2172. <member name="T:Google.Protobuf.FieldCodec`1.InputMerger">
  2173. <summary>
  2174. Merges an input stream into a value
  2175. </summary>
  2176. </member>
  2177. <member name="T:Google.Protobuf.FieldCodec`1.ValuesMerger">
  2178. <summary>
  2179. Merges a value into a reference to another value, returning a boolean if the value was set
  2180. </summary>
  2181. </member>
  2182. <member name="P:Google.Protobuf.FieldCodec`1.ValueWriter">
  2183. <summary>
  2184. Returns a delegate to write a value (unconditionally) to a coded output stream.
  2185. </summary>
  2186. </member>
  2187. <member name="P:Google.Protobuf.FieldCodec`1.ValueSizeCalculator">
  2188. <summary>
  2189. Returns the size calculator for just a value.
  2190. </summary>
  2191. </member>
  2192. <member name="P:Google.Protobuf.FieldCodec`1.ValueReader">
  2193. <summary>
  2194. Returns a delegate to read a value from a coded input stream. It is assumed that
  2195. the stream is already positioned on the appropriate tag.
  2196. </summary>
  2197. </member>
  2198. <member name="P:Google.Protobuf.FieldCodec`1.ValueMerger">
  2199. <summary>
  2200. Returns a delegate to merge a value from a coded input stream.
  2201. It is assumed that the stream is already positioned on the appropriate tag
  2202. </summary>
  2203. </member>
  2204. <member name="P:Google.Protobuf.FieldCodec`1.FieldMerger">
  2205. <summary>
  2206. Returns a delegate to merge two values together.
  2207. </summary>
  2208. </member>
  2209. <member name="P:Google.Protobuf.FieldCodec`1.FixedSize">
  2210. <summary>
  2211. Returns the fixed size for an entry, or 0 if sizes vary.
  2212. </summary>
  2213. </member>
  2214. <member name="P:Google.Protobuf.FieldCodec`1.Tag">
  2215. <summary>
  2216. Gets the tag of the codec.
  2217. </summary>
  2218. <value>
  2219. The tag of the codec.
  2220. </value>
  2221. </member>
  2222. <member name="P:Google.Protobuf.FieldCodec`1.EndTag">
  2223. <summary>
  2224. Gets the end tag of the codec or 0 if there is no end tag
  2225. </summary>
  2226. <value>
  2227. The end tag of the codec.
  2228. </value>
  2229. </member>
  2230. <member name="P:Google.Protobuf.FieldCodec`1.DefaultValue">
  2231. <summary>
  2232. Default value for this codec. Usually the same for every instance of the same type, but
  2233. for string/ByteString wrapper fields the codec's default value is null, whereas for
  2234. other string/ByteString fields it's "" or ByteString.Empty.
  2235. </summary>
  2236. <value>
  2237. The default value of the codec's type.
  2238. </value>
  2239. </member>
  2240. <member name="M:Google.Protobuf.FieldCodec`1.WriteTagAndValue(Google.Protobuf.CodedOutputStream,`0)">
  2241. <summary>
  2242. Write a tag and the given value, *if* the value is not the default.
  2243. </summary>
  2244. </member>
  2245. <member name="M:Google.Protobuf.FieldCodec`1.WriteTagAndValue(Google.Protobuf.WriteContext@,`0)">
  2246. <summary>
  2247. Write a tag and the given value, *if* the value is not the default.
  2248. </summary>
  2249. </member>
  2250. <member name="M:Google.Protobuf.FieldCodec`1.Read(Google.Protobuf.CodedInputStream)">
  2251. <summary>
  2252. Reads a value of the codec type from the given <see cref="T:Google.Protobuf.CodedInputStream"/>.
  2253. </summary>
  2254. <param name="input">The input stream to read from.</param>
  2255. <returns>The value read from the stream.</returns>
  2256. </member>
  2257. <member name="M:Google.Protobuf.FieldCodec`1.Read(Google.Protobuf.ParseContext@)">
  2258. <summary>
  2259. Reads a value of the codec type from the given <see cref="T:Google.Protobuf.ParseContext"/>.
  2260. </summary>
  2261. <param name="ctx">The parse context to read from.</param>
  2262. <returns>The value read.</returns>
  2263. </member>
  2264. <member name="M:Google.Protobuf.FieldCodec`1.CalculateSizeWithTag(`0)">
  2265. <summary>
  2266. Calculates the size required to write the given value, with a tag,
  2267. if the value is not the default.
  2268. </summary>
  2269. </member>
  2270. <member name="T:Google.Protobuf.FieldMaskTree">
  2271. <summary>
  2272. <para>A tree representation of a FieldMask. Each leaf node in this tree represent
  2273. a field path in the FieldMask.</para>
  2274. <para>For example, FieldMask "foo.bar,foo.baz,bar.baz" as a tree will be:</para>
  2275. <code>
  2276. [root] -+- foo -+- bar
  2277. | |
  2278. | +- baz
  2279. |
  2280. +- bar --- baz
  2281. </code>
  2282. <para>By representing FieldMasks with this tree structure we can easily convert
  2283. a FieldMask to a canonical form, merge two FieldMasks, calculate the
  2284. intersection to two FieldMasks and traverse all fields specified by the
  2285. FieldMask in a message tree.</para>
  2286. </summary>
  2287. </member>
  2288. <member name="M:Google.Protobuf.FieldMaskTree.#ctor">
  2289. <summary>
  2290. Creates an empty FieldMaskTree.
  2291. </summary>
  2292. </member>
  2293. <member name="M:Google.Protobuf.FieldMaskTree.#ctor(Google.Protobuf.WellKnownTypes.FieldMask)">
  2294. <summary>
  2295. Creates a FieldMaskTree for a given FieldMask.
  2296. </summary>
  2297. </member>
  2298. <member name="M:Google.Protobuf.FieldMaskTree.AddFieldPath(System.String)">
  2299. <summary>
  2300. Adds a field path to the tree. In a FieldMask, every field path matches the
  2301. specified field as well as all its sub-fields. For example, a field path
  2302. "foo.bar" matches field "foo.bar" and also "foo.bar.baz", etc. When adding
  2303. a field path to the tree, redundant sub-paths will be removed. That is,
  2304. after adding "foo.bar" to the tree, "foo.bar.baz" will be removed if it
  2305. exists, which will turn the tree node for "foo.bar" to a leaf node.
  2306. Likewise, if the field path to add is a sub-path of an existing leaf node,
  2307. nothing will be changed in the tree.
  2308. </summary>
  2309. </member>
  2310. <member name="M:Google.Protobuf.FieldMaskTree.MergeFromFieldMask(Google.Protobuf.WellKnownTypes.FieldMask)">
  2311. <summary>
  2312. Merges all field paths in a FieldMask into this tree.
  2313. </summary>
  2314. </member>
  2315. <member name="M:Google.Protobuf.FieldMaskTree.ToFieldMask">
  2316. <summary>
  2317. Converts this tree to a FieldMask.
  2318. </summary>
  2319. </member>
  2320. <member name="M:Google.Protobuf.FieldMaskTree.GetFieldPaths(Google.Protobuf.FieldMaskTree.Node,System.String,System.Collections.Generic.List{System.String})">
  2321. <summary>
  2322. Gathers all field paths in a sub-tree.
  2323. </summary>
  2324. </member>
  2325. <member name="M:Google.Protobuf.FieldMaskTree.IntersectFieldPath(System.String,Google.Protobuf.FieldMaskTree)">
  2326. <summary>
  2327. Adds the intersection of this tree with the given <paramref name="path"/> to <paramref name="output"/>.
  2328. </summary>
  2329. </member>
  2330. <member name="M:Google.Protobuf.FieldMaskTree.Merge(Google.Protobuf.IMessage,Google.Protobuf.IMessage,Google.Protobuf.WellKnownTypes.FieldMask.MergeOptions)">
  2331. <summary>
  2332. Merges all fields specified by this FieldMaskTree from <paramref name="source"/> to <paramref name="destination"/>.
  2333. </summary>
  2334. </member>
  2335. <member name="M:Google.Protobuf.FieldMaskTree.Merge(Google.Protobuf.FieldMaskTree.Node,System.String,Google.Protobuf.IMessage,Google.Protobuf.IMessage,Google.Protobuf.WellKnownTypes.FieldMask.MergeOptions)">
  2336. <summary>
  2337. Merges all fields specified by a sub-tree from <paramref name="source"/> to <paramref name="destination"/>.
  2338. </summary>
  2339. </member>
  2340. <member name="T:Google.Protobuf.FrameworkPortability">
  2341. <summary>
  2342. Class containing helpful workarounds for various platform compatibility
  2343. </summary>
  2344. </member>
  2345. <member name="T:Google.Protobuf.IBufferMessage">
  2346. <summary>
  2347. Interface for a Protocol Buffers message, supporting
  2348. parsing from <see cref="T:Google.Protobuf.ParseContext"/> and writing to <see cref="T:Google.Protobuf.WriteContext"/>.
  2349. </summary>
  2350. </member>
  2351. <member name="M:Google.Protobuf.IBufferMessage.InternalMergeFrom(Google.Protobuf.ParseContext@)">
  2352. <summary>
  2353. Internal implementation of merging data from given parse context into this message.
  2354. Users should never invoke this method directly.
  2355. </summary>
  2356. </member>
  2357. <member name="M:Google.Protobuf.IBufferMessage.InternalWriteTo(Google.Protobuf.WriteContext@)">
  2358. <summary>
  2359. Internal implementation of writing this message to a given write context.
  2360. Users should never invoke this method directly.
  2361. </summary>
  2362. </member>
  2363. <member name="T:Google.Protobuf.ICustomDiagnosticMessage">
  2364. <summary>
  2365. A message type that has a custom string format for diagnostic purposes.
  2366. </summary>
  2367. <remarks>
  2368. <para>
  2369. Calling <see cref="M:System.Object.ToString"/> on a generated message type normally
  2370. returns the JSON representation. If a message type implements this interface,
  2371. then the <see cref="M:Google.Protobuf.ICustomDiagnosticMessage.ToDiagnosticString"/> method will be called instead of the regular
  2372. JSON formatting code, but only when <c>ToString()</c> is called either on the message itself
  2373. or on another message which contains it. This does not affect the normal JSON formatting of
  2374. the message.
  2375. </para>
  2376. <para>
  2377. For example, if you create a proto message representing a GUID, the internal
  2378. representation may be a <c>bytes</c> field or four <c>fixed32</c> fields. However, when debugging
  2379. it may be more convenient to see a result in the same format as <see cref="T:System.Guid"/> provides.
  2380. </para>
  2381. <para>This interface extends <see cref="T:Google.Protobuf.IMessage"/> to avoid it accidentally being implemented
  2382. on types other than messages, where it would not be used by anything in the framework.</para>
  2383. </remarks>
  2384. </member>
  2385. <member name="M:Google.Protobuf.ICustomDiagnosticMessage.ToDiagnosticString">
  2386. <summary>
  2387. Returns a string representation of this object, for diagnostic purposes.
  2388. </summary>
  2389. <remarks>
  2390. This method is called when a message is formatted as part of a <see cref="M:System.Object.ToString"/>
  2391. call. It does not affect the JSON representation used by <see cref="T:Google.Protobuf.JsonFormatter"/> other than
  2392. in calls to <see cref="M:Google.Protobuf.JsonFormatter.ToDiagnosticString(Google.Protobuf.IMessage)"/>. While it is recommended
  2393. that the result is valid JSON, this is never assumed by the Protobuf library.
  2394. </remarks>
  2395. <returns>A string representation of this object, for diagnostic purposes.</returns>
  2396. </member>
  2397. <member name="T:Google.Protobuf.IDeepCloneable`1">
  2398. <summary>
  2399. Generic interface for a deeply cloneable type.
  2400. </summary>
  2401. <remarks>
  2402. <para>
  2403. All generated messages implement this interface, but so do some non-message types.
  2404. Additionally, due to the type constraint on <c>T</c> in <see cref="T:Google.Protobuf.IMessage`1"/>,
  2405. it is simpler to keep this as a separate interface.
  2406. </para>
  2407. </remarks>
  2408. <typeparam name="T">The type itself, returned by the <see cref="M:Google.Protobuf.IDeepCloneable`1.Clone"/> method.</typeparam>
  2409. </member>
  2410. <member name="M:Google.Protobuf.IDeepCloneable`1.Clone">
  2411. <summary>
  2412. Creates a deep clone of this object.
  2413. </summary>
  2414. <returns>A deep clone of this object.</returns>
  2415. </member>
  2416. <member name="T:Google.Protobuf.IExtendableMessage`1">
  2417. <summary>
  2418. Generic interface for a Protocol Buffers message containing one or more extensions, where the type parameter is expected to be the same type as the implementation class.
  2419. This interface is experiemental and is subject to change.
  2420. </summary>
  2421. </member>
  2422. <member name="M:Google.Protobuf.IExtendableMessage`1.GetExtension``1(Google.Protobuf.Extension{`0,``0})">
  2423. <summary>
  2424. Gets the value of the specified extension
  2425. </summary>
  2426. </member>
  2427. <member name="M:Google.Protobuf.IExtendableMessage`1.GetExtension``1(Google.Protobuf.RepeatedExtension{`0,``0})">
  2428. <summary>
  2429. Gets the value of the specified repeated extension or null if the extension isn't registered in this set.
  2430. For a version of this method that never returns null, use <see cref="M:Google.Protobuf.IExtendableMessage`1.GetOrInitializeExtension``1(Google.Protobuf.RepeatedExtension{`0,``0})"/>
  2431. </summary>
  2432. </member>
  2433. <member name="M:Google.Protobuf.IExtendableMessage`1.GetOrInitializeExtension``1(Google.Protobuf.RepeatedExtension{`0,``0})">
  2434. <summary>
  2435. Gets the value of the specified repeated extension, registering it if it hasn't already been registered.
  2436. </summary>
  2437. </member>
  2438. <member name="M:Google.Protobuf.IExtendableMessage`1.SetExtension``1(Google.Protobuf.Extension{`0,``0},``0)">
  2439. <summary>
  2440. Sets the value of the specified extension
  2441. </summary>
  2442. </member>
  2443. <member name="M:Google.Protobuf.IExtendableMessage`1.HasExtension``1(Google.Protobuf.Extension{`0,``0})">
  2444. <summary>
  2445. Gets whether the value of the specified extension is set
  2446. </summary>
  2447. </member>
  2448. <member name="M:Google.Protobuf.IExtendableMessage`1.ClearExtension``1(Google.Protobuf.Extension{`0,``0})">
  2449. <summary>
  2450. Clears the value of the specified extension
  2451. </summary>
  2452. </member>
  2453. <member name="M:Google.Protobuf.IExtendableMessage`1.ClearExtension``1(Google.Protobuf.RepeatedExtension{`0,``0})">
  2454. <summary>
  2455. Clears the value of the specified repeated extension
  2456. </summary>
  2457. </member>
  2458. <member name="T:Google.Protobuf.IMessage">
  2459. <summary>
  2460. Interface for a Protocol Buffers message, supporting
  2461. basic operations required for serialization.
  2462. </summary>
  2463. </member>
  2464. <member name="M:Google.Protobuf.IMessage.MergeFrom(Google.Protobuf.CodedInputStream)">
  2465. <summary>
  2466. Merges the data from the specified coded input stream with the current message.
  2467. </summary>
  2468. <remarks>See the user guide for precise merge semantics.</remarks>
  2469. <param name="input"></param>
  2470. </member>
  2471. <member name="M:Google.Protobuf.IMessage.WriteTo(Google.Protobuf.CodedOutputStream)">
  2472. <summary>
  2473. Writes the data to the given coded output stream.
  2474. </summary>
  2475. <param name="output">Coded output stream to write the data to. Must not be null.</param>
  2476. </member>
  2477. <member name="M:Google.Protobuf.IMessage.CalculateSize">
  2478. <summary>
  2479. Calculates the size of this message in Protocol Buffer wire format, in bytes.
  2480. </summary>
  2481. <returns>The number of bytes required to write this message
  2482. to a coded output stream.</returns>
  2483. </member>
  2484. <member name="P:Google.Protobuf.IMessage.Descriptor">
  2485. <summary>
  2486. Descriptor for this message. All instances are expected to return the same descriptor,
  2487. and for generated types this will be an explicitly-implemented member, returning the
  2488. same value as the static property declared on the type.
  2489. </summary>
  2490. </member>
  2491. <member name="T:Google.Protobuf.IMessage`1">
  2492. <summary>
  2493. Generic interface for a Protocol Buffers message,
  2494. where the type parameter is expected to be the same type as
  2495. the implementation class.
  2496. </summary>
  2497. <typeparam name="T">The message type.</typeparam>
  2498. </member>
  2499. <member name="M:Google.Protobuf.IMessage`1.MergeFrom(`0)">
  2500. <summary>
  2501. Merges the given message into this one.
  2502. </summary>
  2503. <remarks>See the user guide for precise merge semantics.</remarks>
  2504. <param name="message">The message to merge with this one. Must not be null.</param>
  2505. </member>
  2506. <member name="T:Google.Protobuf.InvalidJsonException">
  2507. <summary>
  2508. Thrown when an attempt is made to parse invalid JSON, e.g. using
  2509. a non-string property key, or including a redundant comma. Parsing a protocol buffer
  2510. message represented in JSON using <see cref="T:Google.Protobuf.JsonParser"/> can throw both this
  2511. exception and <see cref="T:Google.Protobuf.InvalidProtocolBufferException"/> depending on the situation. This
  2512. exception is only thrown for "pure JSON" errors, whereas <c>InvalidProtocolBufferException</c>
  2513. is thrown when the JSON may be valid in and of itself, but cannot be parsed as a protocol buffer
  2514. message.
  2515. </summary>
  2516. </member>
  2517. <member name="T:Google.Protobuf.InvalidProtocolBufferException">
  2518. <summary>
  2519. Thrown when a protocol message being parsed is invalid in some way,
  2520. e.g. it contains a malformed varint or a negative byte length.
  2521. </summary>
  2522. </member>
  2523. <member name="M:Google.Protobuf.InvalidProtocolBufferException.InvalidTag">
  2524. <summary>
  2525. Creates an exception for an error condition of an invalid tag being encountered.
  2526. </summary>
  2527. </member>
  2528. <member name="T:Google.Protobuf.JsonFormatter">
  2529. <summary>
  2530. Reflection-based converter from messages to JSON.
  2531. </summary>
  2532. <remarks>
  2533. <para>
  2534. Instances of this class are thread-safe, with no mutable state.
  2535. </para>
  2536. <para>
  2537. This is a simple start to get JSON formatting working. As it's reflection-based,
  2538. it's not as quick as baking calls into generated messages - but is a simpler implementation.
  2539. (This code is generally not heavily optimized.)
  2540. </para>
  2541. </remarks>
  2542. </member>
  2543. <member name="P:Google.Protobuf.JsonFormatter.Default">
  2544. <summary>
  2545. Returns a formatter using the default settings.
  2546. </summary>
  2547. </member>
  2548. <member name="F:Google.Protobuf.JsonFormatter.CommonRepresentations">
  2549. <summary>
  2550. The JSON representation of the first 160 characters of Unicode.
  2551. Empty strings are replaced by the static constructor.
  2552. </summary>
  2553. </member>
  2554. <member name="M:Google.Protobuf.JsonFormatter.#ctor(Google.Protobuf.JsonFormatter.Settings)">
  2555. <summary>
  2556. Creates a new formatted with the given settings.
  2557. </summary>
  2558. <param name="settings">The settings.</param>
  2559. </member>
  2560. <member name="M:Google.Protobuf.JsonFormatter.Format(Google.Protobuf.IMessage)">
  2561. <summary>
  2562. Formats the specified message as JSON.
  2563. </summary>
  2564. <param name="message">The message to format.</param>
  2565. <returns>The formatted message.</returns>
  2566. </member>
  2567. <member name="M:Google.Protobuf.JsonFormatter.Format(Google.Protobuf.IMessage,System.IO.TextWriter)">
  2568. <summary>
  2569. Formats the specified message as JSON.
  2570. </summary>
  2571. <param name="message">The message to format.</param>
  2572. <param name="writer">The TextWriter to write the formatted message to.</param>
  2573. <returns>The formatted message.</returns>
  2574. </member>
  2575. <member name="M:Google.Protobuf.JsonFormatter.ToDiagnosticString(Google.Protobuf.IMessage)">
  2576. <summary>
  2577. Converts a message to JSON for diagnostic purposes with no extra context.
  2578. </summary>
  2579. <remarks>
  2580. <para>
  2581. This differs from calling <see cref="M:Google.Protobuf.JsonFormatter.Format(Google.Protobuf.IMessage)"/> on the default JSON
  2582. formatter in its handling of <see cref="T:Google.Protobuf.WellKnownTypes.Any"/>. As no type registry is available
  2583. in <see cref="M:System.Object.ToString"/> calls, the normal way of resolving the type of
  2584. an <c>Any</c> message cannot be applied. Instead, a JSON property named <c>@value</c>
  2585. is included with the base64 data from the <see cref="P:Google.Protobuf.WellKnownTypes.Any.Value"/> property of the message.
  2586. </para>
  2587. <para>The value returned by this method is only designed to be used for diagnostic
  2588. purposes. It may not be parsable by <see cref="T:Google.Protobuf.JsonParser"/>, and may not be parsable
  2589. by other Protocol Buffer implementations.</para>
  2590. </remarks>
  2591. <param name="message">The message to format for diagnostic purposes.</param>
  2592. <returns>The diagnostic-only JSON representation of the message</returns>
  2593. </member>
  2594. <member name="M:Google.Protobuf.JsonFormatter.ShouldFormatFieldValue(Google.Protobuf.IMessage,Google.Protobuf.Reflection.FieldDescriptor,System.Object)">
  2595. <summary>
  2596. Determines whether or not a field value should be serialized according to the field,
  2597. its value in the message, and the settings of this formatter.
  2598. </summary>
  2599. </member>
  2600. <member name="M:Google.Protobuf.JsonFormatter.WriteValue(System.IO.TextWriter,System.Object)">
  2601. <summary>
  2602. Writes a single value to the given writer as JSON. Only types understood by
  2603. Protocol Buffers can be written in this way. This method is only exposed for
  2604. advanced use cases; most users should be using <see cref="M:Google.Protobuf.JsonFormatter.Format(Google.Protobuf.IMessage)"/>
  2605. or <see cref="M:Google.Protobuf.JsonFormatter.Format(Google.Protobuf.IMessage,System.IO.TextWriter)"/>.
  2606. </summary>
  2607. <param name="writer">The writer to write the value to. Must not be null.</param>
  2608. <param name="value">The value to write. May be null.</param>
  2609. </member>
  2610. <member name="M:Google.Protobuf.JsonFormatter.WriteWellKnownTypeValue(System.IO.TextWriter,Google.Protobuf.Reflection.MessageDescriptor,System.Object)">
  2611. <summary>
  2612. Central interception point for well-known type formatting. Any well-known types which
  2613. don't need special handling can fall back to WriteMessage. We avoid assuming that the
  2614. values are using the embedded well-known types, in order to allow for dynamic messages
  2615. in the future.
  2616. </summary>
  2617. </member>
  2618. <member name="M:Google.Protobuf.JsonFormatter.WriteString(System.IO.TextWriter,System.String)">
  2619. <summary>
  2620. Writes a string (including leading and trailing double quotes) to a builder, escaping as required.
  2621. </summary>
  2622. <remarks>
  2623. Other than surrogate pair handling, this code is mostly taken from src/google/protobuf/util/internal/json_escaping.cc.
  2624. </remarks>
  2625. </member>
  2626. <member name="T:Google.Protobuf.JsonFormatter.Settings">
  2627. <summary>
  2628. Settings controlling JSON formatting.
  2629. </summary>
  2630. </member>
  2631. <member name="P:Google.Protobuf.JsonFormatter.Settings.Default">
  2632. <summary>
  2633. Default settings, as used by <see cref="P:Google.Protobuf.JsonFormatter.Default"/>
  2634. </summary>
  2635. </member>
  2636. <member name="P:Google.Protobuf.JsonFormatter.Settings.FormatDefaultValues">
  2637. <summary>
  2638. Whether fields which would otherwise not be included in the formatted data
  2639. should be formatted even when the value is not present, or has the default value.
  2640. This option only affects fields which don't support "presence" (e.g.
  2641. singular non-optional proto3 primitive fields).
  2642. </summary>
  2643. </member>
  2644. <member name="P:Google.Protobuf.JsonFormatter.Settings.TypeRegistry">
  2645. <summary>
  2646. The type registry used to format <see cref="T:Google.Protobuf.WellKnownTypes.Any"/> messages.
  2647. </summary>
  2648. </member>
  2649. <member name="P:Google.Protobuf.JsonFormatter.Settings.FormatEnumsAsIntegers">
  2650. <summary>
  2651. Whether to format enums as ints. Defaults to false.
  2652. </summary>
  2653. </member>
  2654. <member name="M:Google.Protobuf.JsonFormatter.Settings.#ctor(System.Boolean)">
  2655. <summary>
  2656. Creates a new <see cref="T:Google.Protobuf.JsonFormatter.Settings"/> object with the specified formatting of default values
  2657. and an empty type registry.
  2658. </summary>
  2659. <param name="formatDefaultValues"><c>true</c> if default values (0, empty strings etc) should be formatted; <c>false</c> otherwise.</param>
  2660. </member>
  2661. <member name="M:Google.Protobuf.JsonFormatter.Settings.#ctor(System.Boolean,Google.Protobuf.Reflection.TypeRegistry)">
  2662. <summary>
  2663. Creates a new <see cref="T:Google.Protobuf.JsonFormatter.Settings"/> object with the specified formatting of default values
  2664. and type registry.
  2665. </summary>
  2666. <param name="formatDefaultValues"><c>true</c> if default values (0, empty strings etc) should be formatted; <c>false</c> otherwise.</param>
  2667. <param name="typeRegistry">The <see cref="P:Google.Protobuf.JsonFormatter.Settings.TypeRegistry"/> to use when formatting <see cref="T:Google.Protobuf.WellKnownTypes.Any"/> messages.</param>
  2668. </member>
  2669. <member name="M:Google.Protobuf.JsonFormatter.Settings.#ctor(System.Boolean,Google.Protobuf.Reflection.TypeRegistry,System.Boolean)">
  2670. <summary>
  2671. Creates a new <see cref="T:Google.Protobuf.JsonFormatter.Settings"/> object with the specified parameters.
  2672. </summary>
  2673. <param name="formatDefaultValues"><c>true</c> if default values (0, empty strings etc) should be formatted; <c>false</c> otherwise.</param>
  2674. <param name="typeRegistry">The <see cref="P:Google.Protobuf.JsonFormatter.Settings.TypeRegistry"/> to use when formatting <see cref="T:Google.Protobuf.WellKnownTypes.Any"/> messages. TypeRegistry.Empty will be used if it is null.</param>
  2675. <param name="formatEnumsAsIntegers"><c>true</c> to format the enums as integers; <c>false</c> to format enums as enum names.</param>
  2676. </member>
  2677. <member name="M:Google.Protobuf.JsonFormatter.Settings.WithFormatDefaultValues(System.Boolean)">
  2678. <summary>
  2679. Creates a new <see cref="T:Google.Protobuf.JsonFormatter.Settings"/> object with the specified formatting of default values and the current settings.
  2680. </summary>
  2681. <param name="formatDefaultValues"><c>true</c> if default values (0, empty strings etc) should be formatted; <c>false</c> otherwise.</param>
  2682. </member>
  2683. <member name="M:Google.Protobuf.JsonFormatter.Settings.WithTypeRegistry(Google.Protobuf.Reflection.TypeRegistry)">
  2684. <summary>
  2685. Creates a new <see cref="T:Google.Protobuf.JsonFormatter.Settings"/> object with the specified type registry and the current settings.
  2686. </summary>
  2687. <param name="typeRegistry">The <see cref="P:Google.Protobuf.JsonFormatter.Settings.TypeRegistry"/> to use when formatting <see cref="T:Google.Protobuf.WellKnownTypes.Any"/> messages.</param>
  2688. </member>
  2689. <member name="M:Google.Protobuf.JsonFormatter.Settings.WithFormatEnumsAsIntegers(System.Boolean)">
  2690. <summary>
  2691. Creates a new <see cref="T:Google.Protobuf.JsonFormatter.Settings"/> object with the specified enums formatting option and the current settings.
  2692. </summary>
  2693. <param name="formatEnumsAsIntegers"><c>true</c> to format the enums as integers; <c>false</c> to format enums as enum names.</param>
  2694. </member>
  2695. <member name="T:Google.Protobuf.JsonParser">
  2696. <summary>
  2697. Reflection-based converter from JSON to messages.
  2698. </summary>
  2699. <remarks>
  2700. <para>
  2701. Instances of this class are thread-safe, with no mutable state.
  2702. </para>
  2703. <para>
  2704. This is a simple start to get JSON parsing working. As it's reflection-based,
  2705. it's not as quick as baking calls into generated messages - but is a simpler implementation.
  2706. (This code is generally not heavily optimized.)
  2707. </para>
  2708. </remarks>
  2709. </member>
  2710. <member name="P:Google.Protobuf.JsonParser.Default">
  2711. <summary>
  2712. Returns a formatter using the default settings.
  2713. </summary>
  2714. </member>
  2715. <member name="M:Google.Protobuf.JsonParser.#ctor(Google.Protobuf.JsonParser.Settings)">
  2716. <summary>
  2717. Creates a new formatted with the given settings.
  2718. </summary>
  2719. <param name="settings">The settings.</param>
  2720. </member>
  2721. <member name="M:Google.Protobuf.JsonParser.Merge(Google.Protobuf.IMessage,System.String)">
  2722. <summary>
  2723. Parses <paramref name="json"/> and merges the information into the given message.
  2724. </summary>
  2725. <param name="message">The message to merge the JSON information into.</param>
  2726. <param name="json">The JSON to parse.</param>
  2727. </member>
  2728. <member name="M:Google.Protobuf.JsonParser.Merge(Google.Protobuf.IMessage,System.IO.TextReader)">
  2729. <summary>
  2730. Parses JSON read from <paramref name="jsonReader"/> and merges the information into the given message.
  2731. </summary>
  2732. <param name="message">The message to merge the JSON information into.</param>
  2733. <param name="jsonReader">Reader providing the JSON to parse.</param>
  2734. </member>
  2735. <member name="M:Google.Protobuf.JsonParser.Merge(Google.Protobuf.IMessage,Google.Protobuf.JsonTokenizer)">
  2736. <summary>
  2737. Merges the given message using data from the given tokenizer. In most cases, the next
  2738. token should be a "start object" token, but wrapper types and nullity can invalidate
  2739. that assumption. This is implemented as an LL(1) recursive descent parser over the stream
  2740. of tokens provided by the tokenizer. This token stream is assumed to be valid JSON, with the
  2741. tokenizer performing that validation - but not every token stream is valid "protobuf JSON".
  2742. </summary>
  2743. </member>
  2744. <member name="M:Google.Protobuf.JsonParser.Parse``1(System.String)">
  2745. <summary>
  2746. Parses <paramref name="json"/> into a new message.
  2747. </summary>
  2748. <typeparam name="T">The type of message to create.</typeparam>
  2749. <param name="json">The JSON to parse.</param>
  2750. <exception cref="T:Google.Protobuf.InvalidJsonException">The JSON does not comply with RFC 7159</exception>
  2751. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">The JSON does not represent a Protocol Buffers message correctly</exception>
  2752. </member>
  2753. <member name="M:Google.Protobuf.JsonParser.Parse``1(System.IO.TextReader)">
  2754. <summary>
  2755. Parses JSON read from <paramref name="jsonReader"/> into a new message.
  2756. </summary>
  2757. <typeparam name="T">The type of message to create.</typeparam>
  2758. <param name="jsonReader">Reader providing the JSON to parse.</param>
  2759. <exception cref="T:Google.Protobuf.InvalidJsonException">The JSON does not comply with RFC 7159</exception>
  2760. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">The JSON does not represent a Protocol Buffers message correctly</exception>
  2761. </member>
  2762. <member name="M:Google.Protobuf.JsonParser.Parse(System.String,Google.Protobuf.Reflection.MessageDescriptor)">
  2763. <summary>
  2764. Parses <paramref name="json"/> into a new message.
  2765. </summary>
  2766. <param name="json">The JSON to parse.</param>
  2767. <param name="descriptor">Descriptor of message type to parse.</param>
  2768. <exception cref="T:Google.Protobuf.InvalidJsonException">The JSON does not comply with RFC 7159</exception>
  2769. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">The JSON does not represent a Protocol Buffers message correctly</exception>
  2770. </member>
  2771. <member name="M:Google.Protobuf.JsonParser.Parse(System.IO.TextReader,Google.Protobuf.Reflection.MessageDescriptor)">
  2772. <summary>
  2773. Parses JSON read from <paramref name="jsonReader"/> into a new message.
  2774. </summary>
  2775. <param name="jsonReader">Reader providing the JSON to parse.</param>
  2776. <param name="descriptor">Descriptor of message type to parse.</param>
  2777. <exception cref="T:Google.Protobuf.InvalidJsonException">The JSON does not comply with RFC 7159</exception>
  2778. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">The JSON does not represent a Protocol Buffers message correctly</exception>
  2779. </member>
  2780. <member name="M:Google.Protobuf.JsonParser.NewMessageForField(Google.Protobuf.Reflection.FieldDescriptor)">
  2781. <summary>
  2782. Creates a new instance of the message type for the given field.
  2783. </summary>
  2784. </member>
  2785. <member name="M:Google.Protobuf.JsonParser.ValidateInfinityAndNan(System.String,System.Boolean,System.Boolean,System.Boolean)">
  2786. <summary>
  2787. Checks that any infinite/NaN values originated from the correct text.
  2788. This corrects the lenient whitespace handling of double.Parse/float.Parse, as well as the
  2789. way that Mono parses out-of-range values as infinity.
  2790. </summary>
  2791. </member>
  2792. <member name="T:Google.Protobuf.JsonParser.Settings">
  2793. <summary>
  2794. Settings controlling JSON parsing.
  2795. </summary>
  2796. </member>
  2797. <member name="P:Google.Protobuf.JsonParser.Settings.Default">
  2798. <summary>
  2799. Default settings, as used by <see cref="P:Google.Protobuf.JsonParser.Default"/>. This has the same default
  2800. recursion limit as <see cref="T:Google.Protobuf.CodedInputStream"/>, and an empty type registry.
  2801. </summary>
  2802. </member>
  2803. <member name="P:Google.Protobuf.JsonParser.Settings.RecursionLimit">
  2804. <summary>
  2805. The maximum depth of messages to parse. Note that this limit only applies to parsing
  2806. messages, not collections - so a message within a collection within a message only counts as
  2807. depth 2, not 3.
  2808. </summary>
  2809. </member>
  2810. <member name="P:Google.Protobuf.JsonParser.Settings.TypeRegistry">
  2811. <summary>
  2812. The type registry used to parse <see cref="T:Google.Protobuf.WellKnownTypes.Any"/> messages.
  2813. </summary>
  2814. </member>
  2815. <member name="P:Google.Protobuf.JsonParser.Settings.IgnoreUnknownFields">
  2816. <summary>
  2817. Whether the parser should ignore unknown fields (<c>true</c>) or throw an exception when
  2818. they are encountered (<c>false</c>).
  2819. </summary>
  2820. </member>
  2821. <member name="M:Google.Protobuf.JsonParser.Settings.#ctor(System.Int32)">
  2822. <summary>
  2823. Creates a new <see cref="T:Google.Protobuf.JsonParser.Settings"/> object with the specified recursion limit.
  2824. </summary>
  2825. <param name="recursionLimit">The maximum depth of messages to parse</param>
  2826. </member>
  2827. <member name="M:Google.Protobuf.JsonParser.Settings.#ctor(System.Int32,Google.Protobuf.Reflection.TypeRegistry)">
  2828. <summary>
  2829. Creates a new <see cref="T:Google.Protobuf.JsonParser.Settings"/> object with the specified recursion limit and type registry.
  2830. </summary>
  2831. <param name="recursionLimit">The maximum depth of messages to parse</param>
  2832. <param name="typeRegistry">The type registry used to parse <see cref="T:Google.Protobuf.WellKnownTypes.Any"/> messages</param>
  2833. </member>
  2834. <member name="M:Google.Protobuf.JsonParser.Settings.WithIgnoreUnknownFields(System.Boolean)">
  2835. <summary>
  2836. Creates a new <see cref="T:Google.Protobuf.JsonParser.Settings"/> object set to either ignore unknown fields, or throw an exception
  2837. when unknown fields are encountered.
  2838. </summary>
  2839. <param name="ignoreUnknownFields"><c>true</c> if unknown fields should be ignored when parsing; <c>false</c> to throw an exception.</param>
  2840. </member>
  2841. <member name="M:Google.Protobuf.JsonParser.Settings.WithRecursionLimit(System.Int32)">
  2842. <summary>
  2843. Creates a new <see cref="T:Google.Protobuf.JsonParser.Settings"/> object based on this one, but with the specified recursion limit.
  2844. </summary>
  2845. <param name="recursionLimit">The new recursion limit.</param>
  2846. </member>
  2847. <member name="M:Google.Protobuf.JsonParser.Settings.WithTypeRegistry(Google.Protobuf.Reflection.TypeRegistry)">
  2848. <summary>
  2849. Creates a new <see cref="T:Google.Protobuf.JsonParser.Settings"/> object based on this one, but with the specified type registry.
  2850. </summary>
  2851. <param name="typeRegistry">The new type registry. Must not be null.</param>
  2852. </member>
  2853. <member name="T:Google.Protobuf.JsonTokenizer">
  2854. <summary>
  2855. Simple but strict JSON tokenizer, rigidly following RFC 7159.
  2856. </summary>
  2857. <remarks>
  2858. <para>
  2859. This tokenizer is stateful, and only returns "useful" tokens - names, values etc.
  2860. It does not create tokens for the separator between names and values, or for the comma
  2861. between values. It validates the token stream as it goes - so callers can assume that the
  2862. tokens it produces are appropriate. For example, it would never produce "start object, end array."
  2863. </para>
  2864. <para>Implementation details: the base class handles single token push-back and </para>
  2865. <para>Not thread-safe.</para>
  2866. </remarks>
  2867. </member>
  2868. <member name="M:Google.Protobuf.JsonTokenizer.FromTextReader(System.IO.TextReader)">
  2869. <summary>
  2870. Creates a tokenizer that reads from the given text reader.
  2871. </summary>
  2872. </member>
  2873. <member name="M:Google.Protobuf.JsonTokenizer.FromReplayedTokens(System.Collections.Generic.IList{Google.Protobuf.JsonToken},Google.Protobuf.JsonTokenizer)">
  2874. <summary>
  2875. Creates a tokenizer that first replays the given list of tokens, then continues reading
  2876. from another tokenizer. Note that if the returned tokenizer is "pushed back", that does not push back
  2877. on the continuation tokenizer, or vice versa. Care should be taken when using this method - it was
  2878. created for the sake of Any parsing.
  2879. </summary>
  2880. </member>
  2881. <member name="P:Google.Protobuf.JsonTokenizer.ObjectDepth">
  2882. <summary>
  2883. Returns the depth of the stack, purely in objects (not collections).
  2884. Informally, this is the number of remaining unclosed '{' characters we have.
  2885. </summary>
  2886. </member>
  2887. <member name="M:Google.Protobuf.JsonTokenizer.Next">
  2888. <summary>
  2889. Returns the next JSON token in the stream. An EndDocument token is returned to indicate the end of the stream,
  2890. after which point <c>Next()</c> should not be called again.
  2891. </summary>
  2892. <remarks>This implementation provides single-token buffering, and calls <see cref="M:Google.Protobuf.JsonTokenizer.NextImpl"/> if there is no buffered token.</remarks>
  2893. <returns>The next token in the stream. This is never null.</returns>
  2894. <exception cref="T:System.InvalidOperationException">This method is called after an EndDocument token has been returned</exception>
  2895. <exception cref="T:Google.Protobuf.InvalidJsonException">The input text does not comply with RFC 7159</exception>
  2896. </member>
  2897. <member name="M:Google.Protobuf.JsonTokenizer.NextImpl">
  2898. <summary>
  2899. Returns the next JSON token in the stream, when requested by the base class. (The <see cref="M:Google.Protobuf.JsonTokenizer.Next"/> method delegates
  2900. to this if it doesn't have a buffered token.)
  2901. </summary>
  2902. <exception cref="T:System.InvalidOperationException">This method is called after an EndDocument token has been returned</exception>
  2903. <exception cref="T:Google.Protobuf.InvalidJsonException">The input text does not comply with RFC 7159</exception>
  2904. </member>
  2905. <member name="M:Google.Protobuf.JsonTokenizer.SkipValue">
  2906. <summary>
  2907. Skips the value we're about to read. This must only be called immediately after reading a property name.
  2908. If the value is an object or an array, the complete object/array is skipped.
  2909. </summary>
  2910. </member>
  2911. <member name="T:Google.Protobuf.JsonTokenizer.JsonReplayTokenizer">
  2912. <summary>
  2913. Tokenizer which first exhausts a list of tokens, then consults another tokenizer.
  2914. </summary>
  2915. </member>
  2916. <member name="T:Google.Protobuf.JsonTokenizer.JsonTextTokenizer">
  2917. <summary>
  2918. Tokenizer which does all the *real* work of parsing JSON.
  2919. </summary>
  2920. </member>
  2921. <member name="M:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.NextImpl">
  2922. <remarks>
  2923. This method essentially just loops through characters skipping whitespace, validating and
  2924. changing state (e.g. from ObjectBeforeColon to ObjectAfterColon)
  2925. until it reaches something which will be a genuine token (e.g. a start object, or a value) at which point
  2926. it returns the token. Although the method is large, it would be relatively hard to break down further... most
  2927. of it is the large switch statement, which sometimes returns and sometimes doesn't.
  2928. </remarks>
  2929. </member>
  2930. <member name="M:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.ReadString">
  2931. <summary>
  2932. Reads a string token. It is assumed that the opening " has already been read.
  2933. </summary>
  2934. </member>
  2935. <member name="M:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.ReadEscapedCharacter">
  2936. <summary>
  2937. Reads an escaped character. It is assumed that the leading backslash has already been read.
  2938. </summary>
  2939. </member>
  2940. <member name="M:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.ReadUnicodeEscape">
  2941. <summary>
  2942. Reads an escaped Unicode 4-nybble hex sequence. It is assumed that the leading \u has already been read.
  2943. </summary>
  2944. </member>
  2945. <member name="M:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.ConsumeLiteral(System.String)">
  2946. <summary>
  2947. Consumes a text-only literal, throwing an exception if the read text doesn't match it.
  2948. It is assumed that the first letter of the literal has already been read.
  2949. </summary>
  2950. </member>
  2951. <member name="M:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.ValidateAndModifyStateForValue(System.String)">
  2952. <summary>
  2953. Validates that we're in a valid state to read a value (using the given error prefix if necessary)
  2954. and changes the state to the appropriate one, e.g. ObjectAfterColon to ObjectAfterProperty.
  2955. </summary>
  2956. </member>
  2957. <member name="M:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.PopContainer">
  2958. <summary>
  2959. Pops the top-most container, and sets the state to the appropriate one for the end of a value
  2960. in the parent container.
  2961. </summary>
  2962. </member>
  2963. <member name="T:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State">
  2964. <summary>
  2965. Possible states of the tokenizer.
  2966. </summary>
  2967. <remarks>
  2968. <para>This is a flags enum purely so we can simply and efficiently represent a set of valid states
  2969. for checking.</para>
  2970. <para>
  2971. Each is documented with an example,
  2972. where ^ represents the current position within the text stream. The examples all use string values,
  2973. but could be any value, including nested objects/arrays.
  2974. The complete state of the tokenizer also includes a stack to indicate the contexts (arrays/objects).
  2975. Any additional notional state of "AfterValue" indicates that a value has been completed, at which
  2976. point there's an immediate transition to ExpectedEndOfDocument, ObjectAfterProperty or ArrayAfterValue.
  2977. </para>
  2978. <para>
  2979. These states were derived manually by reading RFC 7159 carefully.
  2980. </para>
  2981. </remarks>
  2982. </member>
  2983. <member name="F:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.StartOfDocument">
  2984. <summary>
  2985. ^ { "foo": "bar" }
  2986. Before the value in a document. Next states: ObjectStart, ArrayStart, "AfterValue"
  2987. </summary>
  2988. </member>
  2989. <member name="F:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ExpectedEndOfDocument">
  2990. <summary>
  2991. { "foo": "bar" } ^
  2992. After the value in a document. Next states: ReaderExhausted
  2993. </summary>
  2994. </member>
  2995. <member name="F:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ReaderExhausted">
  2996. <summary>
  2997. { "foo": "bar" } ^ (and already read to the end of the reader)
  2998. Terminal state.
  2999. </summary>
  3000. </member>
  3001. <member name="F:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ObjectStart">
  3002. <summary>
  3003. { ^ "foo": "bar" }
  3004. Before the *first* property in an object.
  3005. Next states:
  3006. "AfterValue" (empty object)
  3007. ObjectBeforeColon (read a name)
  3008. </summary>
  3009. </member>
  3010. <member name="F:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ObjectBeforeColon">
  3011. <summary>
  3012. { "foo" ^ : "bar", "x": "y" }
  3013. Next state: ObjectAfterColon
  3014. </summary>
  3015. </member>
  3016. <member name="F:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ObjectAfterColon">
  3017. <summary>
  3018. { "foo" : ^ "bar", "x": "y" }
  3019. Before any property other than the first in an object.
  3020. (Equivalently: after any property in an object)
  3021. Next states:
  3022. "AfterValue" (value is simple)
  3023. ObjectStart (value is object)
  3024. ArrayStart (value is array)
  3025. </summary>
  3026. </member>
  3027. <member name="F:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ObjectAfterProperty">
  3028. <summary>
  3029. { "foo" : "bar" ^ , "x" : "y" }
  3030. At the end of a property, so expecting either a comma or end-of-object
  3031. Next states: ObjectAfterComma or "AfterValue"
  3032. </summary>
  3033. </member>
  3034. <member name="F:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ObjectAfterComma">
  3035. <summary>
  3036. { "foo":"bar", ^ "x":"y" }
  3037. Read the comma after the previous property, so expecting another property.
  3038. This is like ObjectStart, but closing brace isn't valid here
  3039. Next state: ObjectBeforeColon.
  3040. </summary>
  3041. </member>
  3042. <member name="F:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ArrayStart">
  3043. <summary>
  3044. [ ^ "foo", "bar" ]
  3045. Before the *first* value in an array.
  3046. Next states:
  3047. "AfterValue" (read a value)
  3048. "AfterValue" (end of array; will pop stack)
  3049. </summary>
  3050. </member>
  3051. <member name="F:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ArrayAfterValue">
  3052. <summary>
  3053. [ "foo" ^ , "bar" ]
  3054. After any value in an array, so expecting either a comma or end-of-array
  3055. Next states: ArrayAfterComma or "AfterValue"
  3056. </summary>
  3057. </member>
  3058. <member name="F:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ArrayAfterComma">
  3059. <summary>
  3060. [ "foo", ^ "bar" ]
  3061. After a comma in an array, so there *must* be another value (simple or complex).
  3062. Next states: "AfterValue" (simple value), StartObject, StartArray
  3063. </summary>
  3064. </member>
  3065. <member name="T:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.PushBackReader">
  3066. <summary>
  3067. Wrapper around a text reader allowing small amounts of buffering and location handling.
  3068. </summary>
  3069. </member>
  3070. <member name="F:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.PushBackReader.nextChar">
  3071. <summary>
  3072. The buffered next character, if we have one.
  3073. </summary>
  3074. </member>
  3075. <member name="M:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.PushBackReader.Read">
  3076. <summary>
  3077. Returns the next character in the stream, or null if we have reached the end.
  3078. </summary>
  3079. <returns></returns>
  3080. </member>
  3081. <member name="M:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.PushBackReader.CreateException(System.String)">
  3082. <summary>
  3083. Creates a new exception appropriate for the current state of the reader.
  3084. </summary>
  3085. </member>
  3086. <member name="T:Google.Protobuf.LimitedInputStream">
  3087. <summary>
  3088. Stream implementation which proxies another stream, only allowing a certain amount
  3089. of data to be read. Note that this is only used to read delimited streams, so it
  3090. doesn't attempt to implement everything.
  3091. </summary>
  3092. </member>
  3093. <member name="T:Google.Protobuf.MessageExtensions">
  3094. <summary>
  3095. Extension methods on <see cref="T:Google.Protobuf.IMessage"/> and <see cref="T:Google.Protobuf.IMessage`1"/>.
  3096. </summary>
  3097. </member>
  3098. <member name="M:Google.Protobuf.MessageExtensions.MergeFrom(Google.Protobuf.IMessage,System.Byte[])">
  3099. <summary>
  3100. Merges data from the given byte array into an existing message.
  3101. </summary>
  3102. <param name="message">The message to merge the data into.</param>
  3103. <param name="data">The data to merge, which must be protobuf-encoded binary data.</param>
  3104. </member>
  3105. <member name="M:Google.Protobuf.MessageExtensions.MergeFrom(Google.Protobuf.IMessage,System.Byte[],System.Int32,System.Int32)">
  3106. <summary>
  3107. Merges data from the given byte array slice into an existing message.
  3108. </summary>
  3109. <param name="message">The message to merge the data into.</param>
  3110. <param name="data">The data containing the slice to merge, which must be protobuf-encoded binary data.</param>
  3111. <param name="offset">The offset of the slice to merge.</param>
  3112. <param name="length">The length of the slice to merge.</param>
  3113. </member>
  3114. <member name="M:Google.Protobuf.MessageExtensions.MergeFrom(Google.Protobuf.IMessage,Google.Protobuf.ByteString)">
  3115. <summary>
  3116. Merges data from the given byte string into an existing message.
  3117. </summary>
  3118. <param name="message">The message to merge the data into.</param>
  3119. <param name="data">The data to merge, which must be protobuf-encoded binary data.</param>
  3120. </member>
  3121. <member name="M:Google.Protobuf.MessageExtensions.MergeFrom(Google.Protobuf.IMessage,System.IO.Stream)">
  3122. <summary>
  3123. Merges data from the given stream into an existing message.
  3124. </summary>
  3125. <param name="message">The message to merge the data into.</param>
  3126. <param name="input">Stream containing the data to merge, which must be protobuf-encoded binary data.</param>
  3127. </member>
  3128. <member name="M:Google.Protobuf.MessageExtensions.MergeDelimitedFrom(Google.Protobuf.IMessage,System.IO.Stream)">
  3129. <summary>
  3130. Merges length-delimited data from the given stream into an existing message.
  3131. </summary>
  3132. <remarks>
  3133. The stream is expected to contain a length and then the data. Only the amount of data
  3134. specified by the length will be consumed.
  3135. </remarks>
  3136. <param name="message">The message to merge the data into.</param>
  3137. <param name="input">Stream containing the data to merge, which must be protobuf-encoded binary data.</param>
  3138. </member>
  3139. <member name="M:Google.Protobuf.MessageExtensions.ToByteArray(Google.Protobuf.IMessage)">
  3140. <summary>
  3141. Converts the given message into a byte array in protobuf encoding.
  3142. </summary>
  3143. <param name="message">The message to convert.</param>
  3144. <returns>The message data as a byte array.</returns>
  3145. </member>
  3146. <member name="M:Google.Protobuf.MessageExtensions.WriteTo(Google.Protobuf.IMessage,System.IO.Stream)">
  3147. <summary>
  3148. Writes the given message data to the given stream in protobuf encoding.
  3149. </summary>
  3150. <param name="message">The message to write to the stream.</param>
  3151. <param name="output">The stream to write to.</param>
  3152. </member>
  3153. <member name="M:Google.Protobuf.MessageExtensions.WriteDelimitedTo(Google.Protobuf.IMessage,System.IO.Stream)">
  3154. <summary>
  3155. Writes the length and then data of the given message to a stream.
  3156. </summary>
  3157. <param name="message">The message to write.</param>
  3158. <param name="output">The output stream to write to.</param>
  3159. </member>
  3160. <member name="M:Google.Protobuf.MessageExtensions.ToByteString(Google.Protobuf.IMessage)">
  3161. <summary>
  3162. Converts the given message into a byte string in protobuf encoding.
  3163. </summary>
  3164. <param name="message">The message to convert.</param>
  3165. <returns>The message data as a byte string.</returns>
  3166. </member>
  3167. <member name="M:Google.Protobuf.MessageExtensions.WriteTo(Google.Protobuf.IMessage,System.Buffers.IBufferWriter{System.Byte})">
  3168. <summary>
  3169. Writes the given message data to the given buffer writer in protobuf encoding.
  3170. </summary>
  3171. <param name="message">The message to write to the stream.</param>
  3172. <param name="output">The stream to write to.</param>
  3173. </member>
  3174. <member name="M:Google.Protobuf.MessageExtensions.WriteTo(Google.Protobuf.IMessage,System.Span{System.Byte})">
  3175. <summary>
  3176. Writes the given message data to the given span in protobuf encoding.
  3177. The size of the destination span needs to fit the serialized size
  3178. of the message exactly, otherwise an exception is thrown.
  3179. </summary>
  3180. <param name="message">The message to write to the stream.</param>
  3181. <param name="output">The span to write to. Size must match size of the message exactly.</param>
  3182. </member>
  3183. <member name="M:Google.Protobuf.MessageExtensions.IsInitialized(Google.Protobuf.IMessage)">
  3184. <summary>
  3185. Checks if all required fields in a message have values set. For proto3 messages, this returns true
  3186. </summary>
  3187. </member>
  3188. <member name="T:Google.Protobuf.MessageParser">
  3189. <summary>
  3190. A general message parser, typically used by reflection-based code as all the methods
  3191. return simple <see cref="T:Google.Protobuf.IMessage"/>.
  3192. </summary>
  3193. </member>
  3194. <member name="M:Google.Protobuf.MessageParser.CreateTemplate">
  3195. <summary>
  3196. Creates a template instance ready for population.
  3197. </summary>
  3198. <returns>An empty message.</returns>
  3199. </member>
  3200. <member name="M:Google.Protobuf.MessageParser.ParseFrom(System.Byte[])">
  3201. <summary>
  3202. Parses a message from a byte array.
  3203. </summary>
  3204. <param name="data">The byte array containing the message. Must not be null.</param>
  3205. <returns>The newly parsed message.</returns>
  3206. </member>
  3207. <member name="M:Google.Protobuf.MessageParser.ParseFrom(System.Byte[],System.Int32,System.Int32)">
  3208. <summary>
  3209. Parses a message from a byte array slice.
  3210. </summary>
  3211. <param name="data">The byte array containing the message. Must not be null.</param>
  3212. <param name="offset">The offset of the slice to parse.</param>
  3213. <param name="length">The length of the slice to parse.</param>
  3214. <returns>The newly parsed message.</returns>
  3215. </member>
  3216. <member name="M:Google.Protobuf.MessageParser.ParseFrom(Google.Protobuf.ByteString)">
  3217. <summary>
  3218. Parses a message from the given byte string.
  3219. </summary>
  3220. <param name="data">The data to parse.</param>
  3221. <returns>The parsed message.</returns>
  3222. </member>
  3223. <member name="M:Google.Protobuf.MessageParser.ParseFrom(System.IO.Stream)">
  3224. <summary>
  3225. Parses a message from the given stream.
  3226. </summary>
  3227. <param name="input">The stream to parse.</param>
  3228. <returns>The parsed message.</returns>
  3229. </member>
  3230. <member name="M:Google.Protobuf.MessageParser.ParseFrom(System.Buffers.ReadOnlySequence{System.Byte})">
  3231. <summary>
  3232. Parses a message from the given sequence.
  3233. </summary>
  3234. <param name="data">The data to parse.</param>
  3235. <returns>The parsed message.</returns>
  3236. </member>
  3237. <member name="M:Google.Protobuf.MessageParser.ParseDelimitedFrom(System.IO.Stream)">
  3238. <summary>
  3239. Parses a length-delimited message from the given stream.
  3240. </summary>
  3241. <remarks>
  3242. The stream is expected to contain a length and then the data. Only the amount of data
  3243. specified by the length will be consumed.
  3244. </remarks>
  3245. <param name="input">The stream to parse.</param>
  3246. <returns>The parsed message.</returns>
  3247. </member>
  3248. <member name="M:Google.Protobuf.MessageParser.ParseFrom(Google.Protobuf.CodedInputStream)">
  3249. <summary>
  3250. Parses a message from the given coded input stream.
  3251. </summary>
  3252. <param name="input">The stream to parse.</param>
  3253. <returns>The parsed message.</returns>
  3254. </member>
  3255. <member name="M:Google.Protobuf.MessageParser.ParseJson(System.String)">
  3256. <summary>
  3257. Parses a message from the given JSON.
  3258. </summary>
  3259. <param name="json">The JSON to parse.</param>
  3260. <returns>The parsed message.</returns>
  3261. <exception cref="T:Google.Protobuf.InvalidJsonException">The JSON does not comply with RFC 7159</exception>
  3262. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">The JSON does not represent a Protocol Buffers message correctly</exception>
  3263. </member>
  3264. <member name="M:Google.Protobuf.MessageParser.WithDiscardUnknownFields(System.Boolean)">
  3265. <summary>
  3266. Creates a new message parser which optionally discards unknown fields when parsing.
  3267. </summary>
  3268. <param name="discardUnknownFields">Whether or not to discard unknown fields when parsing.</param>
  3269. <returns>A newly configured message parser.</returns>
  3270. </member>
  3271. <member name="M:Google.Protobuf.MessageParser.WithExtensionRegistry(Google.Protobuf.ExtensionRegistry)">
  3272. <summary>
  3273. Creates a new message parser which registers extensions from the specified registry upon creating the message instance
  3274. </summary>
  3275. <param name="registry">The extensions to register</param>
  3276. <returns>A newly configured message parser.</returns>
  3277. </member>
  3278. <member name="T:Google.Protobuf.MessageParser`1">
  3279. <summary>
  3280. A parser for a specific message type.
  3281. </summary>
  3282. <remarks>
  3283. <p>
  3284. This delegates most behavior to the
  3285. <see cref="M:Google.Protobuf.IMessage.MergeFrom(Google.Protobuf.CodedInputStream)"/> implementation within the original type, but
  3286. provides convenient overloads to parse from a variety of sources.
  3287. </p>
  3288. <p>
  3289. Most applications will never need to create their own instances of this type;
  3290. instead, use the static <c>Parser</c> property of a generated message type to obtain a
  3291. parser for that type.
  3292. </p>
  3293. </remarks>
  3294. <typeparam name="T">The type of message to be parsed.</typeparam>
  3295. </member>
  3296. <member name="M:Google.Protobuf.MessageParser`1.#ctor(System.Func{`0})">
  3297. <summary>
  3298. Creates a new parser.
  3299. </summary>
  3300. <remarks>
  3301. The factory method is effectively an optimization over using a generic constraint
  3302. to require a parameterless constructor: delegates are significantly faster to execute.
  3303. </remarks>
  3304. <param name="factory">Function to invoke when a new, empty message is required.</param>
  3305. </member>
  3306. <member name="M:Google.Protobuf.MessageParser`1.CreateTemplate">
  3307. <summary>
  3308. Creates a template instance ready for population.
  3309. </summary>
  3310. <returns>An empty message.</returns>
  3311. </member>
  3312. <member name="M:Google.Protobuf.MessageParser`1.ParseFrom(System.Byte[])">
  3313. <summary>
  3314. Parses a message from a byte array.
  3315. </summary>
  3316. <param name="data">The byte array containing the message. Must not be null.</param>
  3317. <returns>The newly parsed message.</returns>
  3318. </member>
  3319. <member name="M:Google.Protobuf.MessageParser`1.ParseFrom(System.Byte[],System.Int32,System.Int32)">
  3320. <summary>
  3321. Parses a message from a byte array slice.
  3322. </summary>
  3323. <param name="data">The byte array containing the message. Must not be null.</param>
  3324. <param name="offset">The offset of the slice to parse.</param>
  3325. <param name="length">The length of the slice to parse.</param>
  3326. <returns>The newly parsed message.</returns>
  3327. </member>
  3328. <member name="M:Google.Protobuf.MessageParser`1.ParseFrom(Google.Protobuf.ByteString)">
  3329. <summary>
  3330. Parses a message from the given byte string.
  3331. </summary>
  3332. <param name="data">The data to parse.</param>
  3333. <returns>The parsed message.</returns>
  3334. </member>
  3335. <member name="M:Google.Protobuf.MessageParser`1.ParseFrom(System.IO.Stream)">
  3336. <summary>
  3337. Parses a message from the given stream.
  3338. </summary>
  3339. <param name="input">The stream to parse.</param>
  3340. <returns>The parsed message.</returns>
  3341. </member>
  3342. <member name="M:Google.Protobuf.MessageParser`1.ParseFrom(System.Buffers.ReadOnlySequence{System.Byte})">
  3343. <summary>
  3344. Parses a message from the given sequence.
  3345. </summary>
  3346. <param name="data">The data to parse.</param>
  3347. <returns>The parsed message.</returns>
  3348. </member>
  3349. <member name="M:Google.Protobuf.MessageParser`1.ParseDelimitedFrom(System.IO.Stream)">
  3350. <summary>
  3351. Parses a length-delimited message from the given stream.
  3352. </summary>
  3353. <remarks>
  3354. The stream is expected to contain a length and then the data. Only the amount of data
  3355. specified by the length will be consumed.
  3356. </remarks>
  3357. <param name="input">The stream to parse.</param>
  3358. <returns>The parsed message.</returns>
  3359. </member>
  3360. <member name="M:Google.Protobuf.MessageParser`1.ParseFrom(Google.Protobuf.CodedInputStream)">
  3361. <summary>
  3362. Parses a message from the given coded input stream.
  3363. </summary>
  3364. <param name="input">The stream to parse.</param>
  3365. <returns>The parsed message.</returns>
  3366. </member>
  3367. <member name="M:Google.Protobuf.MessageParser`1.ParseJson(System.String)">
  3368. <summary>
  3369. Parses a message from the given JSON.
  3370. </summary>
  3371. <param name="json">The JSON to parse.</param>
  3372. <returns>The parsed message.</returns>
  3373. <exception cref="T:Google.Protobuf.InvalidJsonException">The JSON does not comply with RFC 7159</exception>
  3374. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">The JSON does not represent a Protocol Buffers message correctly</exception>
  3375. </member>
  3376. <member name="M:Google.Protobuf.MessageParser`1.WithDiscardUnknownFields(System.Boolean)">
  3377. <summary>
  3378. Creates a new message parser which optionally discards unknown fields when parsing.
  3379. </summary>
  3380. <param name="discardUnknownFields">Whether or not to discard unknown fields when parsing.</param>
  3381. <returns>A newly configured message parser.</returns>
  3382. </member>
  3383. <member name="M:Google.Protobuf.MessageParser`1.WithExtensionRegistry(Google.Protobuf.ExtensionRegistry)">
  3384. <summary>
  3385. Creates a new message parser which registers extensions from the specified registry upon creating the message instance
  3386. </summary>
  3387. <param name="registry">The extensions to register</param>
  3388. <returns>A newly configured message parser.</returns>
  3389. </member>
  3390. <member name="T:Google.Protobuf.ObjectIntPair`1">
  3391. <summary>
  3392. Struct used to hold the keys for the fieldByNumber table in DescriptorPool and the keys for the
  3393. extensionByNumber table in ExtensionRegistry.
  3394. </summary>
  3395. </member>
  3396. <member name="T:Google.Protobuf.ParseContext">
  3397. <summary>
  3398. An opaque struct that represents the current parsing state and is passed along
  3399. as the parsing proceeds.
  3400. All the public methods are intended to be invoked only by the generated code,
  3401. users should never invoke them directly.
  3402. </summary>
  3403. </member>
  3404. <member name="M:Google.Protobuf.ParseContext.Initialize(Google.Protobuf.CodedInputStream,Google.Protobuf.ParseContext@)">
  3405. <summary>
  3406. Creates a ParseContext instance from CodedInputStream.
  3407. WARNING: internally this copies the CodedInputStream's state, so after done with the ParseContext,
  3408. the CodedInputStream's state needs to be updated.
  3409. </summary>
  3410. </member>
  3411. <member name="P:Google.Protobuf.ParseContext.LastTag">
  3412. <summary>
  3413. Returns the last tag read, or 0 if no tags have been read or we've read beyond
  3414. the end of the input.
  3415. </summary>
  3416. </member>
  3417. <member name="P:Google.Protobuf.ParseContext.DiscardUnknownFields">
  3418. <summary>
  3419. Internal-only property; when set to true, unknown fields will be discarded while parsing.
  3420. </summary>
  3421. </member>
  3422. <member name="P:Google.Protobuf.ParseContext.ExtensionRegistry">
  3423. <summary>
  3424. Internal-only property; provides extension identifiers to compatible messages while parsing.
  3425. </summary>
  3426. </member>
  3427. <member name="M:Google.Protobuf.ParseContext.ReadTag">
  3428. <summary>
  3429. Reads a field tag, returning the tag of 0 for "end of input".
  3430. </summary>
  3431. <remarks>
  3432. If this method returns 0, it doesn't necessarily mean the end of all
  3433. the data in this CodedInputReader; it may be the end of the logical input
  3434. for an embedded message, for example.
  3435. </remarks>
  3436. <returns>The next field tag, or 0 for end of input. (0 is never a valid tag.)</returns>
  3437. </member>
  3438. <member name="M:Google.Protobuf.ParseContext.ReadDouble">
  3439. <summary>
  3440. Reads a double field from the input.
  3441. </summary>
  3442. </member>
  3443. <member name="M:Google.Protobuf.ParseContext.ReadFloat">
  3444. <summary>
  3445. Reads a float field from the input.
  3446. </summary>
  3447. </member>
  3448. <member name="M:Google.Protobuf.ParseContext.ReadUInt64">
  3449. <summary>
  3450. Reads a uint64 field from the input.
  3451. </summary>
  3452. </member>
  3453. <member name="M:Google.Protobuf.ParseContext.ReadInt64">
  3454. <summary>
  3455. Reads an int64 field from the input.
  3456. </summary>
  3457. </member>
  3458. <member name="M:Google.Protobuf.ParseContext.ReadInt32">
  3459. <summary>
  3460. Reads an int32 field from the input.
  3461. </summary>
  3462. </member>
  3463. <member name="M:Google.Protobuf.ParseContext.ReadFixed64">
  3464. <summary>
  3465. Reads a fixed64 field from the input.
  3466. </summary>
  3467. </member>
  3468. <member name="M:Google.Protobuf.ParseContext.ReadFixed32">
  3469. <summary>
  3470. Reads a fixed32 field from the input.
  3471. </summary>
  3472. </member>
  3473. <member name="M:Google.Protobuf.ParseContext.ReadBool">
  3474. <summary>
  3475. Reads a bool field from the input.
  3476. </summary>
  3477. </member>
  3478. <member name="M:Google.Protobuf.ParseContext.ReadString">
  3479. <summary>
  3480. Reads a string field from the input.
  3481. </summary>
  3482. </member>
  3483. <member name="M:Google.Protobuf.ParseContext.ReadMessage(Google.Protobuf.IMessage)">
  3484. <summary>
  3485. Reads an embedded message field value from the input.
  3486. </summary>
  3487. </member>
  3488. <member name="M:Google.Protobuf.ParseContext.ReadGroup(Google.Protobuf.IMessage)">
  3489. <summary>
  3490. Reads an embedded group field from the input.
  3491. </summary>
  3492. </member>
  3493. <member name="M:Google.Protobuf.ParseContext.ReadBytes">
  3494. <summary>
  3495. Reads a bytes field value from the input.
  3496. </summary>
  3497. </member>
  3498. <member name="M:Google.Protobuf.ParseContext.ReadUInt32">
  3499. <summary>
  3500. Reads a uint32 field value from the input.
  3501. </summary>
  3502. </member>
  3503. <member name="M:Google.Protobuf.ParseContext.ReadEnum">
  3504. <summary>
  3505. Reads an enum field value from the input.
  3506. </summary>
  3507. </member>
  3508. <member name="M:Google.Protobuf.ParseContext.ReadSFixed32">
  3509. <summary>
  3510. Reads an sfixed32 field value from the input.
  3511. </summary>
  3512. </member>
  3513. <member name="M:Google.Protobuf.ParseContext.ReadSFixed64">
  3514. <summary>
  3515. Reads an sfixed64 field value from the input.
  3516. </summary>
  3517. </member>
  3518. <member name="M:Google.Protobuf.ParseContext.ReadSInt32">
  3519. <summary>
  3520. Reads an sint32 field value from the input.
  3521. </summary>
  3522. </member>
  3523. <member name="M:Google.Protobuf.ParseContext.ReadSInt64">
  3524. <summary>
  3525. Reads an sint64 field value from the input.
  3526. </summary>
  3527. </member>
  3528. <member name="M:Google.Protobuf.ParseContext.ReadLength">
  3529. <summary>
  3530. Reads a length for length-delimited data.
  3531. </summary>
  3532. <remarks>
  3533. This is internally just reading a varint, but this method exists
  3534. to make the calling code clearer.
  3535. </remarks>
  3536. </member>
  3537. <member name="F:Google.Protobuf.ParserInternalState.bufferPos">
  3538. <summary>
  3539. The position within the current buffer (i.e. the next byte to read)
  3540. </summary>
  3541. </member>
  3542. <member name="F:Google.Protobuf.ParserInternalState.bufferSize">
  3543. <summary>
  3544. Size of the current buffer
  3545. </summary>
  3546. </member>
  3547. <member name="F:Google.Protobuf.ParserInternalState.bufferSizeAfterLimit">
  3548. <summary>
  3549. If we are currently inside a length-delimited block, this is the number of
  3550. bytes in the buffer that are still available once we leave the delimited block.
  3551. </summary>
  3552. </member>
  3553. <member name="F:Google.Protobuf.ParserInternalState.currentLimit">
  3554. <summary>
  3555. The absolute position of the end of the current length-delimited block (including totalBytesRetired)
  3556. </summary>
  3557. </member>
  3558. <member name="F:Google.Protobuf.ParserInternalState.totalBytesRetired">
  3559. <summary>
  3560. The total number of consumed before the start of the current buffer. The
  3561. total bytes read up to the current position can be computed as
  3562. totalBytesRetired + bufferPos.
  3563. </summary>
  3564. </member>
  3565. <member name="F:Google.Protobuf.ParserInternalState.lastTag">
  3566. <summary>
  3567. The last tag we read. 0 indicates we've read to the end of the stream
  3568. (or haven't read anything yet).
  3569. </summary>
  3570. </member>
  3571. <member name="F:Google.Protobuf.ParserInternalState.nextTag">
  3572. <summary>
  3573. The next tag, used to store the value read by PeekTag.
  3574. </summary>
  3575. </member>
  3576. <member name="P:Google.Protobuf.ParserInternalState.DiscardUnknownFields">
  3577. <summary>
  3578. Internal-only property; when set to true, unknown fields will be discarded while parsing.
  3579. </summary>
  3580. </member>
  3581. <member name="P:Google.Protobuf.ParserInternalState.ExtensionRegistry">
  3582. <summary>
  3583. Internal-only property; provides extension identifiers to compatible messages while parsing.
  3584. </summary>
  3585. </member>
  3586. <member name="T:Google.Protobuf.ParsingPrimitives">
  3587. <summary>
  3588. Primitives for parsing protobuf wire format.
  3589. </summary>
  3590. </member>
  3591. <member name="M:Google.Protobuf.ParsingPrimitives.ParseLength(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)">
  3592. <summary>
  3593. Reads a length for length-delimited data.
  3594. </summary>
  3595. <remarks>
  3596. This is internally just reading a varint, but this method exists
  3597. to make the calling code clearer.
  3598. </remarks>
  3599. </member>
  3600. <member name="M:Google.Protobuf.ParsingPrimitives.ParseTag(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)">
  3601. <summary>
  3602. Parses the next tag.
  3603. If the end of logical stream was reached, an invalid tag of 0 is returned.
  3604. </summary>
  3605. </member>
  3606. <member name="M:Google.Protobuf.ParsingPrimitives.MaybeConsumeTag(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@,System.UInt32)">
  3607. <summary>
  3608. Peeks at the next tag in the stream. If it matches <paramref name="tag"/>,
  3609. the tag is consumed and the method returns <c>true</c>; otherwise, the
  3610. stream is left in the original position and the method returns <c>false</c>.
  3611. </summary>
  3612. </member>
  3613. <member name="M:Google.Protobuf.ParsingPrimitives.PeekTag(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)">
  3614. <summary>
  3615. Peeks at the next field tag. This is like calling <see cref="M:Google.Protobuf.ParsingPrimitives.ParseTag(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)"/>, but the
  3616. tag is not consumed. (So a subsequent call to <see cref="M:Google.Protobuf.ParsingPrimitives.ParseTag(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)"/> will return the
  3617. same value.)
  3618. </summary>
  3619. </member>
  3620. <member name="M:Google.Protobuf.ParsingPrimitives.ParseRawVarint64(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)">
  3621. <summary>
  3622. Parses a raw varint.
  3623. </summary>
  3624. </member>
  3625. <member name="M:Google.Protobuf.ParsingPrimitives.ParseRawVarint32(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)">
  3626. <summary>
  3627. Parses a raw Varint. If larger than 32 bits, discard the upper bits.
  3628. This method is optimised for the case where we've got lots of data in the buffer.
  3629. That means we can check the size just once, then just read directly from the buffer
  3630. without constant rechecking of the buffer length.
  3631. </summary>
  3632. </member>
  3633. <member name="M:Google.Protobuf.ParsingPrimitives.ParseRawLittleEndian32(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)">
  3634. <summary>
  3635. Parses a 32-bit little-endian integer.
  3636. </summary>
  3637. </member>
  3638. <member name="M:Google.Protobuf.ParsingPrimitives.ParseRawLittleEndian64(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)">
  3639. <summary>
  3640. Parses a 64-bit little-endian integer.
  3641. </summary>
  3642. </member>
  3643. <member name="M:Google.Protobuf.ParsingPrimitives.ParseDouble(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)">
  3644. <summary>
  3645. Parses a double value.
  3646. </summary>
  3647. </member>
  3648. <member name="M:Google.Protobuf.ParsingPrimitives.ParseFloat(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)">
  3649. <summary>
  3650. Parses a float value.
  3651. </summary>
  3652. </member>
  3653. <member name="M:Google.Protobuf.ParsingPrimitives.ReadRawBytes(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@,System.Int32)">
  3654. <summary>
  3655. Reads a fixed size of bytes from the input.
  3656. </summary>
  3657. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">
  3658. the end of the stream or the current limit was reached
  3659. </exception>
  3660. </member>
  3661. <member name="M:Google.Protobuf.ParsingPrimitives.SkipRawBytes(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@,System.Int32)">
  3662. <summary>
  3663. Reads and discards <paramref name="size"/> bytes.
  3664. </summary>
  3665. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">the end of the stream
  3666. or the current limit was reached</exception>
  3667. </member>
  3668. <member name="M:Google.Protobuf.ParsingPrimitives.ReadString(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)">
  3669. <summary>
  3670. Reads a string field value from the input.
  3671. </summary>
  3672. </member>
  3673. <member name="M:Google.Protobuf.ParsingPrimitives.ReadBytes(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)">
  3674. <summary>
  3675. Reads a bytes field value from the input.
  3676. </summary>
  3677. </member>
  3678. <member name="M:Google.Protobuf.ParsingPrimitives.ReadRawString(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@,System.Int32)">
  3679. <summary>
  3680. Reads a UTF-8 string from the next "length" bytes.
  3681. </summary>
  3682. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">
  3683. the end of the stream or the current limit was reached
  3684. </exception>
  3685. </member>
  3686. <member name="M:Google.Protobuf.ParsingPrimitives.ReadStringSlow(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@,System.Int32)">
  3687. <summary>
  3688. Reads a string assuming that it is spread across multiple spans in a <see cref="T:System.Buffers.ReadOnlySequence`1"/>.
  3689. </summary>
  3690. </member>
  3691. <member name="M:Google.Protobuf.ParsingPrimitives.ValidateCurrentLimit(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@,System.Int32)">
  3692. <summary>
  3693. Validates that the specified size doesn't exceed the current limit. If it does then remaining bytes
  3694. are skipped and an error is thrown.
  3695. </summary>
  3696. </member>
  3697. <member name="M:Google.Protobuf.ParsingPrimitives.ReadRawVarint32(System.IO.Stream)">
  3698. <summary>
  3699. Reads a varint from the input one byte at a time, so that it does not
  3700. read any bytes after the end of the varint. If you simply wrapped the
  3701. stream in a CodedInputStream and used ReadRawVarint32(Stream)
  3702. then you would probably end up reading past the end of the varint since
  3703. CodedInputStream buffers its input.
  3704. </summary>
  3705. <param name="input"></param>
  3706. <returns></returns>
  3707. </member>
  3708. <member name="M:Google.Protobuf.ParsingPrimitives.DecodeZigZag32(System.UInt32)">
  3709. <summary>
  3710. Decode a 32-bit value with ZigZag encoding.
  3711. </summary>
  3712. <remarks>
  3713. ZigZag encodes signed integers into values that can be efficiently
  3714. encoded with varint. (Otherwise, negative values must be
  3715. sign-extended to 32 bits to be varint encoded, thus always taking
  3716. 5 bytes on the wire.)
  3717. </remarks>
  3718. </member>
  3719. <member name="M:Google.Protobuf.ParsingPrimitives.DecodeZigZag64(System.UInt64)">
  3720. <summary>
  3721. Decode a 64-bit value with ZigZag encoding.
  3722. </summary>
  3723. <remarks>
  3724. ZigZag encodes signed integers into values that can be efficiently
  3725. encoded with varint. (Otherwise, negative values must be
  3726. sign-extended to 64 bits to be varint encoded, thus always taking
  3727. 10 bytes on the wire.)
  3728. </remarks>
  3729. </member>
  3730. <member name="M:Google.Protobuf.ParsingPrimitives.IsDataAvailable(Google.Protobuf.ParserInternalState@,System.Int32)">
  3731. <summary>
  3732. Checks whether there is known data available of the specified size remaining to parse.
  3733. When parsing from a Stream this can return false because we have no knowledge of the amount
  3734. of data remaining in the stream until it is read.
  3735. </summary>
  3736. </member>
  3737. <member name="M:Google.Protobuf.ParsingPrimitives.IsDataAvailableInSource(Google.Protobuf.ParserInternalState@,System.Int32)">
  3738. <summary>
  3739. Checks whether there is known data available of the specified size remaining to parse
  3740. in the underlying data source.
  3741. When parsing from a Stream this will return false because we have no knowledge of the amount
  3742. of data remaining in the stream until it is read.
  3743. </summary>
  3744. </member>
  3745. <member name="M:Google.Protobuf.ParsingPrimitives.ReadRawBytesIntoSpan(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@,System.Int32,System.Span{System.Byte})">
  3746. <summary>
  3747. Read raw bytes of the specified length into a span. The amount of data available and the current limit should
  3748. be checked before calling this method.
  3749. </summary>
  3750. </member>
  3751. <member name="T:Google.Protobuf.ParsingPrimitivesMessages">
  3752. <summary>
  3753. Reading and skipping messages / groups
  3754. </summary>
  3755. </member>
  3756. <member name="M:Google.Protobuf.ParsingPrimitivesMessages.SkipGroup(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@,System.UInt32)">
  3757. <summary>
  3758. Skip a group.
  3759. </summary>
  3760. </member>
  3761. <member name="M:Google.Protobuf.ParsingPrimitivesMessages.CheckReadEndOfStreamTag(Google.Protobuf.ParserInternalState@)">
  3762. <summary>
  3763. Verifies that the last call to ReadTag() returned tag 0 - in other words,
  3764. we've reached the end of the stream when we expected to.
  3765. </summary>
  3766. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">The
  3767. tag read was not the one specified</exception>
  3768. </member>
  3769. <member name="T:Google.Protobuf.ParsingPrimitivesWrappers">
  3770. <summary>
  3771. Fast parsing primitives for wrapper types
  3772. </summary>
  3773. </member>
  3774. <member name="T:Google.Protobuf.ProtoPreconditions">
  3775. <summary>
  3776. Helper methods for throwing exceptions when preconditions are not met.
  3777. </summary>
  3778. <remarks>
  3779. This class is used internally and by generated code; it is not particularly
  3780. expected to be used from application code, although nothing prevents it
  3781. from being used that way.
  3782. </remarks>
  3783. </member>
  3784. <member name="M:Google.Protobuf.ProtoPreconditions.CheckNotNull``1(``0,System.String)">
  3785. <summary>
  3786. Throws an ArgumentNullException if the given value is null, otherwise
  3787. return the value to the caller.
  3788. </summary>
  3789. </member>
  3790. <member name="M:Google.Protobuf.ProtoPreconditions.CheckNotNullUnconstrained``1(``0,System.String)">
  3791. <summary>
  3792. Throws an ArgumentNullException if the given value is null, otherwise
  3793. return the value to the caller.
  3794. </summary>
  3795. <remarks>
  3796. This is equivalent to <see cref="M:Google.Protobuf.ProtoPreconditions.CheckNotNull``1(``0,System.String)"/> but without the type parameter
  3797. constraint. In most cases, the constraint is useful to prevent you from calling CheckNotNull
  3798. with a value type - but it gets in the way if either you want to use it with a nullable
  3799. value type, or you want to use it with an unconstrained type parameter.
  3800. </remarks>
  3801. </member>
  3802. <member name="T:Google.Protobuf.Reflection.CustomOptions">
  3803. <summary>
  3804. Container for a set of custom options specified within a message, field etc.
  3805. </summary>
  3806. <remarks>
  3807. <para>
  3808. This type is publicly immutable, but internally mutable. It is only populated
  3809. by the descriptor parsing code - by the time any user code is able to see an instance,
  3810. it will be fully initialized.
  3811. </para>
  3812. <para>
  3813. If an option is requested using the incorrect method, an answer may still be returned: all
  3814. of the numeric types are represented internally using 64-bit integers, for example. It is up to
  3815. the caller to ensure that they make the appropriate method call for the option they're interested in.
  3816. Note that enum options are simply stored as integers, so the value should be fetched using
  3817. <see cref="M:Google.Protobuf.Reflection.CustomOptions.TryGetInt32(System.Int32,System.Int32@)"/> and then cast appropriately.
  3818. </para>
  3819. <para>
  3820. Repeated options are currently not supported. Asking for a single value of an option
  3821. which was actually repeated will return the last value, except for message types where
  3822. all the set values are merged together.
  3823. </para>
  3824. </remarks>
  3825. </member>
  3826. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetBool(System.Int32,System.Boolean@)">
  3827. <summary>
  3828. Retrieves a Boolean value for the specified option field.
  3829. </summary>
  3830. <param name="field">The field to fetch the value for.</param>
  3831. <param name="value">The output variable to populate.</param>
  3832. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3833. </member>
  3834. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetInt32(System.Int32,System.Int32@)">
  3835. <summary>
  3836. Retrieves a signed 32-bit integer value for the specified option field.
  3837. </summary>
  3838. <param name="field">The field to fetch the value for.</param>
  3839. <param name="value">The output variable to populate.</param>
  3840. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3841. </member>
  3842. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetInt64(System.Int32,System.Int64@)">
  3843. <summary>
  3844. Retrieves a signed 64-bit integer value for the specified option field.
  3845. </summary>
  3846. <param name="field">The field to fetch the value for.</param>
  3847. <param name="value">The output variable to populate.</param>
  3848. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3849. </member>
  3850. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetFixed32(System.Int32,System.UInt32@)">
  3851. <summary>
  3852. Retrieves an unsigned 32-bit integer value for the specified option field,
  3853. assuming a fixed-length representation.
  3854. </summary>
  3855. <param name="field">The field to fetch the value for.</param>
  3856. <param name="value">The output variable to populate.</param>
  3857. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3858. </member>
  3859. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetFixed64(System.Int32,System.UInt64@)">
  3860. <summary>
  3861. Retrieves an unsigned 64-bit integer value for the specified option field,
  3862. assuming a fixed-length representation.
  3863. </summary>
  3864. <param name="field">The field to fetch the value for.</param>
  3865. <param name="value">The output variable to populate.</param>
  3866. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3867. </member>
  3868. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetSFixed32(System.Int32,System.Int32@)">
  3869. <summary>
  3870. Retrieves a signed 32-bit integer value for the specified option field,
  3871. assuming a fixed-length representation.
  3872. </summary>
  3873. <param name="field">The field to fetch the value for.</param>
  3874. <param name="value">The output variable to populate.</param>
  3875. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3876. </member>
  3877. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetSFixed64(System.Int32,System.Int64@)">
  3878. <summary>
  3879. Retrieves a signed 64-bit integer value for the specified option field,
  3880. assuming a fixed-length representation.
  3881. </summary>
  3882. <param name="field">The field to fetch the value for.</param>
  3883. <param name="value">The output variable to populate.</param>
  3884. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3885. </member>
  3886. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetSInt32(System.Int32,System.Int32@)">
  3887. <summary>
  3888. Retrieves a signed 32-bit integer value for the specified option field,
  3889. assuming a zigzag encoding.
  3890. </summary>
  3891. <param name="field">The field to fetch the value for.</param>
  3892. <param name="value">The output variable to populate.</param>
  3893. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3894. </member>
  3895. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetSInt64(System.Int32,System.Int64@)">
  3896. <summary>
  3897. Retrieves a signed 64-bit integer value for the specified option field,
  3898. assuming a zigzag encoding.
  3899. </summary>
  3900. <param name="field">The field to fetch the value for.</param>
  3901. <param name="value">The output variable to populate.</param>
  3902. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3903. </member>
  3904. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetUInt32(System.Int32,System.UInt32@)">
  3905. <summary>
  3906. Retrieves an unsigned 32-bit integer value for the specified option field.
  3907. </summary>
  3908. <param name="field">The field to fetch the value for.</param>
  3909. <param name="value">The output variable to populate.</param>
  3910. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3911. </member>
  3912. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetUInt64(System.Int32,System.UInt64@)">
  3913. <summary>
  3914. Retrieves an unsigned 64-bit integer value for the specified option field.
  3915. </summary>
  3916. <param name="field">The field to fetch the value for.</param>
  3917. <param name="value">The output variable to populate.</param>
  3918. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3919. </member>
  3920. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetFloat(System.Int32,System.Single@)">
  3921. <summary>
  3922. Retrieves a 32-bit floating point value for the specified option field.
  3923. </summary>
  3924. <param name="field">The field to fetch the value for.</param>
  3925. <param name="value">The output variable to populate.</param>
  3926. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3927. </member>
  3928. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetDouble(System.Int32,System.Double@)">
  3929. <summary>
  3930. Retrieves a 64-bit floating point value for the specified option field.
  3931. </summary>
  3932. <param name="field">The field to fetch the value for.</param>
  3933. <param name="value">The output variable to populate.</param>
  3934. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3935. </member>
  3936. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetString(System.Int32,System.String@)">
  3937. <summary>
  3938. Retrieves a string value for the specified option field.
  3939. </summary>
  3940. <param name="field">The field to fetch the value for.</param>
  3941. <param name="value">The output variable to populate.</param>
  3942. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3943. </member>
  3944. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetBytes(System.Int32,Google.Protobuf.ByteString@)">
  3945. <summary>
  3946. Retrieves a bytes value for the specified option field.
  3947. </summary>
  3948. <param name="field">The field to fetch the value for.</param>
  3949. <param name="value">The output variable to populate.</param>
  3950. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3951. </member>
  3952. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetMessage``1(System.Int32,``0@)">
  3953. <summary>
  3954. Retrieves a message value for the specified option field.
  3955. </summary>
  3956. <param name="field">The field to fetch the value for.</param>
  3957. <param name="value">The output variable to populate.</param>
  3958. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3959. </member>
  3960. <member name="T:Google.Protobuf.Reflection.DescriptorReflection">
  3961. <summary>Holder for reflection information generated from google/protobuf/descriptor.proto</summary>
  3962. </member>
  3963. <member name="P:Google.Protobuf.Reflection.DescriptorReflection.Descriptor">
  3964. <summary>File descriptor for google/protobuf/descriptor.proto</summary>
  3965. </member>
  3966. <member name="T:Google.Protobuf.Reflection.FileDescriptorSet">
  3967. <summary>
  3968. The protocol compiler can output a FileDescriptorSet containing the .proto
  3969. files it parses.
  3970. </summary>
  3971. </member>
  3972. <member name="F:Google.Protobuf.Reflection.FileDescriptorSet.FileFieldNumber">
  3973. <summary>Field number for the "file" field.</summary>
  3974. </member>
  3975. <member name="T:Google.Protobuf.Reflection.FileDescriptorProto">
  3976. <summary>
  3977. Describes a complete .proto file.
  3978. </summary>
  3979. </member>
  3980. <member name="F:Google.Protobuf.Reflection.FileDescriptorProto.NameFieldNumber">
  3981. <summary>Field number for the "name" field.</summary>
  3982. </member>
  3983. <member name="P:Google.Protobuf.Reflection.FileDescriptorProto.Name">
  3984. <summary>
  3985. file name, relative to root of source tree
  3986. </summary>
  3987. </member>
  3988. <member name="P:Google.Protobuf.Reflection.FileDescriptorProto.HasName">
  3989. <summary>Gets whether the "name" field is set</summary>
  3990. </member>
  3991. <member name="M:Google.Protobuf.Reflection.FileDescriptorProto.ClearName">
  3992. <summary>Clears the value of the "name" field</summary>
  3993. </member>
  3994. <member name="F:Google.Protobuf.Reflection.FileDescriptorProto.PackageFieldNumber">
  3995. <summary>Field number for the "package" field.</summary>
  3996. </member>
  3997. <member name="P:Google.Protobuf.Reflection.FileDescriptorProto.Package">
  3998. <summary>
  3999. e.g. "foo", "foo.bar", etc.
  4000. </summary>
  4001. </member>
  4002. <member name="P:Google.Protobuf.Reflection.FileDescriptorProto.HasPackage">
  4003. <summary>Gets whether the "package" field is set</summary>
  4004. </member>
  4005. <member name="M:Google.Protobuf.Reflection.FileDescriptorProto.ClearPackage">
  4006. <summary>Clears the value of the "package" field</summary>
  4007. </member>
  4008. <member name="F:Google.Protobuf.Reflection.FileDescriptorProto.DependencyFieldNumber">
  4009. <summary>Field number for the "dependency" field.</summary>
  4010. </member>
  4011. <member name="P:Google.Protobuf.Reflection.FileDescriptorProto.Dependency">
  4012. <summary>
  4013. Names of files imported by this file.
  4014. </summary>
  4015. </member>
  4016. <member name="F:Google.Protobuf.Reflection.FileDescriptorProto.PublicDependencyFieldNumber">
  4017. <summary>Field number for the "public_dependency" field.</summary>
  4018. </member>
  4019. <member name="P:Google.Protobuf.Reflection.FileDescriptorProto.PublicDependency">
  4020. <summary>
  4021. Indexes of the public imported files in the dependency list above.
  4022. </summary>
  4023. </member>
  4024. <member name="F:Google.Protobuf.Reflection.FileDescriptorProto.WeakDependencyFieldNumber">
  4025. <summary>Field number for the "weak_dependency" field.</summary>
  4026. </member>
  4027. <member name="P:Google.Protobuf.Reflection.FileDescriptorProto.WeakDependency">
  4028. <summary>
  4029. Indexes of the weak imported files in the dependency list.
  4030. For Google-internal migration only. Do not use.
  4031. </summary>
  4032. </member>
  4033. <member name="F:Google.Protobuf.Reflection.FileDescriptorProto.MessageTypeFieldNumber">
  4034. <summary>Field number for the "message_type" field.</summary>
  4035. </member>
  4036. <member name="P:Google.Protobuf.Reflection.FileDescriptorProto.MessageType">
  4037. <summary>
  4038. All top-level definitions in this file.
  4039. </summary>
  4040. </member>
  4041. <member name="F:Google.Protobuf.Reflection.FileDescriptorProto.EnumTypeFieldNumber">
  4042. <summary>Field number for the "enum_type" field.</summary>
  4043. </member>
  4044. <member name="F:Google.Protobuf.Reflection.FileDescriptorProto.ServiceFieldNumber">
  4045. <summary>Field number for the "service" field.</summary>
  4046. </member>
  4047. <member name="F:Google.Protobuf.Reflection.FileDescriptorProto.ExtensionFieldNumber">
  4048. <summary>Field number for the "extension" field.</summary>
  4049. </member>
  4050. <member name="F:Google.Protobuf.Reflection.FileDescriptorProto.OptionsFieldNumber">
  4051. <summary>Field number for the "options" field.</summary>
  4052. </member>
  4053. <member name="F:Google.Protobuf.Reflection.FileDescriptorProto.SourceCodeInfoFieldNumber">
  4054. <summary>Field number for the "source_code_info" field.</summary>
  4055. </member>
  4056. <member name="P:Google.Protobuf.Reflection.FileDescriptorProto.SourceCodeInfo">
  4057. <summary>
  4058. This field contains optional information about the original source code.
  4059. You may safely remove this entire field without harming runtime
  4060. functionality of the descriptors -- the information is needed only by
  4061. development tools.
  4062. </summary>
  4063. </member>
  4064. <member name="F:Google.Protobuf.Reflection.FileDescriptorProto.SyntaxFieldNumber">
  4065. <summary>Field number for the "syntax" field.</summary>
  4066. </member>
  4067. <member name="P:Google.Protobuf.Reflection.FileDescriptorProto.Syntax">
  4068. <summary>
  4069. The syntax of the proto file.
  4070. The supported values are "proto2" and "proto3".
  4071. </summary>
  4072. </member>
  4073. <member name="P:Google.Protobuf.Reflection.FileDescriptorProto.HasSyntax">
  4074. <summary>Gets whether the "syntax" field is set</summary>
  4075. </member>
  4076. <member name="M:Google.Protobuf.Reflection.FileDescriptorProto.ClearSyntax">
  4077. <summary>Clears the value of the "syntax" field</summary>
  4078. </member>
  4079. <member name="T:Google.Protobuf.Reflection.DescriptorProto">
  4080. <summary>
  4081. Describes a message type.
  4082. </summary>
  4083. </member>
  4084. <member name="F:Google.Protobuf.Reflection.DescriptorProto.NameFieldNumber">
  4085. <summary>Field number for the "name" field.</summary>
  4086. </member>
  4087. <member name="P:Google.Protobuf.Reflection.DescriptorProto.HasName">
  4088. <summary>Gets whether the "name" field is set</summary>
  4089. </member>
  4090. <member name="M:Google.Protobuf.Reflection.DescriptorProto.ClearName">
  4091. <summary>Clears the value of the "name" field</summary>
  4092. </member>
  4093. <member name="F:Google.Protobuf.Reflection.DescriptorProto.FieldFieldNumber">
  4094. <summary>Field number for the "field" field.</summary>
  4095. </member>
  4096. <member name="F:Google.Protobuf.Reflection.DescriptorProto.ExtensionFieldNumber">
  4097. <summary>Field number for the "extension" field.</summary>
  4098. </member>
  4099. <member name="F:Google.Protobuf.Reflection.DescriptorProto.NestedTypeFieldNumber">
  4100. <summary>Field number for the "nested_type" field.</summary>
  4101. </member>
  4102. <member name="F:Google.Protobuf.Reflection.DescriptorProto.EnumTypeFieldNumber">
  4103. <summary>Field number for the "enum_type" field.</summary>
  4104. </member>
  4105. <member name="F:Google.Protobuf.Reflection.DescriptorProto.ExtensionRangeFieldNumber">
  4106. <summary>Field number for the "extension_range" field.</summary>
  4107. </member>
  4108. <member name="F:Google.Protobuf.Reflection.DescriptorProto.OneofDeclFieldNumber">
  4109. <summary>Field number for the "oneof_decl" field.</summary>
  4110. </member>
  4111. <member name="F:Google.Protobuf.Reflection.DescriptorProto.OptionsFieldNumber">
  4112. <summary>Field number for the "options" field.</summary>
  4113. </member>
  4114. <member name="F:Google.Protobuf.Reflection.DescriptorProto.ReservedRangeFieldNumber">
  4115. <summary>Field number for the "reserved_range" field.</summary>
  4116. </member>
  4117. <member name="F:Google.Protobuf.Reflection.DescriptorProto.ReservedNameFieldNumber">
  4118. <summary>Field number for the "reserved_name" field.</summary>
  4119. </member>
  4120. <member name="P:Google.Protobuf.Reflection.DescriptorProto.ReservedName">
  4121. <summary>
  4122. Reserved field names, which may not be used by fields in the same message.
  4123. A given name may only be reserved once.
  4124. </summary>
  4125. </member>
  4126. <member name="T:Google.Protobuf.Reflection.DescriptorProto.Types">
  4127. <summary>Container for nested types declared in the DescriptorProto message type.</summary>
  4128. </member>
  4129. <member name="F:Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.StartFieldNumber">
  4130. <summary>Field number for the "start" field.</summary>
  4131. </member>
  4132. <member name="P:Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.Start">
  4133. <summary>
  4134. Inclusive.
  4135. </summary>
  4136. </member>
  4137. <member name="P:Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.HasStart">
  4138. <summary>Gets whether the "start" field is set</summary>
  4139. </member>
  4140. <member name="M:Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.ClearStart">
  4141. <summary>Clears the value of the "start" field</summary>
  4142. </member>
  4143. <member name="F:Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.EndFieldNumber">
  4144. <summary>Field number for the "end" field.</summary>
  4145. </member>
  4146. <member name="P:Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.End">
  4147. <summary>
  4148. Exclusive.
  4149. </summary>
  4150. </member>
  4151. <member name="P:Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.HasEnd">
  4152. <summary>Gets whether the "end" field is set</summary>
  4153. </member>
  4154. <member name="M:Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.ClearEnd">
  4155. <summary>Clears the value of the "end" field</summary>
  4156. </member>
  4157. <member name="F:Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.OptionsFieldNumber">
  4158. <summary>Field number for the "options" field.</summary>
  4159. </member>
  4160. <member name="T:Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange">
  4161. <summary>
  4162. Range of reserved tag numbers. Reserved tag numbers may not be used by
  4163. fields or extension ranges in the same message. Reserved ranges may
  4164. not overlap.
  4165. </summary>
  4166. </member>
  4167. <member name="F:Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange.StartFieldNumber">
  4168. <summary>Field number for the "start" field.</summary>
  4169. </member>
  4170. <member name="P:Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange.Start">
  4171. <summary>
  4172. Inclusive.
  4173. </summary>
  4174. </member>
  4175. <member name="P:Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange.HasStart">
  4176. <summary>Gets whether the "start" field is set</summary>
  4177. </member>
  4178. <member name="M:Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange.ClearStart">
  4179. <summary>Clears the value of the "start" field</summary>
  4180. </member>
  4181. <member name="F:Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange.EndFieldNumber">
  4182. <summary>Field number for the "end" field.</summary>
  4183. </member>
  4184. <member name="P:Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange.End">
  4185. <summary>
  4186. Exclusive.
  4187. </summary>
  4188. </member>
  4189. <member name="P:Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange.HasEnd">
  4190. <summary>Gets whether the "end" field is set</summary>
  4191. </member>
  4192. <member name="M:Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange.ClearEnd">
  4193. <summary>Clears the value of the "end" field</summary>
  4194. </member>
  4195. <member name="F:Google.Protobuf.Reflection.ExtensionRangeOptions.UninterpretedOptionFieldNumber">
  4196. <summary>Field number for the "uninterpreted_option" field.</summary>
  4197. </member>
  4198. <member name="P:Google.Protobuf.Reflection.ExtensionRangeOptions.UninterpretedOption">
  4199. <summary>
  4200. The parser stores options it doesn't recognize here. See above.
  4201. </summary>
  4202. </member>
  4203. <member name="T:Google.Protobuf.Reflection.FieldDescriptorProto">
  4204. <summary>
  4205. Describes a field within a message.
  4206. </summary>
  4207. </member>
  4208. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.NameFieldNumber">
  4209. <summary>Field number for the "name" field.</summary>
  4210. </member>
  4211. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.HasName">
  4212. <summary>Gets whether the "name" field is set</summary>
  4213. </member>
  4214. <member name="M:Google.Protobuf.Reflection.FieldDescriptorProto.ClearName">
  4215. <summary>Clears the value of the "name" field</summary>
  4216. </member>
  4217. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.NumberFieldNumber">
  4218. <summary>Field number for the "number" field.</summary>
  4219. </member>
  4220. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.HasNumber">
  4221. <summary>Gets whether the "number" field is set</summary>
  4222. </member>
  4223. <member name="M:Google.Protobuf.Reflection.FieldDescriptorProto.ClearNumber">
  4224. <summary>Clears the value of the "number" field</summary>
  4225. </member>
  4226. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.LabelFieldNumber">
  4227. <summary>Field number for the "label" field.</summary>
  4228. </member>
  4229. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.HasLabel">
  4230. <summary>Gets whether the "label" field is set</summary>
  4231. </member>
  4232. <member name="M:Google.Protobuf.Reflection.FieldDescriptorProto.ClearLabel">
  4233. <summary>Clears the value of the "label" field</summary>
  4234. </member>
  4235. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.TypeFieldNumber">
  4236. <summary>Field number for the "type" field.</summary>
  4237. </member>
  4238. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.Type">
  4239. <summary>
  4240. If type_name is set, this need not be set. If both this and type_name
  4241. are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP.
  4242. </summary>
  4243. </member>
  4244. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.HasType">
  4245. <summary>Gets whether the "type" field is set</summary>
  4246. </member>
  4247. <member name="M:Google.Protobuf.Reflection.FieldDescriptorProto.ClearType">
  4248. <summary>Clears the value of the "type" field</summary>
  4249. </member>
  4250. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.TypeNameFieldNumber">
  4251. <summary>Field number for the "type_name" field.</summary>
  4252. </member>
  4253. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.TypeName">
  4254. <summary>
  4255. For message and enum types, this is the name of the type. If the name
  4256. starts with a '.', it is fully-qualified. Otherwise, C++-like scoping
  4257. rules are used to find the type (i.e. first the nested types within this
  4258. message are searched, then within the parent, on up to the root
  4259. namespace).
  4260. </summary>
  4261. </member>
  4262. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.HasTypeName">
  4263. <summary>Gets whether the "type_name" field is set</summary>
  4264. </member>
  4265. <member name="M:Google.Protobuf.Reflection.FieldDescriptorProto.ClearTypeName">
  4266. <summary>Clears the value of the "type_name" field</summary>
  4267. </member>
  4268. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.ExtendeeFieldNumber">
  4269. <summary>Field number for the "extendee" field.</summary>
  4270. </member>
  4271. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.Extendee">
  4272. <summary>
  4273. For extensions, this is the name of the type being extended. It is
  4274. resolved in the same manner as type_name.
  4275. </summary>
  4276. </member>
  4277. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.HasExtendee">
  4278. <summary>Gets whether the "extendee" field is set</summary>
  4279. </member>
  4280. <member name="M:Google.Protobuf.Reflection.FieldDescriptorProto.ClearExtendee">
  4281. <summary>Clears the value of the "extendee" field</summary>
  4282. </member>
  4283. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.DefaultValueFieldNumber">
  4284. <summary>Field number for the "default_value" field.</summary>
  4285. </member>
  4286. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.DefaultValue">
  4287. <summary>
  4288. For numeric types, contains the original text representation of the value.
  4289. For booleans, "true" or "false".
  4290. For strings, contains the default text contents (not escaped in any way).
  4291. For bytes, contains the C escaped value. All bytes >= 128 are escaped.
  4292. TODO(kenton): Base-64 encode?
  4293. </summary>
  4294. </member>
  4295. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.HasDefaultValue">
  4296. <summary>Gets whether the "default_value" field is set</summary>
  4297. </member>
  4298. <member name="M:Google.Protobuf.Reflection.FieldDescriptorProto.ClearDefaultValue">
  4299. <summary>Clears the value of the "default_value" field</summary>
  4300. </member>
  4301. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.OneofIndexFieldNumber">
  4302. <summary>Field number for the "oneof_index" field.</summary>
  4303. </member>
  4304. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.OneofIndex">
  4305. <summary>
  4306. If set, gives the index of a oneof in the containing type's oneof_decl
  4307. list. This field is a member of that oneof.
  4308. </summary>
  4309. </member>
  4310. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.HasOneofIndex">
  4311. <summary>Gets whether the "oneof_index" field is set</summary>
  4312. </member>
  4313. <member name="M:Google.Protobuf.Reflection.FieldDescriptorProto.ClearOneofIndex">
  4314. <summary>Clears the value of the "oneof_index" field</summary>
  4315. </member>
  4316. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.JsonNameFieldNumber">
  4317. <summary>Field number for the "json_name" field.</summary>
  4318. </member>
  4319. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.JsonName">
  4320. <summary>
  4321. JSON name of this field. The value is set by protocol compiler. If the
  4322. user has set a "json_name" option on this field, that option's value
  4323. will be used. Otherwise, it's deduced from the field's name by converting
  4324. it to camelCase.
  4325. </summary>
  4326. </member>
  4327. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.HasJsonName">
  4328. <summary>Gets whether the "json_name" field is set</summary>
  4329. </member>
  4330. <member name="M:Google.Protobuf.Reflection.FieldDescriptorProto.ClearJsonName">
  4331. <summary>Clears the value of the "json_name" field</summary>
  4332. </member>
  4333. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.OptionsFieldNumber">
  4334. <summary>Field number for the "options" field.</summary>
  4335. </member>
  4336. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.Proto3OptionalFieldNumber">
  4337. <summary>Field number for the "proto3_optional" field.</summary>
  4338. </member>
  4339. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.Proto3Optional">
  4340. <summary>
  4341. If true, this is a proto3 "optional". When a proto3 field is optional, it
  4342. tracks presence regardless of field type.
  4343. When proto3_optional is true, this field must be belong to a oneof to
  4344. signal to old proto3 clients that presence is tracked for this field. This
  4345. oneof is known as a "synthetic" oneof, and this field must be its sole
  4346. member (each proto3 optional field gets its own synthetic oneof). Synthetic
  4347. oneofs exist in the descriptor only, and do not generate any API. Synthetic
  4348. oneofs must be ordered after all "real" oneofs.
  4349. For message fields, proto3_optional doesn't create any semantic change,
  4350. since non-repeated message fields always track presence. However it still
  4351. indicates the semantic detail of whether the user wrote "optional" or not.
  4352. This can be useful for round-tripping the .proto file. For consistency we
  4353. give message fields a synthetic oneof also, even though it is not required
  4354. to track presence. This is especially important because the parser can't
  4355. tell if a field is a message or an enum, so it must always create a
  4356. synthetic oneof.
  4357. Proto2 optional fields do not set this flag, because they already indicate
  4358. optional with `LABEL_OPTIONAL`.
  4359. </summary>
  4360. </member>
  4361. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.HasProto3Optional">
  4362. <summary>Gets whether the "proto3_optional" field is set</summary>
  4363. </member>
  4364. <member name="M:Google.Protobuf.Reflection.FieldDescriptorProto.ClearProto3Optional">
  4365. <summary>Clears the value of the "proto3_optional" field</summary>
  4366. </member>
  4367. <member name="T:Google.Protobuf.Reflection.FieldDescriptorProto.Types">
  4368. <summary>Container for nested types declared in the FieldDescriptorProto message type.</summary>
  4369. </member>
  4370. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type.Double">
  4371. <summary>
  4372. 0 is reserved for errors.
  4373. Order is weird for historical reasons.
  4374. </summary>
  4375. </member>
  4376. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type.Int64">
  4377. <summary>
  4378. Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if
  4379. negative values are likely.
  4380. </summary>
  4381. </member>
  4382. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type.Int32">
  4383. <summary>
  4384. Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if
  4385. negative values are likely.
  4386. </summary>
  4387. </member>
  4388. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type.Group">
  4389. <summary>
  4390. Tag-delimited aggregate.
  4391. Group type is deprecated and not supported in proto3. However, Proto3
  4392. implementations should still be able to parse the group wire format and
  4393. treat group fields as unknown fields.
  4394. </summary>
  4395. </member>
  4396. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type.Message">
  4397. <summary>
  4398. Length-delimited aggregate.
  4399. </summary>
  4400. </member>
  4401. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type.Bytes">
  4402. <summary>
  4403. New in version 2.
  4404. </summary>
  4405. </member>
  4406. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type.Sint32">
  4407. <summary>
  4408. Uses ZigZag encoding.
  4409. </summary>
  4410. </member>
  4411. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type.Sint64">
  4412. <summary>
  4413. Uses ZigZag encoding.
  4414. </summary>
  4415. </member>
  4416. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.Types.Label.Optional">
  4417. <summary>
  4418. 0 is reserved for errors
  4419. </summary>
  4420. </member>
  4421. <member name="T:Google.Protobuf.Reflection.OneofDescriptorProto">
  4422. <summary>
  4423. Describes a oneof.
  4424. </summary>
  4425. </member>
  4426. <member name="F:Google.Protobuf.Reflection.OneofDescriptorProto.NameFieldNumber">
  4427. <summary>Field number for the "name" field.</summary>
  4428. </member>
  4429. <member name="P:Google.Protobuf.Reflection.OneofDescriptorProto.HasName">
  4430. <summary>Gets whether the "name" field is set</summary>
  4431. </member>
  4432. <member name="M:Google.Protobuf.Reflection.OneofDescriptorProto.ClearName">
  4433. <summary>Clears the value of the "name" field</summary>
  4434. </member>
  4435. <member name="F:Google.Protobuf.Reflection.OneofDescriptorProto.OptionsFieldNumber">
  4436. <summary>Field number for the "options" field.</summary>
  4437. </member>
  4438. <member name="T:Google.Protobuf.Reflection.EnumDescriptorProto">
  4439. <summary>
  4440. Describes an enum type.
  4441. </summary>
  4442. </member>
  4443. <member name="F:Google.Protobuf.Reflection.EnumDescriptorProto.NameFieldNumber">
  4444. <summary>Field number for the "name" field.</summary>
  4445. </member>
  4446. <member name="P:Google.Protobuf.Reflection.EnumDescriptorProto.HasName">
  4447. <summary>Gets whether the "name" field is set</summary>
  4448. </member>
  4449. <member name="M:Google.Protobuf.Reflection.EnumDescriptorProto.ClearName">
  4450. <summary>Clears the value of the "name" field</summary>
  4451. </member>
  4452. <member name="F:Google.Protobuf.Reflection.EnumDescriptorProto.ValueFieldNumber">
  4453. <summary>Field number for the "value" field.</summary>
  4454. </member>
  4455. <member name="F:Google.Protobuf.Reflection.EnumDescriptorProto.OptionsFieldNumber">
  4456. <summary>Field number for the "options" field.</summary>
  4457. </member>
  4458. <member name="F:Google.Protobuf.Reflection.EnumDescriptorProto.ReservedRangeFieldNumber">
  4459. <summary>Field number for the "reserved_range" field.</summary>
  4460. </member>
  4461. <member name="P:Google.Protobuf.Reflection.EnumDescriptorProto.ReservedRange">
  4462. <summary>
  4463. Range of reserved numeric values. Reserved numeric values may not be used
  4464. by enum values in the same enum declaration. Reserved ranges may not
  4465. overlap.
  4466. </summary>
  4467. </member>
  4468. <member name="F:Google.Protobuf.Reflection.EnumDescriptorProto.ReservedNameFieldNumber">
  4469. <summary>Field number for the "reserved_name" field.</summary>
  4470. </member>
  4471. <member name="P:Google.Protobuf.Reflection.EnumDescriptorProto.ReservedName">
  4472. <summary>
  4473. Reserved enum value names, which may not be reused. A given name may only
  4474. be reserved once.
  4475. </summary>
  4476. </member>
  4477. <member name="T:Google.Protobuf.Reflection.EnumDescriptorProto.Types">
  4478. <summary>Container for nested types declared in the EnumDescriptorProto message type.</summary>
  4479. </member>
  4480. <member name="T:Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange">
  4481. <summary>
  4482. Range of reserved numeric values. Reserved values may not be used by
  4483. entries in the same enum. Reserved ranges may not overlap.
  4484. Note that this is distinct from DescriptorProto.ReservedRange in that it
  4485. is inclusive such that it can appropriately represent the entire int32
  4486. domain.
  4487. </summary>
  4488. </member>
  4489. <member name="F:Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange.StartFieldNumber">
  4490. <summary>Field number for the "start" field.</summary>
  4491. </member>
  4492. <member name="P:Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange.Start">
  4493. <summary>
  4494. Inclusive.
  4495. </summary>
  4496. </member>
  4497. <member name="P:Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange.HasStart">
  4498. <summary>Gets whether the "start" field is set</summary>
  4499. </member>
  4500. <member name="M:Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange.ClearStart">
  4501. <summary>Clears the value of the "start" field</summary>
  4502. </member>
  4503. <member name="F:Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange.EndFieldNumber">
  4504. <summary>Field number for the "end" field.</summary>
  4505. </member>
  4506. <member name="P:Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange.End">
  4507. <summary>
  4508. Inclusive.
  4509. </summary>
  4510. </member>
  4511. <member name="P:Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange.HasEnd">
  4512. <summary>Gets whether the "end" field is set</summary>
  4513. </member>
  4514. <member name="M:Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange.ClearEnd">
  4515. <summary>Clears the value of the "end" field</summary>
  4516. </member>
  4517. <member name="T:Google.Protobuf.Reflection.EnumValueDescriptorProto">
  4518. <summary>
  4519. Describes a value within an enum.
  4520. </summary>
  4521. </member>
  4522. <member name="F:Google.Protobuf.Reflection.EnumValueDescriptorProto.NameFieldNumber">
  4523. <summary>Field number for the "name" field.</summary>
  4524. </member>
  4525. <member name="P:Google.Protobuf.Reflection.EnumValueDescriptorProto.HasName">
  4526. <summary>Gets whether the "name" field is set</summary>
  4527. </member>
  4528. <member name="M:Google.Protobuf.Reflection.EnumValueDescriptorProto.ClearName">
  4529. <summary>Clears the value of the "name" field</summary>
  4530. </member>
  4531. <member name="F:Google.Protobuf.Reflection.EnumValueDescriptorProto.NumberFieldNumber">
  4532. <summary>Field number for the "number" field.</summary>
  4533. </member>
  4534. <member name="P:Google.Protobuf.Reflection.EnumValueDescriptorProto.HasNumber">
  4535. <summary>Gets whether the "number" field is set</summary>
  4536. </member>
  4537. <member name="M:Google.Protobuf.Reflection.EnumValueDescriptorProto.ClearNumber">
  4538. <summary>Clears the value of the "number" field</summary>
  4539. </member>
  4540. <member name="F:Google.Protobuf.Reflection.EnumValueDescriptorProto.OptionsFieldNumber">
  4541. <summary>Field number for the "options" field.</summary>
  4542. </member>
  4543. <member name="T:Google.Protobuf.Reflection.ServiceDescriptorProto">
  4544. <summary>
  4545. Describes a service.
  4546. </summary>
  4547. </member>
  4548. <member name="F:Google.Protobuf.Reflection.ServiceDescriptorProto.NameFieldNumber">
  4549. <summary>Field number for the "name" field.</summary>
  4550. </member>
  4551. <member name="P:Google.Protobuf.Reflection.ServiceDescriptorProto.HasName">
  4552. <summary>Gets whether the "name" field is set</summary>
  4553. </member>
  4554. <member name="M:Google.Protobuf.Reflection.ServiceDescriptorProto.ClearName">
  4555. <summary>Clears the value of the "name" field</summary>
  4556. </member>
  4557. <member name="F:Google.Protobuf.Reflection.ServiceDescriptorProto.MethodFieldNumber">
  4558. <summary>Field number for the "method" field.</summary>
  4559. </member>
  4560. <member name="F:Google.Protobuf.Reflection.ServiceDescriptorProto.OptionsFieldNumber">
  4561. <summary>Field number for the "options" field.</summary>
  4562. </member>
  4563. <member name="T:Google.Protobuf.Reflection.MethodDescriptorProto">
  4564. <summary>
  4565. Describes a method of a service.
  4566. </summary>
  4567. </member>
  4568. <member name="F:Google.Protobuf.Reflection.MethodDescriptorProto.NameFieldNumber">
  4569. <summary>Field number for the "name" field.</summary>
  4570. </member>
  4571. <member name="P:Google.Protobuf.Reflection.MethodDescriptorProto.HasName">
  4572. <summary>Gets whether the "name" field is set</summary>
  4573. </member>
  4574. <member name="M:Google.Protobuf.Reflection.MethodDescriptorProto.ClearName">
  4575. <summary>Clears the value of the "name" field</summary>
  4576. </member>
  4577. <member name="F:Google.Protobuf.Reflection.MethodDescriptorProto.InputTypeFieldNumber">
  4578. <summary>Field number for the "input_type" field.</summary>
  4579. </member>
  4580. <member name="P:Google.Protobuf.Reflection.MethodDescriptorProto.InputType">
  4581. <summary>
  4582. Input and output type names. These are resolved in the same way as
  4583. FieldDescriptorProto.type_name, but must refer to a message type.
  4584. </summary>
  4585. </member>
  4586. <member name="P:Google.Protobuf.Reflection.MethodDescriptorProto.HasInputType">
  4587. <summary>Gets whether the "input_type" field is set</summary>
  4588. </member>
  4589. <member name="M:Google.Protobuf.Reflection.MethodDescriptorProto.ClearInputType">
  4590. <summary>Clears the value of the "input_type" field</summary>
  4591. </member>
  4592. <member name="F:Google.Protobuf.Reflection.MethodDescriptorProto.OutputTypeFieldNumber">
  4593. <summary>Field number for the "output_type" field.</summary>
  4594. </member>
  4595. <member name="P:Google.Protobuf.Reflection.MethodDescriptorProto.HasOutputType">
  4596. <summary>Gets whether the "output_type" field is set</summary>
  4597. </member>
  4598. <member name="M:Google.Protobuf.Reflection.MethodDescriptorProto.ClearOutputType">
  4599. <summary>Clears the value of the "output_type" field</summary>
  4600. </member>
  4601. <member name="F:Google.Protobuf.Reflection.MethodDescriptorProto.OptionsFieldNumber">
  4602. <summary>Field number for the "options" field.</summary>
  4603. </member>
  4604. <member name="F:Google.Protobuf.Reflection.MethodDescriptorProto.ClientStreamingFieldNumber">
  4605. <summary>Field number for the "client_streaming" field.</summary>
  4606. </member>
  4607. <member name="P:Google.Protobuf.Reflection.MethodDescriptorProto.ClientStreaming">
  4608. <summary>
  4609. Identifies if client streams multiple client messages
  4610. </summary>
  4611. </member>
  4612. <member name="P:Google.Protobuf.Reflection.MethodDescriptorProto.HasClientStreaming">
  4613. <summary>Gets whether the "client_streaming" field is set</summary>
  4614. </member>
  4615. <member name="M:Google.Protobuf.Reflection.MethodDescriptorProto.ClearClientStreaming">
  4616. <summary>Clears the value of the "client_streaming" field</summary>
  4617. </member>
  4618. <member name="F:Google.Protobuf.Reflection.MethodDescriptorProto.ServerStreamingFieldNumber">
  4619. <summary>Field number for the "server_streaming" field.</summary>
  4620. </member>
  4621. <member name="P:Google.Protobuf.Reflection.MethodDescriptorProto.ServerStreaming">
  4622. <summary>
  4623. Identifies if server streams multiple server messages
  4624. </summary>
  4625. </member>
  4626. <member name="P:Google.Protobuf.Reflection.MethodDescriptorProto.HasServerStreaming">
  4627. <summary>Gets whether the "server_streaming" field is set</summary>
  4628. </member>
  4629. <member name="M:Google.Protobuf.Reflection.MethodDescriptorProto.ClearServerStreaming">
  4630. <summary>Clears the value of the "server_streaming" field</summary>
  4631. </member>
  4632. <member name="F:Google.Protobuf.Reflection.FileOptions.JavaPackageFieldNumber">
  4633. <summary>Field number for the "java_package" field.</summary>
  4634. </member>
  4635. <member name="P:Google.Protobuf.Reflection.FileOptions.JavaPackage">
  4636. <summary>
  4637. Sets the Java package where classes generated from this .proto will be
  4638. placed. By default, the proto package is used, but this is often
  4639. inappropriate because proto packages do not normally start with backwards
  4640. domain names.
  4641. </summary>
  4642. </member>
  4643. <member name="P:Google.Protobuf.Reflection.FileOptions.HasJavaPackage">
  4644. <summary>Gets whether the "java_package" field is set</summary>
  4645. </member>
  4646. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearJavaPackage">
  4647. <summary>Clears the value of the "java_package" field</summary>
  4648. </member>
  4649. <member name="F:Google.Protobuf.Reflection.FileOptions.JavaOuterClassnameFieldNumber">
  4650. <summary>Field number for the "java_outer_classname" field.</summary>
  4651. </member>
  4652. <member name="P:Google.Protobuf.Reflection.FileOptions.JavaOuterClassname">
  4653. <summary>
  4654. If set, all the classes from the .proto file are wrapped in a single
  4655. outer class with the given name. This applies to both Proto1
  4656. (equivalent to the old "--one_java_file" option) and Proto2 (where
  4657. a .proto always translates to a single class, but you may want to
  4658. explicitly choose the class name).
  4659. </summary>
  4660. </member>
  4661. <member name="P:Google.Protobuf.Reflection.FileOptions.HasJavaOuterClassname">
  4662. <summary>Gets whether the "java_outer_classname" field is set</summary>
  4663. </member>
  4664. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearJavaOuterClassname">
  4665. <summary>Clears the value of the "java_outer_classname" field</summary>
  4666. </member>
  4667. <member name="F:Google.Protobuf.Reflection.FileOptions.JavaMultipleFilesFieldNumber">
  4668. <summary>Field number for the "java_multiple_files" field.</summary>
  4669. </member>
  4670. <member name="P:Google.Protobuf.Reflection.FileOptions.JavaMultipleFiles">
  4671. <summary>
  4672. If set true, then the Java code generator will generate a separate .java
  4673. file for each top-level message, enum, and service defined in the .proto
  4674. file. Thus, these types will *not* be nested inside the outer class
  4675. named by java_outer_classname. However, the outer class will still be
  4676. generated to contain the file's getDescriptor() method as well as any
  4677. top-level extensions defined in the file.
  4678. </summary>
  4679. </member>
  4680. <member name="P:Google.Protobuf.Reflection.FileOptions.HasJavaMultipleFiles">
  4681. <summary>Gets whether the "java_multiple_files" field is set</summary>
  4682. </member>
  4683. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearJavaMultipleFiles">
  4684. <summary>Clears the value of the "java_multiple_files" field</summary>
  4685. </member>
  4686. <member name="F:Google.Protobuf.Reflection.FileOptions.JavaGenerateEqualsAndHashFieldNumber">
  4687. <summary>Field number for the "java_generate_equals_and_hash" field.</summary>
  4688. </member>
  4689. <member name="P:Google.Protobuf.Reflection.FileOptions.JavaGenerateEqualsAndHash">
  4690. <summary>
  4691. This option does nothing.
  4692. </summary>
  4693. </member>
  4694. <member name="P:Google.Protobuf.Reflection.FileOptions.HasJavaGenerateEqualsAndHash">
  4695. <summary>Gets whether the "java_generate_equals_and_hash" field is set</summary>
  4696. </member>
  4697. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearJavaGenerateEqualsAndHash">
  4698. <summary>Clears the value of the "java_generate_equals_and_hash" field</summary>
  4699. </member>
  4700. <member name="F:Google.Protobuf.Reflection.FileOptions.JavaStringCheckUtf8FieldNumber">
  4701. <summary>Field number for the "java_string_check_utf8" field.</summary>
  4702. </member>
  4703. <member name="P:Google.Protobuf.Reflection.FileOptions.JavaStringCheckUtf8">
  4704. <summary>
  4705. If set true, then the Java2 code generator will generate code that
  4706. throws an exception whenever an attempt is made to assign a non-UTF-8
  4707. byte sequence to a string field.
  4708. Message reflection will do the same.
  4709. However, an extension field still accepts non-UTF-8 byte sequences.
  4710. This option has no effect on when used with the lite runtime.
  4711. </summary>
  4712. </member>
  4713. <member name="P:Google.Protobuf.Reflection.FileOptions.HasJavaStringCheckUtf8">
  4714. <summary>Gets whether the "java_string_check_utf8" field is set</summary>
  4715. </member>
  4716. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearJavaStringCheckUtf8">
  4717. <summary>Clears the value of the "java_string_check_utf8" field</summary>
  4718. </member>
  4719. <member name="F:Google.Protobuf.Reflection.FileOptions.OptimizeForFieldNumber">
  4720. <summary>Field number for the "optimize_for" field.</summary>
  4721. </member>
  4722. <member name="P:Google.Protobuf.Reflection.FileOptions.HasOptimizeFor">
  4723. <summary>Gets whether the "optimize_for" field is set</summary>
  4724. </member>
  4725. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearOptimizeFor">
  4726. <summary>Clears the value of the "optimize_for" field</summary>
  4727. </member>
  4728. <member name="F:Google.Protobuf.Reflection.FileOptions.GoPackageFieldNumber">
  4729. <summary>Field number for the "go_package" field.</summary>
  4730. </member>
  4731. <member name="P:Google.Protobuf.Reflection.FileOptions.GoPackage">
  4732. <summary>
  4733. Sets the Go package where structs generated from this .proto will be
  4734. placed. If omitted, the Go package will be derived from the following:
  4735. - The basename of the package import path, if provided.
  4736. - Otherwise, the package statement in the .proto file, if present.
  4737. - Otherwise, the basename of the .proto file, without extension.
  4738. </summary>
  4739. </member>
  4740. <member name="P:Google.Protobuf.Reflection.FileOptions.HasGoPackage">
  4741. <summary>Gets whether the "go_package" field is set</summary>
  4742. </member>
  4743. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearGoPackage">
  4744. <summary>Clears the value of the "go_package" field</summary>
  4745. </member>
  4746. <member name="F:Google.Protobuf.Reflection.FileOptions.CcGenericServicesFieldNumber">
  4747. <summary>Field number for the "cc_generic_services" field.</summary>
  4748. </member>
  4749. <member name="P:Google.Protobuf.Reflection.FileOptions.CcGenericServices">
  4750. <summary>
  4751. Should generic services be generated in each language? "Generic" services
  4752. are not specific to any particular RPC system. They are generated by the
  4753. main code generators in each language (without additional plugins).
  4754. Generic services were the only kind of service generation supported by
  4755. early versions of google.protobuf.
  4756. Generic services are now considered deprecated in favor of using plugins
  4757. that generate code specific to your particular RPC system. Therefore,
  4758. these default to false. Old code which depends on generic services should
  4759. explicitly set them to true.
  4760. </summary>
  4761. </member>
  4762. <member name="P:Google.Protobuf.Reflection.FileOptions.HasCcGenericServices">
  4763. <summary>Gets whether the "cc_generic_services" field is set</summary>
  4764. </member>
  4765. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearCcGenericServices">
  4766. <summary>Clears the value of the "cc_generic_services" field</summary>
  4767. </member>
  4768. <member name="F:Google.Protobuf.Reflection.FileOptions.JavaGenericServicesFieldNumber">
  4769. <summary>Field number for the "java_generic_services" field.</summary>
  4770. </member>
  4771. <member name="P:Google.Protobuf.Reflection.FileOptions.HasJavaGenericServices">
  4772. <summary>Gets whether the "java_generic_services" field is set</summary>
  4773. </member>
  4774. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearJavaGenericServices">
  4775. <summary>Clears the value of the "java_generic_services" field</summary>
  4776. </member>
  4777. <member name="F:Google.Protobuf.Reflection.FileOptions.PyGenericServicesFieldNumber">
  4778. <summary>Field number for the "py_generic_services" field.</summary>
  4779. </member>
  4780. <member name="P:Google.Protobuf.Reflection.FileOptions.HasPyGenericServices">
  4781. <summary>Gets whether the "py_generic_services" field is set</summary>
  4782. </member>
  4783. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearPyGenericServices">
  4784. <summary>Clears the value of the "py_generic_services" field</summary>
  4785. </member>
  4786. <member name="F:Google.Protobuf.Reflection.FileOptions.PhpGenericServicesFieldNumber">
  4787. <summary>Field number for the "php_generic_services" field.</summary>
  4788. </member>
  4789. <member name="P:Google.Protobuf.Reflection.FileOptions.HasPhpGenericServices">
  4790. <summary>Gets whether the "php_generic_services" field is set</summary>
  4791. </member>
  4792. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearPhpGenericServices">
  4793. <summary>Clears the value of the "php_generic_services" field</summary>
  4794. </member>
  4795. <member name="F:Google.Protobuf.Reflection.FileOptions.DeprecatedFieldNumber">
  4796. <summary>Field number for the "deprecated" field.</summary>
  4797. </member>
  4798. <member name="P:Google.Protobuf.Reflection.FileOptions.Deprecated">
  4799. <summary>
  4800. Is this file deprecated?
  4801. Depending on the target platform, this can emit Deprecated annotations
  4802. for everything in the file, or it will be completely ignored; in the very
  4803. least, this is a formalization for deprecating files.
  4804. </summary>
  4805. </member>
  4806. <member name="P:Google.Protobuf.Reflection.FileOptions.HasDeprecated">
  4807. <summary>Gets whether the "deprecated" field is set</summary>
  4808. </member>
  4809. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearDeprecated">
  4810. <summary>Clears the value of the "deprecated" field</summary>
  4811. </member>
  4812. <member name="F:Google.Protobuf.Reflection.FileOptions.CcEnableArenasFieldNumber">
  4813. <summary>Field number for the "cc_enable_arenas" field.</summary>
  4814. </member>
  4815. <member name="P:Google.Protobuf.Reflection.FileOptions.CcEnableArenas">
  4816. <summary>
  4817. Enables the use of arenas for the proto messages in this file. This applies
  4818. only to generated classes for C++.
  4819. </summary>
  4820. </member>
  4821. <member name="P:Google.Protobuf.Reflection.FileOptions.HasCcEnableArenas">
  4822. <summary>Gets whether the "cc_enable_arenas" field is set</summary>
  4823. </member>
  4824. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearCcEnableArenas">
  4825. <summary>Clears the value of the "cc_enable_arenas" field</summary>
  4826. </member>
  4827. <member name="F:Google.Protobuf.Reflection.FileOptions.ObjcClassPrefixFieldNumber">
  4828. <summary>Field number for the "objc_class_prefix" field.</summary>
  4829. </member>
  4830. <member name="P:Google.Protobuf.Reflection.FileOptions.ObjcClassPrefix">
  4831. <summary>
  4832. Sets the objective c class prefix which is prepended to all objective c
  4833. generated classes from this .proto. There is no default.
  4834. </summary>
  4835. </member>
  4836. <member name="P:Google.Protobuf.Reflection.FileOptions.HasObjcClassPrefix">
  4837. <summary>Gets whether the "objc_class_prefix" field is set</summary>
  4838. </member>
  4839. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearObjcClassPrefix">
  4840. <summary>Clears the value of the "objc_class_prefix" field</summary>
  4841. </member>
  4842. <member name="F:Google.Protobuf.Reflection.FileOptions.CsharpNamespaceFieldNumber">
  4843. <summary>Field number for the "csharp_namespace" field.</summary>
  4844. </member>
  4845. <member name="P:Google.Protobuf.Reflection.FileOptions.CsharpNamespace">
  4846. <summary>
  4847. Namespace for generated classes; defaults to the package.
  4848. </summary>
  4849. </member>
  4850. <member name="P:Google.Protobuf.Reflection.FileOptions.HasCsharpNamespace">
  4851. <summary>Gets whether the "csharp_namespace" field is set</summary>
  4852. </member>
  4853. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearCsharpNamespace">
  4854. <summary>Clears the value of the "csharp_namespace" field</summary>
  4855. </member>
  4856. <member name="F:Google.Protobuf.Reflection.FileOptions.SwiftPrefixFieldNumber">
  4857. <summary>Field number for the "swift_prefix" field.</summary>
  4858. </member>
  4859. <member name="P:Google.Protobuf.Reflection.FileOptions.SwiftPrefix">
  4860. <summary>
  4861. By default Swift generators will take the proto package and CamelCase it
  4862. replacing '.' with underscore and use that to prefix the types/symbols
  4863. defined. When this options is provided, they will use this value instead
  4864. to prefix the types/symbols defined.
  4865. </summary>
  4866. </member>
  4867. <member name="P:Google.Protobuf.Reflection.FileOptions.HasSwiftPrefix">
  4868. <summary>Gets whether the "swift_prefix" field is set</summary>
  4869. </member>
  4870. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearSwiftPrefix">
  4871. <summary>Clears the value of the "swift_prefix" field</summary>
  4872. </member>
  4873. <member name="F:Google.Protobuf.Reflection.FileOptions.PhpClassPrefixFieldNumber">
  4874. <summary>Field number for the "php_class_prefix" field.</summary>
  4875. </member>
  4876. <member name="P:Google.Protobuf.Reflection.FileOptions.PhpClassPrefix">
  4877. <summary>
  4878. Sets the php class prefix which is prepended to all php generated classes
  4879. from this .proto. Default is empty.
  4880. </summary>
  4881. </member>
  4882. <member name="P:Google.Protobuf.Reflection.FileOptions.HasPhpClassPrefix">
  4883. <summary>Gets whether the "php_class_prefix" field is set</summary>
  4884. </member>
  4885. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearPhpClassPrefix">
  4886. <summary>Clears the value of the "php_class_prefix" field</summary>
  4887. </member>
  4888. <member name="F:Google.Protobuf.Reflection.FileOptions.PhpNamespaceFieldNumber">
  4889. <summary>Field number for the "php_namespace" field.</summary>
  4890. </member>
  4891. <member name="P:Google.Protobuf.Reflection.FileOptions.PhpNamespace">
  4892. <summary>
  4893. Use this option to change the namespace of php generated classes. Default
  4894. is empty. When this option is empty, the package name will be used for
  4895. determining the namespace.
  4896. </summary>
  4897. </member>
  4898. <member name="P:Google.Protobuf.Reflection.FileOptions.HasPhpNamespace">
  4899. <summary>Gets whether the "php_namespace" field is set</summary>
  4900. </member>
  4901. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearPhpNamespace">
  4902. <summary>Clears the value of the "php_namespace" field</summary>
  4903. </member>
  4904. <member name="F:Google.Protobuf.Reflection.FileOptions.PhpMetadataNamespaceFieldNumber">
  4905. <summary>Field number for the "php_metadata_namespace" field.</summary>
  4906. </member>
  4907. <member name="P:Google.Protobuf.Reflection.FileOptions.PhpMetadataNamespace">
  4908. <summary>
  4909. Use this option to change the namespace of php generated metadata classes.
  4910. Default is empty. When this option is empty, the proto file name will be
  4911. used for determining the namespace.
  4912. </summary>
  4913. </member>
  4914. <member name="P:Google.Protobuf.Reflection.FileOptions.HasPhpMetadataNamespace">
  4915. <summary>Gets whether the "php_metadata_namespace" field is set</summary>
  4916. </member>
  4917. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearPhpMetadataNamespace">
  4918. <summary>Clears the value of the "php_metadata_namespace" field</summary>
  4919. </member>
  4920. <member name="F:Google.Protobuf.Reflection.FileOptions.RubyPackageFieldNumber">
  4921. <summary>Field number for the "ruby_package" field.</summary>
  4922. </member>
  4923. <member name="P:Google.Protobuf.Reflection.FileOptions.RubyPackage">
  4924. <summary>
  4925. Use this option to change the package of ruby generated classes. Default
  4926. is empty. When this option is not set, the package name will be used for
  4927. determining the ruby package.
  4928. </summary>
  4929. </member>
  4930. <member name="P:Google.Protobuf.Reflection.FileOptions.HasRubyPackage">
  4931. <summary>Gets whether the "ruby_package" field is set</summary>
  4932. </member>
  4933. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearRubyPackage">
  4934. <summary>Clears the value of the "ruby_package" field</summary>
  4935. </member>
  4936. <member name="F:Google.Protobuf.Reflection.FileOptions.UninterpretedOptionFieldNumber">
  4937. <summary>Field number for the "uninterpreted_option" field.</summary>
  4938. </member>
  4939. <member name="P:Google.Protobuf.Reflection.FileOptions.UninterpretedOption">
  4940. <summary>
  4941. The parser stores options it doesn't recognize here.
  4942. See the documentation for the "Options" section above.
  4943. </summary>
  4944. </member>
  4945. <member name="T:Google.Protobuf.Reflection.FileOptions.Types">
  4946. <summary>Container for nested types declared in the FileOptions message type.</summary>
  4947. </member>
  4948. <member name="T:Google.Protobuf.Reflection.FileOptions.Types.OptimizeMode">
  4949. <summary>
  4950. Generated classes can be optimized for speed or code size.
  4951. </summary>
  4952. </member>
  4953. <member name="F:Google.Protobuf.Reflection.FileOptions.Types.OptimizeMode.Speed">
  4954. <summary>
  4955. Generate complete code for parsing, serialization,
  4956. </summary>
  4957. </member>
  4958. <member name="F:Google.Protobuf.Reflection.FileOptions.Types.OptimizeMode.CodeSize">
  4959. <summary>
  4960. etc.
  4961. </summary>
  4962. </member>
  4963. <member name="F:Google.Protobuf.Reflection.FileOptions.Types.OptimizeMode.LiteRuntime">
  4964. <summary>
  4965. Generate code using MessageLite and the lite runtime.
  4966. </summary>
  4967. </member>
  4968. <member name="F:Google.Protobuf.Reflection.MessageOptions.MessageSetWireFormatFieldNumber">
  4969. <summary>Field number for the "message_set_wire_format" field.</summary>
  4970. </member>
  4971. <member name="P:Google.Protobuf.Reflection.MessageOptions.MessageSetWireFormat">
  4972. <summary>
  4973. Set true to use the old proto1 MessageSet wire format for extensions.
  4974. This is provided for backwards-compatibility with the MessageSet wire
  4975. format. You should not use this for any other reason: It's less
  4976. efficient, has fewer features, and is more complicated.
  4977. The message must be defined exactly as follows:
  4978. message Foo {
  4979. option message_set_wire_format = true;
  4980. extensions 4 to max;
  4981. }
  4982. Note that the message cannot have any defined fields; MessageSets only
  4983. have extensions.
  4984. All extensions of your type must be singular messages; e.g. they cannot
  4985. be int32s, enums, or repeated messages.
  4986. Because this is an option, the above two restrictions are not enforced by
  4987. the protocol compiler.
  4988. </summary>
  4989. </member>
  4990. <member name="P:Google.Protobuf.Reflection.MessageOptions.HasMessageSetWireFormat">
  4991. <summary>Gets whether the "message_set_wire_format" field is set</summary>
  4992. </member>
  4993. <member name="M:Google.Protobuf.Reflection.MessageOptions.ClearMessageSetWireFormat">
  4994. <summary>Clears the value of the "message_set_wire_format" field</summary>
  4995. </member>
  4996. <member name="F:Google.Protobuf.Reflection.MessageOptions.NoStandardDescriptorAccessorFieldNumber">
  4997. <summary>Field number for the "no_standard_descriptor_accessor" field.</summary>
  4998. </member>
  4999. <member name="P:Google.Protobuf.Reflection.MessageOptions.NoStandardDescriptorAccessor">
  5000. <summary>
  5001. Disables the generation of the standard "descriptor()" accessor, which can
  5002. conflict with a field of the same name. This is meant to make migration
  5003. from proto1 easier; new code should avoid fields named "descriptor".
  5004. </summary>
  5005. </member>
  5006. <member name="P:Google.Protobuf.Reflection.MessageOptions.HasNoStandardDescriptorAccessor">
  5007. <summary>Gets whether the "no_standard_descriptor_accessor" field is set</summary>
  5008. </member>
  5009. <member name="M:Google.Protobuf.Reflection.MessageOptions.ClearNoStandardDescriptorAccessor">
  5010. <summary>Clears the value of the "no_standard_descriptor_accessor" field</summary>
  5011. </member>
  5012. <member name="F:Google.Protobuf.Reflection.MessageOptions.DeprecatedFieldNumber">
  5013. <summary>Field number for the "deprecated" field.</summary>
  5014. </member>
  5015. <member name="P:Google.Protobuf.Reflection.MessageOptions.Deprecated">
  5016. <summary>
  5017. Is this message deprecated?
  5018. Depending on the target platform, this can emit Deprecated annotations
  5019. for the message, or it will be completely ignored; in the very least,
  5020. this is a formalization for deprecating messages.
  5021. </summary>
  5022. </member>
  5023. <member name="P:Google.Protobuf.Reflection.MessageOptions.HasDeprecated">
  5024. <summary>Gets whether the "deprecated" field is set</summary>
  5025. </member>
  5026. <member name="M:Google.Protobuf.Reflection.MessageOptions.ClearDeprecated">
  5027. <summary>Clears the value of the "deprecated" field</summary>
  5028. </member>
  5029. <member name="F:Google.Protobuf.Reflection.MessageOptions.MapEntryFieldNumber">
  5030. <summary>Field number for the "map_entry" field.</summary>
  5031. </member>
  5032. <member name="P:Google.Protobuf.Reflection.MessageOptions.MapEntry">
  5033. <summary>
  5034. Whether the message is an automatically generated map entry type for the
  5035. maps field.
  5036. For maps fields:
  5037. map&lt;KeyType, ValueType> map_field = 1;
  5038. The parsed descriptor looks like:
  5039. message MapFieldEntry {
  5040. option map_entry = true;
  5041. optional KeyType key = 1;
  5042. optional ValueType value = 2;
  5043. }
  5044. repeated MapFieldEntry map_field = 1;
  5045. Implementations may choose not to generate the map_entry=true message, but
  5046. use a native map in the target language to hold the keys and values.
  5047. The reflection APIs in such implementations still need to work as
  5048. if the field is a repeated message field.
  5049. NOTE: Do not set the option in .proto files. Always use the maps syntax
  5050. instead. The option should only be implicitly set by the proto compiler
  5051. parser.
  5052. </summary>
  5053. </member>
  5054. <member name="P:Google.Protobuf.Reflection.MessageOptions.HasMapEntry">
  5055. <summary>Gets whether the "map_entry" field is set</summary>
  5056. </member>
  5057. <member name="M:Google.Protobuf.Reflection.MessageOptions.ClearMapEntry">
  5058. <summary>Clears the value of the "map_entry" field</summary>
  5059. </member>
  5060. <member name="F:Google.Protobuf.Reflection.MessageOptions.UninterpretedOptionFieldNumber">
  5061. <summary>Field number for the "uninterpreted_option" field.</summary>
  5062. </member>
  5063. <member name="P:Google.Protobuf.Reflection.MessageOptions.UninterpretedOption">
  5064. <summary>
  5065. The parser stores options it doesn't recognize here. See above.
  5066. </summary>
  5067. </member>
  5068. <member name="F:Google.Protobuf.Reflection.FieldOptions.CtypeFieldNumber">
  5069. <summary>Field number for the "ctype" field.</summary>
  5070. </member>
  5071. <member name="P:Google.Protobuf.Reflection.FieldOptions.Ctype">
  5072. <summary>
  5073. The ctype option instructs the C++ code generator to use a different
  5074. representation of the field than it normally would. See the specific
  5075. options below. This option is not yet implemented in the open source
  5076. release -- sorry, we'll try to include it in a future version!
  5077. </summary>
  5078. </member>
  5079. <member name="P:Google.Protobuf.Reflection.FieldOptions.HasCtype">
  5080. <summary>Gets whether the "ctype" field is set</summary>
  5081. </member>
  5082. <member name="M:Google.Protobuf.Reflection.FieldOptions.ClearCtype">
  5083. <summary>Clears the value of the "ctype" field</summary>
  5084. </member>
  5085. <member name="F:Google.Protobuf.Reflection.FieldOptions.PackedFieldNumber">
  5086. <summary>Field number for the "packed" field.</summary>
  5087. </member>
  5088. <member name="P:Google.Protobuf.Reflection.FieldOptions.Packed">
  5089. <summary>
  5090. The packed option can be enabled for repeated primitive fields to enable
  5091. a more efficient representation on the wire. Rather than repeatedly
  5092. writing the tag and type for each element, the entire array is encoded as
  5093. a single length-delimited blob. In proto3, only explicit setting it to
  5094. false will avoid using packed encoding.
  5095. </summary>
  5096. </member>
  5097. <member name="P:Google.Protobuf.Reflection.FieldOptions.HasPacked">
  5098. <summary>Gets whether the "packed" field is set</summary>
  5099. </member>
  5100. <member name="M:Google.Protobuf.Reflection.FieldOptions.ClearPacked">
  5101. <summary>Clears the value of the "packed" field</summary>
  5102. </member>
  5103. <member name="F:Google.Protobuf.Reflection.FieldOptions.JstypeFieldNumber">
  5104. <summary>Field number for the "jstype" field.</summary>
  5105. </member>
  5106. <member name="P:Google.Protobuf.Reflection.FieldOptions.Jstype">
  5107. <summary>
  5108. The jstype option determines the JavaScript type used for values of the
  5109. field. The option is permitted only for 64 bit integral and fixed types
  5110. (int64, uint64, sint64, fixed64, sfixed64). A field with jstype JS_STRING
  5111. is represented as JavaScript string, which avoids loss of precision that
  5112. can happen when a large value is converted to a floating point JavaScript.
  5113. Specifying JS_NUMBER for the jstype causes the generated JavaScript code to
  5114. use the JavaScript "number" type. The behavior of the default option
  5115. JS_NORMAL is implementation dependent.
  5116. This option is an enum to permit additional types to be added, e.g.
  5117. goog.math.Integer.
  5118. </summary>
  5119. </member>
  5120. <member name="P:Google.Protobuf.Reflection.FieldOptions.HasJstype">
  5121. <summary>Gets whether the "jstype" field is set</summary>
  5122. </member>
  5123. <member name="M:Google.Protobuf.Reflection.FieldOptions.ClearJstype">
  5124. <summary>Clears the value of the "jstype" field</summary>
  5125. </member>
  5126. <member name="F:Google.Protobuf.Reflection.FieldOptions.LazyFieldNumber">
  5127. <summary>Field number for the "lazy" field.</summary>
  5128. </member>
  5129. <member name="P:Google.Protobuf.Reflection.FieldOptions.Lazy">
  5130. <summary>
  5131. Should this field be parsed lazily? Lazy applies only to message-type
  5132. fields. It means that when the outer message is initially parsed, the
  5133. inner message's contents will not be parsed but instead stored in encoded
  5134. form. The inner message will actually be parsed when it is first accessed.
  5135. This is only a hint. Implementations are free to choose whether to use
  5136. eager or lazy parsing regardless of the value of this option. However,
  5137. setting this option true suggests that the protocol author believes that
  5138. using lazy parsing on this field is worth the additional bookkeeping
  5139. overhead typically needed to implement it.
  5140. This option does not affect the public interface of any generated code;
  5141. all method signatures remain the same. Furthermore, thread-safety of the
  5142. interface is not affected by this option; const methods remain safe to
  5143. call from multiple threads concurrently, while non-const methods continue
  5144. to require exclusive access.
  5145. Note that implementations may choose not to check required fields within
  5146. a lazy sub-message. That is, calling IsInitialized() on the outer message
  5147. may return true even if the inner message has missing required fields.
  5148. This is necessary because otherwise the inner message would have to be
  5149. parsed in order to perform the check, defeating the purpose of lazy
  5150. parsing. An implementation which chooses not to check required fields
  5151. must be consistent about it. That is, for any particular sub-message, the
  5152. implementation must either *always* check its required fields, or *never*
  5153. check its required fields, regardless of whether or not the message has
  5154. been parsed.
  5155. </summary>
  5156. </member>
  5157. <member name="P:Google.Protobuf.Reflection.FieldOptions.HasLazy">
  5158. <summary>Gets whether the "lazy" field is set</summary>
  5159. </member>
  5160. <member name="M:Google.Protobuf.Reflection.FieldOptions.ClearLazy">
  5161. <summary>Clears the value of the "lazy" field</summary>
  5162. </member>
  5163. <member name="F:Google.Protobuf.Reflection.FieldOptions.DeprecatedFieldNumber">
  5164. <summary>Field number for the "deprecated" field.</summary>
  5165. </member>
  5166. <member name="P:Google.Protobuf.Reflection.FieldOptions.Deprecated">
  5167. <summary>
  5168. Is this field deprecated?
  5169. Depending on the target platform, this can emit Deprecated annotations
  5170. for accessors, or it will be completely ignored; in the very least, this
  5171. is a formalization for deprecating fields.
  5172. </summary>
  5173. </member>
  5174. <member name="P:Google.Protobuf.Reflection.FieldOptions.HasDeprecated">
  5175. <summary>Gets whether the "deprecated" field is set</summary>
  5176. </member>
  5177. <member name="M:Google.Protobuf.Reflection.FieldOptions.ClearDeprecated">
  5178. <summary>Clears the value of the "deprecated" field</summary>
  5179. </member>
  5180. <member name="F:Google.Protobuf.Reflection.FieldOptions.WeakFieldNumber">
  5181. <summary>Field number for the "weak" field.</summary>
  5182. </member>
  5183. <member name="P:Google.Protobuf.Reflection.FieldOptions.Weak">
  5184. <summary>
  5185. For Google-internal migration only. Do not use.
  5186. </summary>
  5187. </member>
  5188. <member name="P:Google.Protobuf.Reflection.FieldOptions.HasWeak">
  5189. <summary>Gets whether the "weak" field is set</summary>
  5190. </member>
  5191. <member name="M:Google.Protobuf.Reflection.FieldOptions.ClearWeak">
  5192. <summary>Clears the value of the "weak" field</summary>
  5193. </member>
  5194. <member name="F:Google.Protobuf.Reflection.FieldOptions.UninterpretedOptionFieldNumber">
  5195. <summary>Field number for the "uninterpreted_option" field.</summary>
  5196. </member>
  5197. <member name="P:Google.Protobuf.Reflection.FieldOptions.UninterpretedOption">
  5198. <summary>
  5199. The parser stores options it doesn't recognize here. See above.
  5200. </summary>
  5201. </member>
  5202. <member name="T:Google.Protobuf.Reflection.FieldOptions.Types">
  5203. <summary>Container for nested types declared in the FieldOptions message type.</summary>
  5204. </member>
  5205. <member name="F:Google.Protobuf.Reflection.FieldOptions.Types.CType.String">
  5206. <summary>
  5207. Default mode.
  5208. </summary>
  5209. </member>
  5210. <member name="F:Google.Protobuf.Reflection.FieldOptions.Types.JSType.JsNormal">
  5211. <summary>
  5212. Use the default type.
  5213. </summary>
  5214. </member>
  5215. <member name="F:Google.Protobuf.Reflection.FieldOptions.Types.JSType.JsString">
  5216. <summary>
  5217. Use JavaScript strings.
  5218. </summary>
  5219. </member>
  5220. <member name="F:Google.Protobuf.Reflection.FieldOptions.Types.JSType.JsNumber">
  5221. <summary>
  5222. Use JavaScript numbers.
  5223. </summary>
  5224. </member>
  5225. <member name="F:Google.Protobuf.Reflection.OneofOptions.UninterpretedOptionFieldNumber">
  5226. <summary>Field number for the "uninterpreted_option" field.</summary>
  5227. </member>
  5228. <member name="P:Google.Protobuf.Reflection.OneofOptions.UninterpretedOption">
  5229. <summary>
  5230. The parser stores options it doesn't recognize here. See above.
  5231. </summary>
  5232. </member>
  5233. <member name="F:Google.Protobuf.Reflection.EnumOptions.AllowAliasFieldNumber">
  5234. <summary>Field number for the "allow_alias" field.</summary>
  5235. </member>
  5236. <member name="P:Google.Protobuf.Reflection.EnumOptions.AllowAlias">
  5237. <summary>
  5238. Set this option to true to allow mapping different tag names to the same
  5239. value.
  5240. </summary>
  5241. </member>
  5242. <member name="P:Google.Protobuf.Reflection.EnumOptions.HasAllowAlias">
  5243. <summary>Gets whether the "allow_alias" field is set</summary>
  5244. </member>
  5245. <member name="M:Google.Protobuf.Reflection.EnumOptions.ClearAllowAlias">
  5246. <summary>Clears the value of the "allow_alias" field</summary>
  5247. </member>
  5248. <member name="F:Google.Protobuf.Reflection.EnumOptions.DeprecatedFieldNumber">
  5249. <summary>Field number for the "deprecated" field.</summary>
  5250. </member>
  5251. <member name="P:Google.Protobuf.Reflection.EnumOptions.Deprecated">
  5252. <summary>
  5253. Is this enum deprecated?
  5254. Depending on the target platform, this can emit Deprecated annotations
  5255. for the enum, or it will be completely ignored; in the very least, this
  5256. is a formalization for deprecating enums.
  5257. </summary>
  5258. </member>
  5259. <member name="P:Google.Protobuf.Reflection.EnumOptions.HasDeprecated">
  5260. <summary>Gets whether the "deprecated" field is set</summary>
  5261. </member>
  5262. <member name="M:Google.Protobuf.Reflection.EnumOptions.ClearDeprecated">
  5263. <summary>Clears the value of the "deprecated" field</summary>
  5264. </member>
  5265. <member name="F:Google.Protobuf.Reflection.EnumOptions.UninterpretedOptionFieldNumber">
  5266. <summary>Field number for the "uninterpreted_option" field.</summary>
  5267. </member>
  5268. <member name="P:Google.Protobuf.Reflection.EnumOptions.UninterpretedOption">
  5269. <summary>
  5270. The parser stores options it doesn't recognize here. See above.
  5271. </summary>
  5272. </member>
  5273. <member name="F:Google.Protobuf.Reflection.EnumValueOptions.DeprecatedFieldNumber">
  5274. <summary>Field number for the "deprecated" field.</summary>
  5275. </member>
  5276. <member name="P:Google.Protobuf.Reflection.EnumValueOptions.Deprecated">
  5277. <summary>
  5278. Is this enum value deprecated?
  5279. Depending on the target platform, this can emit Deprecated annotations
  5280. for the enum value, or it will be completely ignored; in the very least,
  5281. this is a formalization for deprecating enum values.
  5282. </summary>
  5283. </member>
  5284. <member name="P:Google.Protobuf.Reflection.EnumValueOptions.HasDeprecated">
  5285. <summary>Gets whether the "deprecated" field is set</summary>
  5286. </member>
  5287. <member name="M:Google.Protobuf.Reflection.EnumValueOptions.ClearDeprecated">
  5288. <summary>Clears the value of the "deprecated" field</summary>
  5289. </member>
  5290. <member name="F:Google.Protobuf.Reflection.EnumValueOptions.UninterpretedOptionFieldNumber">
  5291. <summary>Field number for the "uninterpreted_option" field.</summary>
  5292. </member>
  5293. <member name="P:Google.Protobuf.Reflection.EnumValueOptions.UninterpretedOption">
  5294. <summary>
  5295. The parser stores options it doesn't recognize here. See above.
  5296. </summary>
  5297. </member>
  5298. <member name="F:Google.Protobuf.Reflection.ServiceOptions.DeprecatedFieldNumber">
  5299. <summary>Field number for the "deprecated" field.</summary>
  5300. </member>
  5301. <member name="P:Google.Protobuf.Reflection.ServiceOptions.Deprecated">
  5302. <summary>
  5303. Is this service deprecated?
  5304. Depending on the target platform, this can emit Deprecated annotations
  5305. for the service, or it will be completely ignored; in the very least,
  5306. this is a formalization for deprecating services.
  5307. </summary>
  5308. </member>
  5309. <member name="P:Google.Protobuf.Reflection.ServiceOptions.HasDeprecated">
  5310. <summary>Gets whether the "deprecated" field is set</summary>
  5311. </member>
  5312. <member name="M:Google.Protobuf.Reflection.ServiceOptions.ClearDeprecated">
  5313. <summary>Clears the value of the "deprecated" field</summary>
  5314. </member>
  5315. <member name="F:Google.Protobuf.Reflection.ServiceOptions.UninterpretedOptionFieldNumber">
  5316. <summary>Field number for the "uninterpreted_option" field.</summary>
  5317. </member>
  5318. <member name="P:Google.Protobuf.Reflection.ServiceOptions.UninterpretedOption">
  5319. <summary>
  5320. The parser stores options it doesn't recognize here. See above.
  5321. </summary>
  5322. </member>
  5323. <member name="F:Google.Protobuf.Reflection.MethodOptions.DeprecatedFieldNumber">
  5324. <summary>Field number for the "deprecated" field.</summary>
  5325. </member>
  5326. <member name="P:Google.Protobuf.Reflection.MethodOptions.Deprecated">
  5327. <summary>
  5328. Is this method deprecated?
  5329. Depending on the target platform, this can emit Deprecated annotations
  5330. for the method, or it will be completely ignored; in the very least,
  5331. this is a formalization for deprecating methods.
  5332. </summary>
  5333. </member>
  5334. <member name="P:Google.Protobuf.Reflection.MethodOptions.HasDeprecated">
  5335. <summary>Gets whether the "deprecated" field is set</summary>
  5336. </member>
  5337. <member name="M:Google.Protobuf.Reflection.MethodOptions.ClearDeprecated">
  5338. <summary>Clears the value of the "deprecated" field</summary>
  5339. </member>
  5340. <member name="F:Google.Protobuf.Reflection.MethodOptions.IdempotencyLevelFieldNumber">
  5341. <summary>Field number for the "idempotency_level" field.</summary>
  5342. </member>
  5343. <member name="P:Google.Protobuf.Reflection.MethodOptions.HasIdempotencyLevel">
  5344. <summary>Gets whether the "idempotency_level" field is set</summary>
  5345. </member>
  5346. <member name="M:Google.Protobuf.Reflection.MethodOptions.ClearIdempotencyLevel">
  5347. <summary>Clears the value of the "idempotency_level" field</summary>
  5348. </member>
  5349. <member name="F:Google.Protobuf.Reflection.MethodOptions.UninterpretedOptionFieldNumber">
  5350. <summary>Field number for the "uninterpreted_option" field.</summary>
  5351. </member>
  5352. <member name="P:Google.Protobuf.Reflection.MethodOptions.UninterpretedOption">
  5353. <summary>
  5354. The parser stores options it doesn't recognize here. See above.
  5355. </summary>
  5356. </member>
  5357. <member name="T:Google.Protobuf.Reflection.MethodOptions.Types">
  5358. <summary>Container for nested types declared in the MethodOptions message type.</summary>
  5359. </member>
  5360. <member name="T:Google.Protobuf.Reflection.MethodOptions.Types.IdempotencyLevel">
  5361. <summary>
  5362. Is this method side-effect-free (or safe in HTTP parlance), or idempotent,
  5363. or neither? HTTP based RPC implementation may choose GET verb for safe
  5364. methods, and PUT verb for idempotent methods instead of the default POST.
  5365. </summary>
  5366. </member>
  5367. <member name="F:Google.Protobuf.Reflection.MethodOptions.Types.IdempotencyLevel.NoSideEffects">
  5368. <summary>
  5369. implies idempotent
  5370. </summary>
  5371. </member>
  5372. <member name="F:Google.Protobuf.Reflection.MethodOptions.Types.IdempotencyLevel.Idempotent">
  5373. <summary>
  5374. idempotent, but may have side effects
  5375. </summary>
  5376. </member>
  5377. <member name="T:Google.Protobuf.Reflection.UninterpretedOption">
  5378. <summary>
  5379. A message representing a option the parser does not recognize. This only
  5380. appears in options protos created by the compiler::Parser class.
  5381. DescriptorPool resolves these when building Descriptor objects. Therefore,
  5382. options protos in descriptor objects (e.g. returned by Descriptor::options(),
  5383. or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
  5384. in them.
  5385. </summary>
  5386. </member>
  5387. <member name="F:Google.Protobuf.Reflection.UninterpretedOption.NameFieldNumber">
  5388. <summary>Field number for the "name" field.</summary>
  5389. </member>
  5390. <member name="F:Google.Protobuf.Reflection.UninterpretedOption.IdentifierValueFieldNumber">
  5391. <summary>Field number for the "identifier_value" field.</summary>
  5392. </member>
  5393. <member name="P:Google.Protobuf.Reflection.UninterpretedOption.IdentifierValue">
  5394. <summary>
  5395. The value of the uninterpreted option, in whatever type the tokenizer
  5396. identified it as during parsing. Exactly one of these should be set.
  5397. </summary>
  5398. </member>
  5399. <member name="P:Google.Protobuf.Reflection.UninterpretedOption.HasIdentifierValue">
  5400. <summary>Gets whether the "identifier_value" field is set</summary>
  5401. </member>
  5402. <member name="M:Google.Protobuf.Reflection.UninterpretedOption.ClearIdentifierValue">
  5403. <summary>Clears the value of the "identifier_value" field</summary>
  5404. </member>
  5405. <member name="F:Google.Protobuf.Reflection.UninterpretedOption.PositiveIntValueFieldNumber">
  5406. <summary>Field number for the "positive_int_value" field.</summary>
  5407. </member>
  5408. <member name="P:Google.Protobuf.Reflection.UninterpretedOption.HasPositiveIntValue">
  5409. <summary>Gets whether the "positive_int_value" field is set</summary>
  5410. </member>
  5411. <member name="M:Google.Protobuf.Reflection.UninterpretedOption.ClearPositiveIntValue">
  5412. <summary>Clears the value of the "positive_int_value" field</summary>
  5413. </member>
  5414. <member name="F:Google.Protobuf.Reflection.UninterpretedOption.NegativeIntValueFieldNumber">
  5415. <summary>Field number for the "negative_int_value" field.</summary>
  5416. </member>
  5417. <member name="P:Google.Protobuf.Reflection.UninterpretedOption.HasNegativeIntValue">
  5418. <summary>Gets whether the "negative_int_value" field is set</summary>
  5419. </member>
  5420. <member name="M:Google.Protobuf.Reflection.UninterpretedOption.ClearNegativeIntValue">
  5421. <summary>Clears the value of the "negative_int_value" field</summary>
  5422. </member>
  5423. <member name="F:Google.Protobuf.Reflection.UninterpretedOption.DoubleValueFieldNumber">
  5424. <summary>Field number for the "double_value" field.</summary>
  5425. </member>
  5426. <member name="P:Google.Protobuf.Reflection.UninterpretedOption.HasDoubleValue">
  5427. <summary>Gets whether the "double_value" field is set</summary>
  5428. </member>
  5429. <member name="M:Google.Protobuf.Reflection.UninterpretedOption.ClearDoubleValue">
  5430. <summary>Clears the value of the "double_value" field</summary>
  5431. </member>
  5432. <member name="F:Google.Protobuf.Reflection.UninterpretedOption.StringValueFieldNumber">
  5433. <summary>Field number for the "string_value" field.</summary>
  5434. </member>
  5435. <member name="P:Google.Protobuf.Reflection.UninterpretedOption.HasStringValue">
  5436. <summary>Gets whether the "string_value" field is set</summary>
  5437. </member>
  5438. <member name="M:Google.Protobuf.Reflection.UninterpretedOption.ClearStringValue">
  5439. <summary>Clears the value of the "string_value" field</summary>
  5440. </member>
  5441. <member name="F:Google.Protobuf.Reflection.UninterpretedOption.AggregateValueFieldNumber">
  5442. <summary>Field number for the "aggregate_value" field.</summary>
  5443. </member>
  5444. <member name="P:Google.Protobuf.Reflection.UninterpretedOption.HasAggregateValue">
  5445. <summary>Gets whether the "aggregate_value" field is set</summary>
  5446. </member>
  5447. <member name="M:Google.Protobuf.Reflection.UninterpretedOption.ClearAggregateValue">
  5448. <summary>Clears the value of the "aggregate_value" field</summary>
  5449. </member>
  5450. <member name="T:Google.Protobuf.Reflection.UninterpretedOption.Types">
  5451. <summary>Container for nested types declared in the UninterpretedOption message type.</summary>
  5452. </member>
  5453. <member name="T:Google.Protobuf.Reflection.UninterpretedOption.Types.NamePart">
  5454. <summary>
  5455. The name of the uninterpreted option. Each string represents a segment in
  5456. a dot-separated name. is_extension is true iff a segment represents an
  5457. extension (denoted with parentheses in options specs in .proto files).
  5458. E.g.,{ ["foo", false], ["bar.baz", true], ["qux", false] } represents
  5459. "foo.(bar.baz).qux".
  5460. </summary>
  5461. </member>
  5462. <member name="F:Google.Protobuf.Reflection.UninterpretedOption.Types.NamePart.NamePart_FieldNumber">
  5463. <summary>Field number for the "name_part" field.</summary>
  5464. </member>
  5465. <member name="P:Google.Protobuf.Reflection.UninterpretedOption.Types.NamePart.HasNamePart_">
  5466. <summary>Gets whether the "name_part" field is set</summary>
  5467. </member>
  5468. <member name="M:Google.Protobuf.Reflection.UninterpretedOption.Types.NamePart.ClearNamePart_">
  5469. <summary>Clears the value of the "name_part" field</summary>
  5470. </member>
  5471. <member name="F:Google.Protobuf.Reflection.UninterpretedOption.Types.NamePart.IsExtensionFieldNumber">
  5472. <summary>Field number for the "is_extension" field.</summary>
  5473. </member>
  5474. <member name="P:Google.Protobuf.Reflection.UninterpretedOption.Types.NamePart.HasIsExtension">
  5475. <summary>Gets whether the "is_extension" field is set</summary>
  5476. </member>
  5477. <member name="M:Google.Protobuf.Reflection.UninterpretedOption.Types.NamePart.ClearIsExtension">
  5478. <summary>Clears the value of the "is_extension" field</summary>
  5479. </member>
  5480. <member name="T:Google.Protobuf.Reflection.SourceCodeInfo">
  5481. <summary>
  5482. Encapsulates information about the original source file from which a
  5483. FileDescriptorProto was generated.
  5484. </summary>
  5485. </member>
  5486. <member name="F:Google.Protobuf.Reflection.SourceCodeInfo.LocationFieldNumber">
  5487. <summary>Field number for the "location" field.</summary>
  5488. </member>
  5489. <member name="P:Google.Protobuf.Reflection.SourceCodeInfo.Location">
  5490. <summary>
  5491. A Location identifies a piece of source code in a .proto file which
  5492. corresponds to a particular definition. This information is intended
  5493. to be useful to IDEs, code indexers, documentation generators, and similar
  5494. tools.
  5495. For example, say we have a file like:
  5496. message Foo {
  5497. optional string foo = 1;
  5498. }
  5499. Let's look at just the field definition:
  5500. optional string foo = 1;
  5501. ^ ^^ ^^ ^ ^^^
  5502. a bc de f ghi
  5503. We have the following locations:
  5504. span path represents
  5505. [a,i) [ 4, 0, 2, 0 ] The whole field definition.
  5506. [a,b) [ 4, 0, 2, 0, 4 ] The label (optional).
  5507. [c,d) [ 4, 0, 2, 0, 5 ] The type (string).
  5508. [e,f) [ 4, 0, 2, 0, 1 ] The name (foo).
  5509. [g,h) [ 4, 0, 2, 0, 3 ] The number (1).
  5510. Notes:
  5511. - A location may refer to a repeated field itself (i.e. not to any
  5512. particular index within it). This is used whenever a set of elements are
  5513. logically enclosed in a single code segment. For example, an entire
  5514. extend block (possibly containing multiple extension definitions) will
  5515. have an outer location whose path refers to the "extensions" repeated
  5516. field without an index.
  5517. - Multiple locations may have the same path. This happens when a single
  5518. logical declaration is spread out across multiple places. The most
  5519. obvious example is the "extend" block again -- there may be multiple
  5520. extend blocks in the same scope, each of which will have the same path.
  5521. - A location's span is not always a subset of its parent's span. For
  5522. example, the "extendee" of an extension declaration appears at the
  5523. beginning of the "extend" block and is shared by all extensions within
  5524. the block.
  5525. - Just because a location's span is a subset of some other location's span
  5526. does not mean that it is a descendant. For example, a "group" defines
  5527. both a type and a field in a single declaration. Thus, the locations
  5528. corresponding to the type and field and their components will overlap.
  5529. - Code which tries to interpret locations should probably be designed to
  5530. ignore those that it doesn't understand, as more types of locations could
  5531. be recorded in the future.
  5532. </summary>
  5533. </member>
  5534. <member name="T:Google.Protobuf.Reflection.SourceCodeInfo.Types">
  5535. <summary>Container for nested types declared in the SourceCodeInfo message type.</summary>
  5536. </member>
  5537. <member name="F:Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.PathFieldNumber">
  5538. <summary>Field number for the "path" field.</summary>
  5539. </member>
  5540. <member name="P:Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.Path">
  5541. <summary>
  5542. Identifies which part of the FileDescriptorProto was defined at this
  5543. location.
  5544. Each element is a field number or an index. They form a path from
  5545. the root FileDescriptorProto to the place where the definition. For
  5546. example, this path:
  5547. [ 4, 3, 2, 7, 1 ]
  5548. refers to:
  5549. file.message_type(3) // 4, 3
  5550. .field(7) // 2, 7
  5551. .name() // 1
  5552. This is because FileDescriptorProto.message_type has field number 4:
  5553. repeated DescriptorProto message_type = 4;
  5554. and DescriptorProto.field has field number 2:
  5555. repeated FieldDescriptorProto field = 2;
  5556. and FieldDescriptorProto.name has field number 1:
  5557. optional string name = 1;
  5558. Thus, the above path gives the location of a field name. If we removed
  5559. the last element:
  5560. [ 4, 3, 2, 7 ]
  5561. this path refers to the whole field declaration (from the beginning
  5562. of the label to the terminating semicolon).
  5563. </summary>
  5564. </member>
  5565. <member name="F:Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.SpanFieldNumber">
  5566. <summary>Field number for the "span" field.</summary>
  5567. </member>
  5568. <member name="P:Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.Span">
  5569. <summary>
  5570. Always has exactly three or four elements: start line, start column,
  5571. end line (optional, otherwise assumed same as start line), end column.
  5572. These are packed into a single field for efficiency. Note that line
  5573. and column numbers are zero-based -- typically you will want to add
  5574. 1 to each before displaying to a user.
  5575. </summary>
  5576. </member>
  5577. <member name="F:Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.LeadingCommentsFieldNumber">
  5578. <summary>Field number for the "leading_comments" field.</summary>
  5579. </member>
  5580. <member name="P:Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.LeadingComments">
  5581. <summary>
  5582. If this SourceCodeInfo represents a complete declaration, these are any
  5583. comments appearing before and after the declaration which appear to be
  5584. attached to the declaration.
  5585. A series of line comments appearing on consecutive lines, with no other
  5586. tokens appearing on those lines, will be treated as a single comment.
  5587. leading_detached_comments will keep paragraphs of comments that appear
  5588. before (but not connected to) the current element. Each paragraph,
  5589. separated by empty lines, will be one comment element in the repeated
  5590. field.
  5591. Only the comment content is provided; comment markers (e.g. //) are
  5592. stripped out. For block comments, leading whitespace and an asterisk
  5593. will be stripped from the beginning of each line other than the first.
  5594. Newlines are included in the output.
  5595. Examples:
  5596. optional int32 foo = 1; // Comment attached to foo.
  5597. // Comment attached to bar.
  5598. optional int32 bar = 2;
  5599. optional string baz = 3;
  5600. // Comment attached to baz.
  5601. // Another line attached to baz.
  5602. // Comment attached to qux.
  5603. //
  5604. // Another line attached to qux.
  5605. optional double qux = 4;
  5606. // Detached comment for corge. This is not leading or trailing comments
  5607. // to qux or corge because there are blank lines separating it from
  5608. // both.
  5609. // Detached comment for corge paragraph 2.
  5610. optional string corge = 5;
  5611. /* Block comment attached
  5612. * to corge. Leading asterisks
  5613. * will be removed. */
  5614. /* Block comment attached to
  5615. * grault. */
  5616. optional int32 grault = 6;
  5617. // ignored detached comments.
  5618. </summary>
  5619. </member>
  5620. <member name="P:Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.HasLeadingComments">
  5621. <summary>Gets whether the "leading_comments" field is set</summary>
  5622. </member>
  5623. <member name="M:Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.ClearLeadingComments">
  5624. <summary>Clears the value of the "leading_comments" field</summary>
  5625. </member>
  5626. <member name="F:Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.TrailingCommentsFieldNumber">
  5627. <summary>Field number for the "trailing_comments" field.</summary>
  5628. </member>
  5629. <member name="P:Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.HasTrailingComments">
  5630. <summary>Gets whether the "trailing_comments" field is set</summary>
  5631. </member>
  5632. <member name="M:Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.ClearTrailingComments">
  5633. <summary>Clears the value of the "trailing_comments" field</summary>
  5634. </member>
  5635. <member name="F:Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.LeadingDetachedCommentsFieldNumber">
  5636. <summary>Field number for the "leading_detached_comments" field.</summary>
  5637. </member>
  5638. <member name="T:Google.Protobuf.Reflection.GeneratedCodeInfo">
  5639. <summary>
  5640. Describes the relationship between generated code and its original source
  5641. file. A GeneratedCodeInfo message is associated with only one generated
  5642. source file, but may contain references to different source .proto files.
  5643. </summary>
  5644. </member>
  5645. <member name="F:Google.Protobuf.Reflection.GeneratedCodeInfo.AnnotationFieldNumber">
  5646. <summary>Field number for the "annotation" field.</summary>
  5647. </member>
  5648. <member name="P:Google.Protobuf.Reflection.GeneratedCodeInfo.Annotation">
  5649. <summary>
  5650. An Annotation connects some span of text in generated code to an element
  5651. of its generating .proto file.
  5652. </summary>
  5653. </member>
  5654. <member name="T:Google.Protobuf.Reflection.GeneratedCodeInfo.Types">
  5655. <summary>Container for nested types declared in the GeneratedCodeInfo message type.</summary>
  5656. </member>
  5657. <member name="F:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.PathFieldNumber">
  5658. <summary>Field number for the "path" field.</summary>
  5659. </member>
  5660. <member name="P:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.Path">
  5661. <summary>
  5662. Identifies the element in the original source .proto file. This field
  5663. is formatted the same as SourceCodeInfo.Location.path.
  5664. </summary>
  5665. </member>
  5666. <member name="F:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.SourceFileFieldNumber">
  5667. <summary>Field number for the "source_file" field.</summary>
  5668. </member>
  5669. <member name="P:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.SourceFile">
  5670. <summary>
  5671. Identifies the filesystem path to the original source .proto.
  5672. </summary>
  5673. </member>
  5674. <member name="P:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.HasSourceFile">
  5675. <summary>Gets whether the "source_file" field is set</summary>
  5676. </member>
  5677. <member name="M:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.ClearSourceFile">
  5678. <summary>Clears the value of the "source_file" field</summary>
  5679. </member>
  5680. <member name="F:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.BeginFieldNumber">
  5681. <summary>Field number for the "begin" field.</summary>
  5682. </member>
  5683. <member name="P:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.Begin">
  5684. <summary>
  5685. Identifies the starting offset in bytes in the generated code
  5686. that relates to the identified object.
  5687. </summary>
  5688. </member>
  5689. <member name="P:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.HasBegin">
  5690. <summary>Gets whether the "begin" field is set</summary>
  5691. </member>
  5692. <member name="M:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.ClearBegin">
  5693. <summary>Clears the value of the "begin" field</summary>
  5694. </member>
  5695. <member name="F:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.EndFieldNumber">
  5696. <summary>Field number for the "end" field.</summary>
  5697. </member>
  5698. <member name="P:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.End">
  5699. <summary>
  5700. Identifies the ending offset in bytes in the generated code that
  5701. relates to the identified offset. The end offset should be one past
  5702. the last relevant byte (so the length of the text = end - begin).
  5703. </summary>
  5704. </member>
  5705. <member name="P:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.HasEnd">
  5706. <summary>Gets whether the "end" field is set</summary>
  5707. </member>
  5708. <member name="M:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.ClearEnd">
  5709. <summary>Clears the value of the "end" field</summary>
  5710. </member>
  5711. <member name="T:Google.Protobuf.Reflection.DescriptorBase">
  5712. <summary>
  5713. Base class for nearly all descriptors, providing common functionality.
  5714. </summary>
  5715. </member>
  5716. <member name="P:Google.Protobuf.Reflection.DescriptorBase.Index">
  5717. <value>
  5718. The index of this descriptor within its parent descriptor.
  5719. </value>
  5720. <remarks>
  5721. This returns the index of this descriptor within its parent, for
  5722. this descriptor's type. (There can be duplicate values for different
  5723. types, e.g. one enum type with index 0 and one message type with index 0.)
  5724. </remarks>
  5725. </member>
  5726. <member name="P:Google.Protobuf.Reflection.DescriptorBase.Name">
  5727. <summary>
  5728. Returns the name of the entity (field, message etc) being described.
  5729. </summary>
  5730. </member>
  5731. <member name="P:Google.Protobuf.Reflection.DescriptorBase.FullName">
  5732. <summary>
  5733. The fully qualified name of the descriptor's target.
  5734. </summary>
  5735. </member>
  5736. <member name="P:Google.Protobuf.Reflection.DescriptorBase.File">
  5737. <value>
  5738. The file this descriptor was declared in.
  5739. </value>
  5740. </member>
  5741. <member name="P:Google.Protobuf.Reflection.DescriptorBase.Declaration">
  5742. <summary>
  5743. The declaration information about the descriptor, or null if no declaration information
  5744. is available for this descriptor.
  5745. </summary>
  5746. <remarks>
  5747. This information is typically only available for dynamically loaded descriptors,
  5748. for example within a protoc plugin where the full descriptors, including source info,
  5749. are passed to the code by protoc.
  5750. </remarks>
  5751. </member>
  5752. <member name="M:Google.Protobuf.Reflection.DescriptorBase.GetNestedDescriptorListForField(System.Int32)">
  5753. <summary>
  5754. Retrieves the list of nested descriptors corresponding to the given field number, if any.
  5755. If the field is unknown or not a nested descriptor list, return null to terminate the search.
  5756. The default implementation returns null.
  5757. </summary>
  5758. </member>
  5759. <member name="T:Google.Protobuf.Reflection.DescriptorDeclaration">
  5760. <summary>
  5761. Provides additional information about the declaration of a descriptor,
  5762. such as source location and comments.
  5763. </summary>
  5764. </member>
  5765. <member name="P:Google.Protobuf.Reflection.DescriptorDeclaration.Descriptor">
  5766. <summary>
  5767. The descriptor this declaration relates to.
  5768. </summary>
  5769. </member>
  5770. <member name="P:Google.Protobuf.Reflection.DescriptorDeclaration.StartLine">
  5771. <summary>
  5772. The start line of the declaration within the source file. This value is 1-based.
  5773. </summary>
  5774. </member>
  5775. <member name="P:Google.Protobuf.Reflection.DescriptorDeclaration.StartColumn">
  5776. <summary>
  5777. The start column of the declaration within the source file. This value is 1-based.
  5778. </summary>
  5779. </member>
  5780. <member name="P:Google.Protobuf.Reflection.DescriptorDeclaration.EndLine">
  5781. <summary>
  5782. // The end line of the declaration within the source file. This value is 1-based.
  5783. </summary>
  5784. </member>
  5785. <member name="P:Google.Protobuf.Reflection.DescriptorDeclaration.EndColumn">
  5786. <summary>
  5787. The end column of the declaration within the source file. This value is 1-based, and
  5788. exclusive. (The final character of the declaration is on the column before this value.)
  5789. </summary>
  5790. </member>
  5791. <member name="P:Google.Protobuf.Reflection.DescriptorDeclaration.LeadingComments">
  5792. <summary>
  5793. Comments appearing before the declaration. Never null, but may be empty. Multi-line comments
  5794. are represented as a newline-separated string. Leading whitespace and the comment marker ("//")
  5795. are removed from each line.
  5796. </summary>
  5797. </member>
  5798. <member name="P:Google.Protobuf.Reflection.DescriptorDeclaration.TrailingComments">
  5799. <summary>
  5800. Comments appearing after the declaration. Never null, but may be empty. Multi-line comments
  5801. are represented as a newline-separated string. Leading whitespace and the comment marker ("//")
  5802. are removed from each line.
  5803. </summary>
  5804. </member>
  5805. <member name="P:Google.Protobuf.Reflection.DescriptorDeclaration.LeadingDetachedComments">
  5806. <summary>
  5807. Comments appearing before the declaration, but separated from it by blank
  5808. lines. Each string represents a newline-separated paragraph of comments.
  5809. Leading whitespace and the comment marker ("//") are removed from each line.
  5810. The list is never null, but may be empty. Likewise each element is never null, but may be empty.
  5811. </summary>
  5812. </member>
  5813. <member name="T:Google.Protobuf.Reflection.DescriptorPool">
  5814. <summary>
  5815. Contains lookup tables containing all the descriptors defined in a particular file.
  5816. </summary>
  5817. </member>
  5818. <member name="M:Google.Protobuf.Reflection.DescriptorPool.FindSymbol``1(System.String)">
  5819. <summary>
  5820. Finds a symbol of the given name within the pool.
  5821. </summary>
  5822. <typeparam name="T">The type of symbol to look for</typeparam>
  5823. <param name="fullName">Fully-qualified name to look up</param>
  5824. <returns>The symbol with the given name and type,
  5825. or null if the symbol doesn't exist or has the wrong type</returns>
  5826. </member>
  5827. <member name="M:Google.Protobuf.Reflection.DescriptorPool.AddPackage(System.String,Google.Protobuf.Reflection.FileDescriptor)">
  5828. <summary>
  5829. Adds a package to the symbol tables. If a package by the same name
  5830. already exists, that is fine, but if some other kind of symbol
  5831. exists under the same name, an exception is thrown. If the package
  5832. has multiple components, this also adds the parent package(s).
  5833. </summary>
  5834. </member>
  5835. <member name="M:Google.Protobuf.Reflection.DescriptorPool.AddSymbol(Google.Protobuf.Reflection.IDescriptor)">
  5836. <summary>
  5837. Adds a symbol to the symbol table.
  5838. </summary>
  5839. <exception cref="T:Google.Protobuf.Reflection.DescriptorValidationException">The symbol already existed
  5840. in the symbol table.</exception>
  5841. </member>
  5842. <member name="M:Google.Protobuf.Reflection.DescriptorPool.ValidateSymbolName(Google.Protobuf.Reflection.IDescriptor)">
  5843. <summary>
  5844. Verifies that the descriptor's name is valid (i.e. it contains
  5845. only letters, digits and underscores, and does not start with a digit).
  5846. </summary>
  5847. <param name="descriptor"></param>
  5848. </member>
  5849. <member name="M:Google.Protobuf.Reflection.DescriptorPool.FindFieldByNumber(Google.Protobuf.Reflection.MessageDescriptor,System.Int32)">
  5850. <summary>
  5851. Returns the field with the given number in the given descriptor,
  5852. or null if it can't be found.
  5853. </summary>
  5854. </member>
  5855. <member name="M:Google.Protobuf.Reflection.DescriptorPool.AddFieldByNumber(Google.Protobuf.Reflection.FieldDescriptor)">
  5856. <summary>
  5857. Adds a field to the fieldsByNumber table.
  5858. </summary>
  5859. <exception cref="T:Google.Protobuf.Reflection.DescriptorValidationException">A field with the same
  5860. containing type and number already exists.</exception>
  5861. </member>
  5862. <member name="M:Google.Protobuf.Reflection.DescriptorPool.AddEnumValueByNumber(Google.Protobuf.Reflection.EnumValueDescriptor)">
  5863. <summary>
  5864. Adds an enum value to the enumValuesByNumber table. If an enum value
  5865. with the same type and number already exists, this method does nothing.
  5866. (This is allowed; the first value defined with the number takes precedence.)
  5867. </summary>
  5868. </member>
  5869. <member name="M:Google.Protobuf.Reflection.DescriptorPool.LookupSymbol(System.String,Google.Protobuf.Reflection.IDescriptor)">
  5870. <summary>
  5871. Looks up a descriptor by name, relative to some other descriptor.
  5872. The name may be fully-qualified (with a leading '.'), partially-qualified,
  5873. or unqualified. C++-like name lookup semantics are used to search for the
  5874. matching descriptor.
  5875. </summary>
  5876. <remarks>
  5877. This isn't heavily optimized, but it's only used during cross linking anyway.
  5878. If it starts being used more widely, we should look at performance more carefully.
  5879. </remarks>
  5880. </member>
  5881. <member name="T:Google.Protobuf.Reflection.DescriptorUtil">
  5882. <summary>
  5883. Internal class containing utility methods when working with descriptors.
  5884. </summary>
  5885. </member>
  5886. <member name="T:Google.Protobuf.Reflection.DescriptorUtil.IndexedConverter`2">
  5887. <summary>
  5888. Equivalent to Func[TInput, int, TOutput] but usable in .NET 2.0. Only used to convert
  5889. arrays.
  5890. </summary>
  5891. </member>
  5892. <member name="M:Google.Protobuf.Reflection.DescriptorUtil.ConvertAndMakeReadOnly``2(System.Collections.Generic.IList{``0},Google.Protobuf.Reflection.DescriptorUtil.IndexedConverter{``0,``1})">
  5893. <summary>
  5894. Converts the given array into a read-only list, applying the specified conversion to
  5895. each input element.
  5896. </summary>
  5897. </member>
  5898. <member name="T:Google.Protobuf.Reflection.DescriptorValidationException">
  5899. <summary>
  5900. Thrown when building descriptors fails because the source DescriptorProtos
  5901. are not valid.
  5902. </summary>
  5903. </member>
  5904. <member name="P:Google.Protobuf.Reflection.DescriptorValidationException.ProblemSymbolName">
  5905. <value>
  5906. The full name of the descriptor where the error occurred.
  5907. </value>
  5908. </member>
  5909. <member name="P:Google.Protobuf.Reflection.DescriptorValidationException.Description">
  5910. <value>
  5911. A human-readable description of the error. (The Message property
  5912. is made up of the descriptor's name and this description.)
  5913. </value>
  5914. </member>
  5915. <member name="T:Google.Protobuf.Reflection.EnumDescriptor">
  5916. <summary>
  5917. Descriptor for an enum type in a .proto file.
  5918. </summary>
  5919. </member>
  5920. <member name="P:Google.Protobuf.Reflection.EnumDescriptor.Name">
  5921. <summary>
  5922. The brief name of the descriptor's target.
  5923. </summary>
  5924. </member>
  5925. <member name="P:Google.Protobuf.Reflection.EnumDescriptor.ClrType">
  5926. <summary>
  5927. The CLR type for this enum. For generated code, this will be a CLR enum type.
  5928. </summary>
  5929. </member>
  5930. <member name="P:Google.Protobuf.Reflection.EnumDescriptor.ContainingType">
  5931. <value>
  5932. If this is a nested type, get the outer descriptor, otherwise null.
  5933. </value>
  5934. </member>
  5935. <member name="P:Google.Protobuf.Reflection.EnumDescriptor.Values">
  5936. <value>
  5937. An unmodifiable list of defined value descriptors for this enum.
  5938. </value>
  5939. </member>
  5940. <member name="M:Google.Protobuf.Reflection.EnumDescriptor.FindValueByNumber(System.Int32)">
  5941. <summary>
  5942. Finds an enum value by number. If multiple enum values have the
  5943. same number, this returns the first defined value with that number.
  5944. If there is no value for the given number, this returns <c>null</c>.
  5945. </summary>
  5946. </member>
  5947. <member name="M:Google.Protobuf.Reflection.EnumDescriptor.FindValueByName(System.String)">
  5948. <summary>
  5949. Finds an enum value by name.
  5950. </summary>
  5951. <param name="name">The unqualified name of the value (e.g. "FOO").</param>
  5952. <returns>The value's descriptor, or null if not found.</returns>
  5953. </member>
  5954. <member name="P:Google.Protobuf.Reflection.EnumDescriptor.CustomOptions">
  5955. <summary>
  5956. The (possibly empty) set of custom options for this enum.
  5957. </summary>
  5958. </member>
  5959. <member name="M:Google.Protobuf.Reflection.EnumDescriptor.GetOptions">
  5960. <summary>
  5961. The <c>EnumOptions</c>, defined in <c>descriptor.proto</c>.
  5962. If the options message is not present (i.e. there are no options), <c>null</c> is returned.
  5963. Custom options can be retrieved as extensions of the returned message.
  5964. NOTE: A defensive copy is created each time this property is retrieved.
  5965. </summary>
  5966. </member>
  5967. <member name="M:Google.Protobuf.Reflection.EnumDescriptor.GetOption``1(Google.Protobuf.Extension{Google.Protobuf.Reflection.EnumOptions,``0})">
  5968. <summary>
  5969. Gets a single value enum option for this descriptor
  5970. </summary>
  5971. </member>
  5972. <member name="M:Google.Protobuf.Reflection.EnumDescriptor.GetOption``1(Google.Protobuf.RepeatedExtension{Google.Protobuf.Reflection.EnumOptions,``0})">
  5973. <summary>
  5974. Gets a repeated value enum option for this descriptor
  5975. </summary>
  5976. </member>
  5977. <member name="T:Google.Protobuf.Reflection.EnumValueDescriptor">
  5978. <summary>
  5979. Descriptor for a single enum value within an enum in a .proto file.
  5980. </summary>
  5981. </member>
  5982. <member name="P:Google.Protobuf.Reflection.EnumValueDescriptor.Name">
  5983. <summary>
  5984. Returns the name of the enum value described by this object.
  5985. </summary>
  5986. </member>
  5987. <member name="P:Google.Protobuf.Reflection.EnumValueDescriptor.Number">
  5988. <summary>
  5989. Returns the number associated with this enum value.
  5990. </summary>
  5991. </member>
  5992. <member name="P:Google.Protobuf.Reflection.EnumValueDescriptor.EnumDescriptor">
  5993. <summary>
  5994. Returns the enum descriptor that this value is part of.
  5995. </summary>
  5996. </member>
  5997. <member name="P:Google.Protobuf.Reflection.EnumValueDescriptor.CustomOptions">
  5998. <summary>
  5999. The (possibly empty) set of custom options for this enum value.
  6000. </summary>
  6001. </member>
  6002. <member name="M:Google.Protobuf.Reflection.EnumValueDescriptor.GetOptions">
  6003. <summary>
  6004. The <c>EnumValueOptions</c>, defined in <c>descriptor.proto</c>.
  6005. If the options message is not present (i.e. there are no options), <c>null</c> is returned.
  6006. Custom options can be retrieved as extensions of the returned message.
  6007. NOTE: A defensive copy is created each time this property is retrieved.
  6008. </summary>
  6009. </member>
  6010. <member name="M:Google.Protobuf.Reflection.EnumValueDescriptor.GetOption``1(Google.Protobuf.Extension{Google.Protobuf.Reflection.EnumValueOptions,``0})">
  6011. <summary>
  6012. Gets a single value enum value option for this descriptor
  6013. </summary>
  6014. </member>
  6015. <member name="M:Google.Protobuf.Reflection.EnumValueDescriptor.GetOption``1(Google.Protobuf.RepeatedExtension{Google.Protobuf.Reflection.EnumValueOptions,``0})">
  6016. <summary>
  6017. Gets a repeated value enum value option for this descriptor
  6018. </summary>
  6019. </member>
  6020. <member name="T:Google.Protobuf.Reflection.ExtensionCollection">
  6021. <summary>
  6022. A collection to simplify retrieving the descriptors of extensions in a descriptor for a message
  6023. </summary>
  6024. </member>
  6025. <member name="P:Google.Protobuf.Reflection.ExtensionCollection.UnorderedExtensions">
  6026. <summary>
  6027. Returns a readonly list of all the extensions defined in this type in
  6028. the order they were defined in the source .proto file
  6029. </summary>
  6030. </member>
  6031. <member name="M:Google.Protobuf.Reflection.ExtensionCollection.GetExtensionsInDeclarationOrder(Google.Protobuf.Reflection.MessageDescriptor)">
  6032. <summary>
  6033. Returns a readonly list of all the extensions define in this type that extend
  6034. the provided descriptor type in the order they were defined in the source .proto file
  6035. </summary>
  6036. </member>
  6037. <member name="M:Google.Protobuf.Reflection.ExtensionCollection.GetExtensionsInNumberOrder(Google.Protobuf.Reflection.MessageDescriptor)">
  6038. <summary>
  6039. Returns a readonly list of all the extensions define in this type that extend
  6040. the provided descriptor type in accending field order
  6041. </summary>
  6042. </member>
  6043. <member name="T:Google.Protobuf.Reflection.FieldAccessorBase">
  6044. <summary>
  6045. Base class for field accessors.
  6046. </summary>
  6047. </member>
  6048. <member name="T:Google.Protobuf.Reflection.FieldDescriptor">
  6049. <summary>
  6050. Descriptor for a field or extension within a message in a .proto file.
  6051. </summary>
  6052. </member>
  6053. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.ContainingType">
  6054. <summary>
  6055. Get the field's containing message type, or <c>null</c> if it is a field defined at the top level of a file as an extension.
  6056. </summary>
  6057. </member>
  6058. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.ContainingOneof">
  6059. <summary>
  6060. Returns the oneof containing this field, or <c>null</c> if it is not part of a oneof.
  6061. </summary>
  6062. </member>
  6063. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.RealContainingOneof">
  6064. <summary>
  6065. Returns the oneof containing this field if it's a "real" oneof, or <c>null</c> if either this
  6066. field is not part of a oneof, or the oneof is synthetic.
  6067. </summary>
  6068. </member>
  6069. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.JsonName">
  6070. <summary>
  6071. The effective JSON name for this field. This is usually the lower-camel-cased form of the field name,
  6072. but can be overridden using the <c>json_name</c> option in the .proto file.
  6073. </summary>
  6074. </member>
  6075. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.HasPresence">
  6076. <summary>
  6077. Indicates whether this field supports presence, either implicitly (e.g. due to it being a message
  6078. type field) or explicitly via Has/Clear members. If this returns true, it is safe to call
  6079. <see cref="M:Google.Protobuf.Reflection.IFieldAccessor.Clear(Google.Protobuf.IMessage)"/> and <see cref="M:Google.Protobuf.Reflection.IFieldAccessor.HasValue(Google.Protobuf.IMessage)"/>
  6080. on this field's accessor with a suitable message.
  6081. </summary>
  6082. </member>
  6083. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.Extension">
  6084. <summary>
  6085. An extension identifier for this field, or <c>null</c> if this field isn't an extension.
  6086. </summary>
  6087. </member>
  6088. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.Name">
  6089. <summary>
  6090. The brief name of the descriptor's target.
  6091. </summary>
  6092. </member>
  6093. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.Accessor">
  6094. <summary>
  6095. Returns the accessor for this field.
  6096. </summary>
  6097. <remarks>
  6098. <para>
  6099. While a <see cref="T:Google.Protobuf.Reflection.FieldDescriptor"/> describes the field, it does not provide
  6100. any way of obtaining or changing the value of the field within a specific message;
  6101. that is the responsibility of the accessor.
  6102. </para>
  6103. <para>
  6104. In descriptors for generated code, the value returned by this property will be non-null for all
  6105. regular fields. However, if a message containing a map field is introspected, the list of nested messages will include
  6106. an auto-generated nested key/value pair message for the field. This is not represented in any
  6107. generated type, and the value of the map field itself is represented by a dictionary in the
  6108. reflection API. There are never instances of those "hidden" messages, so no accessor is provided
  6109. and this property will return null.
  6110. </para>
  6111. <para>
  6112. In dynamically loaded descriptors, the value returned by this property will current be null;
  6113. if and when dynamic messages are supported, it will return a suitable accessor to work with
  6114. them.
  6115. </para>
  6116. </remarks>
  6117. </member>
  6118. <member name="M:Google.Protobuf.Reflection.FieldDescriptor.GetFieldTypeFromProtoType(Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type)">
  6119. <summary>
  6120. Maps a field type as included in the .proto file to a FieldType.
  6121. </summary>
  6122. </member>
  6123. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.IsRepeated">
  6124. <summary>
  6125. Returns <c>true</c> if this field is a repeated field; <c>false</c> otherwise.
  6126. </summary>
  6127. </member>
  6128. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.IsRequired">
  6129. <summary>
  6130. Returns <c>true</c> if this field is a required field; <c>false</c> otherwise.
  6131. </summary>
  6132. </member>
  6133. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.IsMap">
  6134. <summary>
  6135. Returns <c>true</c> if this field is a map field; <c>false</c> otherwise.
  6136. </summary>
  6137. </member>
  6138. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.IsPacked">
  6139. <summary>
  6140. Returns <c>true</c> if this field is a packed, repeated field; <c>false</c> otherwise.
  6141. </summary>
  6142. </member>
  6143. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.IsExtension">
  6144. <summary>
  6145. Returns <c>true</c> if this field extends another message type; <c>false</c> otherwise.
  6146. </summary>
  6147. </member>
  6148. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.FieldType">
  6149. <summary>
  6150. Returns the type of the field.
  6151. </summary>
  6152. </member>
  6153. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.FieldNumber">
  6154. <summary>
  6155. Returns the field number declared in the proto file.
  6156. </summary>
  6157. </member>
  6158. <member name="M:Google.Protobuf.Reflection.FieldDescriptor.CompareTo(Google.Protobuf.Reflection.FieldDescriptor)">
  6159. <summary>
  6160. Compares this descriptor with another one, ordering in "canonical" order
  6161. which simply means ascending order by field number. <paramref name="other"/>
  6162. must be a field of the same type, i.e. the <see cref="P:Google.Protobuf.Reflection.FieldDescriptor.ContainingType"/> of
  6163. both fields must be the same.
  6164. </summary>
  6165. </member>
  6166. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.EnumType">
  6167. <summary>
  6168. For enum fields, returns the field's type.
  6169. </summary>
  6170. </member>
  6171. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.MessageType">
  6172. <summary>
  6173. For embedded message and group fields, returns the field's type.
  6174. </summary>
  6175. </member>
  6176. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.ExtendeeType">
  6177. <summary>
  6178. For extension fields, returns the extended type
  6179. </summary>
  6180. </member>
  6181. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.CustomOptions">
  6182. <summary>
  6183. The (possibly empty) set of custom options for this field.
  6184. </summary>
  6185. </member>
  6186. <member name="M:Google.Protobuf.Reflection.FieldDescriptor.GetOptions">
  6187. <summary>
  6188. The <c>FieldOptions</c>, defined in <c>descriptor.proto</c>.
  6189. If the options message is not present (i.e. there are no options), <c>null</c> is returned.
  6190. Custom options can be retrieved as extensions of the returned message.
  6191. NOTE: A defensive copy is created each time this property is retrieved.
  6192. </summary>
  6193. </member>
  6194. <member name="M:Google.Protobuf.Reflection.FieldDescriptor.GetOption``1(Google.Protobuf.Extension{Google.Protobuf.Reflection.FieldOptions,``0})">
  6195. <summary>
  6196. Gets a single value field option for this descriptor
  6197. </summary>
  6198. </member>
  6199. <member name="M:Google.Protobuf.Reflection.FieldDescriptor.GetOption``1(Google.Protobuf.RepeatedExtension{Google.Protobuf.Reflection.FieldOptions,``0})">
  6200. <summary>
  6201. Gets a repeated value field option for this descriptor
  6202. </summary>
  6203. </member>
  6204. <member name="M:Google.Protobuf.Reflection.FieldDescriptor.CrossLink">
  6205. <summary>
  6206. Look up and cross-link all field types etc.
  6207. </summary>
  6208. </member>
  6209. <member name="T:Google.Protobuf.Reflection.FieldType">
  6210. <summary>
  6211. Enumeration of all the possible field types.
  6212. </summary>
  6213. </member>
  6214. <member name="F:Google.Protobuf.Reflection.FieldType.Double">
  6215. <summary>
  6216. The <c>double</c> field type.
  6217. </summary>
  6218. </member>
  6219. <member name="F:Google.Protobuf.Reflection.FieldType.Float">
  6220. <summary>
  6221. The <c>float</c> field type.
  6222. </summary>
  6223. </member>
  6224. <member name="F:Google.Protobuf.Reflection.FieldType.Int64">
  6225. <summary>
  6226. The <c>int64</c> field type.
  6227. </summary>
  6228. </member>
  6229. <member name="F:Google.Protobuf.Reflection.FieldType.UInt64">
  6230. <summary>
  6231. The <c>uint64</c> field type.
  6232. </summary>
  6233. </member>
  6234. <member name="F:Google.Protobuf.Reflection.FieldType.Int32">
  6235. <summary>
  6236. The <c>int32</c> field type.
  6237. </summary>
  6238. </member>
  6239. <member name="F:Google.Protobuf.Reflection.FieldType.Fixed64">
  6240. <summary>
  6241. The <c>fixed64</c> field type.
  6242. </summary>
  6243. </member>
  6244. <member name="F:Google.Protobuf.Reflection.FieldType.Fixed32">
  6245. <summary>
  6246. The <c>fixed32</c> field type.
  6247. </summary>
  6248. </member>
  6249. <member name="F:Google.Protobuf.Reflection.FieldType.Bool">
  6250. <summary>
  6251. The <c>bool</c> field type.
  6252. </summary>
  6253. </member>
  6254. <member name="F:Google.Protobuf.Reflection.FieldType.String">
  6255. <summary>
  6256. The <c>string</c> field type.
  6257. </summary>
  6258. </member>
  6259. <member name="F:Google.Protobuf.Reflection.FieldType.Group">
  6260. <summary>
  6261. The field type used for groups.
  6262. </summary>
  6263. </member>
  6264. <member name="F:Google.Protobuf.Reflection.FieldType.Message">
  6265. <summary>
  6266. The field type used for message fields.
  6267. </summary>
  6268. </member>
  6269. <member name="F:Google.Protobuf.Reflection.FieldType.Bytes">
  6270. <summary>
  6271. The <c>bytes</c> field type.
  6272. </summary>
  6273. </member>
  6274. <member name="F:Google.Protobuf.Reflection.FieldType.UInt32">
  6275. <summary>
  6276. The <c>uint32</c> field type.
  6277. </summary>
  6278. </member>
  6279. <member name="F:Google.Protobuf.Reflection.FieldType.SFixed32">
  6280. <summary>
  6281. The <c>sfixed32</c> field type.
  6282. </summary>
  6283. </member>
  6284. <member name="F:Google.Protobuf.Reflection.FieldType.SFixed64">
  6285. <summary>
  6286. The <c>sfixed64</c> field type.
  6287. </summary>
  6288. </member>
  6289. <member name="F:Google.Protobuf.Reflection.FieldType.SInt32">
  6290. <summary>
  6291. The <c>sint32</c> field type.
  6292. </summary>
  6293. </member>
  6294. <member name="F:Google.Protobuf.Reflection.FieldType.SInt64">
  6295. <summary>
  6296. The <c>sint64</c> field type.
  6297. </summary>
  6298. </member>
  6299. <member name="F:Google.Protobuf.Reflection.FieldType.Enum">
  6300. <summary>
  6301. The field type used for enum fields.
  6302. </summary>
  6303. </member>
  6304. <member name="T:Google.Protobuf.Reflection.Syntax">
  6305. <summary>
  6306. The syntax of a .proto file
  6307. </summary>
  6308. </member>
  6309. <member name="F:Google.Protobuf.Reflection.Syntax.Proto2">
  6310. <summary>
  6311. Proto2 syntax
  6312. </summary>
  6313. </member>
  6314. <member name="F:Google.Protobuf.Reflection.Syntax.Proto3">
  6315. <summary>
  6316. Proto3 syntax
  6317. </summary>
  6318. </member>
  6319. <member name="F:Google.Protobuf.Reflection.Syntax.Unknown">
  6320. <summary>
  6321. An unknown declared syntax
  6322. </summary>
  6323. </member>
  6324. <member name="T:Google.Protobuf.Reflection.FileDescriptor">
  6325. <summary>
  6326. Describes a .proto file, including everything defined within.
  6327. IDescriptor is implemented such that the File property returns this descriptor,
  6328. and the FullName is the same as the Name.
  6329. </summary>
  6330. </member>
  6331. <member name="M:Google.Protobuf.Reflection.FileDescriptor.ComputeFullName(Google.Protobuf.Reflection.MessageDescriptor,System.String)">
  6332. <summary>
  6333. Computes the full name of a descriptor within this file, with an optional parent message.
  6334. </summary>
  6335. </member>
  6336. <member name="M:Google.Protobuf.Reflection.FileDescriptor.DeterminePublicDependencies(Google.Protobuf.Reflection.FileDescriptor,Google.Protobuf.Reflection.FileDescriptorProto,System.Collections.Generic.IEnumerable{Google.Protobuf.Reflection.FileDescriptor},System.Boolean)">
  6337. <summary>
  6338. Extracts public dependencies from direct dependencies. This is a static method despite its
  6339. first parameter, as the value we're in the middle of constructing is only used for exceptions.
  6340. </summary>
  6341. </member>
  6342. <member name="P:Google.Protobuf.Reflection.FileDescriptor.Proto">
  6343. <value>
  6344. The descriptor in its protocol message representation.
  6345. </value>
  6346. </member>
  6347. <member name="P:Google.Protobuf.Reflection.FileDescriptor.Syntax">
  6348. <summary>
  6349. The syntax of the file
  6350. </summary>
  6351. </member>
  6352. <member name="P:Google.Protobuf.Reflection.FileDescriptor.Name">
  6353. <value>
  6354. The file name.
  6355. </value>
  6356. </member>
  6357. <member name="P:Google.Protobuf.Reflection.FileDescriptor.Package">
  6358. <summary>
  6359. The package as declared in the .proto file. This may or may not
  6360. be equivalent to the .NET namespace of the generated classes.
  6361. </summary>
  6362. </member>
  6363. <member name="P:Google.Protobuf.Reflection.FileDescriptor.MessageTypes">
  6364. <value>
  6365. Unmodifiable list of top-level message types declared in this file.
  6366. </value>
  6367. </member>
  6368. <member name="P:Google.Protobuf.Reflection.FileDescriptor.EnumTypes">
  6369. <value>
  6370. Unmodifiable list of top-level enum types declared in this file.
  6371. </value>
  6372. </member>
  6373. <member name="P:Google.Protobuf.Reflection.FileDescriptor.Services">
  6374. <value>
  6375. Unmodifiable list of top-level services declared in this file.
  6376. </value>
  6377. </member>
  6378. <member name="P:Google.Protobuf.Reflection.FileDescriptor.Extensions">
  6379. <summary>
  6380. Unmodifiable list of top-level extensions declared in this file.
  6381. Note that some extensions may be incomplete (FieldDescriptor.Extension may be null)
  6382. if this descriptor was generated using a version of protoc that did not fully
  6383. support extensions in C#.
  6384. </summary>
  6385. </member>
  6386. <member name="P:Google.Protobuf.Reflection.FileDescriptor.Dependencies">
  6387. <value>
  6388. Unmodifiable list of this file's dependencies (imports).
  6389. </value>
  6390. </member>
  6391. <member name="P:Google.Protobuf.Reflection.FileDescriptor.PublicDependencies">
  6392. <value>
  6393. Unmodifiable list of this file's public dependencies (public imports).
  6394. </value>
  6395. </member>
  6396. <member name="P:Google.Protobuf.Reflection.FileDescriptor.SerializedData">
  6397. <value>
  6398. The original serialized binary form of this descriptor.
  6399. </value>
  6400. </member>
  6401. <member name="P:Google.Protobuf.Reflection.FileDescriptor.Google#Protobuf#Reflection#IDescriptor#FullName">
  6402. <value>
  6403. Implementation of IDescriptor.FullName - just returns the same as Name.
  6404. </value>
  6405. </member>
  6406. <member name="P:Google.Protobuf.Reflection.FileDescriptor.Google#Protobuf#Reflection#IDescriptor#File">
  6407. <value>
  6408. Implementation of IDescriptor.File - just returns this descriptor.
  6409. </value>
  6410. </member>
  6411. <member name="P:Google.Protobuf.Reflection.FileDescriptor.DescriptorPool">
  6412. <value>
  6413. Pool containing symbol descriptors.
  6414. </value>
  6415. </member>
  6416. <member name="M:Google.Protobuf.Reflection.FileDescriptor.FindTypeByName``1(System.String)">
  6417. <summary>
  6418. Finds a type (message, enum, service or extension) in the file by name. Does not find nested types.
  6419. </summary>
  6420. <param name="name">The unqualified type name to look for.</param>
  6421. <typeparam name="T">The type of descriptor to look for</typeparam>
  6422. <returns>The type's descriptor, or null if not found.</returns>
  6423. </member>
  6424. <member name="M:Google.Protobuf.Reflection.FileDescriptor.BuildFrom(Google.Protobuf.ByteString,Google.Protobuf.Reflection.FileDescriptorProto,Google.Protobuf.Reflection.FileDescriptor[],System.Boolean,Google.Protobuf.Reflection.GeneratedClrTypeInfo)">
  6425. <summary>
  6426. Builds a FileDescriptor from its protocol buffer representation.
  6427. </summary>
  6428. <param name="descriptorData">The original serialized descriptor data.
  6429. We have only limited proto2 support, so serializing FileDescriptorProto
  6430. would not necessarily give us this.</param>
  6431. <param name="proto">The protocol message form of the FileDescriptor.</param>
  6432. <param name="dependencies">FileDescriptors corresponding to all of the
  6433. file's dependencies, in the exact order listed in the .proto file. May be null,
  6434. in which case it is treated as an empty array.</param>
  6435. <param name="allowUnknownDependencies">Whether unknown dependencies are ignored (true) or cause an exception to be thrown (false).</param>
  6436. <param name="generatedCodeInfo">Details about generated code, for the purposes of reflection.</param>
  6437. <exception cref="T:Google.Protobuf.Reflection.DescriptorValidationException">If <paramref name="proto"/> is not
  6438. a valid descriptor. This can occur for a number of reasons, such as a field
  6439. having an undefined type or because two messages were defined with the same name.</exception>
  6440. </member>
  6441. <member name="M:Google.Protobuf.Reflection.FileDescriptor.FromGeneratedCode(System.Byte[],Google.Protobuf.Reflection.FileDescriptor[],Google.Protobuf.Reflection.GeneratedClrTypeInfo)">
  6442. <summary>
  6443. Creates a descriptor for generated code.
  6444. </summary>
  6445. <remarks>
  6446. This method is only designed to be used by the results of generating code with protoc,
  6447. which creates the appropriate dependencies etc. It has to be public because the generated
  6448. code is "external", but should not be called directly by end users.
  6449. </remarks>
  6450. </member>
  6451. <member name="M:Google.Protobuf.Reflection.FileDescriptor.BuildFromByteStrings(System.Collections.Generic.IEnumerable{Google.Protobuf.ByteString})">
  6452. <summary>
  6453. Converts the given descriptor binary data into FileDescriptor objects.
  6454. Note: reflection using the returned FileDescriptors is not currently supported.
  6455. </summary>
  6456. <param name="descriptorData">The binary file descriptor proto data. Must not be null, and any
  6457. dependencies must come before the descriptor which depends on them. (If A depends on B, and B
  6458. depends on C, then the descriptors must be presented in the order C, B, A.) This is compatible
  6459. with the order in which protoc provides descriptors to plugins.</param>
  6460. <returns>The file descriptors corresponding to <paramref name="descriptorData"/>.</returns>
  6461. </member>
  6462. <member name="M:Google.Protobuf.Reflection.FileDescriptor.ToString">
  6463. <summary>
  6464. Returns a <see cref="T:System.String" /> that represents this instance.
  6465. </summary>
  6466. <returns>
  6467. A <see cref="T:System.String" /> that represents this instance.
  6468. </returns>
  6469. </member>
  6470. <member name="P:Google.Protobuf.Reflection.FileDescriptor.DescriptorProtoFileDescriptor">
  6471. <summary>
  6472. Returns the file descriptor for descriptor.proto.
  6473. </summary>
  6474. <remarks>
  6475. This is used for protos which take a direct dependency on <c>descriptor.proto</c>, typically for
  6476. annotations. While <c>descriptor.proto</c> is a proto2 file, it is built into the Google.Protobuf
  6477. runtime for reflection purposes. The messages are internal to the runtime as they would require
  6478. proto2 semantics for full support, but the file descriptor is available via this property. The
  6479. C# codegen in protoc automatically uses this property when it detects a dependency on <c>descriptor.proto</c>.
  6480. </remarks>
  6481. <value>
  6482. The file descriptor for <c>descriptor.proto</c>.
  6483. </value>
  6484. </member>
  6485. <member name="P:Google.Protobuf.Reflection.FileDescriptor.CustomOptions">
  6486. <summary>
  6487. The (possibly empty) set of custom options for this file.
  6488. </summary>
  6489. </member>
  6490. <member name="M:Google.Protobuf.Reflection.FileDescriptor.GetOptions">
  6491. <summary>
  6492. The <c>FileOptions</c>, defined in <c>descriptor.proto</c>.
  6493. If the options message is not present (i.e. there are no options), <c>null</c> is returned.
  6494. Custom options can be retrieved as extensions of the returned message.
  6495. NOTE: A defensive copy is created each time this property is retrieved.
  6496. </summary>
  6497. </member>
  6498. <member name="M:Google.Protobuf.Reflection.FileDescriptor.GetOption``1(Google.Protobuf.Extension{Google.Protobuf.Reflection.FileOptions,``0})">
  6499. <summary>
  6500. Gets a single value file option for this descriptor
  6501. </summary>
  6502. </member>
  6503. <member name="M:Google.Protobuf.Reflection.FileDescriptor.GetOption``1(Google.Protobuf.RepeatedExtension{Google.Protobuf.Reflection.FileOptions,``0})">
  6504. <summary>
  6505. Gets a repeated value file option for this descriptor
  6506. </summary>
  6507. </member>
  6508. <member name="M:Google.Protobuf.Reflection.FileDescriptor.ForceReflectionInitialization``1">
  6509. <summary>
  6510. Performs initialization for the given generic type argument.
  6511. </summary>
  6512. <remarks>
  6513. This method is present for the sake of AOT compilers. It allows code (whether handwritten or generated)
  6514. to make calls into the reflection machinery of this library to express an intention to use that type
  6515. reflectively (e.g. for JSON parsing and formatting). The call itself does almost nothing, but AOT compilers
  6516. attempting to determine which generic type arguments need to be handled will spot the code path and act
  6517. accordingly.
  6518. </remarks>
  6519. <typeparam name="T">The type to force initialization for.</typeparam>
  6520. </member>
  6521. <member name="T:Google.Protobuf.Reflection.GeneratedClrTypeInfo">
  6522. <summary>
  6523. Extra information provided by generated code when initializing a message or file descriptor.
  6524. These are constructed as required, and are not long-lived. Hand-written code should
  6525. never need to use this type.
  6526. </summary>
  6527. </member>
  6528. <member name="P:Google.Protobuf.Reflection.GeneratedClrTypeInfo.ClrType">
  6529. <summary>
  6530. Irrelevant for file descriptors; the CLR type for the message for message descriptors.
  6531. </summary>
  6532. </member>
  6533. <member name="P:Google.Protobuf.Reflection.GeneratedClrTypeInfo.Parser">
  6534. <summary>
  6535. Irrelevant for file descriptors; the parser for message descriptors.
  6536. </summary>
  6537. </member>
  6538. <member name="P:Google.Protobuf.Reflection.GeneratedClrTypeInfo.PropertyNames">
  6539. <summary>
  6540. Irrelevant for file descriptors; the CLR property names (in message descriptor field order)
  6541. for fields in the message for message descriptors.
  6542. </summary>
  6543. </member>
  6544. <member name="P:Google.Protobuf.Reflection.GeneratedClrTypeInfo.Extensions">
  6545. <summary>
  6546. The extensions defined within this file/message descriptor
  6547. </summary>
  6548. </member>
  6549. <member name="P:Google.Protobuf.Reflection.GeneratedClrTypeInfo.OneofNames">
  6550. <summary>
  6551. Irrelevant for file descriptors; the CLR property "base" names (in message descriptor oneof order)
  6552. for oneofs in the message for message descriptors. It is expected that for a oneof name of "Foo",
  6553. there will be a "FooCase" property and a "ClearFoo" method.
  6554. </summary>
  6555. </member>
  6556. <member name="P:Google.Protobuf.Reflection.GeneratedClrTypeInfo.NestedTypes">
  6557. <summary>
  6558. The reflection information for types within this file/message descriptor. Elements may be null
  6559. if there is no corresponding generated type, e.g. for map entry types.
  6560. </summary>
  6561. </member>
  6562. <member name="P:Google.Protobuf.Reflection.GeneratedClrTypeInfo.NestedEnums">
  6563. <summary>
  6564. The CLR types for enums within this file/message descriptor.
  6565. </summary>
  6566. </member>
  6567. <member name="M:Google.Protobuf.Reflection.GeneratedClrTypeInfo.#ctor(System.Type,Google.Protobuf.MessageParser,System.String[],System.String[],System.Type[],Google.Protobuf.Extension[],Google.Protobuf.Reflection.GeneratedClrTypeInfo[])">
  6568. <summary>
  6569. Creates a GeneratedClrTypeInfo for a message descriptor, with nested types, nested enums, the CLR type, property names and oneof names.
  6570. Each array parameter may be null, to indicate a lack of values.
  6571. The parameter order is designed to make it feasible to format the generated code readably.
  6572. </summary>
  6573. </member>
  6574. <member name="M:Google.Protobuf.Reflection.GeneratedClrTypeInfo.#ctor(System.Type,Google.Protobuf.MessageParser,System.String[],System.String[],System.Type[],Google.Protobuf.Reflection.GeneratedClrTypeInfo[])">
  6575. <summary>
  6576. Creates a GeneratedClrTypeInfo for a message descriptor, with nested types, nested enums, the CLR type, property names and oneof names.
  6577. Each array parameter may be null, to indicate a lack of values.
  6578. The parameter order is designed to make it feasible to format the generated code readably.
  6579. </summary>
  6580. </member>
  6581. <member name="M:Google.Protobuf.Reflection.GeneratedClrTypeInfo.#ctor(System.Type[],Google.Protobuf.Extension[],Google.Protobuf.Reflection.GeneratedClrTypeInfo[])">
  6582. <summary>
  6583. Creates a GeneratedClrTypeInfo for a file descriptor, with only types, enums, and extensions.
  6584. </summary>
  6585. </member>
  6586. <member name="M:Google.Protobuf.Reflection.GeneratedClrTypeInfo.#ctor(System.Type[],Google.Protobuf.Reflection.GeneratedClrTypeInfo[])">
  6587. <summary>
  6588. Creates a GeneratedClrTypeInfo for a file descriptor, with only types and enums.
  6589. </summary>
  6590. </member>
  6591. <member name="T:Google.Protobuf.Reflection.IDescriptor">
  6592. <summary>
  6593. Interface implemented by all descriptor types.
  6594. </summary>
  6595. </member>
  6596. <member name="P:Google.Protobuf.Reflection.IDescriptor.Name">
  6597. <summary>
  6598. Returns the name of the entity (message, field etc) being described.
  6599. </summary>
  6600. </member>
  6601. <member name="P:Google.Protobuf.Reflection.IDescriptor.FullName">
  6602. <summary>
  6603. Returns the fully-qualified name of the entity being described.
  6604. </summary>
  6605. </member>
  6606. <member name="P:Google.Protobuf.Reflection.IDescriptor.File">
  6607. <summary>
  6608. Returns the descriptor for the .proto file that this entity is part of.
  6609. </summary>
  6610. </member>
  6611. <member name="T:Google.Protobuf.Reflection.IFieldAccessor">
  6612. <summary>
  6613. Allows fields to be reflectively accessed.
  6614. </summary>
  6615. </member>
  6616. <member name="P:Google.Protobuf.Reflection.IFieldAccessor.Descriptor">
  6617. <summary>
  6618. Returns the descriptor associated with this field.
  6619. </summary>
  6620. </member>
  6621. <member name="M:Google.Protobuf.Reflection.IFieldAccessor.Clear(Google.Protobuf.IMessage)">
  6622. <summary>
  6623. Clears the field in the specified message. (For repeated fields,
  6624. this clears the list.)
  6625. </summary>
  6626. </member>
  6627. <member name="M:Google.Protobuf.Reflection.IFieldAccessor.GetValue(Google.Protobuf.IMessage)">
  6628. <summary>
  6629. Fetches the field value. For repeated values, this will be an
  6630. <see cref="T:System.Collections.IList"/> implementation. For map values, this will be an
  6631. <see cref="T:System.Collections.IDictionary"/> implementation.
  6632. </summary>
  6633. </member>
  6634. <member name="M:Google.Protobuf.Reflection.IFieldAccessor.HasValue(Google.Protobuf.IMessage)">
  6635. <summary>
  6636. Indicates whether the field in the specified message is set.
  6637. For proto3 fields that aren't explicitly optional, this throws an <see cref="T:System.InvalidOperationException"/>
  6638. </summary>
  6639. </member>
  6640. <member name="M:Google.Protobuf.Reflection.IFieldAccessor.SetValue(Google.Protobuf.IMessage,System.Object)">
  6641. <summary>
  6642. Mutator for single "simple" fields only.
  6643. </summary>
  6644. <remarks>
  6645. Repeated fields are mutated by fetching the value and manipulating it as a list.
  6646. Map fields are mutated by fetching the value and manipulating it as a dictionary.
  6647. </remarks>
  6648. <exception cref="T:System.InvalidOperationException">The field is not a "simple" field.</exception>
  6649. </member>
  6650. <member name="T:Google.Protobuf.Reflection.MapFieldAccessor">
  6651. <summary>
  6652. Accessor for map fields.
  6653. </summary>
  6654. </member>
  6655. <member name="T:Google.Protobuf.Reflection.MessageDescriptor">
  6656. <summary>
  6657. Describes a message type.
  6658. </summary>
  6659. </member>
  6660. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.Name">
  6661. <summary>
  6662. The brief name of the descriptor's target.
  6663. </summary>
  6664. </member>
  6665. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.ClrType">
  6666. <summary>
  6667. The CLR type used to represent message instances from this descriptor.
  6668. </summary>
  6669. <remarks>
  6670. <para>
  6671. The value returned by this property will be non-null for all regular fields. However,
  6672. if a message containing a map field is introspected, the list of nested messages will include
  6673. an auto-generated nested key/value pair message for the field. This is not represented in any
  6674. generated type, so this property will return null in such cases.
  6675. </para>
  6676. <para>
  6677. For wrapper types (<see cref="T:Google.Protobuf.WellKnownTypes.StringValue"/> and the like), the type returned here
  6678. will be the generated message type, not the native type used by reflection for fields of those types. Code
  6679. using reflection should call <see cref="P:Google.Protobuf.Reflection.MessageDescriptor.IsWrapperType"/> to determine whether a message descriptor represents
  6680. a wrapper type, and handle the result appropriately.
  6681. </para>
  6682. </remarks>
  6683. </member>
  6684. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.Parser">
  6685. <summary>
  6686. A parser for this message type.
  6687. </summary>
  6688. <remarks>
  6689. <para>
  6690. As <see cref="T:Google.Protobuf.Reflection.MessageDescriptor"/> is not generic, this cannot be statically
  6691. typed to the relevant type, but it should produce objects of a type compatible with <see cref="P:Google.Protobuf.Reflection.MessageDescriptor.ClrType"/>.
  6692. </para>
  6693. <para>
  6694. The value returned by this property will be non-null for all regular fields. However,
  6695. if a message containing a map field is introspected, the list of nested messages will include
  6696. an auto-generated nested key/value pair message for the field. No message parser object is created for
  6697. such messages, so this property will return null in such cases.
  6698. </para>
  6699. <para>
  6700. For wrapper types (<see cref="T:Google.Protobuf.WellKnownTypes.StringValue"/> and the like), the parser returned here
  6701. will be the generated message type, not the native type used by reflection for fields of those types. Code
  6702. using reflection should call <see cref="P:Google.Protobuf.Reflection.MessageDescriptor.IsWrapperType"/> to determine whether a message descriptor represents
  6703. a wrapper type, and handle the result appropriately.
  6704. </para>
  6705. </remarks>
  6706. </member>
  6707. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.IsWellKnownType">
  6708. <summary>
  6709. Returns whether this message is one of the "well known types" which may have runtime/protoc support.
  6710. </summary>
  6711. </member>
  6712. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.IsWrapperType">
  6713. <summary>
  6714. Returns whether this message is one of the "wrapper types" used for fields which represent primitive values
  6715. with the addition of presence.
  6716. </summary>
  6717. </member>
  6718. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.ContainingType">
  6719. <value>
  6720. If this is a nested type, get the outer descriptor, otherwise null.
  6721. </value>
  6722. </member>
  6723. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.Fields">
  6724. <value>
  6725. A collection of fields, which can be retrieved by name or field number.
  6726. </value>
  6727. </member>
  6728. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.Extensions">
  6729. <summary>
  6730. An unmodifiable list of extensions defined in this message's scope.
  6731. Note that some extensions may be incomplete (FieldDescriptor.Extension may be null)
  6732. if they are declared in a file generated using a version of protoc that did not fully
  6733. support extensions in C#.
  6734. </summary>
  6735. </member>
  6736. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.NestedTypes">
  6737. <value>
  6738. An unmodifiable list of this message type's nested types.
  6739. </value>
  6740. </member>
  6741. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.EnumTypes">
  6742. <value>
  6743. An unmodifiable list of this message type's enum types.
  6744. </value>
  6745. </member>
  6746. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.Oneofs">
  6747. <value>
  6748. An unmodifiable list of the "oneof" field collections in this message type.
  6749. All "real" oneofs (where <see cref="P:Google.Protobuf.Reflection.OneofDescriptor.IsSynthetic"/> returns false)
  6750. come before synthetic ones.
  6751. </value>
  6752. </member>
  6753. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.RealOneofCount">
  6754. <summary>
  6755. The number of real "oneof" descriptors in this message type. Every element in <see cref="P:Google.Protobuf.Reflection.MessageDescriptor.Oneofs"/>
  6756. with an index less than this will have a <see cref="P:Google.Protobuf.Reflection.OneofDescriptor.IsSynthetic"/> property value
  6757. of <c>false</c>; every element with an index greater than or equal to this will have a
  6758. <see cref="P:Google.Protobuf.Reflection.OneofDescriptor.IsSynthetic"/> property value of <c>true</c>.
  6759. </summary>
  6760. </member>
  6761. <member name="M:Google.Protobuf.Reflection.MessageDescriptor.FindFieldByName(System.String)">
  6762. <summary>
  6763. Finds a field by field name.
  6764. </summary>
  6765. <param name="name">The unqualified name of the field (e.g. "foo").</param>
  6766. <returns>The field's descriptor, or null if not found.</returns>
  6767. </member>
  6768. <member name="M:Google.Protobuf.Reflection.MessageDescriptor.FindFieldByNumber(System.Int32)">
  6769. <summary>
  6770. Finds a field by field number.
  6771. </summary>
  6772. <param name="number">The field number within this message type.</param>
  6773. <returns>The field's descriptor, or null if not found.</returns>
  6774. </member>
  6775. <member name="M:Google.Protobuf.Reflection.MessageDescriptor.FindDescriptor``1(System.String)">
  6776. <summary>
  6777. Finds a nested descriptor by name. The is valid for fields, nested
  6778. message types, oneofs and enums.
  6779. </summary>
  6780. <param name="name">The unqualified name of the descriptor, e.g. "Foo"</param>
  6781. <returns>The descriptor, or null if not found.</returns>
  6782. </member>
  6783. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.CustomOptions">
  6784. <summary>
  6785. The (possibly empty) set of custom options for this message.
  6786. </summary>
  6787. </member>
  6788. <member name="M:Google.Protobuf.Reflection.MessageDescriptor.GetOptions">
  6789. <summary>
  6790. The <c>MessageOptions</c>, defined in <c>descriptor.proto</c>.
  6791. If the options message is not present (i.e. there are no options), <c>null</c> is returned.
  6792. Custom options can be retrieved as extensions of the returned message.
  6793. NOTE: A defensive copy is created each time this property is retrieved.
  6794. </summary>
  6795. </member>
  6796. <member name="M:Google.Protobuf.Reflection.MessageDescriptor.GetOption``1(Google.Protobuf.Extension{Google.Protobuf.Reflection.MessageOptions,``0})">
  6797. <summary>
  6798. Gets a single value message option for this descriptor
  6799. </summary>
  6800. </member>
  6801. <member name="M:Google.Protobuf.Reflection.MessageDescriptor.GetOption``1(Google.Protobuf.RepeatedExtension{Google.Protobuf.Reflection.MessageOptions,``0})">
  6802. <summary>
  6803. Gets a repeated value message option for this descriptor
  6804. </summary>
  6805. </member>
  6806. <member name="M:Google.Protobuf.Reflection.MessageDescriptor.CrossLink">
  6807. <summary>
  6808. Looks up and cross-links all fields and nested types.
  6809. </summary>
  6810. </member>
  6811. <member name="T:Google.Protobuf.Reflection.MessageDescriptor.FieldCollection">
  6812. <summary>
  6813. A collection to simplify retrieving the field accessor for a particular field.
  6814. </summary>
  6815. </member>
  6816. <member name="M:Google.Protobuf.Reflection.MessageDescriptor.FieldCollection.InDeclarationOrder">
  6817. <value>
  6818. Returns the fields in the message as an immutable list, in the order in which they
  6819. are declared in the source .proto file.
  6820. </value>
  6821. </member>
  6822. <member name="M:Google.Protobuf.Reflection.MessageDescriptor.FieldCollection.InFieldNumberOrder">
  6823. <value>
  6824. Returns the fields in the message as an immutable list, in ascending field number
  6825. order. Field numbers need not be contiguous, so there is no direct mapping from the
  6826. index in the list to the field number; to retrieve a field by field number, it is better
  6827. to use the <see cref="T:Google.Protobuf.Reflection.MessageDescriptor.FieldCollection"/> indexer.
  6828. </value>
  6829. </member>
  6830. <member name="M:Google.Protobuf.Reflection.MessageDescriptor.FieldCollection.ByJsonName">
  6831. <value>
  6832. Returns a read-only dictionary mapping the field names in this message as they're available
  6833. in the JSON representation to the field descriptors. For example, a field <c>foo_bar</c>
  6834. in the message would result two entries, one with a key <c>fooBar</c> and one with a key
  6835. <c>foo_bar</c>, both referring to the same field.
  6836. </value>
  6837. </member>
  6838. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.FieldCollection.Item(System.Int32)">
  6839. <summary>
  6840. Retrieves the descriptor for the field with the given number.
  6841. </summary>
  6842. <param name="number">Number of the field to retrieve the descriptor for</param>
  6843. <returns>The accessor for the given field</returns>
  6844. <exception cref="T:System.Collections.Generic.KeyNotFoundException">The message descriptor does not contain a field
  6845. with the given number</exception>
  6846. </member>
  6847. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.FieldCollection.Item(System.String)">
  6848. <summary>
  6849. Retrieves the descriptor for the field with the given name.
  6850. </summary>
  6851. <param name="name">Name of the field to retrieve the descriptor for</param>
  6852. <returns>The descriptor for the given field</returns>
  6853. <exception cref="T:System.Collections.Generic.KeyNotFoundException">The message descriptor does not contain a field
  6854. with the given name</exception>
  6855. </member>
  6856. <member name="T:Google.Protobuf.Reflection.MethodDescriptor">
  6857. <summary>
  6858. Describes a single method in a service.
  6859. </summary>
  6860. </member>
  6861. <member name="P:Google.Protobuf.Reflection.MethodDescriptor.Service">
  6862. <value>
  6863. The service this method belongs to.
  6864. </value>
  6865. </member>
  6866. <member name="P:Google.Protobuf.Reflection.MethodDescriptor.InputType">
  6867. <value>
  6868. The method's input type.
  6869. </value>
  6870. </member>
  6871. <member name="P:Google.Protobuf.Reflection.MethodDescriptor.OutputType">
  6872. <value>
  6873. The method's input type.
  6874. </value>
  6875. </member>
  6876. <member name="P:Google.Protobuf.Reflection.MethodDescriptor.IsClientStreaming">
  6877. <value>
  6878. Indicates if client streams multiple requests.
  6879. </value>
  6880. </member>
  6881. <member name="P:Google.Protobuf.Reflection.MethodDescriptor.IsServerStreaming">
  6882. <value>
  6883. Indicates if server streams multiple responses.
  6884. </value>
  6885. </member>
  6886. <member name="P:Google.Protobuf.Reflection.MethodDescriptor.CustomOptions">
  6887. <summary>
  6888. The (possibly empty) set of custom options for this method.
  6889. </summary>
  6890. </member>
  6891. <member name="M:Google.Protobuf.Reflection.MethodDescriptor.GetOptions">
  6892. <summary>
  6893. The <c>MethodOptions</c>, defined in <c>descriptor.proto</c>.
  6894. If the options message is not present (i.e. there are no options), <c>null</c> is returned.
  6895. Custom options can be retrieved as extensions of the returned message.
  6896. NOTE: A defensive copy is created each time this property is retrieved.
  6897. </summary>
  6898. </member>
  6899. <member name="M:Google.Protobuf.Reflection.MethodDescriptor.GetOption``1(Google.Protobuf.Extension{Google.Protobuf.Reflection.MethodOptions,``0})">
  6900. <summary>
  6901. Gets a single value method option for this descriptor
  6902. </summary>
  6903. </member>
  6904. <member name="M:Google.Protobuf.Reflection.MethodDescriptor.GetOption``1(Google.Protobuf.RepeatedExtension{Google.Protobuf.Reflection.MethodOptions,``0})">
  6905. <summary>
  6906. Gets a repeated value method option for this descriptor
  6907. </summary>
  6908. </member>
  6909. <member name="P:Google.Protobuf.Reflection.MethodDescriptor.Name">
  6910. <summary>
  6911. The brief name of the descriptor's target.
  6912. </summary>
  6913. </member>
  6914. <member name="T:Google.Protobuf.Reflection.OneofAccessor">
  6915. <summary>
  6916. Reflection access for a oneof, allowing clear and "get case" actions.
  6917. </summary>
  6918. </member>
  6919. <member name="P:Google.Protobuf.Reflection.OneofAccessor.Descriptor">
  6920. <summary>
  6921. Gets the descriptor for this oneof.
  6922. </summary>
  6923. <value>
  6924. The descriptor of the oneof.
  6925. </value>
  6926. </member>
  6927. <member name="M:Google.Protobuf.Reflection.OneofAccessor.Clear(Google.Protobuf.IMessage)">
  6928. <summary>
  6929. Clears the oneof in the specified message.
  6930. </summary>
  6931. </member>
  6932. <member name="M:Google.Protobuf.Reflection.OneofAccessor.GetCaseFieldDescriptor(Google.Protobuf.IMessage)">
  6933. <summary>
  6934. Indicates which field in the oneof is set for specified message
  6935. </summary>
  6936. </member>
  6937. <member name="T:Google.Protobuf.Reflection.OneofDescriptor">
  6938. <summary>
  6939. Describes a "oneof" field collection in a message type: a set of
  6940. fields of which at most one can be set in any particular message.
  6941. </summary>
  6942. </member>
  6943. <member name="P:Google.Protobuf.Reflection.OneofDescriptor.Name">
  6944. <summary>
  6945. The brief name of the descriptor's target.
  6946. </summary>
  6947. </member>
  6948. <member name="P:Google.Protobuf.Reflection.OneofDescriptor.ContainingType">
  6949. <summary>
  6950. Gets the message type containing this oneof.
  6951. </summary>
  6952. <value>
  6953. The message type containing this oneof.
  6954. </value>
  6955. </member>
  6956. <member name="P:Google.Protobuf.Reflection.OneofDescriptor.Fields">
  6957. <summary>
  6958. Gets the fields within this oneof, in declaration order.
  6959. </summary>
  6960. <value>
  6961. The fields within this oneof, in declaration order.
  6962. </value>
  6963. </member>
  6964. <member name="P:Google.Protobuf.Reflection.OneofDescriptor.IsSynthetic">
  6965. <summary>
  6966. Returns <c>true</c> if this oneof is a synthetic oneof containing a proto3 optional field;
  6967. <c>false</c> otherwise.
  6968. </summary>
  6969. </member>
  6970. <member name="P:Google.Protobuf.Reflection.OneofDescriptor.Accessor">
  6971. <summary>
  6972. Gets an accessor for reflective access to the values associated with the oneof
  6973. in a particular message.
  6974. </summary>
  6975. <remarks>
  6976. <para>
  6977. In descriptors for generated code, the value returned by this property will always be non-null.
  6978. </para>
  6979. <para>
  6980. In dynamically loaded descriptors, the value returned by this property will current be null;
  6981. if and when dynamic messages are supported, it will return a suitable accessor to work with
  6982. them.
  6983. </para>
  6984. </remarks>
  6985. <value>
  6986. The accessor used for reflective access.
  6987. </value>
  6988. </member>
  6989. <member name="P:Google.Protobuf.Reflection.OneofDescriptor.CustomOptions">
  6990. <summary>
  6991. The (possibly empty) set of custom options for this oneof.
  6992. </summary>
  6993. </member>
  6994. <member name="M:Google.Protobuf.Reflection.OneofDescriptor.GetOptions">
  6995. <summary>
  6996. The <c>OneofOptions</c>, defined in <c>descriptor.proto</c>.
  6997. If the options message is not present (i.e. there are no options), <c>null</c> is returned.
  6998. Custom options can be retrieved as extensions of the returned message.
  6999. NOTE: A defensive copy is created each time this property is retrieved.
  7000. </summary>
  7001. </member>
  7002. <member name="M:Google.Protobuf.Reflection.OneofDescriptor.GetOption``1(Google.Protobuf.Extension{Google.Protobuf.Reflection.OneofOptions,``0})">
  7003. <summary>
  7004. Gets a single value oneof option for this descriptor
  7005. </summary>
  7006. </member>
  7007. <member name="M:Google.Protobuf.Reflection.OneofDescriptor.GetOption``1(Google.Protobuf.RepeatedExtension{Google.Protobuf.Reflection.OneofOptions,``0})">
  7008. <summary>
  7009. Gets a repeated value oneof option for this descriptor
  7010. </summary>
  7011. </member>
  7012. <member name="T:Google.Protobuf.Reflection.OriginalNameAttribute">
  7013. <summary>
  7014. Specifies the original name (in the .proto file) of a named element,
  7015. such as an enum value.
  7016. </summary>
  7017. </member>
  7018. <member name="P:Google.Protobuf.Reflection.OriginalNameAttribute.Name">
  7019. <summary>
  7020. The name of the element in the .proto file.
  7021. </summary>
  7022. </member>
  7023. <member name="P:Google.Protobuf.Reflection.OriginalNameAttribute.PreferredAlias">
  7024. <summary>
  7025. If the name is preferred in the .proto file.
  7026. </summary>
  7027. </member>
  7028. <member name="M:Google.Protobuf.Reflection.OriginalNameAttribute.#ctor(System.String)">
  7029. <summary>
  7030. Constructs a new attribute instance for the given name.
  7031. </summary>
  7032. <param name="name">The name of the element in the .proto file.</param>
  7033. </member>
  7034. <member name="T:Google.Protobuf.Reflection.PackageDescriptor">
  7035. <summary>
  7036. Represents a package in the symbol table. We use PackageDescriptors
  7037. just as placeholders so that someone cannot define, say, a message type
  7038. that has the same name as an existing package.
  7039. </summary>
  7040. </member>
  7041. <member name="T:Google.Protobuf.Reflection.ReflectionUtil">
  7042. <summary>
  7043. The methods in this class are somewhat evil, and should not be tampered with lightly.
  7044. Basically they allow the creation of relatively weakly typed delegates from MethodInfos
  7045. which are more strongly typed. They do this by creating an appropriate strongly typed
  7046. delegate from the MethodInfo, and then calling that within an anonymous method.
  7047. Mind-bending stuff (at least to your humble narrator) but the resulting delegates are
  7048. very fast compared with calling Invoke later on.
  7049. </summary>
  7050. </member>
  7051. <member name="F:Google.Protobuf.Reflection.ReflectionUtil.EmptyTypes">
  7052. <summary>
  7053. Empty Type[] used when calling GetProperty to force property instead of indexer fetching.
  7054. </summary>
  7055. </member>
  7056. <member name="M:Google.Protobuf.Reflection.ReflectionUtil.CreateFuncIMessageObject(System.Reflection.MethodInfo)">
  7057. <summary>
  7058. Creates a delegate which will cast the argument to the type that declares the method,
  7059. call the method on it, then convert the result to object.
  7060. </summary>
  7061. <param name="method">The method to create a delegate for, which must be declared in an IMessage
  7062. implementation.</param>
  7063. </member>
  7064. <member name="M:Google.Protobuf.Reflection.ReflectionUtil.CreateFuncIMessageInt32(System.Reflection.MethodInfo)">
  7065. <summary>
  7066. Creates a delegate which will cast the argument to the type that declares the method,
  7067. call the method on it, then convert the result to the specified type. The method is expected
  7068. to actually return an enum (because of where we're calling it - for oneof cases). Sometimes that
  7069. means we need some extra work to perform conversions.
  7070. </summary>
  7071. <param name="method">The method to create a delegate for, which must be declared in an IMessage
  7072. implementation.</param>
  7073. </member>
  7074. <member name="M:Google.Protobuf.Reflection.ReflectionUtil.CreateActionIMessageObject(System.Reflection.MethodInfo)">
  7075. <summary>
  7076. Creates a delegate which will execute the given method after casting the first argument to
  7077. the type that declares the method, and the second argument to the first parameter type of the method.
  7078. </summary>
  7079. <param name="method">The method to create a delegate for, which must be declared in an IMessage
  7080. implementation.</param>
  7081. </member>
  7082. <member name="M:Google.Protobuf.Reflection.ReflectionUtil.CreateActionIMessage(System.Reflection.MethodInfo)">
  7083. <summary>
  7084. Creates a delegate which will execute the given method after casting the first argument to
  7085. type that declares the method.
  7086. </summary>
  7087. <param name="method">The method to create a delegate for, which must be declared in an IMessage
  7088. implementation.</param>
  7089. </member>
  7090. <member name="M:Google.Protobuf.Reflection.ReflectionUtil.CreateExtensionHelper(Google.Protobuf.Extension)">
  7091. <summary>
  7092. Creates a delegate which will execute the given method after casting the first argument to
  7093. the type that declares the method, and the second argument to the first parameter type of the method.
  7094. </summary>
  7095. </member>
  7096. <member name="M:Google.Protobuf.Reflection.ReflectionUtil.GetReflectionHelper(System.Type,System.Type)">
  7097. <summary>
  7098. Creates a reflection helper for the given type arguments. Currently these are created on demand
  7099. rather than cached; this will be "busy" when initially loading a message's descriptor, but after that
  7100. they can be garbage collected. We could cache them by type if that proves to be important, but creating
  7101. an object is pretty cheap.
  7102. </summary>
  7103. </member>
  7104. <member name="T:Google.Protobuf.Reflection.RepeatedFieldAccessor">
  7105. <summary>
  7106. Accessor for repeated fields.
  7107. </summary>
  7108. </member>
  7109. <member name="T:Google.Protobuf.Reflection.ServiceDescriptor">
  7110. <summary>
  7111. Describes a service type.
  7112. </summary>
  7113. </member>
  7114. <member name="P:Google.Protobuf.Reflection.ServiceDescriptor.Name">
  7115. <summary>
  7116. The brief name of the descriptor's target.
  7117. </summary>
  7118. </member>
  7119. <member name="P:Google.Protobuf.Reflection.ServiceDescriptor.Methods">
  7120. <value>
  7121. An unmodifiable list of methods in this service.
  7122. </value>
  7123. </member>
  7124. <member name="M:Google.Protobuf.Reflection.ServiceDescriptor.FindMethodByName(System.String)">
  7125. <summary>
  7126. Finds a method by name.
  7127. </summary>
  7128. <param name="name">The unqualified name of the method (e.g. "Foo").</param>
  7129. <returns>The method's descriptor, or null if not found.</returns>
  7130. </member>
  7131. <member name="P:Google.Protobuf.Reflection.ServiceDescriptor.CustomOptions">
  7132. <summary>
  7133. The (possibly empty) set of custom options for this service.
  7134. </summary>
  7135. </member>
  7136. <member name="M:Google.Protobuf.Reflection.ServiceDescriptor.GetOptions">
  7137. <summary>
  7138. The <c>ServiceOptions</c>, defined in <c>descriptor.proto</c>.
  7139. If the options message is not present (i.e. there are no options), <c>null</c> is returned.
  7140. Custom options can be retrieved as extensions of the returned message.
  7141. NOTE: A defensive copy is created each time this property is retrieved.
  7142. </summary>
  7143. </member>
  7144. <member name="M:Google.Protobuf.Reflection.ServiceDescriptor.GetOption``1(Google.Protobuf.Extension{Google.Protobuf.Reflection.ServiceOptions,``0})">
  7145. <summary>
  7146. Gets a single value service option for this descriptor
  7147. </summary>
  7148. </member>
  7149. <member name="M:Google.Protobuf.Reflection.ServiceDescriptor.GetOption``1(Google.Protobuf.RepeatedExtension{Google.Protobuf.Reflection.ServiceOptions,``0})">
  7150. <summary>
  7151. Gets a repeated value service option for this descriptor
  7152. </summary>
  7153. </member>
  7154. <member name="T:Google.Protobuf.Reflection.SingleFieldAccessor">
  7155. <summary>
  7156. Accessor for single fields.
  7157. </summary>
  7158. </member>
  7159. <member name="T:Google.Protobuf.Reflection.TypeRegistry">
  7160. <summary>
  7161. An immutable registry of types which can be looked up by their full name.
  7162. </summary>
  7163. </member>
  7164. <member name="P:Google.Protobuf.Reflection.TypeRegistry.Empty">
  7165. <summary>
  7166. An empty type registry, containing no types.
  7167. </summary>
  7168. </member>
  7169. <member name="M:Google.Protobuf.Reflection.TypeRegistry.Find(System.String)">
  7170. <summary>
  7171. Attempts to find a message descriptor by its full name.
  7172. </summary>
  7173. <param name="fullName">The full name of the message, which is the dot-separated
  7174. combination of package, containing messages and message name</param>
  7175. <returns>The message descriptor corresponding to <paramref name="fullName"/> or null
  7176. if there is no such message descriptor.</returns>
  7177. </member>
  7178. <member name="M:Google.Protobuf.Reflection.TypeRegistry.FromFiles(Google.Protobuf.Reflection.FileDescriptor[])">
  7179. <summary>
  7180. Creates a type registry from the specified set of file descriptors.
  7181. </summary>
  7182. <remarks>
  7183. This is a convenience overload for <see cref="M:Google.Protobuf.Reflection.TypeRegistry.FromFiles(System.Collections.Generic.IEnumerable{Google.Protobuf.Reflection.FileDescriptor})"/>
  7184. to allow calls such as <c>TypeRegistry.FromFiles(descriptor1, descriptor2)</c>.
  7185. </remarks>
  7186. <param name="fileDescriptors">The set of files to include in the registry. Must not contain null values.</param>
  7187. <returns>A type registry for the given files.</returns>
  7188. </member>
  7189. <member name="M:Google.Protobuf.Reflection.TypeRegistry.FromFiles(System.Collections.Generic.IEnumerable{Google.Protobuf.Reflection.FileDescriptor})">
  7190. <summary>
  7191. Creates a type registry from the specified set of file descriptors.
  7192. </summary>
  7193. <remarks>
  7194. All message types within all the specified files are added to the registry, and
  7195. the dependencies of the specified files are also added, recursively.
  7196. </remarks>
  7197. <param name="fileDescriptors">The set of files to include in the registry. Must not contain null values.</param>
  7198. <returns>A type registry for the given files.</returns>
  7199. </member>
  7200. <member name="M:Google.Protobuf.Reflection.TypeRegistry.FromMessages(Google.Protobuf.Reflection.MessageDescriptor[])">
  7201. <summary>
  7202. Creates a type registry from the file descriptor parents of the specified set of message descriptors.
  7203. </summary>
  7204. <remarks>
  7205. This is a convenience overload for <see cref="M:Google.Protobuf.Reflection.TypeRegistry.FromMessages(System.Collections.Generic.IEnumerable{Google.Protobuf.Reflection.MessageDescriptor})"/>
  7206. to allow calls such as <c>TypeRegistry.FromFiles(descriptor1, descriptor2)</c>.
  7207. </remarks>
  7208. <param name="messageDescriptors">The set of message descriptors to use to identify file descriptors to include in the registry.
  7209. Must not contain null values.</param>
  7210. <returns>A type registry for the given files.</returns>
  7211. </member>
  7212. <member name="M:Google.Protobuf.Reflection.TypeRegistry.FromMessages(System.Collections.Generic.IEnumerable{Google.Protobuf.Reflection.MessageDescriptor})">
  7213. <summary>
  7214. Creates a type registry from the file descriptor parents of the specified set of message descriptors.
  7215. </summary>
  7216. <remarks>
  7217. The specified message descriptors are only used to identify their file descriptors; the returned registry
  7218. contains all the types within the file descriptors which contain the specified message descriptors (and
  7219. the dependencies of those files), not just the specified messages.
  7220. </remarks>
  7221. <param name="messageDescriptors">The set of message descriptors to use to identify file descriptors to include in the registry.
  7222. Must not contain null values.</param>
  7223. <returns>A type registry for the given files.</returns>
  7224. </member>
  7225. <member name="T:Google.Protobuf.Reflection.TypeRegistry.Builder">
  7226. <summary>
  7227. Builder class which isn't exposed, but acts as a convenient alternative to passing round two dictionaries in recursive calls.
  7228. </summary>
  7229. </member>
  7230. <member name="T:Google.Protobuf.SegmentedBufferHelper">
  7231. <summary>
  7232. Abstraction for reading from a stream / read only sequence.
  7233. Parsing from the buffer is a loop of reading from current buffer / refreshing the buffer once done.
  7234. </summary>
  7235. </member>
  7236. <member name="M:Google.Protobuf.SegmentedBufferHelper.Initialize(Google.Protobuf.CodedInputStream,Google.Protobuf.SegmentedBufferHelper@)">
  7237. <summary>
  7238. Initialize an instance with a coded input stream.
  7239. This approach is faster than using a constructor because the instance to initialize is passed by reference
  7240. and we can write directly into it without copying.
  7241. </summary>
  7242. </member>
  7243. <member name="M:Google.Protobuf.SegmentedBufferHelper.Initialize(System.Buffers.ReadOnlySequence{System.Byte},Google.Protobuf.SegmentedBufferHelper@,System.ReadOnlySpan{System.Byte}@)">
  7244. <summary>
  7245. Initialize an instance with a read only sequence.
  7246. This approach is faster than using a constructor because the instance to initialize is passed by reference
  7247. and we can write directly into it without copying.
  7248. </summary>
  7249. </member>
  7250. <member name="M:Google.Protobuf.SegmentedBufferHelper.PushLimit(Google.Protobuf.ParserInternalState@,System.Int32)">
  7251. <summary>
  7252. Sets currentLimit to (current position) + byteLimit. This is called
  7253. when descending into a length-delimited embedded message. The previous
  7254. limit is returned.
  7255. </summary>
  7256. <returns>The old limit.</returns>
  7257. </member>
  7258. <member name="M:Google.Protobuf.SegmentedBufferHelper.PopLimit(Google.Protobuf.ParserInternalState@,System.Int32)">
  7259. <summary>
  7260. Discards the current limit, returning the previous limit.
  7261. </summary>
  7262. </member>
  7263. <member name="M:Google.Protobuf.SegmentedBufferHelper.IsReachedLimit(Google.Protobuf.ParserInternalState@)">
  7264. <summary>
  7265. Returns whether or not all the data before the limit has been read.
  7266. </summary>
  7267. <returns></returns>
  7268. </member>
  7269. <member name="M:Google.Protobuf.SegmentedBufferHelper.IsAtEnd(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)">
  7270. <summary>
  7271. Returns true if the stream has reached the end of the input. This is the
  7272. case if either the end of the underlying input source has been reached or
  7273. the stream has reached a limit created using PushLimit.
  7274. </summary>
  7275. </member>
  7276. <member name="T:Google.Protobuf.UnknownField">
  7277. <summary>
  7278. Represents a single field in an UnknownFieldSet.
  7279. An UnknownField consists of four lists of values. The lists correspond
  7280. to the four "wire types" used in the protocol buffer binary format.
  7281. Normally, only one of the four lists will contain any values, since it
  7282. is impossible to define a valid message type that declares two different
  7283. types for the same field number. However, the code is designed to allow
  7284. for the case where the same unknown field number is encountered using
  7285. multiple different wire types.
  7286. </summary>
  7287. </member>
  7288. <member name="M:Google.Protobuf.UnknownField.#ctor">
  7289. <summary>
  7290. Creates a new UnknownField.
  7291. </summary>
  7292. </member>
  7293. <member name="M:Google.Protobuf.UnknownField.Equals(System.Object)">
  7294. <summary>
  7295. Checks if two unknown field are equal.
  7296. </summary>
  7297. </member>
  7298. <member name="M:Google.Protobuf.UnknownField.GetHashCode">
  7299. <summary>
  7300. Get the hash code of the unknown field.
  7301. </summary>
  7302. </member>
  7303. <member name="M:Google.Protobuf.UnknownField.WriteTo(System.Int32,Google.Protobuf.WriteContext@)">
  7304. <summary>
  7305. Serializes the field, including the field number, and writes it to
  7306. <paramref name="output"/>
  7307. </summary>
  7308. <param name="fieldNumber">The unknown field number.</param>
  7309. <param name="output">The write context to write to.</param>
  7310. </member>
  7311. <member name="M:Google.Protobuf.UnknownField.GetSerializedSize(System.Int32)">
  7312. <summary>
  7313. Computes the number of bytes required to encode this field, including field
  7314. number.
  7315. </summary>
  7316. </member>
  7317. <member name="M:Google.Protobuf.UnknownField.MergeFrom(Google.Protobuf.UnknownField)">
  7318. <summary>
  7319. Merge the values in <paramref name="other" /> into this field. For each list
  7320. of values, <paramref name="other"/>'s values are append to the ones in this
  7321. field.
  7322. </summary>
  7323. </member>
  7324. <member name="M:Google.Protobuf.UnknownField.AddAll``1(System.Collections.Generic.List{``0},System.Collections.Generic.IList{``0})">
  7325. <summary>
  7326. Returns a new list containing all of the given specified values from
  7327. both the <paramref name="current"/> and <paramref name="extras"/> lists.
  7328. If <paramref name="current" /> is null and <paramref name="extras"/> is null or empty,
  7329. null is returned. Otherwise, either a new list is created (if <paramref name="current" />
  7330. is null) or the elements of <paramref name="extras"/> are added to <paramref name="current" />.
  7331. </summary>
  7332. </member>
  7333. <member name="M:Google.Protobuf.UnknownField.AddVarint(System.UInt64)">
  7334. <summary>
  7335. Adds a varint value.
  7336. </summary>
  7337. </member>
  7338. <member name="M:Google.Protobuf.UnknownField.AddFixed32(System.UInt32)">
  7339. <summary>
  7340. Adds a fixed32 value.
  7341. </summary>
  7342. </member>
  7343. <member name="M:Google.Protobuf.UnknownField.AddFixed64(System.UInt64)">
  7344. <summary>
  7345. Adds a fixed64 value.
  7346. </summary>
  7347. </member>
  7348. <member name="M:Google.Protobuf.UnknownField.AddLengthDelimited(Google.Protobuf.ByteString)">
  7349. <summary>
  7350. Adds a length-delimited value.
  7351. </summary>
  7352. </member>
  7353. <member name="M:Google.Protobuf.UnknownField.Add``1(System.Collections.Generic.List{``0},``0)">
  7354. <summary>
  7355. Adds <paramref name="value"/> to the <paramref name="list"/>, creating
  7356. a new list if <paramref name="list"/> is null. The list is returned - either
  7357. the original reference or the new list.
  7358. </summary>
  7359. </member>
  7360. <member name="T:Google.Protobuf.UnknownFieldSet">
  7361. <summary>
  7362. Used to keep track of fields which were seen when parsing a protocol message
  7363. but whose field numbers or types are unrecognized. This most frequently
  7364. occurs when new fields are added to a message type and then messages containing
  7365. those fields are read by old software that was built before the new types were
  7366. added.
  7367. Most users will never need to use this class directly.
  7368. </summary>
  7369. </member>
  7370. <member name="M:Google.Protobuf.UnknownFieldSet.#ctor">
  7371. <summary>
  7372. Creates a new UnknownFieldSet.
  7373. </summary>
  7374. </member>
  7375. <member name="M:Google.Protobuf.UnknownFieldSet.HasField(System.Int32)">
  7376. <summary>
  7377. Checks whether or not the given field number is present in the set.
  7378. </summary>
  7379. </member>
  7380. <member name="M:Google.Protobuf.UnknownFieldSet.WriteTo(Google.Protobuf.CodedOutputStream)">
  7381. <summary>
  7382. Serializes the set and writes it to <paramref name="output"/>.
  7383. </summary>
  7384. </member>
  7385. <member name="M:Google.Protobuf.UnknownFieldSet.WriteTo(Google.Protobuf.WriteContext@)">
  7386. <summary>
  7387. Serializes the set and writes it to <paramref name="ctx"/>.
  7388. </summary>
  7389. </member>
  7390. <member name="M:Google.Protobuf.UnknownFieldSet.CalculateSize">
  7391. <summary>
  7392. Gets the number of bytes required to encode this set.
  7393. </summary>
  7394. </member>
  7395. <member name="M:Google.Protobuf.UnknownFieldSet.Equals(System.Object)">
  7396. <summary>
  7397. Checks if two unknown field sets are equal.
  7398. </summary>
  7399. </member>
  7400. <member name="M:Google.Protobuf.UnknownFieldSet.GetHashCode">
  7401. <summary>
  7402. Gets the unknown field set's hash code.
  7403. </summary>
  7404. </member>
  7405. <member name="M:Google.Protobuf.UnknownFieldSet.AddOrReplaceField(System.Int32,Google.Protobuf.UnknownField)">
  7406. <summary>
  7407. Adds a field to the set. If a field with the same number already exists, it
  7408. is replaced.
  7409. </summary>
  7410. </member>
  7411. <member name="M:Google.Protobuf.UnknownFieldSet.MergeFieldFrom(Google.Protobuf.ParseContext@)">
  7412. <summary>
  7413. Parse a single field from <paramref name="ctx"/> and merge it
  7414. into this set.
  7415. </summary>
  7416. <param name="ctx">The parse context from which to read the field</param>
  7417. <returns>false if the tag is an "end group" tag, true otherwise</returns>
  7418. </member>
  7419. <member name="M:Google.Protobuf.UnknownFieldSet.MergeFieldFrom(Google.Protobuf.UnknownFieldSet,Google.Protobuf.CodedInputStream)">
  7420. <summary>
  7421. Create a new UnknownFieldSet if unknownFields is null.
  7422. Parse a single field from <paramref name="input"/> and merge it
  7423. into unknownFields. If <paramref name="input"/> is configured to discard unknown fields,
  7424. <paramref name="unknownFields"/> will be returned as-is and the field will be skipped.
  7425. </summary>
  7426. <param name="unknownFields">The UnknownFieldSet which need to be merged</param>
  7427. <param name="input">The coded input stream containing the field</param>
  7428. <returns>The merged UnknownFieldSet</returns>
  7429. </member>
  7430. <member name="M:Google.Protobuf.UnknownFieldSet.MergeFieldFrom(Google.Protobuf.UnknownFieldSet,Google.Protobuf.ParseContext@)">
  7431. <summary>
  7432. Create a new UnknownFieldSet if unknownFields is null.
  7433. Parse a single field from <paramref name="ctx"/> and merge it
  7434. into unknownFields. If <paramref name="ctx"/> is configured to discard unknown fields,
  7435. <paramref name="unknownFields"/> will be returned as-is and the field will be skipped.
  7436. </summary>
  7437. <param name="unknownFields">The UnknownFieldSet which need to be merged</param>
  7438. <param name="ctx">The parse context from which to read the field</param>
  7439. <returns>The merged UnknownFieldSet</returns>
  7440. </member>
  7441. <member name="M:Google.Protobuf.UnknownFieldSet.MergeFrom(Google.Protobuf.UnknownFieldSet)">
  7442. <summary>
  7443. Merges the fields from <paramref name="other"/> into this set.
  7444. If a field number exists in both sets, the values in <paramref name="other"/>
  7445. will be appended to the values in this set.
  7446. </summary>
  7447. </member>
  7448. <member name="M:Google.Protobuf.UnknownFieldSet.MergeFrom(Google.Protobuf.UnknownFieldSet,Google.Protobuf.UnknownFieldSet)">
  7449. <summary>
  7450. Created a new UnknownFieldSet to <paramref name="unknownFields"/> if
  7451. needed and merges the fields from <paramref name="other"/> into the first set.
  7452. If a field number exists in both sets, the values in <paramref name="other"/>
  7453. will be appended to the values in this set.
  7454. </summary>
  7455. </member>
  7456. <member name="M:Google.Protobuf.UnknownFieldSet.MergeField(System.Int32,Google.Protobuf.UnknownField)">
  7457. <summary>
  7458. Adds a field to the unknown field set. If a field with the same
  7459. number already exists, the two are merged.
  7460. </summary>
  7461. </member>
  7462. <member name="M:Google.Protobuf.UnknownFieldSet.Clone(Google.Protobuf.UnknownFieldSet)">
  7463. <summary>
  7464. Clone an unknown field set from <paramref name="other"/>.
  7465. </summary>
  7466. </member>
  7467. <member name="T:Google.Protobuf.WellKnownTypes.AnyReflection">
  7468. <summary>Holder for reflection information generated from google/protobuf/any.proto</summary>
  7469. </member>
  7470. <member name="P:Google.Protobuf.WellKnownTypes.AnyReflection.Descriptor">
  7471. <summary>File descriptor for google/protobuf/any.proto</summary>
  7472. </member>
  7473. <member name="T:Google.Protobuf.WellKnownTypes.Any">
  7474. <summary>
  7475. `Any` contains an arbitrary serialized protocol buffer message along with a
  7476. URL that describes the type of the serialized message.
  7477. Protobuf library provides support to pack/unpack Any values in the form
  7478. of utility functions or additional generated methods of the Any type.
  7479. Example 1: Pack and unpack a message in C++.
  7480. Foo foo = ...;
  7481. Any any;
  7482. any.PackFrom(foo);
  7483. ...
  7484. if (any.UnpackTo(&amp;foo)) {
  7485. ...
  7486. }
  7487. Example 2: Pack and unpack a message in Java.
  7488. Foo foo = ...;
  7489. Any any = Any.pack(foo);
  7490. ...
  7491. if (any.is(Foo.class)) {
  7492. foo = any.unpack(Foo.class);
  7493. }
  7494. Example 3: Pack and unpack a message in Python.
  7495. foo = Foo(...)
  7496. any = Any()
  7497. any.Pack(foo)
  7498. ...
  7499. if any.Is(Foo.DESCRIPTOR):
  7500. any.Unpack(foo)
  7501. ...
  7502. Example 4: Pack and unpack a message in Go
  7503. foo := &amp;pb.Foo{...}
  7504. any, err := anypb.New(foo)
  7505. if err != nil {
  7506. ...
  7507. }
  7508. ...
  7509. foo := &amp;pb.Foo{}
  7510. if err := any.UnmarshalTo(foo); err != nil {
  7511. ...
  7512. }
  7513. The pack methods provided by protobuf library will by default use
  7514. 'type.googleapis.com/full.type.name' as the type URL and the unpack
  7515. methods only use the fully qualified type name after the last '/'
  7516. in the type URL, for example "foo.bar.com/x/y.z" will yield type
  7517. name "y.z".
  7518. JSON
  7519. ====
  7520. The JSON representation of an `Any` value uses the regular
  7521. representation of the deserialized, embedded message, with an
  7522. additional field `@type` which contains the type URL. Example:
  7523. package google.profile;
  7524. message Person {
  7525. string first_name = 1;
  7526. string last_name = 2;
  7527. }
  7528. {
  7529. "@type": "type.googleapis.com/google.profile.Person",
  7530. "firstName": &lt;string>,
  7531. "lastName": &lt;string>
  7532. }
  7533. If the embedded message type is well-known and has a custom JSON
  7534. representation, that representation will be embedded adding a field
  7535. `value` which holds the custom JSON in addition to the `@type`
  7536. field. Example (for message [google.protobuf.Duration][]):
  7537. {
  7538. "@type": "type.googleapis.com/google.protobuf.Duration",
  7539. "value": "1.212s"
  7540. }
  7541. </summary>
  7542. </member>
  7543. <member name="F:Google.Protobuf.WellKnownTypes.Any.TypeUrlFieldNumber">
  7544. <summary>Field number for the "type_url" field.</summary>
  7545. </member>
  7546. <member name="P:Google.Protobuf.WellKnownTypes.Any.TypeUrl">
  7547. <summary>
  7548. A URL/resource name that uniquely identifies the type of the serialized
  7549. protocol buffer message. This string must contain at least
  7550. one "/" character. The last segment of the URL's path must represent
  7551. the fully qualified name of the type (as in
  7552. `path/google.protobuf.Duration`). The name should be in a canonical form
  7553. (e.g., leading "." is not accepted).
  7554. In practice, teams usually precompile into the binary all types that they
  7555. expect it to use in the context of Any. However, for URLs which use the
  7556. scheme `http`, `https`, or no scheme, one can optionally set up a type
  7557. server that maps type URLs to message definitions as follows:
  7558. * If no scheme is provided, `https` is assumed.
  7559. * An HTTP GET on the URL must yield a [google.protobuf.Type][]
  7560. value in binary format, or produce an error.
  7561. * Applications are allowed to cache lookup results based on the
  7562. URL, or have them precompiled into a binary to avoid any
  7563. lookup. Therefore, binary compatibility needs to be preserved
  7564. on changes to types. (Use versioned type names to manage
  7565. breaking changes.)
  7566. Note: this functionality is not currently available in the official
  7567. protobuf release, and it is not used for type URLs beginning with
  7568. type.googleapis.com.
  7569. Schemes other than `http`, `https` (or the empty scheme) might be
  7570. used with implementation specific semantics.
  7571. </summary>
  7572. </member>
  7573. <member name="F:Google.Protobuf.WellKnownTypes.Any.ValueFieldNumber">
  7574. <summary>Field number for the "value" field.</summary>
  7575. </member>
  7576. <member name="P:Google.Protobuf.WellKnownTypes.Any.Value">
  7577. <summary>
  7578. Must be a valid serialized protocol buffer of the above specified type.
  7579. </summary>
  7580. </member>
  7581. <member name="M:Google.Protobuf.WellKnownTypes.Any.GetTypeName(System.String)">
  7582. <summary>
  7583. Retrieves the type name for a type URL, matching the <see cref="P:Google.Protobuf.Reflection.DescriptorBase.FullName"/>
  7584. of the packed message type.
  7585. </summary>
  7586. <remarks>
  7587. <para>
  7588. This is always just the last part of the URL, after the final slash. No validation of
  7589. anything before the trailing slash is performed. If the type URL does not include a slash,
  7590. an empty string is returned rather than an exception being thrown; this won't match any types,
  7591. and the calling code is probably in a better position to give a meaningful error.
  7592. </para>
  7593. <para>
  7594. There is no handling of fragments or queries at the moment.
  7595. </para>
  7596. </remarks>
  7597. <param name="typeUrl">The URL to extract the type name from</param>
  7598. <returns>The type name</returns>
  7599. </member>
  7600. <member name="M:Google.Protobuf.WellKnownTypes.Any.Is(Google.Protobuf.Reflection.MessageDescriptor)">
  7601. <summary>
  7602. Returns a bool indictating whether this Any message is of the target message type
  7603. </summary>
  7604. <param name="descriptor">The descriptor of the message type</param>
  7605. <returns><c>true</c> if the type name matches the descriptor's full name or <c>false</c> otherwise</returns>
  7606. </member>
  7607. <member name="M:Google.Protobuf.WellKnownTypes.Any.Unpack``1">
  7608. <summary>
  7609. Unpacks the content of this Any message into the target message type,
  7610. which must match the type URL within this Any message.
  7611. </summary>
  7612. <typeparam name="T">The type of message to unpack the content into.</typeparam>
  7613. <returns>The unpacked message.</returns>
  7614. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">The target message type doesn't match the type URL in this message</exception>
  7615. </member>
  7616. <member name="M:Google.Protobuf.WellKnownTypes.Any.TryUnpack``1(``0@)">
  7617. <summary>
  7618. Attempts to unpack the content of this Any message into the target message type,
  7619. if it matches the type URL within this Any message.
  7620. </summary>
  7621. <typeparam name="T">The type of message to attempt to unpack the content into.</typeparam>
  7622. <returns><c>true</c> if the message was successfully unpacked; <c>false</c> if the type name didn't match</returns>
  7623. </member>
  7624. <member name="M:Google.Protobuf.WellKnownTypes.Any.Pack(Google.Protobuf.IMessage)">
  7625. <summary>
  7626. Packs the specified message into an Any message using a type URL prefix of "type.googleapis.com".
  7627. </summary>
  7628. <param name="message">The message to pack.</param>
  7629. <returns>An Any message with the content and type URL of <paramref name="message"/>.</returns>
  7630. </member>
  7631. <member name="M:Google.Protobuf.WellKnownTypes.Any.Pack(Google.Protobuf.IMessage,System.String)">
  7632. <summary>
  7633. Packs the specified message into an Any message using the specified type URL prefix.
  7634. </summary>
  7635. <param name="message">The message to pack.</param>
  7636. <param name="typeUrlPrefix">The prefix for the type URL.</param>
  7637. <returns>An Any message with the content and type URL of <paramref name="message"/>.</returns>
  7638. </member>
  7639. <member name="T:Google.Protobuf.WellKnownTypes.ApiReflection">
  7640. <summary>Holder for reflection information generated from google/protobuf/api.proto</summary>
  7641. </member>
  7642. <member name="P:Google.Protobuf.WellKnownTypes.ApiReflection.Descriptor">
  7643. <summary>File descriptor for google/protobuf/api.proto</summary>
  7644. </member>
  7645. <member name="T:Google.Protobuf.WellKnownTypes.Api">
  7646. <summary>
  7647. Api is a light-weight descriptor for an API Interface.
  7648. Interfaces are also described as "protocol buffer services" in some contexts,
  7649. such as by the "service" keyword in a .proto file, but they are different
  7650. from API Services, which represent a concrete implementation of an interface
  7651. as opposed to simply a description of methods and bindings. They are also
  7652. sometimes simply referred to as "APIs" in other contexts, such as the name of
  7653. this message itself. See https://cloud.google.com/apis/design/glossary for
  7654. detailed terminology.
  7655. </summary>
  7656. </member>
  7657. <member name="F:Google.Protobuf.WellKnownTypes.Api.NameFieldNumber">
  7658. <summary>Field number for the "name" field.</summary>
  7659. </member>
  7660. <member name="P:Google.Protobuf.WellKnownTypes.Api.Name">
  7661. <summary>
  7662. The fully qualified name of this interface, including package name
  7663. followed by the interface's simple name.
  7664. </summary>
  7665. </member>
  7666. <member name="F:Google.Protobuf.WellKnownTypes.Api.MethodsFieldNumber">
  7667. <summary>Field number for the "methods" field.</summary>
  7668. </member>
  7669. <member name="P:Google.Protobuf.WellKnownTypes.Api.Methods">
  7670. <summary>
  7671. The methods of this interface, in unspecified order.
  7672. </summary>
  7673. </member>
  7674. <member name="F:Google.Protobuf.WellKnownTypes.Api.OptionsFieldNumber">
  7675. <summary>Field number for the "options" field.</summary>
  7676. </member>
  7677. <member name="P:Google.Protobuf.WellKnownTypes.Api.Options">
  7678. <summary>
  7679. Any metadata attached to the interface.
  7680. </summary>
  7681. </member>
  7682. <member name="F:Google.Protobuf.WellKnownTypes.Api.VersionFieldNumber">
  7683. <summary>Field number for the "version" field.</summary>
  7684. </member>
  7685. <member name="P:Google.Protobuf.WellKnownTypes.Api.Version">
  7686. <summary>
  7687. A version string for this interface. If specified, must have the form
  7688. `major-version.minor-version`, as in `1.10`. If the minor version is
  7689. omitted, it defaults to zero. If the entire version field is empty, the
  7690. major version is derived from the package name, as outlined below. If the
  7691. field is not empty, the version in the package name will be verified to be
  7692. consistent with what is provided here.
  7693. The versioning schema uses [semantic
  7694. versioning](http://semver.org) where the major version number
  7695. indicates a breaking change and the minor version an additive,
  7696. non-breaking change. Both version numbers are signals to users
  7697. what to expect from different versions, and should be carefully
  7698. chosen based on the product plan.
  7699. The major version is also reflected in the package name of the
  7700. interface, which must end in `v&lt;major-version>`, as in
  7701. `google.feature.v1`. For major versions 0 and 1, the suffix can
  7702. be omitted. Zero major versions must only be used for
  7703. experimental, non-GA interfaces.
  7704. </summary>
  7705. </member>
  7706. <member name="F:Google.Protobuf.WellKnownTypes.Api.SourceContextFieldNumber">
  7707. <summary>Field number for the "source_context" field.</summary>
  7708. </member>
  7709. <member name="P:Google.Protobuf.WellKnownTypes.Api.SourceContext">
  7710. <summary>
  7711. Source context for the protocol buffer service represented by this
  7712. message.
  7713. </summary>
  7714. </member>
  7715. <member name="F:Google.Protobuf.WellKnownTypes.Api.MixinsFieldNumber">
  7716. <summary>Field number for the "mixins" field.</summary>
  7717. </member>
  7718. <member name="P:Google.Protobuf.WellKnownTypes.Api.Mixins">
  7719. <summary>
  7720. Included interfaces. See [Mixin][].
  7721. </summary>
  7722. </member>
  7723. <member name="F:Google.Protobuf.WellKnownTypes.Api.SyntaxFieldNumber">
  7724. <summary>Field number for the "syntax" field.</summary>
  7725. </member>
  7726. <member name="P:Google.Protobuf.WellKnownTypes.Api.Syntax">
  7727. <summary>
  7728. The source syntax of the service.
  7729. </summary>
  7730. </member>
  7731. <member name="T:Google.Protobuf.WellKnownTypes.Method">
  7732. <summary>
  7733. Method represents a method of an API interface.
  7734. </summary>
  7735. </member>
  7736. <member name="F:Google.Protobuf.WellKnownTypes.Method.NameFieldNumber">
  7737. <summary>Field number for the "name" field.</summary>
  7738. </member>
  7739. <member name="P:Google.Protobuf.WellKnownTypes.Method.Name">
  7740. <summary>
  7741. The simple name of this method.
  7742. </summary>
  7743. </member>
  7744. <member name="F:Google.Protobuf.WellKnownTypes.Method.RequestTypeUrlFieldNumber">
  7745. <summary>Field number for the "request_type_url" field.</summary>
  7746. </member>
  7747. <member name="P:Google.Protobuf.WellKnownTypes.Method.RequestTypeUrl">
  7748. <summary>
  7749. A URL of the input message type.
  7750. </summary>
  7751. </member>
  7752. <member name="F:Google.Protobuf.WellKnownTypes.Method.RequestStreamingFieldNumber">
  7753. <summary>Field number for the "request_streaming" field.</summary>
  7754. </member>
  7755. <member name="P:Google.Protobuf.WellKnownTypes.Method.RequestStreaming">
  7756. <summary>
  7757. If true, the request is streamed.
  7758. </summary>
  7759. </member>
  7760. <member name="F:Google.Protobuf.WellKnownTypes.Method.ResponseTypeUrlFieldNumber">
  7761. <summary>Field number for the "response_type_url" field.</summary>
  7762. </member>
  7763. <member name="P:Google.Protobuf.WellKnownTypes.Method.ResponseTypeUrl">
  7764. <summary>
  7765. The URL of the output message type.
  7766. </summary>
  7767. </member>
  7768. <member name="F:Google.Protobuf.WellKnownTypes.Method.ResponseStreamingFieldNumber">
  7769. <summary>Field number for the "response_streaming" field.</summary>
  7770. </member>
  7771. <member name="P:Google.Protobuf.WellKnownTypes.Method.ResponseStreaming">
  7772. <summary>
  7773. If true, the response is streamed.
  7774. </summary>
  7775. </member>
  7776. <member name="F:Google.Protobuf.WellKnownTypes.Method.OptionsFieldNumber">
  7777. <summary>Field number for the "options" field.</summary>
  7778. </member>
  7779. <member name="P:Google.Protobuf.WellKnownTypes.Method.Options">
  7780. <summary>
  7781. Any metadata attached to the method.
  7782. </summary>
  7783. </member>
  7784. <member name="F:Google.Protobuf.WellKnownTypes.Method.SyntaxFieldNumber">
  7785. <summary>Field number for the "syntax" field.</summary>
  7786. </member>
  7787. <member name="P:Google.Protobuf.WellKnownTypes.Method.Syntax">
  7788. <summary>
  7789. The source syntax of this method.
  7790. </summary>
  7791. </member>
  7792. <member name="T:Google.Protobuf.WellKnownTypes.Mixin">
  7793. <summary>
  7794. Declares an API Interface to be included in this interface. The including
  7795. interface must redeclare all the methods from the included interface, but
  7796. documentation and options are inherited as follows:
  7797. - If after comment and whitespace stripping, the documentation
  7798. string of the redeclared method is empty, it will be inherited
  7799. from the original method.
  7800. - Each annotation belonging to the service config (http,
  7801. visibility) which is not set in the redeclared method will be
  7802. inherited.
  7803. - If an http annotation is inherited, the path pattern will be
  7804. modified as follows. Any version prefix will be replaced by the
  7805. version of the including interface plus the [root][] path if
  7806. specified.
  7807. Example of a simple mixin:
  7808. package google.acl.v1;
  7809. service AccessControl {
  7810. // Get the underlying ACL object.
  7811. rpc GetAcl(GetAclRequest) returns (Acl) {
  7812. option (google.api.http).get = "/v1/{resource=**}:getAcl";
  7813. }
  7814. }
  7815. package google.storage.v2;
  7816. service Storage {
  7817. rpc GetAcl(GetAclRequest) returns (Acl);
  7818. // Get a data record.
  7819. rpc GetData(GetDataRequest) returns (Data) {
  7820. option (google.api.http).get = "/v2/{resource=**}";
  7821. }
  7822. }
  7823. Example of a mixin configuration:
  7824. apis:
  7825. - name: google.storage.v2.Storage
  7826. mixins:
  7827. - name: google.acl.v1.AccessControl
  7828. The mixin construct implies that all methods in `AccessControl` are
  7829. also declared with same name and request/response types in
  7830. `Storage`. A documentation generator or annotation processor will
  7831. see the effective `Storage.GetAcl` method after inheriting
  7832. documentation and annotations as follows:
  7833. service Storage {
  7834. // Get the underlying ACL object.
  7835. rpc GetAcl(GetAclRequest) returns (Acl) {
  7836. option (google.api.http).get = "/v2/{resource=**}:getAcl";
  7837. }
  7838. ...
  7839. }
  7840. Note how the version in the path pattern changed from `v1` to `v2`.
  7841. If the `root` field in the mixin is specified, it should be a
  7842. relative path under which inherited HTTP paths are placed. Example:
  7843. apis:
  7844. - name: google.storage.v2.Storage
  7845. mixins:
  7846. - name: google.acl.v1.AccessControl
  7847. root: acls
  7848. This implies the following inherited HTTP annotation:
  7849. service Storage {
  7850. // Get the underlying ACL object.
  7851. rpc GetAcl(GetAclRequest) returns (Acl) {
  7852. option (google.api.http).get = "/v2/acls/{resource=**}:getAcl";
  7853. }
  7854. ...
  7855. }
  7856. </summary>
  7857. </member>
  7858. <member name="F:Google.Protobuf.WellKnownTypes.Mixin.NameFieldNumber">
  7859. <summary>Field number for the "name" field.</summary>
  7860. </member>
  7861. <member name="P:Google.Protobuf.WellKnownTypes.Mixin.Name">
  7862. <summary>
  7863. The fully qualified name of the interface which is included.
  7864. </summary>
  7865. </member>
  7866. <member name="F:Google.Protobuf.WellKnownTypes.Mixin.RootFieldNumber">
  7867. <summary>Field number for the "root" field.</summary>
  7868. </member>
  7869. <member name="P:Google.Protobuf.WellKnownTypes.Mixin.Root">
  7870. <summary>
  7871. If non-empty specifies a path under which inherited HTTP paths
  7872. are rooted.
  7873. </summary>
  7874. </member>
  7875. <member name="T:Google.Protobuf.WellKnownTypes.DurationReflection">
  7876. <summary>Holder for reflection information generated from google/protobuf/duration.proto</summary>
  7877. </member>
  7878. <member name="P:Google.Protobuf.WellKnownTypes.DurationReflection.Descriptor">
  7879. <summary>File descriptor for google/protobuf/duration.proto</summary>
  7880. </member>
  7881. <member name="T:Google.Protobuf.WellKnownTypes.Duration">
  7882. <summary>
  7883. A Duration represents a signed, fixed-length span of time represented
  7884. as a count of seconds and fractions of seconds at nanosecond
  7885. resolution. It is independent of any calendar and concepts like "day"
  7886. or "month". It is related to Timestamp in that the difference between
  7887. two Timestamp values is a Duration and it can be added or subtracted
  7888. from a Timestamp. Range is approximately +-10,000 years.
  7889. # Examples
  7890. Example 1: Compute Duration from two Timestamps in pseudo code.
  7891. Timestamp start = ...;
  7892. Timestamp end = ...;
  7893. Duration duration = ...;
  7894. duration.seconds = end.seconds - start.seconds;
  7895. duration.nanos = end.nanos - start.nanos;
  7896. if (duration.seconds &lt; 0 &amp;&amp; duration.nanos > 0) {
  7897. duration.seconds += 1;
  7898. duration.nanos -= 1000000000;
  7899. } else if (duration.seconds > 0 &amp;&amp; duration.nanos &lt; 0) {
  7900. duration.seconds -= 1;
  7901. duration.nanos += 1000000000;
  7902. }
  7903. Example 2: Compute Timestamp from Timestamp + Duration in pseudo code.
  7904. Timestamp start = ...;
  7905. Duration duration = ...;
  7906. Timestamp end = ...;
  7907. end.seconds = start.seconds + duration.seconds;
  7908. end.nanos = start.nanos + duration.nanos;
  7909. if (end.nanos &lt; 0) {
  7910. end.seconds -= 1;
  7911. end.nanos += 1000000000;
  7912. } else if (end.nanos >= 1000000000) {
  7913. end.seconds += 1;
  7914. end.nanos -= 1000000000;
  7915. }
  7916. Example 3: Compute Duration from datetime.timedelta in Python.
  7917. td = datetime.timedelta(days=3, minutes=10)
  7918. duration = Duration()
  7919. duration.FromTimedelta(td)
  7920. # JSON Mapping
  7921. In JSON format, the Duration type is encoded as a string rather than an
  7922. object, where the string ends in the suffix "s" (indicating seconds) and
  7923. is preceded by the number of seconds, with nanoseconds expressed as
  7924. fractional seconds. For example, 3 seconds with 0 nanoseconds should be
  7925. encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should
  7926. be expressed in JSON format as "3.000000001s", and 3 seconds and 1
  7927. microsecond should be expressed in JSON format as "3.000001s".
  7928. </summary>
  7929. </member>
  7930. <member name="F:Google.Protobuf.WellKnownTypes.Duration.SecondsFieldNumber">
  7931. <summary>Field number for the "seconds" field.</summary>
  7932. </member>
  7933. <member name="P:Google.Protobuf.WellKnownTypes.Duration.Seconds">
  7934. <summary>
  7935. Signed seconds of the span of time. Must be from -315,576,000,000
  7936. to +315,576,000,000 inclusive. Note: these bounds are computed from:
  7937. 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years
  7938. </summary>
  7939. </member>
  7940. <member name="F:Google.Protobuf.WellKnownTypes.Duration.NanosFieldNumber">
  7941. <summary>Field number for the "nanos" field.</summary>
  7942. </member>
  7943. <member name="P:Google.Protobuf.WellKnownTypes.Duration.Nanos">
  7944. <summary>
  7945. Signed fractions of a second at nanosecond resolution of the span
  7946. of time. Durations less than one second are represented with a 0
  7947. `seconds` field and a positive or negative `nanos` field. For durations
  7948. of one second or more, a non-zero value for the `nanos` field must be
  7949. of the same sign as the `seconds` field. Must be from -999,999,999
  7950. to +999,999,999 inclusive.
  7951. </summary>
  7952. </member>
  7953. <member name="F:Google.Protobuf.WellKnownTypes.Duration.NanosecondsPerSecond">
  7954. <summary>
  7955. The number of nanoseconds in a second.
  7956. </summary>
  7957. </member>
  7958. <member name="F:Google.Protobuf.WellKnownTypes.Duration.NanosecondsPerTick">
  7959. <summary>
  7960. The number of nanoseconds in a BCL tick (as used by <see cref="T:System.TimeSpan"/> and <see cref="T:System.DateTime"/>).
  7961. </summary>
  7962. </member>
  7963. <member name="F:Google.Protobuf.WellKnownTypes.Duration.MaxSeconds">
  7964. <summary>
  7965. The maximum permitted number of seconds.
  7966. </summary>
  7967. </member>
  7968. <member name="F:Google.Protobuf.WellKnownTypes.Duration.MinSeconds">
  7969. <summary>
  7970. The minimum permitted number of seconds.
  7971. </summary>
  7972. </member>
  7973. <member name="M:Google.Protobuf.WellKnownTypes.Duration.ToTimeSpan">
  7974. <summary>
  7975. Converts this <see cref="T:Google.Protobuf.WellKnownTypes.Duration"/> to a <see cref="T:System.TimeSpan"/>.
  7976. </summary>
  7977. <remarks>If the duration is not a precise number of ticks, it is truncated towards 0.</remarks>
  7978. <returns>The value of this duration, as a <c>TimeSpan</c>.</returns>
  7979. <exception cref="T:System.InvalidOperationException">This value isn't a valid normalized duration, as
  7980. described in the documentation.</exception>
  7981. </member>
  7982. <member name="M:Google.Protobuf.WellKnownTypes.Duration.FromTimeSpan(System.TimeSpan)">
  7983. <summary>
  7984. Converts the given <see cref="T:System.TimeSpan"/> to a <see cref="T:Google.Protobuf.WellKnownTypes.Duration"/>.
  7985. </summary>
  7986. <param name="timeSpan">The <c>TimeSpan</c> to convert.</param>
  7987. <returns>The value of the given <c>TimeSpan</c>, as a <c>Duration</c>.</returns>
  7988. </member>
  7989. <member name="M:Google.Protobuf.WellKnownTypes.Duration.op_UnaryNegation(Google.Protobuf.WellKnownTypes.Duration)">
  7990. <summary>
  7991. Returns the result of negating the duration. For example, the negation of 5 minutes is -5 minutes.
  7992. </summary>
  7993. <param name="value">The duration to negate. Must not be null.</param>
  7994. <returns>The negated value of this duration.</returns>
  7995. </member>
  7996. <member name="M:Google.Protobuf.WellKnownTypes.Duration.op_Addition(Google.Protobuf.WellKnownTypes.Duration,Google.Protobuf.WellKnownTypes.Duration)">
  7997. <summary>
  7998. Adds the two specified <see cref="T:Google.Protobuf.WellKnownTypes.Duration"/> values together.
  7999. </summary>
  8000. <param name="lhs">The first value to add. Must not be null.</param>
  8001. <param name="rhs">The second value to add. Must not be null.</param>
  8002. <returns></returns>
  8003. </member>
  8004. <member name="M:Google.Protobuf.WellKnownTypes.Duration.op_Subtraction(Google.Protobuf.WellKnownTypes.Duration,Google.Protobuf.WellKnownTypes.Duration)">
  8005. <summary>
  8006. Subtracts one <see cref="T:Google.Protobuf.WellKnownTypes.Duration"/> from another.
  8007. </summary>
  8008. <param name="lhs">The duration to subtract from. Must not be null.</param>
  8009. <param name="rhs">The duration to subtract. Must not be null.</param>
  8010. <returns>The difference between the two specified durations.</returns>
  8011. </member>
  8012. <member name="M:Google.Protobuf.WellKnownTypes.Duration.Normalize(System.Int64,System.Int32)">
  8013. <summary>
  8014. Creates a duration with the normalized values from the given number of seconds and
  8015. nanoseconds, conforming with the description in the proto file.
  8016. </summary>
  8017. </member>
  8018. <member name="M:Google.Protobuf.WellKnownTypes.Duration.ToJson(System.Int64,System.Int32,System.Boolean)">
  8019. <summary>
  8020. Converts a duration specified in seconds/nanoseconds to a string.
  8021. </summary>
  8022. <remarks>
  8023. If the value is a normalized duration in the range described in <c>duration.proto</c>,
  8024. <paramref name="diagnosticOnly"/> is ignored. Otherwise, if the parameter is <c>true</c>,
  8025. a JSON object with a warning is returned; if it is <c>false</c>, an <see cref="T:System.InvalidOperationException"/> is thrown.
  8026. </remarks>
  8027. <param name="seconds">Seconds portion of the duration.</param>
  8028. <param name="nanoseconds">Nanoseconds portion of the duration.</param>
  8029. <param name="diagnosticOnly">Determines the handling of non-normalized values</param>
  8030. <exception cref="T:System.InvalidOperationException">The represented duration is invalid, and <paramref name="diagnosticOnly"/> is <c>false</c>.</exception>
  8031. </member>
  8032. <member name="M:Google.Protobuf.WellKnownTypes.Duration.ToDiagnosticString">
  8033. <summary>
  8034. Returns a string representation of this <see cref="T:Google.Protobuf.WellKnownTypes.Duration"/> for diagnostic purposes.
  8035. </summary>
  8036. <remarks>
  8037. Normally the returned value will be a JSON string value (including leading and trailing quotes) but
  8038. when the value is non-normalized or out of range, a JSON object representation will be returned
  8039. instead, including a warning. This is to avoid exceptions being thrown when trying to
  8040. diagnose problems - the regular JSON formatter will still throw an exception for non-normalized
  8041. values.
  8042. </remarks>
  8043. <returns>A string representation of this value.</returns>
  8044. </member>
  8045. <member name="M:Google.Protobuf.WellKnownTypes.Duration.AppendNanoseconds(System.Text.StringBuilder,System.Int32)">
  8046. <summary>
  8047. Appends a number of nanoseconds to a StringBuilder. Either 0 digits are added (in which
  8048. case no "." is appended), or 3 6 or 9 digits. This is internal for use in Timestamp as well
  8049. as Duration.
  8050. </summary>
  8051. </member>
  8052. <member name="T:Google.Protobuf.WellKnownTypes.EmptyReflection">
  8053. <summary>Holder for reflection information generated from google/protobuf/empty.proto</summary>
  8054. </member>
  8055. <member name="P:Google.Protobuf.WellKnownTypes.EmptyReflection.Descriptor">
  8056. <summary>File descriptor for google/protobuf/empty.proto</summary>
  8057. </member>
  8058. <member name="T:Google.Protobuf.WellKnownTypes.Empty">
  8059. <summary>
  8060. A generic empty message that you can re-use to avoid defining duplicated
  8061. empty messages in your APIs. A typical example is to use it as the request
  8062. or the response type of an API method. For instance:
  8063. service Foo {
  8064. rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
  8065. }
  8066. The JSON representation for `Empty` is empty JSON object `{}`.
  8067. </summary>
  8068. </member>
  8069. <member name="T:Google.Protobuf.WellKnownTypes.FieldMaskReflection">
  8070. <summary>Holder for reflection information generated from google/protobuf/field_mask.proto</summary>
  8071. </member>
  8072. <member name="P:Google.Protobuf.WellKnownTypes.FieldMaskReflection.Descriptor">
  8073. <summary>File descriptor for google/protobuf/field_mask.proto</summary>
  8074. </member>
  8075. <member name="T:Google.Protobuf.WellKnownTypes.FieldMask">
  8076. <summary>
  8077. `FieldMask` represents a set of symbolic field paths, for example:
  8078. paths: "f.a"
  8079. paths: "f.b.d"
  8080. Here `f` represents a field in some root message, `a` and `b`
  8081. fields in the message found in `f`, and `d` a field found in the
  8082. message in `f.b`.
  8083. Field masks are used to specify a subset of fields that should be
  8084. returned by a get operation or modified by an update operation.
  8085. Field masks also have a custom JSON encoding (see below).
  8086. # Field Masks in Projections
  8087. When used in the context of a projection, a response message or
  8088. sub-message is filtered by the API to only contain those fields as
  8089. specified in the mask. For example, if the mask in the previous
  8090. example is applied to a response message as follows:
  8091. f {
  8092. a : 22
  8093. b {
  8094. d : 1
  8095. x : 2
  8096. }
  8097. y : 13
  8098. }
  8099. z: 8
  8100. The result will not contain specific values for fields x,y and z
  8101. (their value will be set to the default, and omitted in proto text
  8102. output):
  8103. f {
  8104. a : 22
  8105. b {
  8106. d : 1
  8107. }
  8108. }
  8109. A repeated field is not allowed except at the last position of a
  8110. paths string.
  8111. If a FieldMask object is not present in a get operation, the
  8112. operation applies to all fields (as if a FieldMask of all fields
  8113. had been specified).
  8114. Note that a field mask does not necessarily apply to the
  8115. top-level response message. In case of a REST get operation, the
  8116. field mask applies directly to the response, but in case of a REST
  8117. list operation, the mask instead applies to each individual message
  8118. in the returned resource list. In case of a REST custom method,
  8119. other definitions may be used. Where the mask applies will be
  8120. clearly documented together with its declaration in the API. In
  8121. any case, the effect on the returned resource/resources is required
  8122. behavior for APIs.
  8123. # Field Masks in Update Operations
  8124. A field mask in update operations specifies which fields of the
  8125. targeted resource are going to be updated. The API is required
  8126. to only change the values of the fields as specified in the mask
  8127. and leave the others untouched. If a resource is passed in to
  8128. describe the updated values, the API ignores the values of all
  8129. fields not covered by the mask.
  8130. If a repeated field is specified for an update operation, new values will
  8131. be appended to the existing repeated field in the target resource. Note that
  8132. a repeated field is only allowed in the last position of a `paths` string.
  8133. If a sub-message is specified in the last position of the field mask for an
  8134. update operation, then new value will be merged into the existing sub-message
  8135. in the target resource.
  8136. For example, given the target message:
  8137. f {
  8138. b {
  8139. d: 1
  8140. x: 2
  8141. }
  8142. c: [1]
  8143. }
  8144. And an update message:
  8145. f {
  8146. b {
  8147. d: 10
  8148. }
  8149. c: [2]
  8150. }
  8151. then if the field mask is:
  8152. paths: ["f.b", "f.c"]
  8153. then the result will be:
  8154. f {
  8155. b {
  8156. d: 10
  8157. x: 2
  8158. }
  8159. c: [1, 2]
  8160. }
  8161. An implementation may provide options to override this default behavior for
  8162. repeated and message fields.
  8163. In order to reset a field's value to the default, the field must
  8164. be in the mask and set to the default value in the provided resource.
  8165. Hence, in order to reset all fields of a resource, provide a default
  8166. instance of the resource and set all fields in the mask, or do
  8167. not provide a mask as described below.
  8168. If a field mask is not present on update, the operation applies to
  8169. all fields (as if a field mask of all fields has been specified).
  8170. Note that in the presence of schema evolution, this may mean that
  8171. fields the client does not know and has therefore not filled into
  8172. the request will be reset to their default. If this is unwanted
  8173. behavior, a specific service may require a client to always specify
  8174. a field mask, producing an error if not.
  8175. As with get operations, the location of the resource which
  8176. describes the updated values in the request message depends on the
  8177. operation kind. In any case, the effect of the field mask is
  8178. required to be honored by the API.
  8179. ## Considerations for HTTP REST
  8180. The HTTP kind of an update operation which uses a field mask must
  8181. be set to PATCH instead of PUT in order to satisfy HTTP semantics
  8182. (PUT must only be used for full updates).
  8183. # JSON Encoding of Field Masks
  8184. In JSON, a field mask is encoded as a single string where paths are
  8185. separated by a comma. Fields name in each path are converted
  8186. to/from lower-camel naming conventions.
  8187. As an example, consider the following message declarations:
  8188. message Profile {
  8189. User user = 1;
  8190. Photo photo = 2;
  8191. }
  8192. message User {
  8193. string display_name = 1;
  8194. string address = 2;
  8195. }
  8196. In proto a field mask for `Profile` may look as such:
  8197. mask {
  8198. paths: "user.display_name"
  8199. paths: "photo"
  8200. }
  8201. In JSON, the same mask is represented as below:
  8202. {
  8203. mask: "user.displayName,photo"
  8204. }
  8205. # Field Masks and Oneof Fields
  8206. Field masks treat fields in oneofs just as regular fields. Consider the
  8207. following message:
  8208. message SampleMessage {
  8209. oneof test_oneof {
  8210. string name = 4;
  8211. SubMessage sub_message = 9;
  8212. }
  8213. }
  8214. The field mask can be:
  8215. mask {
  8216. paths: "name"
  8217. }
  8218. Or:
  8219. mask {
  8220. paths: "sub_message"
  8221. }
  8222. Note that oneof type names ("test_oneof" in this case) cannot be used in
  8223. paths.
  8224. ## Field Mask Verification
  8225. The implementation of any API method which has a FieldMask type field in the
  8226. request should verify the included field paths, and return an
  8227. `INVALID_ARGUMENT` error if any path is unmappable.
  8228. </summary>
  8229. </member>
  8230. <member name="F:Google.Protobuf.WellKnownTypes.FieldMask.PathsFieldNumber">
  8231. <summary>Field number for the "paths" field.</summary>
  8232. </member>
  8233. <member name="P:Google.Protobuf.WellKnownTypes.FieldMask.Paths">
  8234. <summary>
  8235. The set of field mask paths.
  8236. </summary>
  8237. </member>
  8238. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.ToJson(System.Collections.Generic.IList{System.String},System.Boolean)">
  8239. <summary>
  8240. Converts a field mask specified by paths to a string.
  8241. </summary>
  8242. <remarks>
  8243. If the value is a normalized duration in the range described in <c>field_mask.proto</c>,
  8244. <paramref name="diagnosticOnly"/> is ignored. Otherwise, if the parameter is <c>true</c>,
  8245. a JSON object with a warning is returned; if it is <c>false</c>, an <see cref="T:System.InvalidOperationException"/> is thrown.
  8246. </remarks>
  8247. <param name="paths">Paths in the field mask</param>
  8248. <param name="diagnosticOnly">Determines the handling of non-normalized values</param>
  8249. <exception cref="T:System.InvalidOperationException">The represented field mask is invalid, and <paramref name="diagnosticOnly"/> is <c>false</c>.</exception>
  8250. </member>
  8251. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.ToDiagnosticString">
  8252. <summary>
  8253. Returns a string representation of this <see cref="T:Google.Protobuf.WellKnownTypes.FieldMask"/> for diagnostic purposes.
  8254. </summary>
  8255. <remarks>
  8256. Normally the returned value will be a JSON string value (including leading and trailing quotes) but
  8257. when the value is non-normalized or out of range, a JSON object representation will be returned
  8258. instead, including a warning. This is to avoid exceptions being thrown when trying to
  8259. diagnose problems - the regular JSON formatter will still throw an exception for non-normalized
  8260. values.
  8261. </remarks>
  8262. <returns>A string representation of this value.</returns>
  8263. </member>
  8264. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.FromString(System.String)">
  8265. <summary>
  8266. Parses from a string to a FieldMask.
  8267. </summary>
  8268. </member>
  8269. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.FromString``1(System.String)">
  8270. <summary>
  8271. Parses from a string to a FieldMask and validates all field paths.
  8272. </summary>
  8273. <typeparam name="T">The type to validate the field paths against.</typeparam>
  8274. </member>
  8275. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.FromStringEnumerable``1(System.Collections.Generic.IEnumerable{System.String})">
  8276. <summary>
  8277. Constructs a FieldMask for a list of field paths in a certain type.
  8278. </summary>
  8279. <typeparam name="T">The type to validate the field paths against.</typeparam>
  8280. </member>
  8281. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.FromFieldNumbers``1(System.Int32[])">
  8282. <summary>
  8283. Constructs a FieldMask from the passed field numbers.
  8284. </summary>
  8285. <typeparam name="T">The type to validate the field paths against.</typeparam>
  8286. </member>
  8287. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.FromFieldNumbers``1(System.Collections.Generic.IEnumerable{System.Int32})">
  8288. <summary>
  8289. Constructs a FieldMask from the passed field numbers.
  8290. </summary>
  8291. <typeparam name="T">The type to validate the field paths against.</typeparam>
  8292. </member>
  8293. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.IsPathValid(System.String)">
  8294. <summary>
  8295. Checks whether the given path is valid for a field mask.
  8296. </summary>
  8297. <returns>true if the path is valid; false otherwise</returns>
  8298. </member>
  8299. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.IsValid``1(Google.Protobuf.WellKnownTypes.FieldMask)">
  8300. <summary>
  8301. Checks whether paths in a given fields mask are valid.
  8302. </summary>
  8303. <typeparam name="T">The type to validate the field paths against.</typeparam>
  8304. </member>
  8305. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.IsValid(Google.Protobuf.Reflection.MessageDescriptor,Google.Protobuf.WellKnownTypes.FieldMask)">
  8306. <summary>
  8307. Checks whether paths in a given fields mask are valid.
  8308. </summary>
  8309. </member>
  8310. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.IsValid``1(System.String)">
  8311. <summary>
  8312. Checks whether a given field path is valid.
  8313. </summary>
  8314. <typeparam name="T">The type to validate the field paths against.</typeparam>
  8315. </member>
  8316. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.IsValid(Google.Protobuf.Reflection.MessageDescriptor,System.String)">
  8317. <summary>
  8318. Checks whether paths in a given fields mask are valid.
  8319. </summary>
  8320. </member>
  8321. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.Normalize">
  8322. <summary>
  8323. Converts this FieldMask to its canonical form. In the canonical form of a
  8324. FieldMask, all field paths are sorted alphabetically and redundant field
  8325. paths are removed.
  8326. </summary>
  8327. </member>
  8328. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.Union(Google.Protobuf.WellKnownTypes.FieldMask[])">
  8329. <summary>
  8330. Creates a union of two or more FieldMasks.
  8331. </summary>
  8332. </member>
  8333. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.Intersection(Google.Protobuf.WellKnownTypes.FieldMask)">
  8334. <summary>
  8335. Calculates the intersection of two FieldMasks.
  8336. </summary>
  8337. </member>
  8338. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.Merge(Google.Protobuf.IMessage,Google.Protobuf.IMessage,Google.Protobuf.WellKnownTypes.FieldMask.MergeOptions)">
  8339. <summary>
  8340. Merges fields specified by this FieldMask from one message to another with the
  8341. specified merge options.
  8342. </summary>
  8343. </member>
  8344. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.Merge(Google.Protobuf.IMessage,Google.Protobuf.IMessage)">
  8345. <summary>
  8346. Merges fields specified by this FieldMask from one message to another.
  8347. </summary>
  8348. </member>
  8349. <member name="T:Google.Protobuf.WellKnownTypes.FieldMask.MergeOptions">
  8350. <summary>
  8351. Options to customize merging behavior.
  8352. </summary>
  8353. </member>
  8354. <member name="P:Google.Protobuf.WellKnownTypes.FieldMask.MergeOptions.ReplaceMessageFields">
  8355. <summary>
  8356. Whether to replace message fields(i.e., discard existing content in
  8357. destination message fields) when merging.
  8358. Default behavior is to merge the source message field into the
  8359. destination message field.
  8360. </summary>
  8361. </member>
  8362. <member name="P:Google.Protobuf.WellKnownTypes.FieldMask.MergeOptions.ReplaceRepeatedFields">
  8363. <summary>
  8364. Whether to replace repeated fields (i.e., discard existing content in
  8365. destination repeated fields) when merging.
  8366. Default behavior is to append elements from source repeated field to the
  8367. destination repeated field.
  8368. </summary>
  8369. </member>
  8370. <member name="P:Google.Protobuf.WellKnownTypes.FieldMask.MergeOptions.ReplacePrimitiveFields">
  8371. <summary>
  8372. Whether to replace primitive (non-repeated and non-message) fields in
  8373. destination message fields with the source primitive fields (i.e., if the
  8374. field is set in the source, the value is copied to the
  8375. destination; if the field is unset in the source, the field is cleared
  8376. from the destination) when merging.
  8377. Default behavior is to always set the value of the source primitive
  8378. field to the destination primitive field, and if the source field is
  8379. unset, the default value of the source field is copied to the
  8380. destination.
  8381. </summary>
  8382. </member>
  8383. <member name="T:Google.Protobuf.WellKnownTypes.SourceContextReflection">
  8384. <summary>Holder for reflection information generated from google/protobuf/source_context.proto</summary>
  8385. </member>
  8386. <member name="P:Google.Protobuf.WellKnownTypes.SourceContextReflection.Descriptor">
  8387. <summary>File descriptor for google/protobuf/source_context.proto</summary>
  8388. </member>
  8389. <member name="T:Google.Protobuf.WellKnownTypes.SourceContext">
  8390. <summary>
  8391. `SourceContext` represents information about the source of a
  8392. protobuf element, like the file in which it is defined.
  8393. </summary>
  8394. </member>
  8395. <member name="F:Google.Protobuf.WellKnownTypes.SourceContext.FileNameFieldNumber">
  8396. <summary>Field number for the "file_name" field.</summary>
  8397. </member>
  8398. <member name="P:Google.Protobuf.WellKnownTypes.SourceContext.FileName">
  8399. <summary>
  8400. The path-qualified name of the .proto file that contained the associated
  8401. protobuf element. For example: `"google/protobuf/source_context.proto"`.
  8402. </summary>
  8403. </member>
  8404. <member name="T:Google.Protobuf.WellKnownTypes.StructReflection">
  8405. <summary>Holder for reflection information generated from google/protobuf/struct.proto</summary>
  8406. </member>
  8407. <member name="P:Google.Protobuf.WellKnownTypes.StructReflection.Descriptor">
  8408. <summary>File descriptor for google/protobuf/struct.proto</summary>
  8409. </member>
  8410. <member name="T:Google.Protobuf.WellKnownTypes.NullValue">
  8411. <summary>
  8412. `NullValue` is a singleton enumeration to represent the null value for the
  8413. `Value` type union.
  8414. The JSON representation for `NullValue` is JSON `null`.
  8415. </summary>
  8416. </member>
  8417. <member name="F:Google.Protobuf.WellKnownTypes.NullValue.NullValue">
  8418. <summary>
  8419. Null value.
  8420. </summary>
  8421. </member>
  8422. <member name="T:Google.Protobuf.WellKnownTypes.Struct">
  8423. <summary>
  8424. `Struct` represents a structured data value, consisting of fields
  8425. which map to dynamically typed values. In some languages, `Struct`
  8426. might be supported by a native representation. For example, in
  8427. scripting languages like JS a struct is represented as an
  8428. object. The details of that representation are described together
  8429. with the proto support for the language.
  8430. The JSON representation for `Struct` is JSON object.
  8431. </summary>
  8432. </member>
  8433. <member name="F:Google.Protobuf.WellKnownTypes.Struct.FieldsFieldNumber">
  8434. <summary>Field number for the "fields" field.</summary>
  8435. </member>
  8436. <member name="P:Google.Protobuf.WellKnownTypes.Struct.Fields">
  8437. <summary>
  8438. Unordered map of dynamically typed values.
  8439. </summary>
  8440. </member>
  8441. <member name="T:Google.Protobuf.WellKnownTypes.Value">
  8442. <summary>
  8443. `Value` represents a dynamically typed value which can be either
  8444. null, a number, a string, a boolean, a recursive struct value, or a
  8445. list of values. A producer of value is expected to set one of that
  8446. variants, absence of any variant indicates an error.
  8447. The JSON representation for `Value` is JSON value.
  8448. </summary>
  8449. </member>
  8450. <member name="F:Google.Protobuf.WellKnownTypes.Value.NullValueFieldNumber">
  8451. <summary>Field number for the "null_value" field.</summary>
  8452. </member>
  8453. <member name="P:Google.Protobuf.WellKnownTypes.Value.NullValue">
  8454. <summary>
  8455. Represents a null value.
  8456. </summary>
  8457. </member>
  8458. <member name="F:Google.Protobuf.WellKnownTypes.Value.NumberValueFieldNumber">
  8459. <summary>Field number for the "number_value" field.</summary>
  8460. </member>
  8461. <member name="P:Google.Protobuf.WellKnownTypes.Value.NumberValue">
  8462. <summary>
  8463. Represents a double value.
  8464. </summary>
  8465. </member>
  8466. <member name="F:Google.Protobuf.WellKnownTypes.Value.StringValueFieldNumber">
  8467. <summary>Field number for the "string_value" field.</summary>
  8468. </member>
  8469. <member name="P:Google.Protobuf.WellKnownTypes.Value.StringValue">
  8470. <summary>
  8471. Represents a string value.
  8472. </summary>
  8473. </member>
  8474. <member name="F:Google.Protobuf.WellKnownTypes.Value.BoolValueFieldNumber">
  8475. <summary>Field number for the "bool_value" field.</summary>
  8476. </member>
  8477. <member name="P:Google.Protobuf.WellKnownTypes.Value.BoolValue">
  8478. <summary>
  8479. Represents a boolean value.
  8480. </summary>
  8481. </member>
  8482. <member name="F:Google.Protobuf.WellKnownTypes.Value.StructValueFieldNumber">
  8483. <summary>Field number for the "struct_value" field.</summary>
  8484. </member>
  8485. <member name="P:Google.Protobuf.WellKnownTypes.Value.StructValue">
  8486. <summary>
  8487. Represents a structured value.
  8488. </summary>
  8489. </member>
  8490. <member name="F:Google.Protobuf.WellKnownTypes.Value.ListValueFieldNumber">
  8491. <summary>Field number for the "list_value" field.</summary>
  8492. </member>
  8493. <member name="P:Google.Protobuf.WellKnownTypes.Value.ListValue">
  8494. <summary>
  8495. Represents a repeated `Value`.
  8496. </summary>
  8497. </member>
  8498. <member name="T:Google.Protobuf.WellKnownTypes.Value.KindOneofCase">
  8499. <summary>Enum of possible cases for the "kind" oneof.</summary>
  8500. </member>
  8501. <member name="M:Google.Protobuf.WellKnownTypes.Value.ForString(System.String)">
  8502. <summary>
  8503. Convenience method to create a Value message with a string value.
  8504. </summary>
  8505. <param name="value">Value to set for the StringValue property.</param>
  8506. <returns>A newly-created Value message with the given value.</returns>
  8507. </member>
  8508. <member name="M:Google.Protobuf.WellKnownTypes.Value.ForNumber(System.Double)">
  8509. <summary>
  8510. Convenience method to create a Value message with a number value.
  8511. </summary>
  8512. <param name="value">Value to set for the NumberValue property.</param>
  8513. <returns>A newly-created Value message with the given value.</returns>
  8514. </member>
  8515. <member name="M:Google.Protobuf.WellKnownTypes.Value.ForBool(System.Boolean)">
  8516. <summary>
  8517. Convenience method to create a Value message with a Boolean value.
  8518. </summary>
  8519. <param name="value">Value to set for the BoolValue property.</param>
  8520. <returns>A newly-created Value message with the given value.</returns>
  8521. </member>
  8522. <member name="M:Google.Protobuf.WellKnownTypes.Value.ForNull">
  8523. <summary>
  8524. Convenience method to create a Value message with a null initial value.
  8525. </summary>
  8526. <returns>A newly-created Value message a null initial value.</returns>
  8527. </member>
  8528. <member name="M:Google.Protobuf.WellKnownTypes.Value.ForList(Google.Protobuf.WellKnownTypes.Value[])">
  8529. <summary>
  8530. Convenience method to create a Value message with an initial list of values.
  8531. </summary>
  8532. <remarks>The values provided are not cloned; the references are copied directly.</remarks>
  8533. <returns>A newly-created Value message an initial list value.</returns>
  8534. </member>
  8535. <member name="M:Google.Protobuf.WellKnownTypes.Value.ForStruct(Google.Protobuf.WellKnownTypes.Struct)">
  8536. <summary>
  8537. Convenience method to create a Value message with an initial struct value
  8538. </summary>
  8539. <remarks>The value provided is not cloned; the reference is copied directly.</remarks>
  8540. <returns>A newly-created Value message an initial struct value.</returns>
  8541. </member>
  8542. <member name="T:Google.Protobuf.WellKnownTypes.ListValue">
  8543. <summary>
  8544. `ListValue` is a wrapper around a repeated field of values.
  8545. The JSON representation for `ListValue` is JSON array.
  8546. </summary>
  8547. </member>
  8548. <member name="F:Google.Protobuf.WellKnownTypes.ListValue.ValuesFieldNumber">
  8549. <summary>Field number for the "values" field.</summary>
  8550. </member>
  8551. <member name="P:Google.Protobuf.WellKnownTypes.ListValue.Values">
  8552. <summary>
  8553. Repeated field of dynamically typed values.
  8554. </summary>
  8555. </member>
  8556. <member name="T:Google.Protobuf.WellKnownTypes.TimeExtensions">
  8557. <summary>
  8558. Extension methods on BCL time-related types, converting to protobuf types.
  8559. </summary>
  8560. </member>
  8561. <member name="M:Google.Protobuf.WellKnownTypes.TimeExtensions.ToTimestamp(System.DateTime)">
  8562. <summary>
  8563. Converts the given <see cref="T:System.DateTime"/> to a <see cref="T:Google.Protobuf.WellKnownTypes.Timestamp"/>.
  8564. </summary>
  8565. <param name="dateTime">The date and time to convert to a timestamp.</param>
  8566. <exception cref="T:System.ArgumentException">The <paramref name="dateTime"/> value has a <see cref="P:System.DateTime.Kind"/>other than <c>Utc</c>.</exception>
  8567. <returns>The converted timestamp.</returns>
  8568. </member>
  8569. <member name="M:Google.Protobuf.WellKnownTypes.TimeExtensions.ToTimestamp(System.DateTimeOffset)">
  8570. <summary>
  8571. Converts the given <see cref="T:System.DateTimeOffset"/> to a <see cref="T:Google.Protobuf.WellKnownTypes.Timestamp"/>
  8572. </summary>
  8573. <remarks>The offset is taken into consideration when converting the value (so the same instant in time
  8574. is represented) but is not a separate part of the resulting value. In other words, there is no
  8575. roundtrip operation to retrieve the original <c>DateTimeOffset</c>.</remarks>
  8576. <param name="dateTimeOffset">The date and time (with UTC offset) to convert to a timestamp.</param>
  8577. <returns>The converted timestamp.</returns>
  8578. </member>
  8579. <member name="M:Google.Protobuf.WellKnownTypes.TimeExtensions.ToDuration(System.TimeSpan)">
  8580. <summary>
  8581. Converts the given <see cref="T:System.TimeSpan"/> to a <see cref="T:Google.Protobuf.WellKnownTypes.Duration"/>.
  8582. </summary>
  8583. <param name="timeSpan">The time span to convert.</param>
  8584. <returns>The converted duration.</returns>
  8585. </member>
  8586. <member name="T:Google.Protobuf.WellKnownTypes.TimestampReflection">
  8587. <summary>Holder for reflection information generated from google/protobuf/timestamp.proto</summary>
  8588. </member>
  8589. <member name="P:Google.Protobuf.WellKnownTypes.TimestampReflection.Descriptor">
  8590. <summary>File descriptor for google/protobuf/timestamp.proto</summary>
  8591. </member>
  8592. <member name="T:Google.Protobuf.WellKnownTypes.Timestamp">
  8593. <summary>
  8594. A Timestamp represents a point in time independent of any time zone or local
  8595. calendar, encoded as a count of seconds and fractions of seconds at
  8596. nanosecond resolution. The count is relative to an epoch at UTC midnight on
  8597. January 1, 1970, in the proleptic Gregorian calendar which extends the
  8598. Gregorian calendar backwards to year one.
  8599. All minutes are 60 seconds long. Leap seconds are "smeared" so that no leap
  8600. second table is needed for interpretation, using a [24-hour linear
  8601. smear](https://developers.google.com/time/smear).
  8602. The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By
  8603. restricting to that range, we ensure that we can convert to and from [RFC
  8604. 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.
  8605. # Examples
  8606. Example 1: Compute Timestamp from POSIX `time()`.
  8607. Timestamp timestamp;
  8608. timestamp.set_seconds(time(NULL));
  8609. timestamp.set_nanos(0);
  8610. Example 2: Compute Timestamp from POSIX `gettimeofday()`.
  8611. struct timeval tv;
  8612. gettimeofday(&amp;tv, NULL);
  8613. Timestamp timestamp;
  8614. timestamp.set_seconds(tv.tv_sec);
  8615. timestamp.set_nanos(tv.tv_usec * 1000);
  8616. Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.
  8617. FILETIME ft;
  8618. GetSystemTimeAsFileTime(&amp;ft);
  8619. UINT64 ticks = (((UINT64)ft.dwHighDateTime) &lt;&lt; 32) | ft.dwLowDateTime;
  8620. // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z
  8621. // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.
  8622. Timestamp timestamp;
  8623. timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));
  8624. timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));
  8625. Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.
  8626. long millis = System.currentTimeMillis();
  8627. Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
  8628. .setNanos((int) ((millis % 1000) * 1000000)).build();
  8629. Example 5: Compute Timestamp from Java `Instant.now()`.
  8630. Instant now = Instant.now();
  8631. Timestamp timestamp =
  8632. Timestamp.newBuilder().setSeconds(now.getEpochSecond())
  8633. .setNanos(now.getNano()).build();
  8634. Example 6: Compute Timestamp from current time in Python.
  8635. timestamp = Timestamp()
  8636. timestamp.GetCurrentTime()
  8637. # JSON Mapping
  8638. In JSON format, the Timestamp type is encoded as a string in the
  8639. [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the
  8640. format is "{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z"
  8641. where {year} is always expressed using four digits while {month}, {day},
  8642. {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional
  8643. seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),
  8644. are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone
  8645. is required. A proto3 JSON serializer should always use UTC (as indicated by
  8646. "Z") when printing the Timestamp type and a proto3 JSON parser should be
  8647. able to accept both UTC and other timezones (as indicated by an offset).
  8648. For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past
  8649. 01:30 UTC on January 15, 2017.
  8650. In JavaScript, one can convert a Date object to this format using the
  8651. standard
  8652. [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)
  8653. method. In Python, a standard `datetime.datetime` object can be converted
  8654. to this format using
  8655. [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
  8656. the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
  8657. the Joda Time's [`ISODateTimeFormat.dateTime()`](
  8658. http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D
  8659. ) to obtain a formatter capable of generating timestamps in this format.
  8660. </summary>
  8661. </member>
  8662. <member name="F:Google.Protobuf.WellKnownTypes.Timestamp.SecondsFieldNumber">
  8663. <summary>Field number for the "seconds" field.</summary>
  8664. </member>
  8665. <member name="P:Google.Protobuf.WellKnownTypes.Timestamp.Seconds">
  8666. <summary>
  8667. Represents seconds of UTC time since Unix epoch
  8668. 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
  8669. 9999-12-31T23:59:59Z inclusive.
  8670. </summary>
  8671. </member>
  8672. <member name="F:Google.Protobuf.WellKnownTypes.Timestamp.NanosFieldNumber">
  8673. <summary>Field number for the "nanos" field.</summary>
  8674. </member>
  8675. <member name="P:Google.Protobuf.WellKnownTypes.Timestamp.Nanos">
  8676. <summary>
  8677. Non-negative fractions of a second at nanosecond resolution. Negative
  8678. second values with fractions must still have non-negative nanos values
  8679. that count forward in time. Must be from 0 to 999,999,999
  8680. inclusive.
  8681. </summary>
  8682. </member>
  8683. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.op_Subtraction(Google.Protobuf.WellKnownTypes.Timestamp,Google.Protobuf.WellKnownTypes.Timestamp)">
  8684. <summary>
  8685. Returns the difference between one <see cref="T:Google.Protobuf.WellKnownTypes.Timestamp"/> and another, as a <see cref="T:Google.Protobuf.WellKnownTypes.Duration"/>.
  8686. </summary>
  8687. <param name="lhs">The timestamp to subtract from. Must not be null.</param>
  8688. <param name="rhs">The timestamp to subtract. Must not be null.</param>
  8689. <returns>The difference between the two specified timestamps.</returns>
  8690. </member>
  8691. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.op_Addition(Google.Protobuf.WellKnownTypes.Timestamp,Google.Protobuf.WellKnownTypes.Duration)">
  8692. <summary>
  8693. Adds a <see cref="T:Google.Protobuf.WellKnownTypes.Duration"/> to a <see cref="T:Google.Protobuf.WellKnownTypes.Timestamp"/>, to obtain another <c>Timestamp</c>.
  8694. </summary>
  8695. <param name="lhs">The timestamp to add the duration to. Must not be null.</param>
  8696. <param name="rhs">The duration to add. Must not be null.</param>
  8697. <returns>The result of adding the duration to the timestamp.</returns>
  8698. </member>
  8699. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.op_Subtraction(Google.Protobuf.WellKnownTypes.Timestamp,Google.Protobuf.WellKnownTypes.Duration)">
  8700. <summary>
  8701. Subtracts a <see cref="T:Google.Protobuf.WellKnownTypes.Duration"/> from a <see cref="T:Google.Protobuf.WellKnownTypes.Timestamp"/>, to obtain another <c>Timestamp</c>.
  8702. </summary>
  8703. <param name="lhs">The timestamp to subtract the duration from. Must not be null.</param>
  8704. <param name="rhs">The duration to subtract.</param>
  8705. <returns>The result of subtracting the duration from the timestamp.</returns>
  8706. </member>
  8707. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.ToDateTime">
  8708. <summary>
  8709. Converts this timestamp into a <see cref="T:System.DateTime"/>.
  8710. </summary>
  8711. <remarks>
  8712. The resulting <c>DateTime</c> will always have a <c>Kind</c> of <c>Utc</c>.
  8713. If the timestamp is not a precise number of ticks, it will be truncated towards the start
  8714. of time. For example, a timestamp with a <see cref="P:Google.Protobuf.WellKnownTypes.Timestamp.Nanos"/> value of 99 will result in a
  8715. <see cref="T:System.DateTime"/> value precisely on a second.
  8716. </remarks>
  8717. <returns>This timestamp as a <c>DateTime</c>.</returns>
  8718. <exception cref="T:System.InvalidOperationException">The timestamp contains invalid values; either it is
  8719. incorrectly normalized or is outside the valid range.</exception>
  8720. </member>
  8721. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.ToDateTimeOffset">
  8722. <summary>
  8723. Converts this timestamp into a <see cref="T:System.DateTimeOffset"/>.
  8724. </summary>
  8725. <remarks>
  8726. The resulting <c>DateTimeOffset</c> will always have an <c>Offset</c> of zero.
  8727. If the timestamp is not a precise number of ticks, it will be truncated towards the start
  8728. of time. For example, a timestamp with a <see cref="P:Google.Protobuf.WellKnownTypes.Timestamp.Nanos"/> value of 99 will result in a
  8729. <see cref="T:System.DateTimeOffset"/> value precisely on a second.
  8730. </remarks>
  8731. <returns>This timestamp as a <c>DateTimeOffset</c>.</returns>
  8732. <exception cref="T:System.InvalidOperationException">The timestamp contains invalid values; either it is
  8733. incorrectly normalized or is outside the valid range.</exception>
  8734. </member>
  8735. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.FromDateTime(System.DateTime)">
  8736. <summary>
  8737. Converts the specified <see cref="T:System.DateTime"/> to a <see cref="T:Google.Protobuf.WellKnownTypes.Timestamp"/>.
  8738. </summary>
  8739. <param name="dateTime"></param>
  8740. <exception cref="T:System.ArgumentException">The <c>Kind</c> of <paramref name="dateTime"/> is not <c>DateTimeKind.Utc</c>.</exception>
  8741. <returns>The converted timestamp.</returns>
  8742. </member>
  8743. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.FromDateTimeOffset(System.DateTimeOffset)">
  8744. <summary>
  8745. Converts the given <see cref="T:System.DateTimeOffset"/> to a <see cref="T:Google.Protobuf.WellKnownTypes.Timestamp"/>
  8746. </summary>
  8747. <remarks>The offset is taken into consideration when converting the value (so the same instant in time
  8748. is represented) but is not a separate part of the resulting value. In other words, there is no
  8749. roundtrip operation to retrieve the original <c>DateTimeOffset</c>.</remarks>
  8750. <param name="dateTimeOffset">The date and time (with UTC offset) to convert to a timestamp.</param>
  8751. <returns>The converted timestamp.</returns>
  8752. </member>
  8753. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.ToJson(System.Int64,System.Int32,System.Boolean)">
  8754. <summary>
  8755. Converts a timestamp specified in seconds/nanoseconds to a string.
  8756. </summary>
  8757. <remarks>
  8758. If the value is a normalized duration in the range described in <c>timestamp.proto</c>,
  8759. <paramref name="diagnosticOnly"/> is ignored. Otherwise, if the parameter is <c>true</c>,
  8760. a JSON object with a warning is returned; if it is <c>false</c>, an <see cref="T:System.InvalidOperationException"/> is thrown.
  8761. </remarks>
  8762. <param name="seconds">Seconds portion of the duration.</param>
  8763. <param name="nanoseconds">Nanoseconds portion of the duration.</param>
  8764. <param name="diagnosticOnly">Determines the handling of non-normalized values</param>
  8765. <exception cref="T:System.InvalidOperationException">The represented duration is invalid, and <paramref name="diagnosticOnly"/> is <c>false</c>.</exception>
  8766. </member>
  8767. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.CompareTo(Google.Protobuf.WellKnownTypes.Timestamp)">
  8768. <summary>
  8769. Given another timestamp, returns 0 if the timestamps are equivalent, -1 if this timestamp precedes the other, and 1 otherwise
  8770. </summary>
  8771. <remarks>
  8772. Make sure the timestamps are normalized. Comparing non-normalized timestamps is not specified and may give unexpected results.
  8773. </remarks>
  8774. <param name="other">Timestamp to compare</param>
  8775. <returns>an integer indicating whether this timestamp precedes or follows the other</returns>
  8776. </member>
  8777. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.op_LessThan(Google.Protobuf.WellKnownTypes.Timestamp,Google.Protobuf.WellKnownTypes.Timestamp)">
  8778. <summary>
  8779. Compares two timestamps and returns whether the first is less than (chronologically precedes) the second
  8780. </summary>
  8781. <remarks>
  8782. Make sure the timestamps are normalized. Comparing non-normalized timestamps is not specified and may give unexpected results.
  8783. </remarks>
  8784. <param name="a"></param>
  8785. <param name="b"></param>
  8786. <returns>true if a precedes b</returns>
  8787. </member>
  8788. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.op_GreaterThan(Google.Protobuf.WellKnownTypes.Timestamp,Google.Protobuf.WellKnownTypes.Timestamp)">
  8789. <summary>
  8790. Compares two timestamps and returns whether the first is greater than (chronologically follows) the second
  8791. </summary>
  8792. <remarks>
  8793. Make sure the timestamps are normalized. Comparing non-normalized timestamps is not specified and may give unexpected results.
  8794. </remarks>
  8795. <param name="a"></param>
  8796. <param name="b"></param>
  8797. <returns>true if a follows b</returns>
  8798. </member>
  8799. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.op_LessThanOrEqual(Google.Protobuf.WellKnownTypes.Timestamp,Google.Protobuf.WellKnownTypes.Timestamp)">
  8800. <summary>
  8801. Compares two timestamps and returns whether the first is less than (chronologically precedes) the second
  8802. </summary>
  8803. <remarks>
  8804. Make sure the timestamps are normalized. Comparing non-normalized timestamps is not specified and may give unexpected results.
  8805. </remarks>
  8806. <param name="a"></param>
  8807. <param name="b"></param>
  8808. <returns>true if a precedes b</returns>
  8809. </member>
  8810. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.op_GreaterThanOrEqual(Google.Protobuf.WellKnownTypes.Timestamp,Google.Protobuf.WellKnownTypes.Timestamp)">
  8811. <summary>
  8812. Compares two timestamps and returns whether the first is greater than (chronologically follows) the second
  8813. </summary>
  8814. <remarks>
  8815. Make sure the timestamps are normalized. Comparing non-normalized timestamps is not specified and may give unexpected results.
  8816. </remarks>
  8817. <param name="a"></param>
  8818. <param name="b"></param>
  8819. <returns>true if a follows b</returns>
  8820. </member>
  8821. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.op_Equality(Google.Protobuf.WellKnownTypes.Timestamp,Google.Protobuf.WellKnownTypes.Timestamp)">
  8822. <summary>
  8823. Returns whether two timestamps are equivalent
  8824. </summary>
  8825. <remarks>
  8826. Make sure the timestamps are normalized. Comparing non-normalized timestamps is not specified and may give unexpected results.
  8827. </remarks>
  8828. <param name="a"></param>
  8829. <param name="b"></param>
  8830. <returns>true if the two timestamps refer to the same nanosecond</returns>
  8831. </member>
  8832. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.op_Inequality(Google.Protobuf.WellKnownTypes.Timestamp,Google.Protobuf.WellKnownTypes.Timestamp)">
  8833. <summary>
  8834. Returns whether two timestamps differ
  8835. </summary>
  8836. <remarks>
  8837. Make sure the timestamps are normalized. Comparing non-normalized timestamps is not specified and may give unexpected results.
  8838. </remarks>
  8839. <param name="a"></param>
  8840. <param name="b"></param>
  8841. <returns>true if the two timestamps differ</returns>
  8842. </member>
  8843. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.ToDiagnosticString">
  8844. <summary>
  8845. Returns a string representation of this <see cref="T:Google.Protobuf.WellKnownTypes.Timestamp"/> for diagnostic purposes.
  8846. </summary>
  8847. <remarks>
  8848. Normally the returned value will be a JSON string value (including leading and trailing quotes) but
  8849. when the value is non-normalized or out of range, a JSON object representation will be returned
  8850. instead, including a warning. This is to avoid exceptions being thrown when trying to
  8851. diagnose problems - the regular JSON formatter will still throw an exception for non-normalized
  8852. values.
  8853. </remarks>
  8854. <returns>A string representation of this value.</returns>
  8855. </member>
  8856. <member name="T:Google.Protobuf.WellKnownTypes.TypeReflection">
  8857. <summary>Holder for reflection information generated from google/protobuf/type.proto</summary>
  8858. </member>
  8859. <member name="P:Google.Protobuf.WellKnownTypes.TypeReflection.Descriptor">
  8860. <summary>File descriptor for google/protobuf/type.proto</summary>
  8861. </member>
  8862. <member name="T:Google.Protobuf.WellKnownTypes.Syntax">
  8863. <summary>
  8864. The syntax in which a protocol buffer element is defined.
  8865. </summary>
  8866. </member>
  8867. <member name="F:Google.Protobuf.WellKnownTypes.Syntax.Proto2">
  8868. <summary>
  8869. Syntax `proto2`.
  8870. </summary>
  8871. </member>
  8872. <member name="F:Google.Protobuf.WellKnownTypes.Syntax.Proto3">
  8873. <summary>
  8874. Syntax `proto3`.
  8875. </summary>
  8876. </member>
  8877. <member name="T:Google.Protobuf.WellKnownTypes.Type">
  8878. <summary>
  8879. A protocol buffer message type.
  8880. </summary>
  8881. </member>
  8882. <member name="F:Google.Protobuf.WellKnownTypes.Type.NameFieldNumber">
  8883. <summary>Field number for the "name" field.</summary>
  8884. </member>
  8885. <member name="P:Google.Protobuf.WellKnownTypes.Type.Name">
  8886. <summary>
  8887. The fully qualified message name.
  8888. </summary>
  8889. </member>
  8890. <member name="F:Google.Protobuf.WellKnownTypes.Type.FieldsFieldNumber">
  8891. <summary>Field number for the "fields" field.</summary>
  8892. </member>
  8893. <member name="P:Google.Protobuf.WellKnownTypes.Type.Fields">
  8894. <summary>
  8895. The list of fields.
  8896. </summary>
  8897. </member>
  8898. <member name="F:Google.Protobuf.WellKnownTypes.Type.OneofsFieldNumber">
  8899. <summary>Field number for the "oneofs" field.</summary>
  8900. </member>
  8901. <member name="P:Google.Protobuf.WellKnownTypes.Type.Oneofs">
  8902. <summary>
  8903. The list of types appearing in `oneof` definitions in this type.
  8904. </summary>
  8905. </member>
  8906. <member name="F:Google.Protobuf.WellKnownTypes.Type.OptionsFieldNumber">
  8907. <summary>Field number for the "options" field.</summary>
  8908. </member>
  8909. <member name="P:Google.Protobuf.WellKnownTypes.Type.Options">
  8910. <summary>
  8911. The protocol buffer options.
  8912. </summary>
  8913. </member>
  8914. <member name="F:Google.Protobuf.WellKnownTypes.Type.SourceContextFieldNumber">
  8915. <summary>Field number for the "source_context" field.</summary>
  8916. </member>
  8917. <member name="P:Google.Protobuf.WellKnownTypes.Type.SourceContext">
  8918. <summary>
  8919. The source context.
  8920. </summary>
  8921. </member>
  8922. <member name="F:Google.Protobuf.WellKnownTypes.Type.SyntaxFieldNumber">
  8923. <summary>Field number for the "syntax" field.</summary>
  8924. </member>
  8925. <member name="P:Google.Protobuf.WellKnownTypes.Type.Syntax">
  8926. <summary>
  8927. The source syntax.
  8928. </summary>
  8929. </member>
  8930. <member name="T:Google.Protobuf.WellKnownTypes.Field">
  8931. <summary>
  8932. A single field of a message type.
  8933. </summary>
  8934. </member>
  8935. <member name="F:Google.Protobuf.WellKnownTypes.Field.KindFieldNumber">
  8936. <summary>Field number for the "kind" field.</summary>
  8937. </member>
  8938. <member name="P:Google.Protobuf.WellKnownTypes.Field.Kind">
  8939. <summary>
  8940. The field type.
  8941. </summary>
  8942. </member>
  8943. <member name="F:Google.Protobuf.WellKnownTypes.Field.CardinalityFieldNumber">
  8944. <summary>Field number for the "cardinality" field.</summary>
  8945. </member>
  8946. <member name="P:Google.Protobuf.WellKnownTypes.Field.Cardinality">
  8947. <summary>
  8948. The field cardinality.
  8949. </summary>
  8950. </member>
  8951. <member name="F:Google.Protobuf.WellKnownTypes.Field.NumberFieldNumber">
  8952. <summary>Field number for the "number" field.</summary>
  8953. </member>
  8954. <member name="P:Google.Protobuf.WellKnownTypes.Field.Number">
  8955. <summary>
  8956. The field number.
  8957. </summary>
  8958. </member>
  8959. <member name="F:Google.Protobuf.WellKnownTypes.Field.NameFieldNumber">
  8960. <summary>Field number for the "name" field.</summary>
  8961. </member>
  8962. <member name="P:Google.Protobuf.WellKnownTypes.Field.Name">
  8963. <summary>
  8964. The field name.
  8965. </summary>
  8966. </member>
  8967. <member name="F:Google.Protobuf.WellKnownTypes.Field.TypeUrlFieldNumber">
  8968. <summary>Field number for the "type_url" field.</summary>
  8969. </member>
  8970. <member name="P:Google.Protobuf.WellKnownTypes.Field.TypeUrl">
  8971. <summary>
  8972. The field type URL, without the scheme, for message or enumeration
  8973. types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`.
  8974. </summary>
  8975. </member>
  8976. <member name="F:Google.Protobuf.WellKnownTypes.Field.OneofIndexFieldNumber">
  8977. <summary>Field number for the "oneof_index" field.</summary>
  8978. </member>
  8979. <member name="P:Google.Protobuf.WellKnownTypes.Field.OneofIndex">
  8980. <summary>
  8981. The index of the field type in `Type.oneofs`, for message or enumeration
  8982. types. The first type has index 1; zero means the type is not in the list.
  8983. </summary>
  8984. </member>
  8985. <member name="F:Google.Protobuf.WellKnownTypes.Field.PackedFieldNumber">
  8986. <summary>Field number for the "packed" field.</summary>
  8987. </member>
  8988. <member name="P:Google.Protobuf.WellKnownTypes.Field.Packed">
  8989. <summary>
  8990. Whether to use alternative packed wire representation.
  8991. </summary>
  8992. </member>
  8993. <member name="F:Google.Protobuf.WellKnownTypes.Field.OptionsFieldNumber">
  8994. <summary>Field number for the "options" field.</summary>
  8995. </member>
  8996. <member name="P:Google.Protobuf.WellKnownTypes.Field.Options">
  8997. <summary>
  8998. The protocol buffer options.
  8999. </summary>
  9000. </member>
  9001. <member name="F:Google.Protobuf.WellKnownTypes.Field.JsonNameFieldNumber">
  9002. <summary>Field number for the "json_name" field.</summary>
  9003. </member>
  9004. <member name="P:Google.Protobuf.WellKnownTypes.Field.JsonName">
  9005. <summary>
  9006. The field JSON name.
  9007. </summary>
  9008. </member>
  9009. <member name="F:Google.Protobuf.WellKnownTypes.Field.DefaultValueFieldNumber">
  9010. <summary>Field number for the "default_value" field.</summary>
  9011. </member>
  9012. <member name="P:Google.Protobuf.WellKnownTypes.Field.DefaultValue">
  9013. <summary>
  9014. The string value of the default value of this field. Proto2 syntax only.
  9015. </summary>
  9016. </member>
  9017. <member name="T:Google.Protobuf.WellKnownTypes.Field.Types">
  9018. <summary>Container for nested types declared in the Field message type.</summary>
  9019. </member>
  9020. <member name="T:Google.Protobuf.WellKnownTypes.Field.Types.Kind">
  9021. <summary>
  9022. Basic field types.
  9023. </summary>
  9024. </member>
  9025. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeUnknown">
  9026. <summary>
  9027. Field type unknown.
  9028. </summary>
  9029. </member>
  9030. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeDouble">
  9031. <summary>
  9032. Field type double.
  9033. </summary>
  9034. </member>
  9035. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeFloat">
  9036. <summary>
  9037. Field type float.
  9038. </summary>
  9039. </member>
  9040. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeInt64">
  9041. <summary>
  9042. Field type int64.
  9043. </summary>
  9044. </member>
  9045. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeUint64">
  9046. <summary>
  9047. Field type uint64.
  9048. </summary>
  9049. </member>
  9050. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeInt32">
  9051. <summary>
  9052. Field type int32.
  9053. </summary>
  9054. </member>
  9055. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeFixed64">
  9056. <summary>
  9057. Field type fixed64.
  9058. </summary>
  9059. </member>
  9060. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeFixed32">
  9061. <summary>
  9062. Field type fixed32.
  9063. </summary>
  9064. </member>
  9065. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeBool">
  9066. <summary>
  9067. Field type bool.
  9068. </summary>
  9069. </member>
  9070. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeString">
  9071. <summary>
  9072. Field type string.
  9073. </summary>
  9074. </member>
  9075. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeGroup">
  9076. <summary>
  9077. Field type group. Proto2 syntax only, and deprecated.
  9078. </summary>
  9079. </member>
  9080. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeMessage">
  9081. <summary>
  9082. Field type message.
  9083. </summary>
  9084. </member>
  9085. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeBytes">
  9086. <summary>
  9087. Field type bytes.
  9088. </summary>
  9089. </member>
  9090. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeUint32">
  9091. <summary>
  9092. Field type uint32.
  9093. </summary>
  9094. </member>
  9095. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeEnum">
  9096. <summary>
  9097. Field type enum.
  9098. </summary>
  9099. </member>
  9100. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeSfixed32">
  9101. <summary>
  9102. Field type sfixed32.
  9103. </summary>
  9104. </member>
  9105. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeSfixed64">
  9106. <summary>
  9107. Field type sfixed64.
  9108. </summary>
  9109. </member>
  9110. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeSint32">
  9111. <summary>
  9112. Field type sint32.
  9113. </summary>
  9114. </member>
  9115. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeSint64">
  9116. <summary>
  9117. Field type sint64.
  9118. </summary>
  9119. </member>
  9120. <member name="T:Google.Protobuf.WellKnownTypes.Field.Types.Cardinality">
  9121. <summary>
  9122. Whether a field is optional, required, or repeated.
  9123. </summary>
  9124. </member>
  9125. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Cardinality.Unknown">
  9126. <summary>
  9127. For fields with unknown cardinality.
  9128. </summary>
  9129. </member>
  9130. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Cardinality.Optional">
  9131. <summary>
  9132. For optional fields.
  9133. </summary>
  9134. </member>
  9135. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Cardinality.Required">
  9136. <summary>
  9137. For required fields. Proto2 syntax only.
  9138. </summary>
  9139. </member>
  9140. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Cardinality.Repeated">
  9141. <summary>
  9142. For repeated fields.
  9143. </summary>
  9144. </member>
  9145. <member name="T:Google.Protobuf.WellKnownTypes.Enum">
  9146. <summary>
  9147. Enum type definition.
  9148. </summary>
  9149. </member>
  9150. <member name="F:Google.Protobuf.WellKnownTypes.Enum.NameFieldNumber">
  9151. <summary>Field number for the "name" field.</summary>
  9152. </member>
  9153. <member name="P:Google.Protobuf.WellKnownTypes.Enum.Name">
  9154. <summary>
  9155. Enum type name.
  9156. </summary>
  9157. </member>
  9158. <member name="F:Google.Protobuf.WellKnownTypes.Enum.EnumvalueFieldNumber">
  9159. <summary>Field number for the "enumvalue" field.</summary>
  9160. </member>
  9161. <member name="P:Google.Protobuf.WellKnownTypes.Enum.Enumvalue">
  9162. <summary>
  9163. Enum value definitions.
  9164. </summary>
  9165. </member>
  9166. <member name="F:Google.Protobuf.WellKnownTypes.Enum.OptionsFieldNumber">
  9167. <summary>Field number for the "options" field.</summary>
  9168. </member>
  9169. <member name="P:Google.Protobuf.WellKnownTypes.Enum.Options">
  9170. <summary>
  9171. Protocol buffer options.
  9172. </summary>
  9173. </member>
  9174. <member name="F:Google.Protobuf.WellKnownTypes.Enum.SourceContextFieldNumber">
  9175. <summary>Field number for the "source_context" field.</summary>
  9176. </member>
  9177. <member name="P:Google.Protobuf.WellKnownTypes.Enum.SourceContext">
  9178. <summary>
  9179. The source context.
  9180. </summary>
  9181. </member>
  9182. <member name="F:Google.Protobuf.WellKnownTypes.Enum.SyntaxFieldNumber">
  9183. <summary>Field number for the "syntax" field.</summary>
  9184. </member>
  9185. <member name="P:Google.Protobuf.WellKnownTypes.Enum.Syntax">
  9186. <summary>
  9187. The source syntax.
  9188. </summary>
  9189. </member>
  9190. <member name="T:Google.Protobuf.WellKnownTypes.EnumValue">
  9191. <summary>
  9192. Enum value definition.
  9193. </summary>
  9194. </member>
  9195. <member name="F:Google.Protobuf.WellKnownTypes.EnumValue.NameFieldNumber">
  9196. <summary>Field number for the "name" field.</summary>
  9197. </member>
  9198. <member name="P:Google.Protobuf.WellKnownTypes.EnumValue.Name">
  9199. <summary>
  9200. Enum value name.
  9201. </summary>
  9202. </member>
  9203. <member name="F:Google.Protobuf.WellKnownTypes.EnumValue.NumberFieldNumber">
  9204. <summary>Field number for the "number" field.</summary>
  9205. </member>
  9206. <member name="P:Google.Protobuf.WellKnownTypes.EnumValue.Number">
  9207. <summary>
  9208. Enum value number.
  9209. </summary>
  9210. </member>
  9211. <member name="F:Google.Protobuf.WellKnownTypes.EnumValue.OptionsFieldNumber">
  9212. <summary>Field number for the "options" field.</summary>
  9213. </member>
  9214. <member name="P:Google.Protobuf.WellKnownTypes.EnumValue.Options">
  9215. <summary>
  9216. Protocol buffer options.
  9217. </summary>
  9218. </member>
  9219. <member name="T:Google.Protobuf.WellKnownTypes.Option">
  9220. <summary>
  9221. A protocol buffer option, which can be attached to a message, field,
  9222. enumeration, etc.
  9223. </summary>
  9224. </member>
  9225. <member name="F:Google.Protobuf.WellKnownTypes.Option.NameFieldNumber">
  9226. <summary>Field number for the "name" field.</summary>
  9227. </member>
  9228. <member name="P:Google.Protobuf.WellKnownTypes.Option.Name">
  9229. <summary>
  9230. The option's name. For protobuf built-in options (options defined in
  9231. descriptor.proto), this is the short name. For example, `"map_entry"`.
  9232. For custom options, it should be the fully-qualified name. For example,
  9233. `"google.api.http"`.
  9234. </summary>
  9235. </member>
  9236. <member name="F:Google.Protobuf.WellKnownTypes.Option.ValueFieldNumber">
  9237. <summary>Field number for the "value" field.</summary>
  9238. </member>
  9239. <member name="P:Google.Protobuf.WellKnownTypes.Option.Value">
  9240. <summary>
  9241. The option's value packed in an Any message. If the value is a primitive,
  9242. the corresponding wrapper type defined in google/protobuf/wrappers.proto
  9243. should be used. If the value is an enum, it should be stored as an int32
  9244. value using the google.protobuf.Int32Value type.
  9245. </summary>
  9246. </member>
  9247. <member name="T:Google.Protobuf.WellKnownTypes.WrappersReflection">
  9248. <summary>Holder for reflection information generated from google/protobuf/wrappers.proto</summary>
  9249. </member>
  9250. <member name="P:Google.Protobuf.WellKnownTypes.WrappersReflection.Descriptor">
  9251. <summary>File descriptor for google/protobuf/wrappers.proto</summary>
  9252. </member>
  9253. <member name="F:Google.Protobuf.WellKnownTypes.WrappersReflection.WrapperValueFieldNumber">
  9254. <summary>
  9255. Field number for the single "value" field in all wrapper types.
  9256. </summary>
  9257. </member>
  9258. <member name="T:Google.Protobuf.WellKnownTypes.DoubleValue">
  9259. <summary>
  9260. Wrapper message for `double`.
  9261. The JSON representation for `DoubleValue` is JSON number.
  9262. </summary>
  9263. </member>
  9264. <member name="F:Google.Protobuf.WellKnownTypes.DoubleValue.ValueFieldNumber">
  9265. <summary>Field number for the "value" field.</summary>
  9266. </member>
  9267. <member name="P:Google.Protobuf.WellKnownTypes.DoubleValue.Value">
  9268. <summary>
  9269. The double value.
  9270. </summary>
  9271. </member>
  9272. <member name="T:Google.Protobuf.WellKnownTypes.FloatValue">
  9273. <summary>
  9274. Wrapper message for `float`.
  9275. The JSON representation for `FloatValue` is JSON number.
  9276. </summary>
  9277. </member>
  9278. <member name="F:Google.Protobuf.WellKnownTypes.FloatValue.ValueFieldNumber">
  9279. <summary>Field number for the "value" field.</summary>
  9280. </member>
  9281. <member name="P:Google.Protobuf.WellKnownTypes.FloatValue.Value">
  9282. <summary>
  9283. The float value.
  9284. </summary>
  9285. </member>
  9286. <member name="T:Google.Protobuf.WellKnownTypes.Int64Value">
  9287. <summary>
  9288. Wrapper message for `int64`.
  9289. The JSON representation for `Int64Value` is JSON string.
  9290. </summary>
  9291. </member>
  9292. <member name="F:Google.Protobuf.WellKnownTypes.Int64Value.ValueFieldNumber">
  9293. <summary>Field number for the "value" field.</summary>
  9294. </member>
  9295. <member name="P:Google.Protobuf.WellKnownTypes.Int64Value.Value">
  9296. <summary>
  9297. The int64 value.
  9298. </summary>
  9299. </member>
  9300. <member name="T:Google.Protobuf.WellKnownTypes.UInt64Value">
  9301. <summary>
  9302. Wrapper message for `uint64`.
  9303. The JSON representation for `UInt64Value` is JSON string.
  9304. </summary>
  9305. </member>
  9306. <member name="F:Google.Protobuf.WellKnownTypes.UInt64Value.ValueFieldNumber">
  9307. <summary>Field number for the "value" field.</summary>
  9308. </member>
  9309. <member name="P:Google.Protobuf.WellKnownTypes.UInt64Value.Value">
  9310. <summary>
  9311. The uint64 value.
  9312. </summary>
  9313. </member>
  9314. <member name="T:Google.Protobuf.WellKnownTypes.Int32Value">
  9315. <summary>
  9316. Wrapper message for `int32`.
  9317. The JSON representation for `Int32Value` is JSON number.
  9318. </summary>
  9319. </member>
  9320. <member name="F:Google.Protobuf.WellKnownTypes.Int32Value.ValueFieldNumber">
  9321. <summary>Field number for the "value" field.</summary>
  9322. </member>
  9323. <member name="P:Google.Protobuf.WellKnownTypes.Int32Value.Value">
  9324. <summary>
  9325. The int32 value.
  9326. </summary>
  9327. </member>
  9328. <member name="T:Google.Protobuf.WellKnownTypes.UInt32Value">
  9329. <summary>
  9330. Wrapper message for `uint32`.
  9331. The JSON representation for `UInt32Value` is JSON number.
  9332. </summary>
  9333. </member>
  9334. <member name="F:Google.Protobuf.WellKnownTypes.UInt32Value.ValueFieldNumber">
  9335. <summary>Field number for the "value" field.</summary>
  9336. </member>
  9337. <member name="P:Google.Protobuf.WellKnownTypes.UInt32Value.Value">
  9338. <summary>
  9339. The uint32 value.
  9340. </summary>
  9341. </member>
  9342. <member name="T:Google.Protobuf.WellKnownTypes.BoolValue">
  9343. <summary>
  9344. Wrapper message for `bool`.
  9345. The JSON representation for `BoolValue` is JSON `true` and `false`.
  9346. </summary>
  9347. </member>
  9348. <member name="F:Google.Protobuf.WellKnownTypes.BoolValue.ValueFieldNumber">
  9349. <summary>Field number for the "value" field.</summary>
  9350. </member>
  9351. <member name="P:Google.Protobuf.WellKnownTypes.BoolValue.Value">
  9352. <summary>
  9353. The bool value.
  9354. </summary>
  9355. </member>
  9356. <member name="T:Google.Protobuf.WellKnownTypes.StringValue">
  9357. <summary>
  9358. Wrapper message for `string`.
  9359. The JSON representation for `StringValue` is JSON string.
  9360. </summary>
  9361. </member>
  9362. <member name="F:Google.Protobuf.WellKnownTypes.StringValue.ValueFieldNumber">
  9363. <summary>Field number for the "value" field.</summary>
  9364. </member>
  9365. <member name="P:Google.Protobuf.WellKnownTypes.StringValue.Value">
  9366. <summary>
  9367. The string value.
  9368. </summary>
  9369. </member>
  9370. <member name="T:Google.Protobuf.WellKnownTypes.BytesValue">
  9371. <summary>
  9372. Wrapper message for `bytes`.
  9373. The JSON representation for `BytesValue` is JSON string.
  9374. </summary>
  9375. </member>
  9376. <member name="F:Google.Protobuf.WellKnownTypes.BytesValue.ValueFieldNumber">
  9377. <summary>Field number for the "value" field.</summary>
  9378. </member>
  9379. <member name="P:Google.Protobuf.WellKnownTypes.BytesValue.Value">
  9380. <summary>
  9381. The bytes value.
  9382. </summary>
  9383. </member>
  9384. <member name="T:Google.Protobuf.WireFormat">
  9385. <summary>
  9386. This class is used internally by the Protocol Buffer Library and generated
  9387. message implementations. It is public only for the sake of those generated
  9388. messages. Others should not use this class directly.
  9389. <para>
  9390. This class contains constants and helper functions useful for dealing with
  9391. the Protocol Buffer wire format.
  9392. </para>
  9393. </summary>
  9394. </member>
  9395. <member name="T:Google.Protobuf.WireFormat.WireType">
  9396. <summary>
  9397. Wire types within protobuf encoding.
  9398. </summary>
  9399. </member>
  9400. <member name="F:Google.Protobuf.WireFormat.WireType.Varint">
  9401. <summary>
  9402. Variable-length integer.
  9403. </summary>
  9404. </member>
  9405. <member name="F:Google.Protobuf.WireFormat.WireType.Fixed64">
  9406. <summary>
  9407. A fixed-length 64-bit value.
  9408. </summary>
  9409. </member>
  9410. <member name="F:Google.Protobuf.WireFormat.WireType.LengthDelimited">
  9411. <summary>
  9412. A length-delimited value, i.e. a length followed by that many bytes of data.
  9413. </summary>
  9414. </member>
  9415. <member name="F:Google.Protobuf.WireFormat.WireType.StartGroup">
  9416. <summary>
  9417. A "start group" value
  9418. </summary>
  9419. </member>
  9420. <member name="F:Google.Protobuf.WireFormat.WireType.EndGroup">
  9421. <summary>
  9422. An "end group" value
  9423. </summary>
  9424. </member>
  9425. <member name="F:Google.Protobuf.WireFormat.WireType.Fixed32">
  9426. <summary>
  9427. A fixed-length 32-bit value.
  9428. </summary>
  9429. </member>
  9430. <member name="M:Google.Protobuf.WireFormat.GetTagWireType(System.UInt32)">
  9431. <summary>
  9432. Given a tag value, determines the wire type (lower 3 bits).
  9433. </summary>
  9434. </member>
  9435. <member name="M:Google.Protobuf.WireFormat.GetTagFieldNumber(System.UInt32)">
  9436. <summary>
  9437. Given a tag value, determines the field number (the upper 29 bits).
  9438. </summary>
  9439. </member>
  9440. <member name="M:Google.Protobuf.WireFormat.MakeTag(System.Int32,Google.Protobuf.WireFormat.WireType)">
  9441. <summary>
  9442. Makes a tag value given a field number and wire type.
  9443. </summary>
  9444. </member>
  9445. <member name="T:Google.Protobuf.WriteBufferHelper">
  9446. <summary>
  9447. Abstraction for writing to a steam / IBufferWriter
  9448. </summary>
  9449. </member>
  9450. <member name="M:Google.Protobuf.WriteBufferHelper.Initialize(Google.Protobuf.CodedOutputStream,Google.Protobuf.WriteBufferHelper@)">
  9451. <summary>
  9452. Initialize an instance with a coded output stream.
  9453. This approach is faster than using a constructor because the instance to initialize is passed by reference
  9454. and we can write directly into it without copying.
  9455. </summary>
  9456. </member>
  9457. <member name="M:Google.Protobuf.WriteBufferHelper.Initialize(System.Buffers.IBufferWriter{System.Byte},Google.Protobuf.WriteBufferHelper@,System.Span{System.Byte}@)">
  9458. <summary>
  9459. Initialize an instance with a buffer writer.
  9460. This approach is faster than using a constructor because the instance to initialize is passed by reference
  9461. and we can write directly into it without copying.
  9462. </summary>
  9463. </member>
  9464. <member name="M:Google.Protobuf.WriteBufferHelper.InitializeNonRefreshable(Google.Protobuf.WriteBufferHelper@)">
  9465. <summary>
  9466. Initialize an instance with a buffer represented by a single span (i.e. buffer cannot be refreshed)
  9467. This approach is faster than using a constructor because the instance to initialize is passed by reference
  9468. and we can write directly into it without copying.
  9469. </summary>
  9470. </member>
  9471. <member name="M:Google.Protobuf.WriteBufferHelper.CheckNoSpaceLeft(Google.Protobuf.WriterInternalState@)">
  9472. <summary>
  9473. Verifies that SpaceLeft returns zero.
  9474. </summary>
  9475. </member>
  9476. <member name="M:Google.Protobuf.WriteBufferHelper.GetSpaceLeft(Google.Protobuf.WriterInternalState@)">
  9477. <summary>
  9478. If writing to a flat array, returns the space left in the array. Otherwise,
  9479. throws an InvalidOperationException.
  9480. </summary>
  9481. </member>
  9482. <member name="T:Google.Protobuf.WriteContext">
  9483. <summary>
  9484. An opaque struct that represents the current serialization state and is passed along
  9485. as the serialization proceeds.
  9486. All the public methods are intended to be invoked only by the generated code,
  9487. users should never invoke them directly.
  9488. </summary>
  9489. </member>
  9490. <member name="M:Google.Protobuf.WriteContext.Initialize(Google.Protobuf.CodedOutputStream,Google.Protobuf.WriteContext@)">
  9491. <summary>
  9492. Creates a WriteContext instance from CodedOutputStream.
  9493. WARNING: internally this copies the CodedOutputStream's state, so after done with the WriteContext,
  9494. the CodedOutputStream's state needs to be updated.
  9495. </summary>
  9496. </member>
  9497. <member name="M:Google.Protobuf.WriteContext.WriteDouble(System.Double)">
  9498. <summary>
  9499. Writes a double field value, without a tag.
  9500. </summary>
  9501. <param name="value">The value to write</param>
  9502. </member>
  9503. <member name="M:Google.Protobuf.WriteContext.WriteFloat(System.Single)">
  9504. <summary>
  9505. Writes a float field value, without a tag.
  9506. </summary>
  9507. <param name="value">The value to write</param>
  9508. </member>
  9509. <member name="M:Google.Protobuf.WriteContext.WriteUInt64(System.UInt64)">
  9510. <summary>
  9511. Writes a uint64 field value, without a tag.
  9512. </summary>
  9513. <param name="value">The value to write</param>
  9514. </member>
  9515. <member name="M:Google.Protobuf.WriteContext.WriteInt64(System.Int64)">
  9516. <summary>
  9517. Writes an int64 field value, without a tag.
  9518. </summary>
  9519. <param name="value">The value to write</param>
  9520. </member>
  9521. <member name="M:Google.Protobuf.WriteContext.WriteInt32(System.Int32)">
  9522. <summary>
  9523. Writes an int32 field value, without a tag.
  9524. </summary>
  9525. <param name="value">The value to write</param>
  9526. </member>
  9527. <member name="M:Google.Protobuf.WriteContext.WriteFixed64(System.UInt64)">
  9528. <summary>
  9529. Writes a fixed64 field value, without a tag.
  9530. </summary>
  9531. <param name="value">The value to write</param>
  9532. </member>
  9533. <member name="M:Google.Protobuf.WriteContext.WriteFixed32(System.UInt32)">
  9534. <summary>
  9535. Writes a fixed32 field value, without a tag.
  9536. </summary>
  9537. <param name="value">The value to write</param>
  9538. </member>
  9539. <member name="M:Google.Protobuf.WriteContext.WriteBool(System.Boolean)">
  9540. <summary>
  9541. Writes a bool field value, without a tag.
  9542. </summary>
  9543. <param name="value">The value to write</param>
  9544. </member>
  9545. <member name="M:Google.Protobuf.WriteContext.WriteString(System.String)">
  9546. <summary>
  9547. Writes a string field value, without a tag.
  9548. The data is length-prefixed.
  9549. </summary>
  9550. <param name="value">The value to write</param>
  9551. </member>
  9552. <member name="M:Google.Protobuf.WriteContext.WriteMessage(Google.Protobuf.IMessage)">
  9553. <summary>
  9554. Writes a message, without a tag.
  9555. The data is length-prefixed.
  9556. </summary>
  9557. <param name="value">The value to write</param>
  9558. </member>
  9559. <member name="M:Google.Protobuf.WriteContext.WriteGroup(Google.Protobuf.IMessage)">
  9560. <summary>
  9561. Writes a group, without a tag, to the stream.
  9562. </summary>
  9563. <param name="value">The value to write</param>
  9564. </member>
  9565. <member name="M:Google.Protobuf.WriteContext.WriteBytes(Google.Protobuf.ByteString)">
  9566. <summary>
  9567. Write a byte string, without a tag, to the stream.
  9568. The data is length-prefixed.
  9569. </summary>
  9570. <param name="value">The value to write</param>
  9571. </member>
  9572. <member name="M:Google.Protobuf.WriteContext.WriteUInt32(System.UInt32)">
  9573. <summary>
  9574. Writes a uint32 value, without a tag.
  9575. </summary>
  9576. <param name="value">The value to write</param>
  9577. </member>
  9578. <member name="M:Google.Protobuf.WriteContext.WriteEnum(System.Int32)">
  9579. <summary>
  9580. Writes an enum value, without a tag.
  9581. </summary>
  9582. <param name="value">The value to write</param>
  9583. </member>
  9584. <member name="M:Google.Protobuf.WriteContext.WriteSFixed32(System.Int32)">
  9585. <summary>
  9586. Writes an sfixed32 value, without a tag.
  9587. </summary>
  9588. <param name="value">The value to write.</param>
  9589. </member>
  9590. <member name="M:Google.Protobuf.WriteContext.WriteSFixed64(System.Int64)">
  9591. <summary>
  9592. Writes an sfixed64 value, without a tag.
  9593. </summary>
  9594. <param name="value">The value to write</param>
  9595. </member>
  9596. <member name="M:Google.Protobuf.WriteContext.WriteSInt32(System.Int32)">
  9597. <summary>
  9598. Writes an sint32 value, without a tag.
  9599. </summary>
  9600. <param name="value">The value to write</param>
  9601. </member>
  9602. <member name="M:Google.Protobuf.WriteContext.WriteSInt64(System.Int64)">
  9603. <summary>
  9604. Writes an sint64 value, without a tag.
  9605. </summary>
  9606. <param name="value">The value to write</param>
  9607. </member>
  9608. <member name="M:Google.Protobuf.WriteContext.WriteLength(System.Int32)">
  9609. <summary>
  9610. Writes a length (in bytes) for length-delimited data.
  9611. </summary>
  9612. <remarks>
  9613. This method simply writes a rawint, but exists for clarity in calling code.
  9614. </remarks>
  9615. <param name="length">Length value, in bytes.</param>
  9616. </member>
  9617. <member name="M:Google.Protobuf.WriteContext.WriteTag(System.Int32,Google.Protobuf.WireFormat.WireType)">
  9618. <summary>
  9619. Encodes and writes a tag.
  9620. </summary>
  9621. <param name="fieldNumber">The number of the field to write the tag for</param>
  9622. <param name="type">The wire format type of the tag to write</param>
  9623. </member>
  9624. <member name="M:Google.Protobuf.WriteContext.WriteTag(System.UInt32)">
  9625. <summary>
  9626. Writes an already-encoded tag.
  9627. </summary>
  9628. <param name="tag">The encoded tag</param>
  9629. </member>
  9630. <member name="M:Google.Protobuf.WriteContext.WriteRawTag(System.Byte)">
  9631. <summary>
  9632. Writes the given single-byte tag.
  9633. </summary>
  9634. <param name="b1">The encoded tag</param>
  9635. </member>
  9636. <member name="M:Google.Protobuf.WriteContext.WriteRawTag(System.Byte,System.Byte)">
  9637. <summary>
  9638. Writes the given two-byte tag.
  9639. </summary>
  9640. <param name="b1">The first byte of the encoded tag</param>
  9641. <param name="b2">The second byte of the encoded tag</param>
  9642. </member>
  9643. <member name="M:Google.Protobuf.WriteContext.WriteRawTag(System.Byte,System.Byte,System.Byte)">
  9644. <summary>
  9645. Writes the given three-byte tag.
  9646. </summary>
  9647. <param name="b1">The first byte of the encoded tag</param>
  9648. <param name="b2">The second byte of the encoded tag</param>
  9649. <param name="b3">The third byte of the encoded tag</param>
  9650. </member>
  9651. <member name="M:Google.Protobuf.WriteContext.WriteRawTag(System.Byte,System.Byte,System.Byte,System.Byte)">
  9652. <summary>
  9653. Writes the given four-byte tag.
  9654. </summary>
  9655. <param name="b1">The first byte of the encoded tag</param>
  9656. <param name="b2">The second byte of the encoded tag</param>
  9657. <param name="b3">The third byte of the encoded tag</param>
  9658. <param name="b4">The fourth byte of the encoded tag</param>
  9659. </member>
  9660. <member name="M:Google.Protobuf.WriteContext.WriteRawTag(System.Byte,System.Byte,System.Byte,System.Byte,System.Byte)">
  9661. <summary>
  9662. Writes the given five-byte tag.
  9663. </summary>
  9664. <param name="b1">The first byte of the encoded tag</param>
  9665. <param name="b2">The second byte of the encoded tag</param>
  9666. <param name="b3">The third byte of the encoded tag</param>
  9667. <param name="b4">The fourth byte of the encoded tag</param>
  9668. <param name="b5">The fifth byte of the encoded tag</param>
  9669. </member>
  9670. <member name="T:Google.Protobuf.WritingPrimitives">
  9671. <summary>
  9672. Primitives for encoding protobuf wire format.
  9673. </summary>
  9674. </member>
  9675. <member name="M:Google.Protobuf.WritingPrimitives.WriteDouble(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Double)">
  9676. <summary>
  9677. Writes a double field value, without a tag, to the stream.
  9678. </summary>
  9679. </member>
  9680. <member name="M:Google.Protobuf.WritingPrimitives.WriteFloat(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Single)">
  9681. <summary>
  9682. Writes a float field value, without a tag, to the stream.
  9683. </summary>
  9684. </member>
  9685. <member name="M:Google.Protobuf.WritingPrimitives.WriteUInt64(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.UInt64)">
  9686. <summary>
  9687. Writes a uint64 field value, without a tag, to the stream.
  9688. </summary>
  9689. </member>
  9690. <member name="M:Google.Protobuf.WritingPrimitives.WriteInt64(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Int64)">
  9691. <summary>
  9692. Writes an int64 field value, without a tag, to the stream.
  9693. </summary>
  9694. </member>
  9695. <member name="M:Google.Protobuf.WritingPrimitives.WriteInt32(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Int32)">
  9696. <summary>
  9697. Writes an int32 field value, without a tag, to the stream.
  9698. </summary>
  9699. </member>
  9700. <member name="M:Google.Protobuf.WritingPrimitives.WriteFixed64(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.UInt64)">
  9701. <summary>
  9702. Writes a fixed64 field value, without a tag, to the stream.
  9703. </summary>
  9704. </member>
  9705. <member name="M:Google.Protobuf.WritingPrimitives.WriteFixed32(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.UInt32)">
  9706. <summary>
  9707. Writes a fixed32 field value, without a tag, to the stream.
  9708. </summary>
  9709. </member>
  9710. <member name="M:Google.Protobuf.WritingPrimitives.WriteBool(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Boolean)">
  9711. <summary>
  9712. Writes a bool field value, without a tag, to the stream.
  9713. </summary>
  9714. </member>
  9715. <member name="M:Google.Protobuf.WritingPrimitives.WriteString(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.String)">
  9716. <summary>
  9717. Writes a string field value, without a tag, to the stream.
  9718. The data is length-prefixed.
  9719. </summary>
  9720. </member>
  9721. <member name="M:Google.Protobuf.WritingPrimitives.WriteBytes(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,Google.Protobuf.ByteString)">
  9722. <summary>
  9723. Write a byte string, without a tag, to the stream.
  9724. The data is length-prefixed.
  9725. </summary>
  9726. </member>
  9727. <member name="M:Google.Protobuf.WritingPrimitives.WriteUInt32(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.UInt32)">
  9728. <summary>
  9729. Writes a uint32 value, without a tag, to the stream.
  9730. </summary>
  9731. </member>
  9732. <member name="M:Google.Protobuf.WritingPrimitives.WriteEnum(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Int32)">
  9733. <summary>
  9734. Writes an enum value, without a tag, to the stream.
  9735. </summary>
  9736. </member>
  9737. <member name="M:Google.Protobuf.WritingPrimitives.WriteSFixed32(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Int32)">
  9738. <summary>
  9739. Writes an sfixed32 value, without a tag, to the stream.
  9740. </summary>
  9741. </member>
  9742. <member name="M:Google.Protobuf.WritingPrimitives.WriteSFixed64(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Int64)">
  9743. <summary>
  9744. Writes an sfixed64 value, without a tag, to the stream.
  9745. </summary>
  9746. </member>
  9747. <member name="M:Google.Protobuf.WritingPrimitives.WriteSInt32(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Int32)">
  9748. <summary>
  9749. Writes an sint32 value, without a tag, to the stream.
  9750. </summary>
  9751. </member>
  9752. <member name="M:Google.Protobuf.WritingPrimitives.WriteSInt64(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Int64)">
  9753. <summary>
  9754. Writes an sint64 value, without a tag, to the stream.
  9755. </summary>
  9756. </member>
  9757. <member name="M:Google.Protobuf.WritingPrimitives.WriteLength(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Int32)">
  9758. <summary>
  9759. Writes a length (in bytes) for length-delimited data.
  9760. </summary>
  9761. <remarks>
  9762. This method simply writes a rawint, but exists for clarity in calling code.
  9763. </remarks>
  9764. </member>
  9765. <member name="M:Google.Protobuf.WritingPrimitives.WriteRawVarint32(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.UInt32)">
  9766. <summary>
  9767. Writes a 32 bit value as a varint. The fast route is taken when
  9768. there's enough buffer space left to whizz through without checking
  9769. for each byte; otherwise, we resort to calling WriteRawByte each time.
  9770. </summary>
  9771. </member>
  9772. <member name="M:Google.Protobuf.WritingPrimitives.WriteRawBytes(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Byte[])">
  9773. <summary>
  9774. Writes out an array of bytes.
  9775. </summary>
  9776. </member>
  9777. <member name="M:Google.Protobuf.WritingPrimitives.WriteRawBytes(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Byte[],System.Int32,System.Int32)">
  9778. <summary>
  9779. Writes out part of an array of bytes.
  9780. </summary>
  9781. </member>
  9782. <member name="M:Google.Protobuf.WritingPrimitives.WriteRawBytes(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.ReadOnlySpan{System.Byte})">
  9783. <summary>
  9784. Writes out part of an array of bytes.
  9785. </summary>
  9786. </member>
  9787. <member name="M:Google.Protobuf.WritingPrimitives.WriteTag(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Int32,Google.Protobuf.WireFormat.WireType)">
  9788. <summary>
  9789. Encodes and writes a tag.
  9790. </summary>
  9791. </member>
  9792. <member name="M:Google.Protobuf.WritingPrimitives.WriteTag(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.UInt32)">
  9793. <summary>
  9794. Writes an already-encoded tag.
  9795. </summary>
  9796. </member>
  9797. <member name="M:Google.Protobuf.WritingPrimitives.WriteRawTag(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Byte)">
  9798. <summary>
  9799. Writes the given single-byte tag directly to the stream.
  9800. </summary>
  9801. </member>
  9802. <member name="M:Google.Protobuf.WritingPrimitives.WriteRawTag(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Byte,System.Byte)">
  9803. <summary>
  9804. Writes the given two-byte tag directly to the stream.
  9805. </summary>
  9806. </member>
  9807. <member name="M:Google.Protobuf.WritingPrimitives.WriteRawTag(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Byte,System.Byte,System.Byte)">
  9808. <summary>
  9809. Writes the given three-byte tag directly to the stream.
  9810. </summary>
  9811. </member>
  9812. <member name="M:Google.Protobuf.WritingPrimitives.WriteRawTag(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Byte,System.Byte,System.Byte,System.Byte)">
  9813. <summary>
  9814. Writes the given four-byte tag directly to the stream.
  9815. </summary>
  9816. </member>
  9817. <member name="M:Google.Protobuf.WritingPrimitives.WriteRawTag(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte)">
  9818. <summary>
  9819. Writes the given five-byte tag directly to the stream.
  9820. </summary>
  9821. </member>
  9822. <member name="M:Google.Protobuf.WritingPrimitives.EncodeZigZag32(System.Int32)">
  9823. <summary>
  9824. Encode a 32-bit value with ZigZag encoding.
  9825. </summary>
  9826. <remarks>
  9827. ZigZag encodes signed integers into values that can be efficiently
  9828. encoded with varint. (Otherwise, negative values must be
  9829. sign-extended to 64 bits to be varint encoded, thus always taking
  9830. 10 bytes on the wire.)
  9831. </remarks>
  9832. </member>
  9833. <member name="M:Google.Protobuf.WritingPrimitives.EncodeZigZag64(System.Int64)">
  9834. <summary>
  9835. Encode a 64-bit value with ZigZag encoding.
  9836. </summary>
  9837. <remarks>
  9838. ZigZag encodes signed integers into values that can be efficiently
  9839. encoded with varint. (Otherwise, negative values must be
  9840. sign-extended to 64 bits to be varint encoded, thus always taking
  9841. 10 bytes on the wire.)
  9842. </remarks>
  9843. </member>
  9844. <member name="T:Google.Protobuf.WritingPrimitivesMessages">
  9845. <summary>
  9846. Writing messages / groups.
  9847. </summary>
  9848. </member>
  9849. <member name="M:Google.Protobuf.WritingPrimitivesMessages.WriteMessage(Google.Protobuf.WriteContext@,Google.Protobuf.IMessage)">
  9850. <summary>
  9851. Writes a message, without a tag.
  9852. The data is length-prefixed.
  9853. </summary>
  9854. </member>
  9855. <member name="M:Google.Protobuf.WritingPrimitivesMessages.WriteGroup(Google.Protobuf.WriteContext@,Google.Protobuf.IMessage)">
  9856. <summary>
  9857. Writes a group, without a tag.
  9858. </summary>
  9859. </member>
  9860. <member name="M:Google.Protobuf.WritingPrimitivesMessages.WriteRawMessage(Google.Protobuf.WriteContext@,Google.Protobuf.IMessage)">
  9861. <summary>
  9862. Writes a message, without a tag.
  9863. Message will be written without a length prefix.
  9864. </summary>
  9865. </member>
  9866. </members>
  9867. </doc>