LC.Google.Protobuf.xml 474 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>LC.Google.Protobuf</name>
  5. </assembly>
  6. <members>
  7. <member name="T:LC.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:LC.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:LC.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:LC.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:LC.Google.Protobuf.ByteString">
  28. <summary>
  29. Immutable array of bytes.
  30. </summary>
  31. </member>
  32. <member name="T:LC.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:LC.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:LC.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:LC.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:LC.Google.Protobuf.ByteString.Empty">
  55. <summary>
  56. Returns an empty ByteString.
  57. </summary>
  58. </member>
  59. <member name="P:LC.Google.Protobuf.ByteString.Length">
  60. <summary>
  61. Returns the length of this ByteString in bytes.
  62. </summary>
  63. </member>
  64. <member name="P:LC.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="M:LC.Google.Protobuf.ByteString.ToByteArray">
  70. <summary>
  71. Converts this <see cref="T:LC.Google.Protobuf.ByteString"/> into a byte array.
  72. </summary>
  73. <remarks>The data is copied - changes to the returned array will not be reflected in this <c>ByteString</c>.</remarks>
  74. <returns>A byte array with the same data as this <c>ByteString</c>.</returns>
  75. </member>
  76. <member name="M:LC.Google.Protobuf.ByteString.ToBase64">
  77. <summary>
  78. Converts this <see cref="T:LC.Google.Protobuf.ByteString"/> into a standard base64 representation.
  79. </summary>
  80. <returns>A base64 representation of this <c>ByteString</c>.</returns>
  81. </member>
  82. <member name="M:LC.Google.Protobuf.ByteString.FromBase64(System.String)">
  83. <summary>
  84. Constructs a <see cref="T:LC.Google.Protobuf.ByteString" /> from the Base64 Encoded String.
  85. </summary>
  86. </member>
  87. <member name="M:LC.Google.Protobuf.ByteString.FromStream(System.IO.Stream)">
  88. <summary>
  89. Constructs a <see cref="T:LC.Google.Protobuf.ByteString"/> from data in the given stream, synchronously.
  90. </summary>
  91. <remarks>If successful, <paramref name="stream"/> will be read completely, from the position
  92. at the start of the call.</remarks>
  93. <param name="stream">The stream to copy into a ByteString.</param>
  94. <returns>A ByteString with content read from the given stream.</returns>
  95. </member>
  96. <member name="M:LC.Google.Protobuf.ByteString.FromStreamAsync(System.IO.Stream,System.Threading.CancellationToken)">
  97. <summary>
  98. Constructs a <see cref="T:LC.Google.Protobuf.ByteString"/> from data in the given stream, asynchronously.
  99. </summary>
  100. <remarks>If successful, <paramref name="stream"/> will be read completely, from the position
  101. at the start of the call.</remarks>
  102. <param name="stream">The stream to copy into a ByteString.</param>
  103. <param name="cancellationToken">The cancellation token to use when reading from the stream, if any.</param>
  104. <returns>A ByteString with content read from the given stream.</returns>
  105. </member>
  106. <member name="M:LC.Google.Protobuf.ByteString.CopyFrom(System.Byte[])">
  107. <summary>
  108. Constructs a <see cref="T:LC.Google.Protobuf.ByteString" /> from the given array. The contents
  109. are copied, so further modifications to the array will not
  110. be reflected in the returned ByteString.
  111. This method can also be invoked in <c>ByteString.CopyFrom(0xaa, 0xbb, ...)</c> form
  112. which is primarily useful for testing.
  113. </summary>
  114. </member>
  115. <member name="M:LC.Google.Protobuf.ByteString.CopyFrom(System.Byte[],System.Int32,System.Int32)">
  116. <summary>
  117. Constructs a <see cref="T:LC.Google.Protobuf.ByteString" /> from a portion of a byte array.
  118. </summary>
  119. </member>
  120. <member name="M:LC.Google.Protobuf.ByteString.CopyFrom(System.String,System.Text.Encoding)">
  121. <summary>
  122. Creates a new <see cref="T:LC.Google.Protobuf.ByteString" /> by encoding the specified text with
  123. the given encoding.
  124. </summary>
  125. </member>
  126. <member name="M:LC.Google.Protobuf.ByteString.CopyFromUtf8(System.String)">
  127. <summary>
  128. Creates a new <see cref="T:LC.Google.Protobuf.ByteString" /> by encoding the specified text in UTF-8.
  129. </summary>
  130. </member>
  131. <member name="P:LC.Google.Protobuf.ByteString.Item(System.Int32)">
  132. <summary>
  133. Retuns the byte at the given index.
  134. </summary>
  135. </member>
  136. <member name="M:LC.Google.Protobuf.ByteString.ToString(System.Text.Encoding)">
  137. <summary>
  138. Converts this <see cref="T:LC.Google.Protobuf.ByteString"/> into a string by applying the given encoding.
  139. </summary>
  140. <remarks>
  141. This method should only be used to convert binary data which was the result of encoding
  142. text with the given encoding.
  143. </remarks>
  144. <param name="encoding">The encoding to use to decode the binary data into text.</param>
  145. <returns>The result of decoding the binary data with the given decoding.</returns>
  146. </member>
  147. <member name="M:LC.Google.Protobuf.ByteString.ToStringUtf8">
  148. <summary>
  149. Converts this <see cref="T:LC.Google.Protobuf.ByteString"/> into a string by applying the UTF-8 encoding.
  150. </summary>
  151. <remarks>
  152. This method should only be used to convert binary data which was the result of encoding
  153. text with UTF-8.
  154. </remarks>
  155. <returns>The result of decoding the binary data with the given decoding.</returns>
  156. </member>
  157. <member name="M:LC.Google.Protobuf.ByteString.GetEnumerator">
  158. <summary>
  159. Returns an iterator over the bytes in this <see cref="T:LC.Google.Protobuf.ByteString"/>.
  160. </summary>
  161. <returns>An iterator over the bytes in this object.</returns>
  162. </member>
  163. <member name="M:LC.Google.Protobuf.ByteString.System#Collections#IEnumerable#GetEnumerator">
  164. <summary>
  165. Returns an iterator over the bytes in this <see cref="T:LC.Google.Protobuf.ByteString"/>.
  166. </summary>
  167. <returns>An iterator over the bytes in this object.</returns>
  168. </member>
  169. <member name="M:LC.Google.Protobuf.ByteString.CreateCodedInput">
  170. <summary>
  171. Creates a CodedInputStream from this ByteString's data.
  172. </summary>
  173. </member>
  174. <member name="M:LC.Google.Protobuf.ByteString.op_Equality(LC.Google.Protobuf.ByteString,LC.Google.Protobuf.ByteString)">
  175. <summary>
  176. Compares two byte strings for equality.
  177. </summary>
  178. <param name="lhs">The first byte string to compare.</param>
  179. <param name="rhs">The second byte string to compare.</param>
  180. <returns><c>true</c> if the byte strings are equal; false otherwise.</returns>
  181. </member>
  182. <member name="M:LC.Google.Protobuf.ByteString.op_Inequality(LC.Google.Protobuf.ByteString,LC.Google.Protobuf.ByteString)">
  183. <summary>
  184. Compares two byte strings for inequality.
  185. </summary>
  186. <param name="lhs">The first byte string to compare.</param>
  187. <param name="rhs">The second byte string to compare.</param>
  188. <returns><c>false</c> if the byte strings are equal; true otherwise.</returns>
  189. </member>
  190. <member name="M:LC.Google.Protobuf.ByteString.Equals(System.Object)">
  191. <summary>
  192. Compares this byte string with another object.
  193. </summary>
  194. <param name="obj">The object to compare this with.</param>
  195. <returns><c>true</c> if <paramref name="obj"/> refers to an equal <see cref="T:LC.Google.Protobuf.ByteString"/>; <c>false</c> otherwise.</returns>
  196. </member>
  197. <member name="M:LC.Google.Protobuf.ByteString.GetHashCode">
  198. <summary>
  199. Returns a hash code for this object. Two equal byte strings
  200. will return the same hash code.
  201. </summary>
  202. <returns>A hash code for this object.</returns>
  203. </member>
  204. <member name="M:LC.Google.Protobuf.ByteString.Equals(LC.Google.Protobuf.ByteString)">
  205. <summary>
  206. Compares this byte string with another.
  207. </summary>
  208. <param name="other">The <see cref="T:LC.Google.Protobuf.ByteString"/> to compare this with.</param>
  209. <returns><c>true</c> if <paramref name="other"/> refers to an equal byte string; <c>false</c> otherwise.</returns>
  210. </member>
  211. <member name="M:LC.Google.Protobuf.ByteString.WriteRawBytesTo(LC.Google.Protobuf.CodedOutputStream)">
  212. <summary>
  213. Used internally by CodedOutputStream to avoid creating a copy for the write
  214. </summary>
  215. </member>
  216. <member name="M:LC.Google.Protobuf.ByteString.CopyTo(System.Byte[],System.Int32)">
  217. <summary>
  218. Copies the entire byte array to the destination array provided at the offset specified.
  219. </summary>
  220. </member>
  221. <member name="M:LC.Google.Protobuf.ByteString.WriteTo(System.IO.Stream)">
  222. <summary>
  223. Writes the entire byte array to the provided stream
  224. </summary>
  225. </member>
  226. <member name="T:LC.Google.Protobuf.CodedInputStream">
  227. <summary>
  228. Reads and decodes protocol message fields.
  229. </summary>
  230. <remarks>
  231. <para>
  232. This class is generally used by generated code to read appropriate
  233. primitives from the stream. It effectively encapsulates the lowest
  234. levels of protocol buffer format.
  235. </para>
  236. <para>
  237. Repeated fields and map fields are not handled by this class; use <see cref="T:LC.Google.Protobuf.Collections.RepeatedField`1"/>
  238. and <see cref="T:LC.Google.Protobuf.Collections.MapField`2"/> to serialize such fields.
  239. </para>
  240. </remarks>
  241. </member>
  242. <member name="F:LC.Google.Protobuf.CodedInputStream.leaveOpen">
  243. <summary>
  244. Whether to leave the underlying stream open when disposing of this stream.
  245. This is always true when there's no stream.
  246. </summary>
  247. </member>
  248. <member name="F:LC.Google.Protobuf.CodedInputStream.buffer">
  249. <summary>
  250. Buffer of data read from the stream or provided at construction time.
  251. </summary>
  252. </member>
  253. <member name="F:LC.Google.Protobuf.CodedInputStream.bufferSize">
  254. <summary>
  255. The index of the buffer at which we need to refill from the stream (if there is one).
  256. </summary>
  257. </member>
  258. <member name="F:LC.Google.Protobuf.CodedInputStream.bufferPos">
  259. <summary>
  260. The position within the current buffer (i.e. the next byte to read)
  261. </summary>
  262. </member>
  263. <member name="F:LC.Google.Protobuf.CodedInputStream.input">
  264. <summary>
  265. The stream to read further input from, or null if the byte array buffer was provided
  266. directly on construction, with no further data available.
  267. </summary>
  268. </member>
  269. <member name="F:LC.Google.Protobuf.CodedInputStream.lastTag">
  270. <summary>
  271. The last tag we read. 0 indicates we've read to the end of the stream
  272. (or haven't read anything yet).
  273. </summary>
  274. </member>
  275. <member name="F:LC.Google.Protobuf.CodedInputStream.nextTag">
  276. <summary>
  277. The next tag, used to store the value read by PeekTag.
  278. </summary>
  279. </member>
  280. <member name="F:LC.Google.Protobuf.CodedInputStream.totalBytesRetired">
  281. <summary>
  282. The total number of bytes read before the current buffer. The
  283. total bytes read up to the current position can be computed as
  284. totalBytesRetired + bufferPos.
  285. </summary>
  286. </member>
  287. <member name="F:LC.Google.Protobuf.CodedInputStream.currentLimit">
  288. <summary>
  289. The absolute position of the end of the current message.
  290. </summary>
  291. </member>
  292. <member name="M:LC.Google.Protobuf.CodedInputStream.#ctor(System.Byte[])">
  293. <summary>
  294. Creates a new CodedInputStream reading data from the given byte array.
  295. </summary>
  296. </member>
  297. <member name="M:LC.Google.Protobuf.CodedInputStream.#ctor(System.Byte[],System.Int32,System.Int32)">
  298. <summary>
  299. Creates a new <see cref="T:LC.Google.Protobuf.CodedInputStream"/> that reads from the given byte array slice.
  300. </summary>
  301. </member>
  302. <member name="M:LC.Google.Protobuf.CodedInputStream.#ctor(System.IO.Stream)">
  303. <summary>
  304. Creates a new <see cref="T:LC.Google.Protobuf.CodedInputStream"/> reading data from the given stream, which will be disposed
  305. when the returned object is disposed.
  306. </summary>
  307. <param name="input">The stream to read from.</param>
  308. </member>
  309. <member name="M:LC.Google.Protobuf.CodedInputStream.#ctor(System.IO.Stream,System.Boolean)">
  310. <summary>
  311. Creates a new <see cref="T:LC.Google.Protobuf.CodedInputStream"/> reading data from the given stream.
  312. </summary>
  313. <param name="input">The stream to read from.</param>
  314. <param name="leaveOpen"><c>true</c> to leave <paramref name="input"/> open when the returned
  315. <c cref="T:LC.Google.Protobuf.CodedInputStream"/> is disposed; <c>false</c> to dispose of the given stream when the
  316. returned object is disposed.</param>
  317. </member>
  318. <member name="M:LC.Google.Protobuf.CodedInputStream.#ctor(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Boolean)">
  319. <summary>
  320. Creates a new CodedInputStream reading data from the given
  321. stream and buffer, using the default limits.
  322. </summary>
  323. </member>
  324. <member name="M:LC.Google.Protobuf.CodedInputStream.#ctor(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
  325. <summary>
  326. Creates a new CodedInputStream reading data from the given
  327. stream and buffer, using the specified limits.
  328. </summary>
  329. <remarks>
  330. This chains to the version with the default limits instead of vice versa to avoid
  331. having to check that the default values are valid every time.
  332. </remarks>
  333. </member>
  334. <member name="M:LC.Google.Protobuf.CodedInputStream.CreateWithLimits(System.IO.Stream,System.Int32,System.Int32)">
  335. <summary>
  336. Creates a <see cref="T:LC.Google.Protobuf.CodedInputStream"/> with the specified size and recursion limits, reading
  337. from an input stream.
  338. </summary>
  339. <remarks>
  340. This method exists separately from the constructor to reduce the number of constructor overloads.
  341. It is likely to be used considerably less frequently than the constructors, as the default limits
  342. are suitable for most use cases.
  343. </remarks>
  344. <param name="input">The input stream to read from</param>
  345. <param name="sizeLimit">The total limit of data to read from the stream.</param>
  346. <param name="recursionLimit">The maximum recursion depth to allow while reading.</param>
  347. <returns>A <c>CodedInputStream</c> reading from <paramref name="input"/> with the specified size
  348. and recursion limits.</returns>
  349. </member>
  350. <member name="P:LC.Google.Protobuf.CodedInputStream.Position">
  351. <summary>
  352. Returns the current position in the input stream, or the position in the input buffer
  353. </summary>
  354. </member>
  355. <member name="P:LC.Google.Protobuf.CodedInputStream.LastTag">
  356. <summary>
  357. Returns the last tag read, or 0 if no tags have been read or we've read beyond
  358. the end of the stream.
  359. </summary>
  360. </member>
  361. <member name="P:LC.Google.Protobuf.CodedInputStream.SizeLimit">
  362. <summary>
  363. Returns the size limit for this stream.
  364. </summary>
  365. <remarks>
  366. This limit is applied when reading from the underlying stream, as a sanity check. It is
  367. not applied when reading from a byte array data source without an underlying stream.
  368. The default value is Int32.MaxValue.
  369. </remarks>
  370. <value>
  371. The size limit.
  372. </value>
  373. </member>
  374. <member name="P:LC.Google.Protobuf.CodedInputStream.RecursionLimit">
  375. <summary>
  376. Returns the recursion limit for this stream. This limit is applied whilst reading messages,
  377. to avoid maliciously-recursive data.
  378. </summary>
  379. <remarks>
  380. The default limit is 100.
  381. </remarks>
  382. <value>
  383. The recursion limit for this stream.
  384. </value>
  385. </member>
  386. <member name="P:LC.Google.Protobuf.CodedInputStream.DiscardUnknownFields">
  387. <summary>
  388. Internal-only property; when set to true, unknown fields will be discarded while parsing.
  389. </summary>
  390. </member>
  391. <member name="P:LC.Google.Protobuf.CodedInputStream.ExtensionRegistry">
  392. <summary>
  393. Internal-only property; provides extension identifiers to compatible messages while parsing.
  394. </summary>
  395. </member>
  396. <member name="M:LC.Google.Protobuf.CodedInputStream.Dispose">
  397. <summary>
  398. Disposes of this instance, potentially closing any underlying stream.
  399. </summary>
  400. <remarks>
  401. As there is no flushing to perform here, disposing of a <see cref="T:LC.Google.Protobuf.CodedInputStream"/> which
  402. was constructed with the <c>leaveOpen</c> option parameter set to <c>true</c> (or one which
  403. was constructed to read from a byte array) has no effect.
  404. </remarks>
  405. </member>
  406. <member name="M:LC.Google.Protobuf.CodedInputStream.CheckReadEndOfStreamTag">
  407. <summary>
  408. Verifies that the last call to ReadTag() returned tag 0 - in other words,
  409. we've reached the end of the stream when we expected to.
  410. </summary>
  411. <exception cref="T:LC.Google.Protobuf.InvalidProtocolBufferException">The
  412. tag read was not the one specified</exception>
  413. </member>
  414. <member name="M:LC.Google.Protobuf.CodedInputStream.PeekTag">
  415. <summary>
  416. Peeks at the next field tag. This is like calling <see cref="M:LC.Google.Protobuf.CodedInputStream.ReadTag"/>, but the
  417. tag is not consumed. (So a subsequent call to <see cref="M:LC.Google.Protobuf.CodedInputStream.ReadTag"/> will return the
  418. same value.)
  419. </summary>
  420. </member>
  421. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadTag">
  422. <summary>
  423. Reads a field tag, returning the tag of 0 for "end of stream".
  424. </summary>
  425. <remarks>
  426. If this method returns 0, it doesn't necessarily mean the end of all
  427. the data in this CodedInputStream; it may be the end of the logical stream
  428. for an embedded message, for example.
  429. </remarks>
  430. <returns>The next field tag, or 0 for end of stream. (0 is never a valid tag.)</returns>
  431. </member>
  432. <member name="M:LC.Google.Protobuf.CodedInputStream.SkipLastField">
  433. <summary>
  434. Skips the data for the field with the tag we've just read.
  435. This should be called directly after <see cref="M:LC.Google.Protobuf.CodedInputStream.ReadTag"/>, when
  436. the caller wishes to skip an unknown field.
  437. </summary>
  438. <remarks>
  439. This method throws <see cref="T:LC.Google.Protobuf.InvalidProtocolBufferException"/> if the last-read tag was an end-group tag.
  440. If a caller wishes to skip a group, they should skip the whole group, by calling this method after reading the
  441. start-group tag. This behavior allows callers to call this method on any field they don't understand, correctly
  442. resulting in an error if an end-group tag has not been paired with an earlier start-group tag.
  443. </remarks>
  444. <exception cref="T:LC.Google.Protobuf.InvalidProtocolBufferException">The last tag was an end-group tag</exception>
  445. <exception cref="T:System.InvalidOperationException">The last read operation read to the end of the logical stream</exception>
  446. </member>
  447. <member name="M:LC.Google.Protobuf.CodedInputStream.SkipGroup(System.UInt32)">
  448. <summary>
  449. Skip a group.
  450. </summary>
  451. </member>
  452. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadDouble">
  453. <summary>
  454. Reads a double field from the stream.
  455. </summary>
  456. </member>
  457. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadFloat">
  458. <summary>
  459. Reads a float field from the stream.
  460. </summary>
  461. </member>
  462. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadUInt64">
  463. <summary>
  464. Reads a uint64 field from the stream.
  465. </summary>
  466. </member>
  467. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadInt64">
  468. <summary>
  469. Reads an int64 field from the stream.
  470. </summary>
  471. </member>
  472. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadInt32">
  473. <summary>
  474. Reads an int32 field from the stream.
  475. </summary>
  476. </member>
  477. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadFixed64">
  478. <summary>
  479. Reads a fixed64 field from the stream.
  480. </summary>
  481. </member>
  482. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadFixed32">
  483. <summary>
  484. Reads a fixed32 field from the stream.
  485. </summary>
  486. </member>
  487. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadBool">
  488. <summary>
  489. Reads a bool field from the stream.
  490. </summary>
  491. </member>
  492. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadString">
  493. <summary>
  494. Reads a string field from the stream.
  495. </summary>
  496. </member>
  497. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadMessage(LC.Google.Protobuf.IMessage)">
  498. <summary>
  499. Reads an embedded message field value from the stream.
  500. </summary>
  501. </member>
  502. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadGroup(LC.Google.Protobuf.IMessage)">
  503. <summary>
  504. Reads an embedded group field from the stream.
  505. </summary>
  506. </member>
  507. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadGroup(System.Int32,LC.Google.Protobuf.UnknownFieldSet)">
  508. <summary>
  509. Reads an embedded group unknown field from the stream.
  510. </summary>
  511. </member>
  512. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadBytes">
  513. <summary>
  514. Reads a bytes field value from the stream.
  515. </summary>
  516. </member>
  517. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadUInt32">
  518. <summary>
  519. Reads a uint32 field value from the stream.
  520. </summary>
  521. </member>
  522. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadEnum">
  523. <summary>
  524. Reads an enum field value from the stream.
  525. </summary>
  526. </member>
  527. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadSFixed32">
  528. <summary>
  529. Reads an sfixed32 field value from the stream.
  530. </summary>
  531. </member>
  532. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadSFixed64">
  533. <summary>
  534. Reads an sfixed64 field value from the stream.
  535. </summary>
  536. </member>
  537. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadSInt32">
  538. <summary>
  539. Reads an sint32 field value from the stream.
  540. </summary>
  541. </member>
  542. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadSInt64">
  543. <summary>
  544. Reads an sint64 field value from the stream.
  545. </summary>
  546. </member>
  547. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadLength">
  548. <summary>
  549. Reads a length for length-delimited data.
  550. </summary>
  551. <remarks>
  552. This is internally just reading a varint, but this method exists
  553. to make the calling code clearer.
  554. </remarks>
  555. </member>
  556. <member name="M:LC.Google.Protobuf.CodedInputStream.MaybeConsumeTag(System.UInt32)">
  557. <summary>
  558. Peeks at the next tag in the stream. If it matches <paramref name="tag"/>,
  559. the tag is consumed and the method returns <c>true</c>; otherwise, the
  560. stream is left in the original position and the method returns <c>false</c>.
  561. </summary>
  562. </member>
  563. <member name="M:LC.Google.Protobuf.CodedInputStream.SlowReadRawVarint32">
  564. <summary>
  565. Same code as ReadRawVarint32, but read each byte individually, checking for
  566. buffer overflow.
  567. </summary>
  568. </member>
  569. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadRawVarint32">
  570. <summary>
  571. Reads a raw Varint from the stream. If larger than 32 bits, discard the upper bits.
  572. This method is optimised for the case where we've got lots of data in the buffer.
  573. That means we can check the size just once, then just read directly from the buffer
  574. without constant rechecking of the buffer length.
  575. </summary>
  576. </member>
  577. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadRawVarint32(System.IO.Stream)">
  578. <summary>
  579. Reads a varint from the input one byte at a time, so that it does not
  580. read any bytes after the end of the varint. If you simply wrapped the
  581. stream in a CodedInputStream and used ReadRawVarint32(Stream)
  582. then you would probably end up reading past the end of the varint since
  583. CodedInputStream buffers its input.
  584. </summary>
  585. <param name="input"></param>
  586. <returns></returns>
  587. </member>
  588. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadRawVarint64">
  589. <summary>
  590. Reads a raw varint from the stream.
  591. </summary>
  592. </member>
  593. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadRawLittleEndian32">
  594. <summary>
  595. Reads a 32-bit little-endian integer from the stream.
  596. </summary>
  597. </member>
  598. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadRawLittleEndian64">
  599. <summary>
  600. Reads a 64-bit little-endian integer from the stream.
  601. </summary>
  602. </member>
  603. <member name="M:LC.Google.Protobuf.CodedInputStream.DecodeZigZag32(System.UInt32)">
  604. <summary>
  605. Decode a 32-bit value with ZigZag encoding.
  606. </summary>
  607. <remarks>
  608. ZigZag encodes signed integers into values that can be efficiently
  609. encoded with varint. (Otherwise, negative values must be
  610. sign-extended to 64 bits to be varint encoded, thus always taking
  611. 10 bytes on the wire.)
  612. </remarks>
  613. </member>
  614. <member name="M:LC.Google.Protobuf.CodedInputStream.DecodeZigZag64(System.UInt64)">
  615. <summary>
  616. Decode a 32-bit value with ZigZag encoding.
  617. </summary>
  618. <remarks>
  619. ZigZag encodes signed integers into values that can be efficiently
  620. encoded with varint. (Otherwise, negative values must be
  621. sign-extended to 64 bits to be varint encoded, thus always taking
  622. 10 bytes on the wire.)
  623. </remarks>
  624. </member>
  625. <member name="M:LC.Google.Protobuf.CodedInputStream.PushLimit(System.Int32)">
  626. <summary>
  627. Sets currentLimit to (current position) + byteLimit. This is called
  628. when descending into a length-delimited embedded message. The previous
  629. limit is returned.
  630. </summary>
  631. <returns>The old limit.</returns>
  632. </member>
  633. <member name="M:LC.Google.Protobuf.CodedInputStream.PopLimit(System.Int32)">
  634. <summary>
  635. Discards the current limit, returning the previous limit.
  636. </summary>
  637. </member>
  638. <member name="P:LC.Google.Protobuf.CodedInputStream.ReachedLimit">
  639. <summary>
  640. Returns whether or not all the data before the limit has been read.
  641. </summary>
  642. <returns></returns>
  643. </member>
  644. <member name="P:LC.Google.Protobuf.CodedInputStream.IsAtEnd">
  645. <summary>
  646. Returns true if the stream has reached the end of the input. This is the
  647. case if either the end of the underlying input source has been reached or
  648. the stream has reached a limit created using PushLimit.
  649. </summary>
  650. </member>
  651. <member name="M:LC.Google.Protobuf.CodedInputStream.RefillBuffer(System.Boolean)">
  652. <summary>
  653. Called when buffer is empty to read more bytes from the
  654. input. If <paramref name="mustSucceed"/> is true, RefillBuffer() gurantees that
  655. either there will be at least one byte in the buffer when it returns
  656. or it will throw an exception. If <paramref name="mustSucceed"/> is false,
  657. RefillBuffer() returns false if no more bytes were available.
  658. </summary>
  659. <param name="mustSucceed"></param>
  660. <returns></returns>
  661. </member>
  662. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadRawByte">
  663. <summary>
  664. Read one byte from the input.
  665. </summary>
  666. <exception cref="T:LC.Google.Protobuf.InvalidProtocolBufferException">
  667. the end of the stream or the current limit was reached
  668. </exception>
  669. </member>
  670. <member name="M:LC.Google.Protobuf.CodedInputStream.ReadRawBytes(System.Int32)">
  671. <summary>
  672. Reads a fixed size of bytes from the input.
  673. </summary>
  674. <exception cref="T:LC.Google.Protobuf.InvalidProtocolBufferException">
  675. the end of the stream or the current limit was reached
  676. </exception>
  677. </member>
  678. <member name="M:LC.Google.Protobuf.CodedInputStream.SkipRawBytes(System.Int32)">
  679. <summary>
  680. Reads and discards <paramref name="size"/> bytes.
  681. </summary>
  682. <exception cref="T:LC.Google.Protobuf.InvalidProtocolBufferException">the end of the stream
  683. or the current limit was reached</exception>
  684. </member>
  685. <member name="M:LC.Google.Protobuf.CodedInputStream.SkipImpl(System.Int32)">
  686. <summary>
  687. Abstraction of skipping to cope with streams which can't really skip.
  688. </summary>
  689. </member>
  690. <member name="T:LC.Google.Protobuf.CodedOutputStream">
  691. <summary>
  692. Encodes and writes protocol message fields.
  693. </summary>
  694. <remarks>
  695. <para>
  696. This class is generally used by generated code to write appropriate
  697. primitives to the stream. It effectively encapsulates the lowest
  698. levels of protocol buffer format. Unlike some other implementations,
  699. this does not include combined "write tag and value" methods. Generated
  700. code knows the exact byte representations of the tags they're going to write,
  701. so there's no need to re-encode them each time. Manually-written code calling
  702. this class should just call one of the <c>WriteTag</c> overloads before each value.
  703. </para>
  704. <para>
  705. Repeated fields and map fields are not handled by this class; use <c>RepeatedField&lt;T&gt;</c>
  706. and <c>MapField&lt;TKey, TValue&gt;</c> to serialize such fields.
  707. </para>
  708. </remarks>
  709. </member>
  710. <member name="M:LC.Google.Protobuf.CodedOutputStream.ComputeDoubleSize(System.Double)">
  711. <summary>
  712. Computes the number of bytes that would be needed to encode a
  713. double field, including the tag.
  714. </summary>
  715. </member>
  716. <member name="M:LC.Google.Protobuf.CodedOutputStream.ComputeFloatSize(System.Single)">
  717. <summary>
  718. Computes the number of bytes that would be needed to encode a
  719. float field, including the tag.
  720. </summary>
  721. </member>
  722. <member name="M:LC.Google.Protobuf.CodedOutputStream.ComputeUInt64Size(System.UInt64)">
  723. <summary>
  724. Computes the number of bytes that would be needed to encode a
  725. uint64 field, including the tag.
  726. </summary>
  727. </member>
  728. <member name="M:LC.Google.Protobuf.CodedOutputStream.ComputeInt64Size(System.Int64)">
  729. <summary>
  730. Computes the number of bytes that would be needed to encode an
  731. int64 field, including the tag.
  732. </summary>
  733. </member>
  734. <member name="M:LC.Google.Protobuf.CodedOutputStream.ComputeInt32Size(System.Int32)">
  735. <summary>
  736. Computes the number of bytes that would be needed to encode an
  737. int32 field, including the tag.
  738. </summary>
  739. </member>
  740. <member name="M:LC.Google.Protobuf.CodedOutputStream.ComputeFixed64Size(System.UInt64)">
  741. <summary>
  742. Computes the number of bytes that would be needed to encode a
  743. fixed64 field, including the tag.
  744. </summary>
  745. </member>
  746. <member name="M:LC.Google.Protobuf.CodedOutputStream.ComputeFixed32Size(System.UInt32)">
  747. <summary>
  748. Computes the number of bytes that would be needed to encode a
  749. fixed32 field, including the tag.
  750. </summary>
  751. </member>
  752. <member name="M:LC.Google.Protobuf.CodedOutputStream.ComputeBoolSize(System.Boolean)">
  753. <summary>
  754. Computes the number of bytes that would be needed to encode a
  755. bool field, including the tag.
  756. </summary>
  757. </member>
  758. <member name="M:LC.Google.Protobuf.CodedOutputStream.ComputeStringSize(System.String)">
  759. <summary>
  760. Computes the number of bytes that would be needed to encode a
  761. string field, including the tag.
  762. </summary>
  763. </member>
  764. <member name="M:LC.Google.Protobuf.CodedOutputStream.ComputeGroupSize(LC.Google.Protobuf.IMessage)">
  765. <summary>
  766. Computes the number of bytes that would be needed to encode a
  767. group field, including the tag.
  768. </summary>
  769. </member>
  770. <member name="M:LC.Google.Protobuf.CodedOutputStream.ComputeMessageSize(LC.Google.Protobuf.IMessage)">
  771. <summary>
  772. Computes the number of bytes that would be needed to encode an
  773. embedded message field, including the tag.
  774. </summary>
  775. </member>
  776. <member name="M:LC.Google.Protobuf.CodedOutputStream.ComputeBytesSize(LC.Google.Protobuf.ByteString)">
  777. <summary>
  778. Computes the number of bytes that would be needed to encode a
  779. bytes field, including the tag.
  780. </summary>
  781. </member>
  782. <member name="M:LC.Google.Protobuf.CodedOutputStream.ComputeUInt32Size(System.UInt32)">
  783. <summary>
  784. Computes the number of bytes that would be needed to encode a
  785. uint32 field, including the tag.
  786. </summary>
  787. </member>
  788. <member name="M:LC.Google.Protobuf.CodedOutputStream.ComputeEnumSize(System.Int32)">
  789. <summary>
  790. Computes the number of bytes that would be needed to encode a
  791. enum field, including the tag. The caller is responsible for
  792. converting the enum value to its numeric value.
  793. </summary>
  794. </member>
  795. <member name="M:LC.Google.Protobuf.CodedOutputStream.ComputeSFixed32Size(System.Int32)">
  796. <summary>
  797. Computes the number of bytes that would be needed to encode an
  798. sfixed32 field, including the tag.
  799. </summary>
  800. </member>
  801. <member name="M:LC.Google.Protobuf.CodedOutputStream.ComputeSFixed64Size(System.Int64)">
  802. <summary>
  803. Computes the number of bytes that would be needed to encode an
  804. sfixed64 field, including the tag.
  805. </summary>
  806. </member>
  807. <member name="M:LC.Google.Protobuf.CodedOutputStream.ComputeSInt32Size(System.Int32)">
  808. <summary>
  809. Computes the number of bytes that would be needed to encode an
  810. sint32 field, including the tag.
  811. </summary>
  812. </member>
  813. <member name="M:LC.Google.Protobuf.CodedOutputStream.ComputeSInt64Size(System.Int64)">
  814. <summary>
  815. Computes the number of bytes that would be needed to encode an
  816. sint64 field, including the tag.
  817. </summary>
  818. </member>
  819. <member name="M:LC.Google.Protobuf.CodedOutputStream.ComputeLengthSize(System.Int32)">
  820. <summary>
  821. Computes the number of bytes that would be needed to encode a length,
  822. as written by <see cref="M:LC.Google.Protobuf.CodedOutputStream.WriteLength(System.Int32)"/>.
  823. </summary>
  824. </member>
  825. <member name="M:LC.Google.Protobuf.CodedOutputStream.ComputeRawVarint32Size(System.UInt32)">
  826. <summary>
  827. Computes the number of bytes that would be needed to encode a varint.
  828. </summary>
  829. </member>
  830. <member name="M:LC.Google.Protobuf.CodedOutputStream.ComputeRawVarint64Size(System.UInt64)">
  831. <summary>
  832. Computes the number of bytes that would be needed to encode a varint.
  833. </summary>
  834. </member>
  835. <member name="M:LC.Google.Protobuf.CodedOutputStream.ComputeTagSize(System.Int32)">
  836. <summary>
  837. Computes the number of bytes that would be needed to encode a tag.
  838. </summary>
  839. </member>
  840. <member name="F:LC.Google.Protobuf.CodedOutputStream.DefaultBufferSize">
  841. <summary>
  842. The buffer size used by CreateInstance(Stream).
  843. </summary>
  844. </member>
  845. <member name="M:LC.Google.Protobuf.CodedOutputStream.#ctor(System.Byte[])">
  846. <summary>
  847. Creates a new CodedOutputStream that writes directly to the given
  848. byte array. If more bytes are written than fit in the array,
  849. OutOfSpaceException will be thrown.
  850. </summary>
  851. </member>
  852. <member name="M:LC.Google.Protobuf.CodedOutputStream.#ctor(System.Byte[],System.Int32,System.Int32)">
  853. <summary>
  854. Creates a new CodedOutputStream that writes directly to the given
  855. byte array slice. If more bytes are written than fit in the array,
  856. OutOfSpaceException will be thrown.
  857. </summary>
  858. </member>
  859. <member name="M:LC.Google.Protobuf.CodedOutputStream.#ctor(System.IO.Stream)">
  860. <summary>
  861. Creates a new <see cref="T:LC.Google.Protobuf.CodedOutputStream" /> which write to the given stream, and disposes of that
  862. stream when the returned <c>CodedOutputStream</c> is disposed.
  863. </summary>
  864. <param name="output">The stream to write to. It will be disposed when the returned <c>CodedOutputStream is disposed.</c></param>
  865. </member>
  866. <member name="M:LC.Google.Protobuf.CodedOutputStream.#ctor(System.IO.Stream,System.Int32)">
  867. <summary>
  868. Creates a new CodedOutputStream which write to the given stream and uses
  869. the specified buffer size.
  870. </summary>
  871. <param name="output">The stream to write to. It will be disposed when the returned <c>CodedOutputStream is disposed.</c></param>
  872. <param name="bufferSize">The size of buffer to use internally.</param>
  873. </member>
  874. <member name="M:LC.Google.Protobuf.CodedOutputStream.#ctor(System.IO.Stream,System.Boolean)">
  875. <summary>
  876. Creates a new CodedOutputStream which write to the given stream.
  877. </summary>
  878. <param name="output">The stream to write to.</param>
  879. <param name="leaveOpen">If <c>true</c>, <paramref name="output"/> is left open when the returned <c>CodedOutputStream</c> is disposed;
  880. if <c>false</c>, the provided stream is disposed as well.</param>
  881. </member>
  882. <member name="M:LC.Google.Protobuf.CodedOutputStream.#ctor(System.IO.Stream,System.Int32,System.Boolean)">
  883. <summary>
  884. Creates a new CodedOutputStream which write to the given stream and uses
  885. the specified buffer size.
  886. </summary>
  887. <param name="output">The stream to write to.</param>
  888. <param name="bufferSize">The size of buffer to use internally.</param>
  889. <param name="leaveOpen">If <c>true</c>, <paramref name="output"/> is left open when the returned <c>CodedOutputStream</c> is disposed;
  890. if <c>false</c>, the provided stream is disposed as well.</param>
  891. </member>
  892. <member name="P:LC.Google.Protobuf.CodedOutputStream.Position">
  893. <summary>
  894. Returns the current position in the stream, or the position in the output buffer
  895. </summary>
  896. </member>
  897. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteDouble(System.Double)">
  898. <summary>
  899. Writes a double field value, without a tag, to the stream.
  900. </summary>
  901. <param name="value">The value to write</param>
  902. </member>
  903. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteFloat(System.Single)">
  904. <summary>
  905. Writes a float field value, without a tag, to the stream.
  906. </summary>
  907. <param name="value">The value to write</param>
  908. </member>
  909. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteUInt64(System.UInt64)">
  910. <summary>
  911. Writes a uint64 field value, without a tag, to the stream.
  912. </summary>
  913. <param name="value">The value to write</param>
  914. </member>
  915. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteInt64(System.Int64)">
  916. <summary>
  917. Writes an int64 field value, without a tag, to the stream.
  918. </summary>
  919. <param name="value">The value to write</param>
  920. </member>
  921. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteInt32(System.Int32)">
  922. <summary>
  923. Writes an int32 field value, without a tag, to the stream.
  924. </summary>
  925. <param name="value">The value to write</param>
  926. </member>
  927. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteFixed64(System.UInt64)">
  928. <summary>
  929. Writes a fixed64 field value, without a tag, to the stream.
  930. </summary>
  931. <param name="value">The value to write</param>
  932. </member>
  933. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteFixed32(System.UInt32)">
  934. <summary>
  935. Writes a fixed32 field value, without a tag, to the stream.
  936. </summary>
  937. <param name="value">The value to write</param>
  938. </member>
  939. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteBool(System.Boolean)">
  940. <summary>
  941. Writes a bool field value, without a tag, to the stream.
  942. </summary>
  943. <param name="value">The value to write</param>
  944. </member>
  945. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteString(System.String)">
  946. <summary>
  947. Writes a string field value, without a tag, to the stream.
  948. The data is length-prefixed.
  949. </summary>
  950. <param name="value">The value to write</param>
  951. </member>
  952. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteMessage(LC.Google.Protobuf.IMessage)">
  953. <summary>
  954. Writes a message, without a tag, to the stream.
  955. The data is length-prefixed.
  956. </summary>
  957. <param name="value">The value to write</param>
  958. </member>
  959. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteGroup(LC.Google.Protobuf.IMessage)">
  960. <summary>
  961. Writes a group, without a tag, to the stream.
  962. </summary>
  963. <param name="value">The value to write</param>
  964. </member>
  965. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteBytes(LC.Google.Protobuf.ByteString)">
  966. <summary>
  967. Write a byte string, without a tag, to the stream.
  968. The data is length-prefixed.
  969. </summary>
  970. <param name="value">The value to write</param>
  971. </member>
  972. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteUInt32(System.UInt32)">
  973. <summary>
  974. Writes a uint32 value, without a tag, to the stream.
  975. </summary>
  976. <param name="value">The value to write</param>
  977. </member>
  978. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteEnum(System.Int32)">
  979. <summary>
  980. Writes an enum value, without a tag, to the stream.
  981. </summary>
  982. <param name="value">The value to write</param>
  983. </member>
  984. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteSFixed32(System.Int32)">
  985. <summary>
  986. Writes an sfixed32 value, without a tag, to the stream.
  987. </summary>
  988. <param name="value">The value to write.</param>
  989. </member>
  990. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteSFixed64(System.Int64)">
  991. <summary>
  992. Writes an sfixed64 value, without a tag, to the stream.
  993. </summary>
  994. <param name="value">The value to write</param>
  995. </member>
  996. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteSInt32(System.Int32)">
  997. <summary>
  998. Writes an sint32 value, without a tag, to the stream.
  999. </summary>
  1000. <param name="value">The value to write</param>
  1001. </member>
  1002. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteSInt64(System.Int64)">
  1003. <summary>
  1004. Writes an sint64 value, without a tag, to the stream.
  1005. </summary>
  1006. <param name="value">The value to write</param>
  1007. </member>
  1008. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteLength(System.Int32)">
  1009. <summary>
  1010. Writes a length (in bytes) for length-delimited data.
  1011. </summary>
  1012. <remarks>
  1013. This method simply writes a rawint, but exists for clarity in calling code.
  1014. </remarks>
  1015. <param name="length">Length value, in bytes.</param>
  1016. </member>
  1017. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteTag(System.Int32,LC.Google.Protobuf.WireFormat.WireType)">
  1018. <summary>
  1019. Encodes and writes a tag.
  1020. </summary>
  1021. <param name="fieldNumber">The number of the field to write the tag for</param>
  1022. <param name="type">The wire format type of the tag to write</param>
  1023. </member>
  1024. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteTag(System.UInt32)">
  1025. <summary>
  1026. Writes an already-encoded tag.
  1027. </summary>
  1028. <param name="tag">The encoded tag</param>
  1029. </member>
  1030. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteRawTag(System.Byte)">
  1031. <summary>
  1032. Writes the given single-byte tag directly to the stream.
  1033. </summary>
  1034. <param name="b1">The encoded tag</param>
  1035. </member>
  1036. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteRawTag(System.Byte,System.Byte)">
  1037. <summary>
  1038. Writes the given two-byte tag directly to the stream.
  1039. </summary>
  1040. <param name="b1">The first byte of the encoded tag</param>
  1041. <param name="b2">The second byte of the encoded tag</param>
  1042. </member>
  1043. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteRawTag(System.Byte,System.Byte,System.Byte)">
  1044. <summary>
  1045. Writes the given three-byte tag directly to the stream.
  1046. </summary>
  1047. <param name="b1">The first byte of the encoded tag</param>
  1048. <param name="b2">The second byte of the encoded tag</param>
  1049. <param name="b3">The third byte of the encoded tag</param>
  1050. </member>
  1051. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteRawTag(System.Byte,System.Byte,System.Byte,System.Byte)">
  1052. <summary>
  1053. Writes the given four-byte tag directly to the stream.
  1054. </summary>
  1055. <param name="b1">The first byte of the encoded tag</param>
  1056. <param name="b2">The second byte of the encoded tag</param>
  1057. <param name="b3">The third byte of the encoded tag</param>
  1058. <param name="b4">The fourth byte of the encoded tag</param>
  1059. </member>
  1060. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteRawTag(System.Byte,System.Byte,System.Byte,System.Byte,System.Byte)">
  1061. <summary>
  1062. Writes the given five-byte tag directly to the stream.
  1063. </summary>
  1064. <param name="b1">The first byte of the encoded tag</param>
  1065. <param name="b2">The second byte of the encoded tag</param>
  1066. <param name="b3">The third byte of the encoded tag</param>
  1067. <param name="b4">The fourth byte of the encoded tag</param>
  1068. <param name="b5">The fifth byte of the encoded tag</param>
  1069. </member>
  1070. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteRawVarint32(System.UInt32)">
  1071. <summary>
  1072. Writes a 32 bit value as a varint. The fast route is taken when
  1073. there's enough buffer space left to whizz through without checking
  1074. for each byte; otherwise, we resort to calling WriteRawByte each time.
  1075. </summary>
  1076. </member>
  1077. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteRawBytes(System.Byte[])">
  1078. <summary>
  1079. Writes out an array of bytes.
  1080. </summary>
  1081. </member>
  1082. <member name="M:LC.Google.Protobuf.CodedOutputStream.WriteRawBytes(System.Byte[],System.Int32,System.Int32)">
  1083. <summary>
  1084. Writes out part of an array of bytes.
  1085. </summary>
  1086. </member>
  1087. <member name="M:LC.Google.Protobuf.CodedOutputStream.EncodeZigZag32(System.Int32)">
  1088. <summary>
  1089. Encode a 32-bit value with ZigZag encoding.
  1090. </summary>
  1091. <remarks>
  1092. ZigZag encodes signed integers into values that can be efficiently
  1093. encoded with varint. (Otherwise, negative values must be
  1094. sign-extended to 64 bits to be varint encoded, thus always taking
  1095. 10 bytes on the wire.)
  1096. </remarks>
  1097. </member>
  1098. <member name="M:LC.Google.Protobuf.CodedOutputStream.EncodeZigZag64(System.Int64)">
  1099. <summary>
  1100. Encode a 64-bit value with ZigZag encoding.
  1101. </summary>
  1102. <remarks>
  1103. ZigZag encodes signed integers into values that can be efficiently
  1104. encoded with varint. (Otherwise, negative values must be
  1105. sign-extended to 64 bits to be varint encoded, thus always taking
  1106. 10 bytes on the wire.)
  1107. </remarks>
  1108. </member>
  1109. <member name="T:LC.Google.Protobuf.CodedOutputStream.OutOfSpaceException">
  1110. <summary>
  1111. Indicates that a CodedOutputStream wrapping a flat byte array
  1112. ran out of space.
  1113. </summary>
  1114. </member>
  1115. <member name="M:LC.Google.Protobuf.CodedOutputStream.Dispose">
  1116. <summary>
  1117. Flushes any buffered data and optionally closes the underlying stream, if any.
  1118. </summary>
  1119. <remarks>
  1120. <para>
  1121. By default, any underlying stream is closed by this method. To configure this behaviour,
  1122. use a constructor overload with a <c>leaveOpen</c> parameter. If this instance does not
  1123. have an underlying stream, this method does nothing.
  1124. </para>
  1125. <para>
  1126. For the sake of efficiency, calling this method does not prevent future write calls - but
  1127. if a later write ends up writing to a stream which has been disposed, that is likely to
  1128. fail. It is recommend that you not call any other methods after this.
  1129. </para>
  1130. </remarks>
  1131. </member>
  1132. <member name="M:LC.Google.Protobuf.CodedOutputStream.Flush">
  1133. <summary>
  1134. Flushes any buffered data to the underlying stream (if there is one).
  1135. </summary>
  1136. </member>
  1137. <member name="M:LC.Google.Protobuf.CodedOutputStream.CheckNoSpaceLeft">
  1138. <summary>
  1139. Verifies that SpaceLeft returns zero. It's common to create a byte array
  1140. that is exactly big enough to hold a message, then write to it with
  1141. a CodedOutputStream. Calling CheckNoSpaceLeft after writing verifies that
  1142. the message was actually as big as expected, which can help bugs.
  1143. </summary>
  1144. </member>
  1145. <member name="P:LC.Google.Protobuf.CodedOutputStream.SpaceLeft">
  1146. <summary>
  1147. If writing to a flat array, returns the space left in the array. Otherwise,
  1148. throws an InvalidOperationException.
  1149. </summary>
  1150. </member>
  1151. <member name="T:LC.Google.Protobuf.Collections.Lists">
  1152. <summary>
  1153. Utility to compare if two Lists are the same, and the hash code
  1154. of a List.
  1155. </summary>
  1156. </member>
  1157. <member name="M:LC.Google.Protobuf.Collections.Lists.Equals``1(System.Collections.Generic.List{``0},System.Collections.Generic.List{``0})">
  1158. <summary>
  1159. Checks if two lists are equal.
  1160. </summary>
  1161. </member>
  1162. <member name="M:LC.Google.Protobuf.Collections.Lists.GetHashCode``1(System.Collections.Generic.List{``0})">
  1163. <summary>
  1164. Gets the list's hash code.
  1165. </summary>
  1166. </member>
  1167. <member name="T:LC.Google.Protobuf.Collections.MapField`2">
  1168. <summary>
  1169. Representation of a map field in a Protocol Buffer message.
  1170. </summary>
  1171. <typeparam name="TKey">Key type in the map. Must be a type supported by Protocol Buffer map keys.</typeparam>
  1172. <typeparam name="TValue">Value type in the map. Must be a type supported by Protocol Buffers.</typeparam>
  1173. <remarks>
  1174. <para>
  1175. For string keys, the equality comparison is provided by <see cref="P:System.StringComparer.Ordinal" />.
  1176. </para>
  1177. <para>
  1178. Null values are not permitted in the map, either for wrapper types or regular messages.
  1179. If a map is deserialized from a data stream and the value is missing from an entry, a default value
  1180. is created instead. For primitive types, that is the regular default value (0, the empty string and so
  1181. on); for message types, an empty instance of the message is created, as if the map entry contained a 0-length
  1182. encoded value for the field.
  1183. </para>
  1184. <para>
  1185. This implementation does not generally prohibit the use of key/value types which are not
  1186. supported by Protocol Buffers (e.g. using a key type of <code>byte</code>) but nor does it guarantee
  1187. that all operations will work in such cases.
  1188. </para>
  1189. <para>
  1190. The order in which entries are returned when iterating over this object is undefined, and may change
  1191. in future versions.
  1192. </para>
  1193. </remarks>
  1194. </member>
  1195. <member name="M:LC.Google.Protobuf.Collections.MapField`2.Clone">
  1196. <summary>
  1197. Creates a deep clone of this object.
  1198. </summary>
  1199. <returns>
  1200. A deep clone of this object.
  1201. </returns>
  1202. </member>
  1203. <member name="M:LC.Google.Protobuf.Collections.MapField`2.Add(`0,`1)">
  1204. <summary>
  1205. Adds the specified key/value pair to the map.
  1206. </summary>
  1207. <remarks>
  1208. This operation fails if the key already exists in the map. To replace an existing entry, use the indexer.
  1209. </remarks>
  1210. <param name="key">The key to add</param>
  1211. <param name="value">The value to add.</param>
  1212. <exception cref="T:System.ArgumentException">The given key already exists in map.</exception>
  1213. </member>
  1214. <member name="M:LC.Google.Protobuf.Collections.MapField`2.ContainsKey(`0)">
  1215. <summary>
  1216. Determines whether the specified key is present in the map.
  1217. </summary>
  1218. <param name="key">The key to check.</param>
  1219. <returns><c>true</c> if the map contains the given key; <c>false</c> otherwise.</returns>
  1220. </member>
  1221. <member name="M:LC.Google.Protobuf.Collections.MapField`2.Remove(`0)">
  1222. <summary>
  1223. Removes the entry identified by the given key from the map.
  1224. </summary>
  1225. <param name="key">The key indicating the entry to remove from the map.</param>
  1226. <returns><c>true</c> if the map contained the given key before the entry was removed; <c>false</c> otherwise.</returns>
  1227. </member>
  1228. <member name="M:LC.Google.Protobuf.Collections.MapField`2.TryGetValue(`0,`1@)">
  1229. <summary>
  1230. Gets the value associated with the specified key.
  1231. </summary>
  1232. <param name="key">The key whose value to get.</param>
  1233. <param name="value">When this method returns, the value associated with the specified key, if the key is found;
  1234. otherwise, the default value for the type of the <paramref name="value"/> parameter.
  1235. This parameter is passed uninitialized.</param>
  1236. <returns><c>true</c> if the map contains an element with the specified key; otherwise, <c>false</c>.</returns>
  1237. </member>
  1238. <member name="P:LC.Google.Protobuf.Collections.MapField`2.Item(`0)">
  1239. <summary>
  1240. Gets or sets the value associated with the specified key.
  1241. </summary>
  1242. <param name="key">The key of the value to get or set.</param>
  1243. <exception cref="T:System.Collections.Generic.KeyNotFoundException">The property is retrieved and key does not exist in the collection.</exception>
  1244. <returns>The value associated with the specified key. If the specified key is not found,
  1245. 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>
  1246. </member>
  1247. <member name="P:LC.Google.Protobuf.Collections.MapField`2.Keys">
  1248. <summary>
  1249. Gets a collection containing the keys in the map.
  1250. </summary>
  1251. </member>
  1252. <member name="P:LC.Google.Protobuf.Collections.MapField`2.Values">
  1253. <summary>
  1254. Gets a collection containing the values in the map.
  1255. </summary>
  1256. </member>
  1257. <member name="M:LC.Google.Protobuf.Collections.MapField`2.Add(System.Collections.Generic.IDictionary{`0,`1})">
  1258. <summary>
  1259. Adds the specified entries to the map. The keys and values are not automatically cloned.
  1260. </summary>
  1261. <param name="entries">The entries to add to the map.</param>
  1262. </member>
  1263. <member name="M:LC.Google.Protobuf.Collections.MapField`2.GetEnumerator">
  1264. <summary>
  1265. Returns an enumerator that iterates through the collection.
  1266. </summary>
  1267. <returns>
  1268. An enumerator that can be used to iterate through the collection.
  1269. </returns>
  1270. </member>
  1271. <member name="M:LC.Google.Protobuf.Collections.MapField`2.System#Collections#IEnumerable#GetEnumerator">
  1272. <summary>
  1273. Returns an enumerator that iterates through a collection.
  1274. </summary>
  1275. <returns>
  1276. An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.
  1277. </returns>
  1278. </member>
  1279. <member name="M:LC.Google.Protobuf.Collections.MapField`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#Add(System.Collections.Generic.KeyValuePair{`0,`1})">
  1280. <summary>
  1281. Adds the specified item to the map.
  1282. </summary>
  1283. <param name="item">The item to add to the map.</param>
  1284. </member>
  1285. <member name="M:LC.Google.Protobuf.Collections.MapField`2.Clear">
  1286. <summary>
  1287. Removes all items from the map.
  1288. </summary>
  1289. </member>
  1290. <member name="M:LC.Google.Protobuf.Collections.MapField`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#Contains(System.Collections.Generic.KeyValuePair{`0,`1})">
  1291. <summary>
  1292. Determines whether map contains an entry equivalent to the given key/value pair.
  1293. </summary>
  1294. <param name="item">The key/value pair to find.</param>
  1295. <returns></returns>
  1296. </member>
  1297. <member name="M:LC.Google.Protobuf.Collections.MapField`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32)">
  1298. <summary>
  1299. Copies the key/value pairs in this map to an array.
  1300. </summary>
  1301. <param name="array">The array to copy the entries into.</param>
  1302. <param name="arrayIndex">The index of the array at which to start copying values.</param>
  1303. </member>
  1304. <member name="M:LC.Google.Protobuf.Collections.MapField`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#Remove(System.Collections.Generic.KeyValuePair{`0,`1})">
  1305. <summary>
  1306. Removes the specified key/value pair from the map.
  1307. </summary>
  1308. <remarks>Both the key and the value must be found for the entry to be removed.</remarks>
  1309. <param name="item">The key/value pair to remove.</param>
  1310. <returns><c>true</c> if the key/value pair was found and removed; <c>false</c> otherwise.</returns>
  1311. </member>
  1312. <member name="P:LC.Google.Protobuf.Collections.MapField`2.Count">
  1313. <summary>
  1314. Gets the number of elements contained in the map.
  1315. </summary>
  1316. </member>
  1317. <member name="P:LC.Google.Protobuf.Collections.MapField`2.IsReadOnly">
  1318. <summary>
  1319. Gets a value indicating whether the map is read-only.
  1320. </summary>
  1321. </member>
  1322. <member name="M:LC.Google.Protobuf.Collections.MapField`2.Equals(System.Object)">
  1323. <summary>
  1324. Determines whether the specified <see cref="T:System.Object" />, is equal to this instance.
  1325. </summary>
  1326. <param name="other">The <see cref="T:System.Object" /> to compare with this instance.</param>
  1327. <returns>
  1328. <c>true</c> if the specified <see cref="T:System.Object" /> is equal to this instance; otherwise, <c>false</c>.
  1329. </returns>
  1330. </member>
  1331. <member name="M:LC.Google.Protobuf.Collections.MapField`2.GetHashCode">
  1332. <summary>
  1333. Returns a hash code for this instance.
  1334. </summary>
  1335. <returns>
  1336. A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
  1337. </returns>
  1338. </member>
  1339. <member name="M:LC.Google.Protobuf.Collections.MapField`2.Equals(LC.Google.Protobuf.Collections.MapField{`0,`1})">
  1340. <summary>
  1341. Compares this map with another for equality.
  1342. </summary>
  1343. <remarks>
  1344. The order of the key/value pairs in the maps is not deemed significant in this comparison.
  1345. </remarks>
  1346. <param name="other">The map to compare this with.</param>
  1347. <returns><c>true</c> if <paramref name="other"/> refers to an equal map; <c>false</c> otherwise.</returns>
  1348. </member>
  1349. <member name="M:LC.Google.Protobuf.Collections.MapField`2.AddEntriesFrom(LC.Google.Protobuf.CodedInputStream,LC.Google.Protobuf.Collections.MapField{`0,`1}.Codec)">
  1350. <summary>
  1351. Adds entries to the map from the given stream.
  1352. </summary>
  1353. <remarks>
  1354. It is assumed that the stream is initially positioned after the tag specified by the codec.
  1355. This method will continue reading entries from the stream until the end is reached, or
  1356. a different tag is encountered.
  1357. </remarks>
  1358. <param name="input">Stream to read from</param>
  1359. <param name="codec">Codec describing how the key/value pairs are encoded</param>
  1360. </member>
  1361. <member name="M:LC.Google.Protobuf.Collections.MapField`2.WriteTo(LC.Google.Protobuf.CodedOutputStream,LC.Google.Protobuf.Collections.MapField{`0,`1}.Codec)">
  1362. <summary>
  1363. Writes the contents of this map to the given coded output stream, using the specified codec
  1364. to encode each entry.
  1365. </summary>
  1366. <param name="output">The output stream to write to.</param>
  1367. <param name="codec">The codec to use for each entry.</param>
  1368. </member>
  1369. <member name="M:LC.Google.Protobuf.Collections.MapField`2.CalculateSize(LC.Google.Protobuf.Collections.MapField{`0,`1}.Codec)">
  1370. <summary>
  1371. Calculates the size of this map based on the given entry codec.
  1372. </summary>
  1373. <param name="codec">The codec to use to encode each entry.</param>
  1374. <returns></returns>
  1375. </member>
  1376. <member name="M:LC.Google.Protobuf.Collections.MapField`2.ToString">
  1377. <summary>
  1378. Returns a string representation of this repeated field, in the same
  1379. way as it would be represented by the default JSON formatter.
  1380. </summary>
  1381. </member>
  1382. <member name="T:LC.Google.Protobuf.Collections.MapField`2.Codec">
  1383. <summary>
  1384. A codec for a specific map field. This contains all the information required to encode and
  1385. decode the nested messages.
  1386. </summary>
  1387. </member>
  1388. <member name="M:LC.Google.Protobuf.Collections.MapField`2.Codec.#ctor(LC.Google.Protobuf.FieldCodec{`0},LC.Google.Protobuf.FieldCodec{`1},System.UInt32)">
  1389. <summary>
  1390. Creates a new entry codec based on a separate key codec and value codec,
  1391. and the tag to use for each map entry.
  1392. </summary>
  1393. <param name="keyCodec">The key codec.</param>
  1394. <param name="valueCodec">The value codec.</param>
  1395. <param name="mapTag">The map tag to use to introduce each map entry.</param>
  1396. </member>
  1397. <member name="P:LC.Google.Protobuf.Collections.MapField`2.Codec.MapTag">
  1398. <summary>
  1399. The tag used in the enclosing message to indicate map entries.
  1400. </summary>
  1401. </member>
  1402. <member name="T:LC.Google.Protobuf.Collections.MapField`2.Codec.MessageAdapter">
  1403. <summary>
  1404. A mutable message class, used for parsing and serializing. This
  1405. delegates the work to a codec, but implements the <see cref="T:LC.Google.Protobuf.IMessage"/> interface
  1406. for interop with <see cref="T:LC.Google.Protobuf.CodedInputStream"/> and <see cref="T:LC.Google.Protobuf.CodedOutputStream"/>.
  1407. This is nested inside Codec as it's tightly coupled to the associated codec,
  1408. and it's simpler if it has direct access to all its fields.
  1409. </summary>
  1410. </member>
  1411. <member name="T:LC.Google.Protobuf.Collections.ProtobufEqualityComparers">
  1412. <summary>
  1413. Provides a central place to implement equality comparisons, primarily for bitwise float/double equality.
  1414. </summary>
  1415. </member>
  1416. <member name="M:LC.Google.Protobuf.Collections.ProtobufEqualityComparers.GetEqualityComparer``1">
  1417. <summary>
  1418. Returns an equality comparer for <typeparamref name="T"/> suitable for Protobuf equality comparisons.
  1419. This is usually just the default equality comparer for the type, but floating point numbers are compared
  1420. bitwise.
  1421. </summary>
  1422. <typeparam name="T">The type of equality comparer to return.</typeparam>
  1423. <returns>The equality comparer.</returns>
  1424. </member>
  1425. <member name="P:LC.Google.Protobuf.Collections.ProtobufEqualityComparers.BitwiseDoubleEqualityComparer">
  1426. <summary>
  1427. Returns an equality comparer suitable for comparing 64-bit floating point values, by bitwise comparison.
  1428. (NaN values are considered equal, but only when they have the same representation.)
  1429. </summary>
  1430. </member>
  1431. <member name="P:LC.Google.Protobuf.Collections.ProtobufEqualityComparers.BitwiseSingleEqualityComparer">
  1432. <summary>
  1433. Returns an equality comparer suitable for comparing 32-bit floating point values, by bitwise comparison.
  1434. (NaN values are considered equal, but only when they have the same representation.)
  1435. </summary>
  1436. </member>
  1437. <member name="P:LC.Google.Protobuf.Collections.ProtobufEqualityComparers.BitwiseNullableDoubleEqualityComparer">
  1438. <summary>
  1439. Returns an equality comparer suitable for comparing nullable 64-bit floating point values, by bitwise comparison.
  1440. (NaN values are considered equal, but only when they have the same representation.)
  1441. </summary>
  1442. </member>
  1443. <member name="P:LC.Google.Protobuf.Collections.ProtobufEqualityComparers.BitwiseNullableSingleEqualityComparer">
  1444. <summary>
  1445. Returns an equality comparer suitable for comparing nullable 32-bit floating point values, by bitwise comparison.
  1446. (NaN values are considered equal, but only when they have the same representation.)
  1447. </summary>
  1448. </member>
  1449. <member name="T:LC.Google.Protobuf.Collections.ReadOnlyDictionary`2">
  1450. <summary>
  1451. Read-only wrapper around another dictionary.
  1452. </summary>
  1453. </member>
  1454. <member name="T:LC.Google.Protobuf.Collections.RepeatedField`1">
  1455. <summary>
  1456. The contents of a repeated field: essentially, a collection with some extra
  1457. restrictions (no null values) and capabilities (deep cloning).
  1458. </summary>
  1459. <remarks>
  1460. This implementation does not generally prohibit the use of types which are not
  1461. supported by Protocol Buffers but nor does it guarantee that all operations will work in such cases.
  1462. </remarks>
  1463. <typeparam name="T">The element type of the repeated field.</typeparam>
  1464. </member>
  1465. <member name="M:LC.Google.Protobuf.Collections.RepeatedField`1.Clone">
  1466. <summary>
  1467. Creates a deep clone of this repeated field.
  1468. </summary>
  1469. <remarks>
  1470. If the field type is
  1471. a message type, each element is also cloned; otherwise, it is
  1472. assumed that the field type is primitive (including string and
  1473. bytes, both of which are immutable) and so a simple copy is
  1474. equivalent to a deep clone.
  1475. </remarks>
  1476. <returns>A deep clone of this repeated field.</returns>
  1477. </member>
  1478. <member name="M:LC.Google.Protobuf.Collections.RepeatedField`1.AddEntriesFrom(LC.Google.Protobuf.CodedInputStream,LC.Google.Protobuf.FieldCodec{`0})">
  1479. <summary>
  1480. Adds the entries from the given input stream, decoding them with the specified codec.
  1481. </summary>
  1482. <param name="input">The input stream to read from.</param>
  1483. <param name="codec">The codec to use in order to read each entry.</param>
  1484. </member>
  1485. <member name="M:LC.Google.Protobuf.Collections.RepeatedField`1.CalculateSize(LC.Google.Protobuf.FieldCodec{`0})">
  1486. <summary>
  1487. Calculates the size of this collection based on the given codec.
  1488. </summary>
  1489. <param name="codec">The codec to use when encoding each field.</param>
  1490. <returns>The number of bytes that would be written to a <see cref="T:LC.Google.Protobuf.CodedOutputStream"/> by <see cref="M:LC.Google.Protobuf.Collections.RepeatedField`1.WriteTo(LC.Google.Protobuf.CodedOutputStream,LC.Google.Protobuf.FieldCodec{`0})"/>,
  1491. using the same codec.</returns>
  1492. </member>
  1493. <member name="M:LC.Google.Protobuf.Collections.RepeatedField`1.WriteTo(LC.Google.Protobuf.CodedOutputStream,LC.Google.Protobuf.FieldCodec{`0})">
  1494. <summary>
  1495. Writes the contents of this collection to the given <see cref="T:LC.Google.Protobuf.CodedOutputStream"/>,
  1496. encoding each value using the specified codec.
  1497. </summary>
  1498. <param name="output">The output stream to write to.</param>
  1499. <param name="codec">The codec to use when encoding each value.</param>
  1500. </member>
  1501. <member name="P:LC.Google.Protobuf.Collections.RepeatedField`1.Capacity">
  1502. <summary>
  1503. Gets and sets the capacity of the RepeatedField's internal array. WHen set, the internal array is reallocated to the given capacity.
  1504. <exception cref="T:System.ArgumentOutOfRangeException">The new value is less than Count -or- when Count is less than 0.</exception>
  1505. </summary>
  1506. </member>
  1507. <member name="M:LC.Google.Protobuf.Collections.RepeatedField`1.Add(`0)">
  1508. <summary>
  1509. Adds the specified item to the collection.
  1510. </summary>
  1511. <param name="item">The item to add.</param>
  1512. </member>
  1513. <member name="M:LC.Google.Protobuf.Collections.RepeatedField`1.Clear">
  1514. <summary>
  1515. Removes all items from the collection.
  1516. </summary>
  1517. </member>
  1518. <member name="M:LC.Google.Protobuf.Collections.RepeatedField`1.Contains(`0)">
  1519. <summary>
  1520. Determines whether this collection contains the given item.
  1521. </summary>
  1522. <param name="item">The item to find.</param>
  1523. <returns><c>true</c> if this collection contains the given item; <c>false</c> otherwise.</returns>
  1524. </member>
  1525. <member name="M:LC.Google.Protobuf.Collections.RepeatedField`1.CopyTo(`0[],System.Int32)">
  1526. <summary>
  1527. Copies this collection to the given array.
  1528. </summary>
  1529. <param name="array">The array to copy to.</param>
  1530. <param name="arrayIndex">The first index of the array to copy to.</param>
  1531. </member>
  1532. <member name="M:LC.Google.Protobuf.Collections.RepeatedField`1.Remove(`0)">
  1533. <summary>
  1534. Removes the specified item from the collection
  1535. </summary>
  1536. <param name="item">The item to remove.</param>
  1537. <returns><c>true</c> if the item was found and removed; <c>false</c> otherwise.</returns>
  1538. </member>
  1539. <member name="P:LC.Google.Protobuf.Collections.RepeatedField`1.Count">
  1540. <summary>
  1541. Gets the number of elements contained in the collection.
  1542. </summary>
  1543. </member>
  1544. <member name="P:LC.Google.Protobuf.Collections.RepeatedField`1.IsReadOnly">
  1545. <summary>
  1546. Gets a value indicating whether the collection is read-only.
  1547. </summary>
  1548. </member>
  1549. <member name="M:LC.Google.Protobuf.Collections.RepeatedField`1.AddRange(System.Collections.Generic.IEnumerable{`0})">
  1550. <summary>
  1551. Adds all of the specified values into this collection.
  1552. </summary>
  1553. <param name="values">The values to add to this collection.</param>
  1554. </member>
  1555. <member name="M:LC.Google.Protobuf.Collections.RepeatedField`1.Add(System.Collections.Generic.IEnumerable{`0})">
  1556. <summary>
  1557. Adds all of the specified values into this collection. This method is present to
  1558. allow repeated fields to be constructed from queries within collection initializers.
  1559. Within non-collection-initializer code, consider using the equivalent <see cref="M:LC.Google.Protobuf.Collections.RepeatedField`1.AddRange(System.Collections.Generic.IEnumerable{`0})"/>
  1560. method instead for clarity.
  1561. </summary>
  1562. <param name="values">The values to add to this collection.</param>
  1563. </member>
  1564. <member name="M:LC.Google.Protobuf.Collections.RepeatedField`1.GetEnumerator">
  1565. <summary>
  1566. Returns an enumerator that iterates through the collection.
  1567. </summary>
  1568. <returns>
  1569. An enumerator that can be used to iterate through the collection.
  1570. </returns>
  1571. </member>
  1572. <member name="M:LC.Google.Protobuf.Collections.RepeatedField`1.Equals(System.Object)">
  1573. <summary>
  1574. Determines whether the specified <see cref="T:System.Object" />, is equal to this instance.
  1575. </summary>
  1576. <param name="obj">The <see cref="T:System.Object" /> to compare with this instance.</param>
  1577. <returns>
  1578. <c>true</c> if the specified <see cref="T:System.Object" /> is equal to this instance; otherwise, <c>false</c>.
  1579. </returns>
  1580. </member>
  1581. <member name="M:LC.Google.Protobuf.Collections.RepeatedField`1.System#Collections#IEnumerable#GetEnumerator">
  1582. <summary>
  1583. Returns an enumerator that iterates through a collection.
  1584. </summary>
  1585. <returns>
  1586. An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.
  1587. </returns>
  1588. </member>
  1589. <member name="M:LC.Google.Protobuf.Collections.RepeatedField`1.GetHashCode">
  1590. <summary>
  1591. Returns a hash code for this instance.
  1592. </summary>
  1593. <returns>
  1594. A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
  1595. </returns>
  1596. </member>
  1597. <member name="M:LC.Google.Protobuf.Collections.RepeatedField`1.Equals(LC.Google.Protobuf.Collections.RepeatedField{`0})">
  1598. <summary>
  1599. Compares this repeated field with another for equality.
  1600. </summary>
  1601. <param name="other">The repeated field to compare this with.</param>
  1602. <returns><c>true</c> if <paramref name="other"/> refers to an equal repeated field; <c>false</c> otherwise.</returns>
  1603. </member>
  1604. <member name="M:LC.Google.Protobuf.Collections.RepeatedField`1.IndexOf(`0)">
  1605. <summary>
  1606. Returns the index of the given item within the collection, or -1 if the item is not
  1607. present.
  1608. </summary>
  1609. <param name="item">The item to find in the collection.</param>
  1610. <returns>The zero-based index of the item, or -1 if it is not found.</returns>
  1611. </member>
  1612. <member name="M:LC.Google.Protobuf.Collections.RepeatedField`1.Insert(System.Int32,`0)">
  1613. <summary>
  1614. Inserts the given item at the specified index.
  1615. </summary>
  1616. <param name="index">The index at which to insert the item.</param>
  1617. <param name="item">The item to insert.</param>
  1618. </member>
  1619. <member name="M:LC.Google.Protobuf.Collections.RepeatedField`1.RemoveAt(System.Int32)">
  1620. <summary>
  1621. Removes the item at the given index.
  1622. </summary>
  1623. <param name="index">The zero-based index of the item to remove.</param>
  1624. </member>
  1625. <member name="M:LC.Google.Protobuf.Collections.RepeatedField`1.ToString">
  1626. <summary>
  1627. Returns a string representation of this repeated field, in the same
  1628. way as it would be represented by the default JSON formatter.
  1629. </summary>
  1630. </member>
  1631. <member name="P:LC.Google.Protobuf.Collections.RepeatedField`1.Item(System.Int32)">
  1632. <summary>
  1633. Gets or sets the item at the specified index.
  1634. </summary>
  1635. <value>
  1636. The element at the specified index.
  1637. </value>
  1638. <param name="index">The zero-based index of the element to get or set.</param>
  1639. <returns>The item at the specified index.</returns>
  1640. </member>
  1641. <member name="T:LC.Google.Protobuf.Compatibility.PropertyInfoExtensions">
  1642. <summary>
  1643. Extension methods for <see cref="T:System.Reflection.PropertyInfo"/>, effectively providing
  1644. the familiar members from previous desktop framework versions while
  1645. targeting the newer releases, .NET Core etc.
  1646. </summary>
  1647. </member>
  1648. <member name="M:LC.Google.Protobuf.Compatibility.PropertyInfoExtensions.GetGetMethod(System.Reflection.PropertyInfo)">
  1649. <summary>
  1650. Returns the public getter of a property, or null if there is no such getter
  1651. (either because it's read-only, or the getter isn't public).
  1652. </summary>
  1653. </member>
  1654. <member name="M:LC.Google.Protobuf.Compatibility.PropertyInfoExtensions.GetSetMethod(System.Reflection.PropertyInfo)">
  1655. <summary>
  1656. Returns the public setter of a property, or null if there is no such setter
  1657. (either because it's write-only, or the setter isn't public).
  1658. </summary>
  1659. </member>
  1660. <member name="T:LC.Google.Protobuf.Compatibility.TypeExtensions">
  1661. <summary>
  1662. Provides extension methods on Type that just proxy to TypeInfo.
  1663. These are used to support the new type system from .NET 4.5, without
  1664. having calls to GetTypeInfo all over the place. While the methods here are meant to be
  1665. broadly compatible with the desktop framework, there are some subtle differences in behaviour - but
  1666. they're not expected to affect our use cases. While the class is internal, that should be fine: we can
  1667. evaluate each new use appropriately.
  1668. </summary>
  1669. </member>
  1670. <member name="M:LC.Google.Protobuf.Compatibility.TypeExtensions.IsAssignableFrom(System.Type,System.Type)">
  1671. <summary>
  1672. See https://msdn.microsoft.com/en-us/library/system.type.isassignablefrom
  1673. </summary>
  1674. </member>
  1675. <member name="M:LC.Google.Protobuf.Compatibility.TypeExtensions.GetProperty(System.Type,System.String)">
  1676. <summary>
  1677. Returns a representation of the public property associated with the given name in the given type,
  1678. including inherited properties or null if there is no such public property.
  1679. Here, "public property" means a property where either the getter, or the setter, or both, is public.
  1680. </summary>
  1681. </member>
  1682. <member name="M:LC.Google.Protobuf.Compatibility.TypeExtensions.GetMethod(System.Type,System.String)">
  1683. <summary>
  1684. Returns a representation of the public method associated with the given name in the given type,
  1685. including inherited methods.
  1686. </summary>
  1687. <remarks>
  1688. This has a few differences compared with Type.GetMethod in the desktop framework. It will throw
  1689. if there is an ambiguous match even between a private method and a public one, but it *won't* throw
  1690. if there are two overloads at different levels in the type hierarchy (e.g. class Base declares public void Foo(int) and
  1691. class Child : Base declares public void Foo(long)).
  1692. </remarks>
  1693. <exception cref="T:System.Reflection.AmbiguousMatchException">One type in the hierarchy declared more than one method with the same name</exception>
  1694. </member>
  1695. <member name="T:LC.Google.Protobuf.Extension">
  1696. <summary>
  1697. Represents a non-generic extension definition. This API is experimental and subject to change.
  1698. </summary>
  1699. </member>
  1700. <member name="M:LC.Google.Protobuf.Extension.#ctor(System.Int32)">
  1701. <summary>
  1702. Internal use. Creates a new extension with the specified field number.
  1703. </summary>
  1704. </member>
  1705. <member name="P:LC.Google.Protobuf.Extension.FieldNumber">
  1706. <summary>
  1707. Gets the field number of this extension
  1708. </summary>
  1709. </member>
  1710. <member name="T:LC.Google.Protobuf.Extension`2">
  1711. <summary>
  1712. Represents a type-safe extension identifier used for getting and setting single extension values in <see cref="T:LC.Google.Protobuf.IExtendableMessage`1"/> instances.
  1713. This API is experimental and subject to change.
  1714. </summary>
  1715. <typeparam name="TTarget">The message type this field applies to</typeparam>
  1716. <typeparam name="TValue">The field value type of this extension</typeparam>
  1717. </member>
  1718. <member name="M:LC.Google.Protobuf.Extension`2.#ctor(System.Int32,LC.Google.Protobuf.FieldCodec{`1})">
  1719. <summary>
  1720. Creates a new extension identifier with the specified field number and codec
  1721. </summary>
  1722. </member>
  1723. <member name="T:LC.Google.Protobuf.RepeatedExtension`2">
  1724. <summary>
  1725. Represents a type-safe extension identifier used for getting repeated extension values in <see cref="T:LC.Google.Protobuf.IExtendableMessage`1"/> instances.
  1726. This API is experimental and subject to change.
  1727. </summary>
  1728. <typeparam name="TTarget">The message type this field applies to</typeparam>
  1729. <typeparam name="TValue">The repeated field value type of this extension</typeparam>
  1730. </member>
  1731. <member name="M:LC.Google.Protobuf.RepeatedExtension`2.#ctor(System.Int32,LC.Google.Protobuf.FieldCodec{`1})">
  1732. <summary>
  1733. Creates a new repeated extension identifier with the specified field number and codec
  1734. </summary>
  1735. </member>
  1736. <member name="T:LC.Google.Protobuf.ExtensionRegistry">
  1737. <summary>
  1738. Provides extensions to messages while parsing. This API is experimental and subject to change.
  1739. </summary>
  1740. </member>
  1741. <member name="M:LC.Google.Protobuf.ExtensionRegistry.#ctor">
  1742. <summary>
  1743. Creates a new empty extension registry
  1744. </summary>
  1745. </member>
  1746. <member name="P:LC.Google.Protobuf.ExtensionRegistry.Count">
  1747. <summary>
  1748. Gets the total number of extensions in this extension registry
  1749. </summary>
  1750. </member>
  1751. <member name="P:LC.Google.Protobuf.ExtensionRegistry.System#Collections#Generic#ICollection{LC#Google#Protobuf#Extension}#IsReadOnly">
  1752. <summary>
  1753. Returns whether the registry is readonly
  1754. </summary>
  1755. </member>
  1756. <member name="M:LC.Google.Protobuf.ExtensionRegistry.Add(LC.Google.Protobuf.Extension)">
  1757. <summary>
  1758. Adds the specified extension to the registry
  1759. </summary>
  1760. </member>
  1761. <member name="M:LC.Google.Protobuf.ExtensionRegistry.AddRange(System.Collections.Generic.IEnumerable{LC.Google.Protobuf.Extension})">
  1762. <summary>
  1763. Adds the specified extensions to the registry
  1764. </summary>
  1765. </member>
  1766. <member name="M:LC.Google.Protobuf.ExtensionRegistry.Clear">
  1767. <summary>
  1768. Clears the registry of all values
  1769. </summary>
  1770. </member>
  1771. <member name="M:LC.Google.Protobuf.ExtensionRegistry.Contains(LC.Google.Protobuf.Extension)">
  1772. <summary>
  1773. Gets whether the extension registry contains the specified extension
  1774. </summary>
  1775. </member>
  1776. <member name="M:LC.Google.Protobuf.ExtensionRegistry.System#Collections#Generic#ICollection{LC#Google#Protobuf#Extension}#CopyTo(LC.Google.Protobuf.Extension[],System.Int32)">
  1777. <summary>
  1778. Copies the arrays in the registry set to the specified array at the specified index
  1779. </summary>
  1780. <param name="array">The array to copy to</param>
  1781. <param name="arrayIndex">The array index to start at</param>
  1782. </member>
  1783. <member name="M:LC.Google.Protobuf.ExtensionRegistry.GetEnumerator">
  1784. <summary>
  1785. Returns an enumerator to enumerate through the items in the registry
  1786. </summary>
  1787. <returns>Returns an enumerator for the extensions in this registry</returns>
  1788. </member>
  1789. <member name="M:LC.Google.Protobuf.ExtensionRegistry.Remove(LC.Google.Protobuf.Extension)">
  1790. <summary>
  1791. Removes the specified extension from the set
  1792. </summary>
  1793. <param name="item">The extension</param>
  1794. <returns><c>true</c> if the extension was removed, otherwise <c>false</c></returns>
  1795. </member>
  1796. <member name="M:LC.Google.Protobuf.ExtensionRegistry.Clone">
  1797. <summary>
  1798. Clones the registry into a new registry
  1799. </summary>
  1800. </member>
  1801. <member name="T:LC.Google.Protobuf.ExtensionSet">
  1802. <summary>
  1803. Methods for managing <see cref="T:LC.Google.Protobuf.ExtensionSet`1"/>s with null checking.
  1804. Most users will not use this class directly and its API is experimental and subject to change.
  1805. </summary>
  1806. </member>
  1807. <member name="M:LC.Google.Protobuf.ExtensionSet.Get``2(LC.Google.Protobuf.ExtensionSet{``0}@,LC.Google.Protobuf.Extension{``0,``1})">
  1808. <summary>
  1809. Gets the value of the specified extension
  1810. </summary>
  1811. </member>
  1812. <member name="M:LC.Google.Protobuf.ExtensionSet.Get``2(LC.Google.Protobuf.ExtensionSet{``0}@,LC.Google.Protobuf.RepeatedExtension{``0,``1})">
  1813. <summary>
  1814. Gets the value of the specified repeated extension or null if it doesn't exist in this set
  1815. </summary>
  1816. </member>
  1817. <member name="M:LC.Google.Protobuf.ExtensionSet.GetOrInitialize``2(LC.Google.Protobuf.ExtensionSet{``0}@,LC.Google.Protobuf.RepeatedExtension{``0,``1})">
  1818. <summary>
  1819. Gets the value of the specified repeated extension, registering it if it doesn't exist
  1820. </summary>
  1821. </member>
  1822. <member name="M:LC.Google.Protobuf.ExtensionSet.Set``2(LC.Google.Protobuf.ExtensionSet{``0}@,LC.Google.Protobuf.Extension{``0,``1},``1)">
  1823. <summary>
  1824. Sets the value of the specified extension. This will make a new instance of ExtensionSet if the set is null.
  1825. </summary>
  1826. </member>
  1827. <member name="M:LC.Google.Protobuf.ExtensionSet.Has``2(LC.Google.Protobuf.ExtensionSet{``0}@,LC.Google.Protobuf.Extension{``0,``1})">
  1828. <summary>
  1829. Gets whether the value of the specified extension is set
  1830. </summary>
  1831. </member>
  1832. <member name="M:LC.Google.Protobuf.ExtensionSet.Clear``2(LC.Google.Protobuf.ExtensionSet{``0}@,LC.Google.Protobuf.Extension{``0,``1})">
  1833. <summary>
  1834. Clears the value of the specified extension
  1835. </summary>
  1836. </member>
  1837. <member name="M:LC.Google.Protobuf.ExtensionSet.Clear``2(LC.Google.Protobuf.ExtensionSet{``0}@,LC.Google.Protobuf.RepeatedExtension{``0,``1})">
  1838. <summary>
  1839. Clears the value of the specified extension
  1840. </summary>
  1841. </member>
  1842. <member name="M:LC.Google.Protobuf.ExtensionSet.TryMergeFieldFrom``1(LC.Google.Protobuf.ExtensionSet{``0}@,LC.Google.Protobuf.CodedInputStream)">
  1843. <summary>
  1844. Tries to merge a field from the coded input, returning true if the field was merged.
  1845. If the set is null or the field was not otherwise merged, this returns false.
  1846. </summary>
  1847. </member>
  1848. <member name="M:LC.Google.Protobuf.ExtensionSet.MergeFrom``1(LC.Google.Protobuf.ExtensionSet{``0}@,LC.Google.Protobuf.ExtensionSet{``0})">
  1849. <summary>
  1850. Merges the second set into the first set, creating a new instance if first is null
  1851. </summary>
  1852. </member>
  1853. <member name="M:LC.Google.Protobuf.ExtensionSet.Clone``1(LC.Google.Protobuf.ExtensionSet{``0})">
  1854. <summary>
  1855. Clones the set into a new set. If the set is null, this returns null
  1856. </summary>
  1857. </member>
  1858. <member name="T:LC.Google.Protobuf.ExtensionSet`1">
  1859. <summary>
  1860. Used for keeping track of extensions in messages.
  1861. <see cref="T:LC.Google.Protobuf.IExtendableMessage`1"/> methods route to this set.
  1862. Most users will not need to use this class directly
  1863. </summary>
  1864. <typeparam name="TTarget">The message type that extensions in this set target</typeparam>
  1865. </member>
  1866. <member name="M:LC.Google.Protobuf.ExtensionSet`1.GetHashCode">
  1867. <summary>
  1868. Gets a hash code of the set
  1869. </summary>
  1870. </member>
  1871. <member name="M:LC.Google.Protobuf.ExtensionSet`1.Equals(System.Object)">
  1872. <summary>
  1873. Returns whether this set is equal to the other object
  1874. </summary>
  1875. </member>
  1876. <member name="M:LC.Google.Protobuf.ExtensionSet`1.CalculateSize">
  1877. <summary>
  1878. Calculates the size of this extension set
  1879. </summary>
  1880. </member>
  1881. <member name="M:LC.Google.Protobuf.ExtensionSet`1.WriteTo(LC.Google.Protobuf.CodedOutputStream)">
  1882. <summary>
  1883. Writes the extension values in this set to the output stream
  1884. </summary>
  1885. </member>
  1886. <member name="T:LC.Google.Protobuf.FieldCodec">
  1887. <summary>
  1888. Factory methods for <see cref="T:LC.Google.Protobuf.FieldCodec`1"/>.
  1889. </summary>
  1890. </member>
  1891. <member name="M:LC.Google.Protobuf.FieldCodec.ForString(System.UInt32)">
  1892. <summary>
  1893. Retrieves a codec suitable for a string field with the given tag.
  1894. </summary>
  1895. <param name="tag">The tag.</param>
  1896. <returns>A codec for the given tag.</returns>
  1897. </member>
  1898. <member name="M:LC.Google.Protobuf.FieldCodec.ForBytes(System.UInt32)">
  1899. <summary>
  1900. Retrieves a codec suitable for a bytes field with the given tag.
  1901. </summary>
  1902. <param name="tag">The tag.</param>
  1903. <returns>A codec for the given tag.</returns>
  1904. </member>
  1905. <member name="M:LC.Google.Protobuf.FieldCodec.ForBool(System.UInt32)">
  1906. <summary>
  1907. Retrieves a codec suitable for a bool field with the given tag.
  1908. </summary>
  1909. <param name="tag">The tag.</param>
  1910. <returns>A codec for the given tag.</returns>
  1911. </member>
  1912. <member name="M:LC.Google.Protobuf.FieldCodec.ForInt32(System.UInt32)">
  1913. <summary>
  1914. Retrieves a codec suitable for an int32 field with the given tag.
  1915. </summary>
  1916. <param name="tag">The tag.</param>
  1917. <returns>A codec for the given tag.</returns>
  1918. </member>
  1919. <member name="M:LC.Google.Protobuf.FieldCodec.ForSInt32(System.UInt32)">
  1920. <summary>
  1921. Retrieves a codec suitable for an sint32 field with the given tag.
  1922. </summary>
  1923. <param name="tag">The tag.</param>
  1924. <returns>A codec for the given tag.</returns>
  1925. </member>
  1926. <member name="M:LC.Google.Protobuf.FieldCodec.ForFixed32(System.UInt32)">
  1927. <summary>
  1928. Retrieves a codec suitable for a fixed32 field with the given tag.
  1929. </summary>
  1930. <param name="tag">The tag.</param>
  1931. <returns>A codec for the given tag.</returns>
  1932. </member>
  1933. <member name="M:LC.Google.Protobuf.FieldCodec.ForSFixed32(System.UInt32)">
  1934. <summary>
  1935. Retrieves a codec suitable for an sfixed32 field with the given tag.
  1936. </summary>
  1937. <param name="tag">The tag.</param>
  1938. <returns>A codec for the given tag.</returns>
  1939. </member>
  1940. <member name="M:LC.Google.Protobuf.FieldCodec.ForUInt32(System.UInt32)">
  1941. <summary>
  1942. Retrieves a codec suitable for a uint32 field with the given tag.
  1943. </summary>
  1944. <param name="tag">The tag.</param>
  1945. <returns>A codec for the given tag.</returns>
  1946. </member>
  1947. <member name="M:LC.Google.Protobuf.FieldCodec.ForInt64(System.UInt32)">
  1948. <summary>
  1949. Retrieves a codec suitable for an int64 field with the given tag.
  1950. </summary>
  1951. <param name="tag">The tag.</param>
  1952. <returns>A codec for the given tag.</returns>
  1953. </member>
  1954. <member name="M:LC.Google.Protobuf.FieldCodec.ForSInt64(System.UInt32)">
  1955. <summary>
  1956. Retrieves a codec suitable for an sint64 field with the given tag.
  1957. </summary>
  1958. <param name="tag">The tag.</param>
  1959. <returns>A codec for the given tag.</returns>
  1960. </member>
  1961. <member name="M:LC.Google.Protobuf.FieldCodec.ForFixed64(System.UInt32)">
  1962. <summary>
  1963. Retrieves a codec suitable for a fixed64 field with the given tag.
  1964. </summary>
  1965. <param name="tag">The tag.</param>
  1966. <returns>A codec for the given tag.</returns>
  1967. </member>
  1968. <member name="M:LC.Google.Protobuf.FieldCodec.ForSFixed64(System.UInt32)">
  1969. <summary>
  1970. Retrieves a codec suitable for an sfixed64 field with the given tag.
  1971. </summary>
  1972. <param name="tag">The tag.</param>
  1973. <returns>A codec for the given tag.</returns>
  1974. </member>
  1975. <member name="M:LC.Google.Protobuf.FieldCodec.ForUInt64(System.UInt32)">
  1976. <summary>
  1977. Retrieves a codec suitable for a uint64 field with the given tag.
  1978. </summary>
  1979. <param name="tag">The tag.</param>
  1980. <returns>A codec for the given tag.</returns>
  1981. </member>
  1982. <member name="M:LC.Google.Protobuf.FieldCodec.ForFloat(System.UInt32)">
  1983. <summary>
  1984. Retrieves a codec suitable for a float field with the given tag.
  1985. </summary>
  1986. <param name="tag">The tag.</param>
  1987. <returns>A codec for the given tag.</returns>
  1988. </member>
  1989. <member name="M:LC.Google.Protobuf.FieldCodec.ForDouble(System.UInt32)">
  1990. <summary>
  1991. Retrieves a codec suitable for a double field with the given tag.
  1992. </summary>
  1993. <param name="tag">The tag.</param>
  1994. <returns>A codec for the given tag.</returns>
  1995. </member>
  1996. <member name="M:LC.Google.Protobuf.FieldCodec.ForEnum``1(System.UInt32,System.Func{``0,System.Int32},System.Func{System.Int32,``0})">
  1997. <summary>
  1998. Retrieves a codec suitable for an enum field with the given tag.
  1999. </summary>
  2000. <param name="tag">The tag.</param>
  2001. <param name="toInt32">A conversion function from <see cref="T:System.Int32"/> to the enum type.</param>
  2002. <param name="fromInt32">A conversion function from the enum type to <see cref="T:System.Int32"/>.</param>
  2003. <returns>A codec for the given tag.</returns>
  2004. </member>
  2005. <member name="M:LC.Google.Protobuf.FieldCodec.ForString(System.UInt32,System.String)">
  2006. <summary>
  2007. Retrieves a codec suitable for a string field with the given tag.
  2008. </summary>
  2009. <param name="tag">The tag.</param>
  2010. <param name="defaultValue">The default value.</param>
  2011. <returns>A codec for the given tag.</returns>
  2012. </member>
  2013. <member name="M:LC.Google.Protobuf.FieldCodec.ForBytes(System.UInt32,LC.Google.Protobuf.ByteString)">
  2014. <summary>
  2015. Retrieves a codec suitable for a bytes field with the given tag.
  2016. </summary>
  2017. <param name="tag">The tag.</param>
  2018. <param name="defaultValue">The default value.</param>
  2019. <returns>A codec for the given tag.</returns>
  2020. </member>
  2021. <member name="M:LC.Google.Protobuf.FieldCodec.ForBool(System.UInt32,System.Boolean)">
  2022. <summary>
  2023. Retrieves a codec suitable for a bool field with the given tag.
  2024. </summary>
  2025. <param name="tag">The tag.</param>
  2026. <param name="defaultValue">The default value.</param>
  2027. <returns>A codec for the given tag.</returns>
  2028. </member>
  2029. <member name="M:LC.Google.Protobuf.FieldCodec.ForInt32(System.UInt32,System.Int32)">
  2030. <summary>
  2031. Retrieves a codec suitable for an int32 field with the given tag.
  2032. </summary>
  2033. <param name="tag">The tag.</param>
  2034. <param name="defaultValue">The default value.</param>
  2035. <returns>A codec for the given tag.</returns>
  2036. </member>
  2037. <member name="M:LC.Google.Protobuf.FieldCodec.ForSInt32(System.UInt32,System.Int32)">
  2038. <summary>
  2039. Retrieves a codec suitable for an sint32 field with the given tag.
  2040. </summary>
  2041. <param name="tag">The tag.</param>
  2042. <param name="defaultValue">The default value.</param>
  2043. <returns>A codec for the given tag.</returns>
  2044. </member>
  2045. <member name="M:LC.Google.Protobuf.FieldCodec.ForFixed32(System.UInt32,System.UInt32)">
  2046. <summary>
  2047. Retrieves a codec suitable for a fixed32 field with the given tag.
  2048. </summary>
  2049. <param name="tag">The tag.</param>
  2050. <param name="defaultValue">The default value.</param>
  2051. <returns>A codec for the given tag.</returns>
  2052. </member>
  2053. <member name="M:LC.Google.Protobuf.FieldCodec.ForSFixed32(System.UInt32,System.Int32)">
  2054. <summary>
  2055. Retrieves a codec suitable for an sfixed32 field with the given tag.
  2056. </summary>
  2057. <param name="tag">The tag.</param>
  2058. <param name="defaultValue">The default value.</param>
  2059. <returns>A codec for the given tag.</returns>
  2060. </member>
  2061. <member name="M:LC.Google.Protobuf.FieldCodec.ForUInt32(System.UInt32,System.UInt32)">
  2062. <summary>
  2063. Retrieves a codec suitable for a uint32 field with the given tag.
  2064. </summary>
  2065. <param name="tag">The tag.</param>
  2066. <param name="defaultValue">The default value.</param>
  2067. <returns>A codec for the given tag.</returns>
  2068. </member>
  2069. <member name="M:LC.Google.Protobuf.FieldCodec.ForInt64(System.UInt32,System.Int64)">
  2070. <summary>
  2071. Retrieves a codec suitable for an int64 field with the given tag.
  2072. </summary>
  2073. <param name="tag">The tag.</param>
  2074. <param name="defaultValue">The default value.</param>
  2075. <returns>A codec for the given tag.</returns>
  2076. </member>
  2077. <member name="M:LC.Google.Protobuf.FieldCodec.ForSInt64(System.UInt32,System.Int64)">
  2078. <summary>
  2079. Retrieves a codec suitable for an sint64 field with the given tag.
  2080. </summary>
  2081. <param name="tag">The tag.</param>
  2082. <param name="defaultValue">The default value.</param>
  2083. <returns>A codec for the given tag.</returns>
  2084. </member>
  2085. <member name="M:LC.Google.Protobuf.FieldCodec.ForFixed64(System.UInt32,System.UInt64)">
  2086. <summary>
  2087. Retrieves a codec suitable for a fixed64 field with the given tag.
  2088. </summary>
  2089. <param name="tag">The tag.</param>
  2090. <param name="defaultValue">The default value.</param>
  2091. <returns>A codec for the given tag.</returns>
  2092. </member>
  2093. <member name="M:LC.Google.Protobuf.FieldCodec.ForSFixed64(System.UInt32,System.Int64)">
  2094. <summary>
  2095. Retrieves a codec suitable for an sfixed64 field with the given tag.
  2096. </summary>
  2097. <param name="tag">The tag.</param>
  2098. <param name="defaultValue">The default value.</param>
  2099. <returns>A codec for the given tag.</returns>
  2100. </member>
  2101. <member name="M:LC.Google.Protobuf.FieldCodec.ForUInt64(System.UInt32,System.UInt64)">
  2102. <summary>
  2103. Retrieves a codec suitable for a uint64 field with the given tag.
  2104. </summary>
  2105. <param name="tag">The tag.</param>
  2106. <param name="defaultValue">The default value.</param>
  2107. <returns>A codec for the given tag.</returns>
  2108. </member>
  2109. <member name="M:LC.Google.Protobuf.FieldCodec.ForFloat(System.UInt32,System.Single)">
  2110. <summary>
  2111. Retrieves a codec suitable for a float field with the given tag.
  2112. </summary>
  2113. <param name="tag">The tag.</param>
  2114. <param name="defaultValue">The default value.</param>
  2115. <returns>A codec for the given tag.</returns>
  2116. </member>
  2117. <member name="M:LC.Google.Protobuf.FieldCodec.ForDouble(System.UInt32,System.Double)">
  2118. <summary>
  2119. Retrieves a codec suitable for a double field with the given tag.
  2120. </summary>
  2121. <param name="tag">The tag.</param>
  2122. <param name="defaultValue">The default value.</param>
  2123. <returns>A codec for the given tag.</returns>
  2124. </member>
  2125. <member name="M:LC.Google.Protobuf.FieldCodec.ForEnum``1(System.UInt32,System.Func{``0,System.Int32},System.Func{System.Int32,``0},``0)">
  2126. <summary>
  2127. Retrieves a codec suitable for an enum field with the given tag.
  2128. </summary>
  2129. <param name="tag">The tag.</param>
  2130. <param name="toInt32">A conversion function from <see cref="T:System.Int32"/> to the enum type.</param>
  2131. <param name="fromInt32">A conversion function from the enum type to <see cref="T:System.Int32"/>.</param>
  2132. <param name="defaultValue">The default value.</param>
  2133. <returns>A codec for the given tag.</returns>
  2134. </member>
  2135. <member name="M:LC.Google.Protobuf.FieldCodec.ForMessage``1(System.UInt32,LC.Google.Protobuf.MessageParser{``0})">
  2136. <summary>
  2137. Retrieves a codec suitable for a message field with the given tag.
  2138. </summary>
  2139. <param name="tag">The tag.</param>
  2140. <param name="parser">A parser to use for the message type.</param>
  2141. <returns>A codec for the given tag.</returns>
  2142. </member>
  2143. <member name="M:LC.Google.Protobuf.FieldCodec.ForGroup``1(System.UInt32,System.UInt32,LC.Google.Protobuf.MessageParser{``0})">
  2144. <summary>
  2145. Retrieves a codec suitable for a group field with the given tag.
  2146. </summary>
  2147. <param name="startTag">The start group tag.</param>
  2148. <param name="endTag">The end group tag.</param>
  2149. <param name="parser">A parser to use for the group message type.</param>
  2150. <returns>A codec for given tag</returns>
  2151. </member>
  2152. <member name="M:LC.Google.Protobuf.FieldCodec.ForClassWrapper``1(System.UInt32)">
  2153. <summary>
  2154. Creates a codec for a wrapper type of a class - which must be string or ByteString.
  2155. </summary>
  2156. </member>
  2157. <member name="M:LC.Google.Protobuf.FieldCodec.ForStructWrapper``1(System.UInt32)">
  2158. <summary>
  2159. Creates a codec for a wrapper type of a struct - which must be Int32, Int64, UInt32, UInt64,
  2160. Bool, Single or Double.
  2161. </summary>
  2162. </member>
  2163. <member name="T:LC.Google.Protobuf.FieldCodec.WrapperCodecs">
  2164. <summary>
  2165. Helper code to create codecs for wrapper types.
  2166. </summary>
  2167. <remarks>
  2168. Somewhat ugly with all the static methods, but the conversions involved to/from nullable types make it
  2169. slightly tricky to improve. So long as we keep the public API (ForClassWrapper, ForStructWrapper) in place,
  2170. we can refactor later if we come up with something cleaner.
  2171. </remarks>
  2172. </member>
  2173. <member name="M:LC.Google.Protobuf.FieldCodec.WrapperCodecs.GetCodec``1">
  2174. <summary>
  2175. Returns a field codec which effectively wraps a value of type T in a message.
  2176. </summary>
  2177. </member>
  2178. <member name="T:LC.Google.Protobuf.FieldCodec`1">
  2179. <summary>
  2180. <para>
  2181. An encode/decode pair for a single field. This effectively encapsulates
  2182. all the information needed to read or write the field value from/to a coded
  2183. stream.
  2184. </para>
  2185. <para>
  2186. This class is public and has to be as it is used by generated code, but its public
  2187. API is very limited - just what the generated code needs to call directly.
  2188. </para>
  2189. </summary>
  2190. <remarks>
  2191. This never writes default values to the stream, and does not address "packedness"
  2192. in repeated fields itself, other than to know whether or not the field *should* be packed.
  2193. </remarks>
  2194. </member>
  2195. <member name="T:LC.Google.Protobuf.FieldCodec`1.InputMerger">
  2196. <summary>
  2197. Merges an input stream into a value
  2198. </summary>
  2199. </member>
  2200. <member name="T:LC.Google.Protobuf.FieldCodec`1.ValuesMerger">
  2201. <summary>
  2202. Merges a value into a reference to another value, returning a boolean if the value was set
  2203. </summary>
  2204. </member>
  2205. <member name="P:LC.Google.Protobuf.FieldCodec`1.ValueWriter">
  2206. <summary>
  2207. Returns a delegate to write a value (unconditionally) to a coded output stream.
  2208. </summary>
  2209. </member>
  2210. <member name="P:LC.Google.Protobuf.FieldCodec`1.ValueSizeCalculator">
  2211. <summary>
  2212. Returns the size calculator for just a value.
  2213. </summary>
  2214. </member>
  2215. <member name="P:LC.Google.Protobuf.FieldCodec`1.ValueReader">
  2216. <summary>
  2217. Returns a delegate to read a value from a coded input stream. It is assumed that
  2218. the stream is already positioned on the appropriate tag.
  2219. </summary>
  2220. </member>
  2221. <member name="P:LC.Google.Protobuf.FieldCodec`1.ValueMerger">
  2222. <summary>
  2223. Returns a delegate to merge a value from a coded input stream.
  2224. It is assumed that the stream is already positioned on the appropriate tag
  2225. </summary>
  2226. </member>
  2227. <member name="P:LC.Google.Protobuf.FieldCodec`1.FieldMerger">
  2228. <summary>
  2229. Returns a delegate to merge two values together.
  2230. </summary>
  2231. </member>
  2232. <member name="P:LC.Google.Protobuf.FieldCodec`1.FixedSize">
  2233. <summary>
  2234. Returns the fixed size for an entry, or 0 if sizes vary.
  2235. </summary>
  2236. </member>
  2237. <member name="P:LC.Google.Protobuf.FieldCodec`1.Tag">
  2238. <summary>
  2239. Gets the tag of the codec.
  2240. </summary>
  2241. <value>
  2242. The tag of the codec.
  2243. </value>
  2244. </member>
  2245. <member name="P:LC.Google.Protobuf.FieldCodec`1.EndTag">
  2246. <summary>
  2247. Gets the end tag of the codec or 0 if there is no end tag
  2248. </summary>
  2249. <value>
  2250. The end tag of the codec.
  2251. </value>
  2252. </member>
  2253. <member name="P:LC.Google.Protobuf.FieldCodec`1.DefaultValue">
  2254. <summary>
  2255. Default value for this codec. Usually the same for every instance of the same type, but
  2256. for string/ByteString wrapper fields the codec's default value is null, whereas for
  2257. other string/ByteString fields it's "" or ByteString.Empty.
  2258. </summary>
  2259. <value>
  2260. The default value of the codec's type.
  2261. </value>
  2262. </member>
  2263. <member name="M:LC.Google.Protobuf.FieldCodec`1.WriteTagAndValue(LC.Google.Protobuf.CodedOutputStream,`0)">
  2264. <summary>
  2265. Write a tag and the given value, *if* the value is not the default.
  2266. </summary>
  2267. </member>
  2268. <member name="M:LC.Google.Protobuf.FieldCodec`1.Read(LC.Google.Protobuf.CodedInputStream)">
  2269. <summary>
  2270. Reads a value of the codec type from the given <see cref="T:LC.Google.Protobuf.CodedInputStream"/>.
  2271. </summary>
  2272. <param name="input">The input stream to read from.</param>
  2273. <returns>The value read from the stream.</returns>
  2274. </member>
  2275. <member name="M:LC.Google.Protobuf.FieldCodec`1.CalculateSizeWithTag(`0)">
  2276. <summary>
  2277. Calculates the size required to write the given value, with a tag,
  2278. if the value is not the default.
  2279. </summary>
  2280. </member>
  2281. <member name="T:LC.Google.Protobuf.FieldMaskTree">
  2282. <summary>
  2283. <para>A tree representation of a FieldMask. Each leaf node in this tree represent
  2284. a field path in the FieldMask.</para>
  2285. <para>For example, FieldMask "foo.bar,foo.baz,bar.baz" as a tree will be:</para>
  2286. <code>
  2287. [root] -+- foo -+- bar
  2288. | |
  2289. | +- baz
  2290. |
  2291. +- bar --- baz
  2292. </code>
  2293. <para>By representing FieldMasks with this tree structure we can easily convert
  2294. a FieldMask to a canonical form, merge two FieldMasks, calculate the
  2295. intersection to two FieldMasks and traverse all fields specified by the
  2296. FieldMask in a message tree.</para>
  2297. </summary>
  2298. </member>
  2299. <member name="M:LC.Google.Protobuf.FieldMaskTree.#ctor">
  2300. <summary>
  2301. Creates an empty FieldMaskTree.
  2302. </summary>
  2303. </member>
  2304. <member name="M:LC.Google.Protobuf.FieldMaskTree.#ctor(LC.Google.Protobuf.WellKnownTypes.FieldMask)">
  2305. <summary>
  2306. Creates a FieldMaskTree for a given FieldMask.
  2307. </summary>
  2308. </member>
  2309. <member name="M:LC.Google.Protobuf.FieldMaskTree.AddFieldPath(System.String)">
  2310. <summary>
  2311. Adds a field path to the tree. In a FieldMask, every field path matches the
  2312. specified field as well as all its sub-fields. For example, a field path
  2313. "foo.bar" matches field "foo.bar" and also "foo.bar.baz", etc. When adding
  2314. a field path to the tree, redundant sub-paths will be removed. That is,
  2315. after adding "foo.bar" to the tree, "foo.bar.baz" will be removed if it
  2316. exists, which will turn the tree node for "foo.bar" to a leaf node.
  2317. Likewise, if the field path to add is a sub-path of an existing leaf node,
  2318. nothing will be changed in the tree.
  2319. </summary>
  2320. </member>
  2321. <member name="M:LC.Google.Protobuf.FieldMaskTree.MergeFromFieldMask(LC.Google.Protobuf.WellKnownTypes.FieldMask)">
  2322. <summary>
  2323. Merges all field paths in a FieldMask into this tree.
  2324. </summary>
  2325. </member>
  2326. <member name="M:LC.Google.Protobuf.FieldMaskTree.ToFieldMask">
  2327. <summary>
  2328. Converts this tree to a FieldMask.
  2329. </summary>
  2330. </member>
  2331. <member name="M:LC.Google.Protobuf.FieldMaskTree.GetFieldPaths(LC.Google.Protobuf.FieldMaskTree.Node,System.String,System.Collections.Generic.List{System.String})">
  2332. <summary>
  2333. Gathers all field paths in a sub-tree.
  2334. </summary>
  2335. </member>
  2336. <member name="M:LC.Google.Protobuf.FieldMaskTree.IntersectFieldPath(System.String,LC.Google.Protobuf.FieldMaskTree)">
  2337. <summary>
  2338. Adds the intersection of this tree with the given <paramref name="path"/> to <paramref name="output"/>.
  2339. </summary>
  2340. </member>
  2341. <member name="M:LC.Google.Protobuf.FieldMaskTree.Merge(LC.Google.Protobuf.IMessage,LC.Google.Protobuf.IMessage,LC.Google.Protobuf.WellKnownTypes.FieldMask.MergeOptions)">
  2342. <summary>
  2343. Merges all fields specified by this FieldMaskTree from <paramref name="source"/> to <paramref name="destination"/>.
  2344. </summary>
  2345. </member>
  2346. <member name="M:LC.Google.Protobuf.FieldMaskTree.Merge(LC.Google.Protobuf.FieldMaskTree.Node,System.String,LC.Google.Protobuf.IMessage,LC.Google.Protobuf.IMessage,LC.Google.Protobuf.WellKnownTypes.FieldMask.MergeOptions)">
  2347. <summary>
  2348. Merges all fields specified by a sub-tree from <paramref name="source"/> to <paramref name="destination"/>.
  2349. </summary>
  2350. </member>
  2351. <member name="T:LC.Google.Protobuf.FrameworkPortability">
  2352. <summary>
  2353. Class containing helpful workarounds for various platform compatibility
  2354. </summary>
  2355. </member>
  2356. <member name="T:LC.Google.Protobuf.ICustomDiagnosticMessage">
  2357. <summary>
  2358. A message type that has a custom string format for diagnostic purposes.
  2359. </summary>
  2360. <remarks>
  2361. <para>
  2362. Calling <see cref="M:System.Object.ToString"/> on a generated message type normally
  2363. returns the JSON representation. If a message type implements this interface,
  2364. then the <see cref="M:LC.Google.Protobuf.ICustomDiagnosticMessage.ToDiagnosticString"/> method will be called instead of the regular
  2365. JSON formatting code, but only when <c>ToString()</c> is called either on the message itself
  2366. or on another message which contains it. This does not affect the normal JSON formatting of
  2367. the message.
  2368. </para>
  2369. <para>
  2370. For example, if you create a proto message representing a GUID, the internal
  2371. representation may be a <c>bytes</c> field or four <c>fixed32</c> fields. However, when debugging
  2372. it may be more convenient to see a result in the same format as <see cref="T:System.Guid"/> provides.
  2373. </para>
  2374. <para>This interface extends <see cref="T:LC.Google.Protobuf.IMessage"/> to avoid it accidentally being implemented
  2375. on types other than messages, where it would not be used by anything in the framework.</para>
  2376. </remarks>
  2377. </member>
  2378. <member name="M:LC.Google.Protobuf.ICustomDiagnosticMessage.ToDiagnosticString">
  2379. <summary>
  2380. Returns a string representation of this object, for diagnostic purposes.
  2381. </summary>
  2382. <remarks>
  2383. This method is called when a message is formatted as part of a <see cref="M:System.Object.ToString"/>
  2384. call. It does not affect the JSON representation used by <see cref="T:LC.Google.Protobuf.JsonFormatter"/> other than
  2385. in calls to <see cref="M:LC.Google.Protobuf.JsonFormatter.ToDiagnosticString(LC.Google.Protobuf.IMessage)"/>. While it is recommended
  2386. that the result is valid JSON, this is never assumed by the Protobuf library.
  2387. </remarks>
  2388. <returns>A string representation of this object, for diagnostic purposes.</returns>
  2389. </member>
  2390. <member name="T:LC.Google.Protobuf.IDeepCloneable`1">
  2391. <summary>
  2392. Generic interface for a deeply cloneable type.
  2393. </summary>
  2394. <remarks>
  2395. <para>
  2396. All generated messages implement this interface, but so do some non-message types.
  2397. Additionally, due to the type constraint on <c>T</c> in <see cref="T:LC.Google.Protobuf.IMessage`1"/>,
  2398. it is simpler to keep this as a separate interface.
  2399. </para>
  2400. </remarks>
  2401. <typeparam name="T">The type itself, returned by the <see cref="M:LC.Google.Protobuf.IDeepCloneable`1.Clone"/> method.</typeparam>
  2402. </member>
  2403. <member name="M:LC.Google.Protobuf.IDeepCloneable`1.Clone">
  2404. <summary>
  2405. Creates a deep clone of this object.
  2406. </summary>
  2407. <returns>A deep clone of this object.</returns>
  2408. </member>
  2409. <member name="T:LC.Google.Protobuf.IExtendableMessage`1">
  2410. <summary>
  2411. 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.
  2412. This interface is experiemental and is subject to change.
  2413. </summary>
  2414. </member>
  2415. <member name="M:LC.Google.Protobuf.IExtendableMessage`1.GetExtension``1(LC.Google.Protobuf.Extension{`0,``0})">
  2416. <summary>
  2417. Gets the value of the specified extension
  2418. </summary>
  2419. </member>
  2420. <member name="M:LC.Google.Protobuf.IExtendableMessage`1.GetExtension``1(LC.Google.Protobuf.RepeatedExtension{`0,``0})">
  2421. <summary>
  2422. Gets the value of the specified repeated extension or null if the extension isn't registered in this set.
  2423. For a version of this method that never returns null, use <see cref="M:LC.Google.Protobuf.IExtendableMessage`1.GetOrInitializeExtension``1(LC.Google.Protobuf.RepeatedExtension{`0,``0})"/>
  2424. </summary>
  2425. </member>
  2426. <member name="M:LC.Google.Protobuf.IExtendableMessage`1.GetOrInitializeExtension``1(LC.Google.Protobuf.RepeatedExtension{`0,``0})">
  2427. <summary>
  2428. Gets the value of the specified repeated extension, registering it if it hasn't already been registered.
  2429. </summary>
  2430. </member>
  2431. <member name="M:LC.Google.Protobuf.IExtendableMessage`1.SetExtension``1(LC.Google.Protobuf.Extension{`0,``0},``0)">
  2432. <summary>
  2433. Sets the value of the specified extension
  2434. </summary>
  2435. </member>
  2436. <member name="M:LC.Google.Protobuf.IExtendableMessage`1.HasExtension``1(LC.Google.Protobuf.Extension{`0,``0})">
  2437. <summary>
  2438. Gets whether the value of the specified extension is set
  2439. </summary>
  2440. </member>
  2441. <member name="M:LC.Google.Protobuf.IExtendableMessage`1.ClearExtension``1(LC.Google.Protobuf.Extension{`0,``0})">
  2442. <summary>
  2443. Clears the value of the specified extension
  2444. </summary>
  2445. </member>
  2446. <member name="M:LC.Google.Protobuf.IExtendableMessage`1.ClearExtension``1(LC.Google.Protobuf.RepeatedExtension{`0,``0})">
  2447. <summary>
  2448. Clears the value of the specified repeated extension
  2449. </summary>
  2450. </member>
  2451. <member name="T:LC.Google.Protobuf.IMessage">
  2452. <summary>
  2453. Interface for a Protocol Buffers message, supporting
  2454. basic operations required for serialization.
  2455. </summary>
  2456. </member>
  2457. <member name="M:LC.Google.Protobuf.IMessage.MergeFrom(LC.Google.Protobuf.CodedInputStream)">
  2458. <summary>
  2459. Merges the data from the specified coded input stream with the current message.
  2460. </summary>
  2461. <remarks>See the user guide for precise merge semantics.</remarks>
  2462. <param name="input"></param>
  2463. </member>
  2464. <member name="M:LC.Google.Protobuf.IMessage.WriteTo(LC.Google.Protobuf.CodedOutputStream)">
  2465. <summary>
  2466. Writes the data to the given coded output stream.
  2467. </summary>
  2468. <param name="output">Coded output stream to write the data to. Must not be null.</param>
  2469. </member>
  2470. <member name="M:LC.Google.Protobuf.IMessage.CalculateSize">
  2471. <summary>
  2472. Calculates the size of this message in Protocol Buffer wire format, in bytes.
  2473. </summary>
  2474. <returns>The number of bytes required to write this message
  2475. to a coded output stream.</returns>
  2476. </member>
  2477. <member name="P:LC.Google.Protobuf.IMessage.Descriptor">
  2478. <summary>
  2479. Descriptor for this message. All instances are expected to return the same descriptor,
  2480. and for generated types this will be an explicitly-implemented member, returning the
  2481. same value as the static property declared on the type.
  2482. </summary>
  2483. </member>
  2484. <member name="T:LC.Google.Protobuf.IMessage`1">
  2485. <summary>
  2486. Generic interface for a Protocol Buffers message,
  2487. where the type parameter is expected to be the same type as
  2488. the implementation class.
  2489. </summary>
  2490. <typeparam name="T">The message type.</typeparam>
  2491. </member>
  2492. <member name="M:LC.Google.Protobuf.IMessage`1.MergeFrom(`0)">
  2493. <summary>
  2494. Merges the given message into this one.
  2495. </summary>
  2496. <remarks>See the user guide for precise merge semantics.</remarks>
  2497. <param name="message">The message to merge with this one. Must not be null.</param>
  2498. </member>
  2499. <member name="T:LC.Google.Protobuf.InvalidJsonException">
  2500. <summary>
  2501. Thrown when an attempt is made to parse invalid JSON, e.g. using
  2502. a non-string property key, or including a redundant comma. Parsing a protocol buffer
  2503. message represented in JSON using <see cref="T:LC.Google.Protobuf.JsonParser"/> can throw both this
  2504. exception and <see cref="T:LC.Google.Protobuf.InvalidProtocolBufferException"/> depending on the situation. This
  2505. exception is only thrown for "pure JSON" errors, whereas <c>InvalidProtocolBufferException</c>
  2506. is thrown when the JSON may be valid in and of itself, but cannot be parsed as a protocol buffer
  2507. message.
  2508. </summary>
  2509. </member>
  2510. <member name="T:LC.Google.Protobuf.InvalidProtocolBufferException">
  2511. <summary>
  2512. Thrown when a protocol message being parsed is invalid in some way,
  2513. e.g. it contains a malformed varint or a negative byte length.
  2514. </summary>
  2515. </member>
  2516. <member name="M:LC.Google.Protobuf.InvalidProtocolBufferException.InvalidTag">
  2517. <summary>
  2518. Creates an exception for an error condition of an invalid tag being encountered.
  2519. </summary>
  2520. </member>
  2521. <member name="T:LC.Google.Protobuf.JsonFormatter">
  2522. <summary>
  2523. Reflection-based converter from messages to JSON.
  2524. </summary>
  2525. <remarks>
  2526. <para>
  2527. Instances of this class are thread-safe, with no mutable state.
  2528. </para>
  2529. <para>
  2530. This is a simple start to get JSON formatting working. As it's reflection-based,
  2531. it's not as quick as baking calls into generated messages - but is a simpler implementation.
  2532. (This code is generally not heavily optimized.)
  2533. </para>
  2534. </remarks>
  2535. </member>
  2536. <member name="P:LC.Google.Protobuf.JsonFormatter.Default">
  2537. <summary>
  2538. Returns a formatter using the default settings.
  2539. </summary>
  2540. </member>
  2541. <member name="F:LC.Google.Protobuf.JsonFormatter.CommonRepresentations">
  2542. <summary>
  2543. The JSON representation of the first 160 characters of Unicode.
  2544. Empty strings are replaced by the static constructor.
  2545. </summary>
  2546. </member>
  2547. <member name="M:LC.Google.Protobuf.JsonFormatter.#ctor(LC.Google.Protobuf.JsonFormatter.Settings)">
  2548. <summary>
  2549. Creates a new formatted with the given settings.
  2550. </summary>
  2551. <param name="settings">The settings.</param>
  2552. </member>
  2553. <member name="M:LC.Google.Protobuf.JsonFormatter.Format(LC.Google.Protobuf.IMessage)">
  2554. <summary>
  2555. Formats the specified message as JSON.
  2556. </summary>
  2557. <param name="message">The message to format.</param>
  2558. <returns>The formatted message.</returns>
  2559. </member>
  2560. <member name="M:LC.Google.Protobuf.JsonFormatter.Format(LC.Google.Protobuf.IMessage,System.IO.TextWriter)">
  2561. <summary>
  2562. Formats the specified message as JSON.
  2563. </summary>
  2564. <param name="message">The message to format.</param>
  2565. <param name="writer">The TextWriter to write the formatted message to.</param>
  2566. <returns>The formatted message.</returns>
  2567. </member>
  2568. <member name="M:LC.Google.Protobuf.JsonFormatter.ToDiagnosticString(LC.Google.Protobuf.IMessage)">
  2569. <summary>
  2570. Converts a message to JSON for diagnostic purposes with no extra context.
  2571. </summary>
  2572. <remarks>
  2573. <para>
  2574. This differs from calling <see cref="M:LC.Google.Protobuf.JsonFormatter.Format(LC.Google.Protobuf.IMessage)"/> on the default JSON
  2575. formatter in its handling of <see cref="T:LC.Google.Protobuf.WellKnownTypes.Any"/>. As no type registry is available
  2576. in <see cref="M:System.Object.ToString"/> calls, the normal way of resolving the type of
  2577. an <c>Any</c> message cannot be applied. Instead, a JSON property named <c>@value</c>
  2578. is included with the base64 data from the <see cref="P:LC.Google.Protobuf.WellKnownTypes.Any.Value"/> property of the message.
  2579. </para>
  2580. <para>The value returned by this method is only designed to be used for diagnostic
  2581. purposes. It may not be parsable by <see cref="T:LC.Google.Protobuf.JsonParser"/>, and may not be parsable
  2582. by other Protocol Buffer implementations.</para>
  2583. </remarks>
  2584. <param name="message">The message to format for diagnostic purposes.</param>
  2585. <returns>The diagnostic-only JSON representation of the message</returns>
  2586. </member>
  2587. <member name="M:LC.Google.Protobuf.JsonFormatter.WriteValue(System.IO.TextWriter,System.Object)">
  2588. <summary>
  2589. Writes a single value to the given writer as JSON. Only types understood by
  2590. Protocol Buffers can be written in this way. This method is only exposed for
  2591. advanced use cases; most users should be using <see cref="M:LC.Google.Protobuf.JsonFormatter.Format(LC.Google.Protobuf.IMessage)"/>
  2592. or <see cref="M:LC.Google.Protobuf.JsonFormatter.Format(LC.Google.Protobuf.IMessage,System.IO.TextWriter)"/>.
  2593. </summary>
  2594. <param name="writer">The writer to write the value to. Must not be null.</param>
  2595. <param name="value">The value to write. May be null.</param>
  2596. </member>
  2597. <member name="M:LC.Google.Protobuf.JsonFormatter.WriteWellKnownTypeValue(System.IO.TextWriter,LC.Google.Protobuf.Reflection.MessageDescriptor,System.Object)">
  2598. <summary>
  2599. Central interception point for well-known type formatting. Any well-known types which
  2600. don't need special handling can fall back to WriteMessage. We avoid assuming that the
  2601. values are using the embedded well-known types, in order to allow for dynamic messages
  2602. in the future.
  2603. </summary>
  2604. </member>
  2605. <member name="M:LC.Google.Protobuf.JsonFormatter.WriteString(System.IO.TextWriter,System.String)">
  2606. <summary>
  2607. Writes a string (including leading and trailing double quotes) to a builder, escaping as required.
  2608. </summary>
  2609. <remarks>
  2610. Other than surrogate pair handling, this code is mostly taken from src/google/protobuf/util/internal/json_escaping.cc.
  2611. </remarks>
  2612. </member>
  2613. <member name="T:LC.Google.Protobuf.JsonFormatter.Settings">
  2614. <summary>
  2615. Settings controlling JSON formatting.
  2616. </summary>
  2617. </member>
  2618. <member name="P:LC.Google.Protobuf.JsonFormatter.Settings.Default">
  2619. <summary>
  2620. Default settings, as used by <see cref="P:LC.Google.Protobuf.JsonFormatter.Default"/>
  2621. </summary>
  2622. </member>
  2623. <member name="P:LC.Google.Protobuf.JsonFormatter.Settings.FormatDefaultValues">
  2624. <summary>
  2625. Whether fields whose values are the default for the field type (e.g. 0 for integers)
  2626. should be formatted (true) or omitted (false).
  2627. </summary>
  2628. </member>
  2629. <member name="P:LC.Google.Protobuf.JsonFormatter.Settings.TypeRegistry">
  2630. <summary>
  2631. The type registry used to format <see cref="T:LC.Google.Protobuf.WellKnownTypes.Any"/> messages.
  2632. </summary>
  2633. </member>
  2634. <member name="P:LC.Google.Protobuf.JsonFormatter.Settings.FormatEnumsAsIntegers">
  2635. <summary>
  2636. Whether to format enums as ints. Defaults to false.
  2637. </summary>
  2638. </member>
  2639. <member name="M:LC.Google.Protobuf.JsonFormatter.Settings.#ctor(System.Boolean)">
  2640. <summary>
  2641. Creates a new <see cref="T:LC.Google.Protobuf.JsonFormatter.Settings"/> object with the specified formatting of default values
  2642. and an empty type registry.
  2643. </summary>
  2644. <param name="formatDefaultValues"><c>true</c> if default values (0, empty strings etc) should be formatted; <c>false</c> otherwise.</param>
  2645. </member>
  2646. <member name="M:LC.Google.Protobuf.JsonFormatter.Settings.#ctor(System.Boolean,LC.Google.Protobuf.Reflection.TypeRegistry)">
  2647. <summary>
  2648. Creates a new <see cref="T:LC.Google.Protobuf.JsonFormatter.Settings"/> object with the specified formatting of default values
  2649. and type registry.
  2650. </summary>
  2651. <param name="formatDefaultValues"><c>true</c> if default values (0, empty strings etc) should be formatted; <c>false</c> otherwise.</param>
  2652. <param name="typeRegistry">The <see cref="P:LC.Google.Protobuf.JsonFormatter.Settings.TypeRegistry"/> to use when formatting <see cref="T:LC.Google.Protobuf.WellKnownTypes.Any"/> messages.</param>
  2653. </member>
  2654. <member name="M:LC.Google.Protobuf.JsonFormatter.Settings.#ctor(System.Boolean,LC.Google.Protobuf.Reflection.TypeRegistry,System.Boolean)">
  2655. <summary>
  2656. Creates a new <see cref="T:LC.Google.Protobuf.JsonFormatter.Settings"/> object with the specified parameters.
  2657. </summary>
  2658. <param name="formatDefaultValues"><c>true</c> if default values (0, empty strings etc) should be formatted; <c>false</c> otherwise.</param>
  2659. <param name="typeRegistry">The <see cref="P:LC.Google.Protobuf.JsonFormatter.Settings.TypeRegistry"/> to use when formatting <see cref="T:LC.Google.Protobuf.WellKnownTypes.Any"/> messages. TypeRegistry.Empty will be used if it is null.</param>
  2660. <param name="formatEnumsAsIntegers"><c>true</c> to format the enums as integers; <c>false</c> to format enums as enum names.</param>
  2661. </member>
  2662. <member name="M:LC.Google.Protobuf.JsonFormatter.Settings.WithFormatDefaultValues(System.Boolean)">
  2663. <summary>
  2664. Creates a new <see cref="T:LC.Google.Protobuf.JsonFormatter.Settings"/> object with the specified formatting of default values and the current settings.
  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. </member>
  2668. <member name="M:LC.Google.Protobuf.JsonFormatter.Settings.WithTypeRegistry(LC.Google.Protobuf.Reflection.TypeRegistry)">
  2669. <summary>
  2670. Creates a new <see cref="T:LC.Google.Protobuf.JsonFormatter.Settings"/> object with the specified type registry and the current settings.
  2671. </summary>
  2672. <param name="typeRegistry">The <see cref="P:LC.Google.Protobuf.JsonFormatter.Settings.TypeRegistry"/> to use when formatting <see cref="T:LC.Google.Protobuf.WellKnownTypes.Any"/> messages.</param>
  2673. </member>
  2674. <member name="M:LC.Google.Protobuf.JsonFormatter.Settings.WithFormatEnumsAsIntegers(System.Boolean)">
  2675. <summary>
  2676. Creates a new <see cref="T:LC.Google.Protobuf.JsonFormatter.Settings"/> object with the specified enums formatting option and the current settings.
  2677. </summary>
  2678. <param name="formatEnumsAsIntegers"><c>true</c> to format the enums as integers; <c>false</c> to format enums as enum names.</param>
  2679. </member>
  2680. <member name="T:LC.Google.Protobuf.JsonParser">
  2681. <summary>
  2682. Reflection-based converter from JSON to messages.
  2683. </summary>
  2684. <remarks>
  2685. <para>
  2686. Instances of this class are thread-safe, with no mutable state.
  2687. </para>
  2688. <para>
  2689. This is a simple start to get JSON parsing working. As it's reflection-based,
  2690. it's not as quick as baking calls into generated messages - but is a simpler implementation.
  2691. (This code is generally not heavily optimized.)
  2692. </para>
  2693. </remarks>
  2694. </member>
  2695. <member name="P:LC.Google.Protobuf.JsonParser.Default">
  2696. <summary>
  2697. Returns a formatter using the default settings.
  2698. </summary>
  2699. </member>
  2700. <member name="M:LC.Google.Protobuf.JsonParser.#ctor(LC.Google.Protobuf.JsonParser.Settings)">
  2701. <summary>
  2702. Creates a new formatted with the given settings.
  2703. </summary>
  2704. <param name="settings">The settings.</param>
  2705. </member>
  2706. <member name="M:LC.Google.Protobuf.JsonParser.Merge(LC.Google.Protobuf.IMessage,System.String)">
  2707. <summary>
  2708. Parses <paramref name="json"/> and merges the information into the given message.
  2709. </summary>
  2710. <param name="message">The message to merge the JSON information into.</param>
  2711. <param name="json">The JSON to parse.</param>
  2712. </member>
  2713. <member name="M:LC.Google.Protobuf.JsonParser.Merge(LC.Google.Protobuf.IMessage,System.IO.TextReader)">
  2714. <summary>
  2715. Parses JSON read from <paramref name="jsonReader"/> and merges the information into the given message.
  2716. </summary>
  2717. <param name="message">The message to merge the JSON information into.</param>
  2718. <param name="jsonReader">Reader providing the JSON to parse.</param>
  2719. </member>
  2720. <member name="M:LC.Google.Protobuf.JsonParser.Merge(LC.Google.Protobuf.IMessage,LC.Google.Protobuf.JsonTokenizer)">
  2721. <summary>
  2722. Merges the given message using data from the given tokenizer. In most cases, the next
  2723. token should be a "start object" token, but wrapper types and nullity can invalidate
  2724. that assumption. This is implemented as an LL(1) recursive descent parser over the stream
  2725. of tokens provided by the tokenizer. This token stream is assumed to be valid JSON, with the
  2726. tokenizer performing that validation - but not every token stream is valid "protobuf JSON".
  2727. </summary>
  2728. </member>
  2729. <member name="M:LC.Google.Protobuf.JsonParser.Parse``1(System.String)">
  2730. <summary>
  2731. Parses <paramref name="json"/> into a new message.
  2732. </summary>
  2733. <typeparam name="T">The type of message to create.</typeparam>
  2734. <param name="json">The JSON to parse.</param>
  2735. <exception cref="T:LC.Google.Protobuf.InvalidJsonException">The JSON does not comply with RFC 7159</exception>
  2736. <exception cref="T:LC.Google.Protobuf.InvalidProtocolBufferException">The JSON does not represent a Protocol Buffers message correctly</exception>
  2737. </member>
  2738. <member name="M:LC.Google.Protobuf.JsonParser.Parse``1(System.IO.TextReader)">
  2739. <summary>
  2740. Parses JSON read from <paramref name="jsonReader"/> into a new message.
  2741. </summary>
  2742. <typeparam name="T">The type of message to create.</typeparam>
  2743. <param name="jsonReader">Reader providing the JSON to parse.</param>
  2744. <exception cref="T:LC.Google.Protobuf.InvalidJsonException">The JSON does not comply with RFC 7159</exception>
  2745. <exception cref="T:LC.Google.Protobuf.InvalidProtocolBufferException">The JSON does not represent a Protocol Buffers message correctly</exception>
  2746. </member>
  2747. <member name="M:LC.Google.Protobuf.JsonParser.Parse(System.String,LC.Google.Protobuf.Reflection.MessageDescriptor)">
  2748. <summary>
  2749. Parses <paramref name="json"/> into a new message.
  2750. </summary>
  2751. <param name="json">The JSON to parse.</param>
  2752. <param name="descriptor">Descriptor of message type to parse.</param>
  2753. <exception cref="T:LC.Google.Protobuf.InvalidJsonException">The JSON does not comply with RFC 7159</exception>
  2754. <exception cref="T:LC.Google.Protobuf.InvalidProtocolBufferException">The JSON does not represent a Protocol Buffers message correctly</exception>
  2755. </member>
  2756. <member name="M:LC.Google.Protobuf.JsonParser.Parse(System.IO.TextReader,LC.Google.Protobuf.Reflection.MessageDescriptor)">
  2757. <summary>
  2758. Parses JSON read from <paramref name="jsonReader"/> into a new message.
  2759. </summary>
  2760. <param name="jsonReader">Reader providing the JSON to parse.</param>
  2761. <param name="descriptor">Descriptor of message type to parse.</param>
  2762. <exception cref="T:LC.Google.Protobuf.InvalidJsonException">The JSON does not comply with RFC 7159</exception>
  2763. <exception cref="T:LC.Google.Protobuf.InvalidProtocolBufferException">The JSON does not represent a Protocol Buffers message correctly</exception>
  2764. </member>
  2765. <member name="M:LC.Google.Protobuf.JsonParser.NewMessageForField(LC.Google.Protobuf.Reflection.FieldDescriptor)">
  2766. <summary>
  2767. Creates a new instance of the message type for the given field.
  2768. </summary>
  2769. </member>
  2770. <member name="M:LC.Google.Protobuf.JsonParser.ValidateInfinityAndNan(System.String,System.Boolean,System.Boolean,System.Boolean)">
  2771. <summary>
  2772. Checks that any infinite/NaN values originated from the correct text.
  2773. This corrects the lenient whitespace handling of double.Parse/float.Parse, as well as the
  2774. way that Mono parses out-of-range values as infinity.
  2775. </summary>
  2776. </member>
  2777. <member name="T:LC.Google.Protobuf.JsonParser.Settings">
  2778. <summary>
  2779. Settings controlling JSON parsing.
  2780. </summary>
  2781. </member>
  2782. <member name="P:LC.Google.Protobuf.JsonParser.Settings.Default">
  2783. <summary>
  2784. Default settings, as used by <see cref="P:LC.Google.Protobuf.JsonParser.Default"/>. This has the same default
  2785. recursion limit as <see cref="T:LC.Google.Protobuf.CodedInputStream"/>, and an empty type registry.
  2786. </summary>
  2787. </member>
  2788. <member name="P:LC.Google.Protobuf.JsonParser.Settings.RecursionLimit">
  2789. <summary>
  2790. The maximum depth of messages to parse. Note that this limit only applies to parsing
  2791. messages, not collections - so a message within a collection within a message only counts as
  2792. depth 2, not 3.
  2793. </summary>
  2794. </member>
  2795. <member name="P:LC.Google.Protobuf.JsonParser.Settings.TypeRegistry">
  2796. <summary>
  2797. The type registry used to parse <see cref="T:LC.Google.Protobuf.WellKnownTypes.Any"/> messages.
  2798. </summary>
  2799. </member>
  2800. <member name="P:LC.Google.Protobuf.JsonParser.Settings.IgnoreUnknownFields">
  2801. <summary>
  2802. Whether the parser should ignore unknown fields (<c>true</c>) or throw an exception when
  2803. they are encountered (<c>false</c>).
  2804. </summary>
  2805. </member>
  2806. <member name="M:LC.Google.Protobuf.JsonParser.Settings.#ctor(System.Int32)">
  2807. <summary>
  2808. Creates a new <see cref="T:LC.Google.Protobuf.JsonParser.Settings"/> object with the specified recursion limit.
  2809. </summary>
  2810. <param name="recursionLimit">The maximum depth of messages to parse</param>
  2811. </member>
  2812. <member name="M:LC.Google.Protobuf.JsonParser.Settings.#ctor(System.Int32,LC.Google.Protobuf.Reflection.TypeRegistry)">
  2813. <summary>
  2814. Creates a new <see cref="T:LC.Google.Protobuf.JsonParser.Settings"/> object with the specified recursion limit and type registry.
  2815. </summary>
  2816. <param name="recursionLimit">The maximum depth of messages to parse</param>
  2817. <param name="typeRegistry">The type registry used to parse <see cref="T:LC.Google.Protobuf.WellKnownTypes.Any"/> messages</param>
  2818. </member>
  2819. <member name="M:LC.Google.Protobuf.JsonParser.Settings.WithIgnoreUnknownFields(System.Boolean)">
  2820. <summary>
  2821. Creates a new <see cref="T:LC.Google.Protobuf.JsonParser.Settings"/> object set to either ignore unknown fields, or throw an exception
  2822. when unknown fields are encountered.
  2823. </summary>
  2824. <param name="ignoreUnknownFields"><c>true</c> if unknown fields should be ignored when parsing; <c>false</c> to throw an exception.</param>
  2825. </member>
  2826. <member name="M:LC.Google.Protobuf.JsonParser.Settings.WithRecursionLimit(System.Int32)">
  2827. <summary>
  2828. Creates a new <see cref="T:LC.Google.Protobuf.JsonParser.Settings"/> object based on this one, but with the specified recursion limit.
  2829. </summary>
  2830. <param name="recursionLimit">The new recursion limit.</param>
  2831. </member>
  2832. <member name="M:LC.Google.Protobuf.JsonParser.Settings.WithTypeRegistry(LC.Google.Protobuf.Reflection.TypeRegistry)">
  2833. <summary>
  2834. Creates a new <see cref="T:LC.Google.Protobuf.JsonParser.Settings"/> object based on this one, but with the specified type registry.
  2835. </summary>
  2836. <param name="typeRegistry">The new type registry. Must not be null.</param>
  2837. </member>
  2838. <member name="T:LC.Google.Protobuf.JsonTokenizer">
  2839. <summary>
  2840. Simple but strict JSON tokenizer, rigidly following RFC 7159.
  2841. </summary>
  2842. <remarks>
  2843. <para>
  2844. This tokenizer is stateful, and only returns "useful" tokens - names, values etc.
  2845. It does not create tokens for the separator between names and values, or for the comma
  2846. between values. It validates the token stream as it goes - so callers can assume that the
  2847. tokens it produces are appropriate. For example, it would never produce "start object, end array."
  2848. </para>
  2849. <para>Implementation details: the base class handles single token push-back and </para>
  2850. <para>Not thread-safe.</para>
  2851. </remarks>
  2852. </member>
  2853. <member name="M:LC.Google.Protobuf.JsonTokenizer.FromTextReader(System.IO.TextReader)">
  2854. <summary>
  2855. Creates a tokenizer that reads from the given text reader.
  2856. </summary>
  2857. </member>
  2858. <member name="M:LC.Google.Protobuf.JsonTokenizer.FromReplayedTokens(System.Collections.Generic.IList{LC.Google.Protobuf.JsonToken},LC.Google.Protobuf.JsonTokenizer)">
  2859. <summary>
  2860. Creates a tokenizer that first replays the given list of tokens, then continues reading
  2861. from another tokenizer. Note that if the returned tokenizer is "pushed back", that does not push back
  2862. on the continuation tokenizer, or vice versa. Care should be taken when using this method - it was
  2863. created for the sake of Any parsing.
  2864. </summary>
  2865. </member>
  2866. <member name="P:LC.Google.Protobuf.JsonTokenizer.ObjectDepth">
  2867. <summary>
  2868. Returns the depth of the stack, purely in objects (not collections).
  2869. Informally, this is the number of remaining unclosed '{' characters we have.
  2870. </summary>
  2871. </member>
  2872. <member name="M:LC.Google.Protobuf.JsonTokenizer.Next">
  2873. <summary>
  2874. Returns the next JSON token in the stream. An EndDocument token is returned to indicate the end of the stream,
  2875. after which point <c>Next()</c> should not be called again.
  2876. </summary>
  2877. <remarks>This implementation provides single-token buffering, and calls <see cref="M:LC.Google.Protobuf.JsonTokenizer.NextImpl"/> if there is no buffered token.</remarks>
  2878. <returns>The next token in the stream. This is never null.</returns>
  2879. <exception cref="T:System.InvalidOperationException">This method is called after an EndDocument token has been returned</exception>
  2880. <exception cref="T:LC.Google.Protobuf.InvalidJsonException">The input text does not comply with RFC 7159</exception>
  2881. </member>
  2882. <member name="M:LC.Google.Protobuf.JsonTokenizer.NextImpl">
  2883. <summary>
  2884. Returns the next JSON token in the stream, when requested by the base class. (The <see cref="M:LC.Google.Protobuf.JsonTokenizer.Next"/> method delegates
  2885. to this if it doesn't have a buffered token.)
  2886. </summary>
  2887. <exception cref="T:System.InvalidOperationException">This method is called after an EndDocument token has been returned</exception>
  2888. <exception cref="T:LC.Google.Protobuf.InvalidJsonException">The input text does not comply with RFC 7159</exception>
  2889. </member>
  2890. <member name="M:LC.Google.Protobuf.JsonTokenizer.SkipValue">
  2891. <summary>
  2892. Skips the value we're about to read. This must only be called immediately after reading a property name.
  2893. If the value is an object or an array, the complete object/array is skipped.
  2894. </summary>
  2895. </member>
  2896. <member name="T:LC.Google.Protobuf.JsonTokenizer.JsonReplayTokenizer">
  2897. <summary>
  2898. Tokenizer which first exhausts a list of tokens, then consults another tokenizer.
  2899. </summary>
  2900. </member>
  2901. <member name="T:LC.Google.Protobuf.JsonTokenizer.JsonTextTokenizer">
  2902. <summary>
  2903. Tokenizer which does all the *real* work of parsing JSON.
  2904. </summary>
  2905. </member>
  2906. <member name="M:LC.Google.Protobuf.JsonTokenizer.JsonTextTokenizer.NextImpl">
  2907. <remarks>
  2908. This method essentially just loops through characters skipping whitespace, validating and
  2909. changing state (e.g. from ObjectBeforeColon to ObjectAfterColon)
  2910. until it reaches something which will be a genuine token (e.g. a start object, or a value) at which point
  2911. it returns the token. Although the method is large, it would be relatively hard to break down further... most
  2912. of it is the large switch statement, which sometimes returns and sometimes doesn't.
  2913. </remarks>
  2914. </member>
  2915. <member name="M:LC.Google.Protobuf.JsonTokenizer.JsonTextTokenizer.ReadString">
  2916. <summary>
  2917. Reads a string token. It is assumed that the opening " has already been read.
  2918. </summary>
  2919. </member>
  2920. <member name="M:LC.Google.Protobuf.JsonTokenizer.JsonTextTokenizer.ReadEscapedCharacter">
  2921. <summary>
  2922. Reads an escaped character. It is assumed that the leading backslash has already been read.
  2923. </summary>
  2924. </member>
  2925. <member name="M:LC.Google.Protobuf.JsonTokenizer.JsonTextTokenizer.ReadUnicodeEscape">
  2926. <summary>
  2927. Reads an escaped Unicode 4-nybble hex sequence. It is assumed that the leading \u has already been read.
  2928. </summary>
  2929. </member>
  2930. <member name="M:LC.Google.Protobuf.JsonTokenizer.JsonTextTokenizer.ConsumeLiteral(System.String)">
  2931. <summary>
  2932. Consumes a text-only literal, throwing an exception if the read text doesn't match it.
  2933. It is assumed that the first letter of the literal has already been read.
  2934. </summary>
  2935. </member>
  2936. <member name="M:LC.Google.Protobuf.JsonTokenizer.JsonTextTokenizer.ValidateAndModifyStateForValue(System.String)">
  2937. <summary>
  2938. Validates that we're in a valid state to read a value (using the given error prefix if necessary)
  2939. and changes the state to the appropriate one, e.g. ObjectAfterColon to ObjectAfterProperty.
  2940. </summary>
  2941. </member>
  2942. <member name="M:LC.Google.Protobuf.JsonTokenizer.JsonTextTokenizer.PopContainer">
  2943. <summary>
  2944. Pops the top-most container, and sets the state to the appropriate one for the end of a value
  2945. in the parent container.
  2946. </summary>
  2947. </member>
  2948. <member name="T:LC.Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State">
  2949. <summary>
  2950. Possible states of the tokenizer.
  2951. </summary>
  2952. <remarks>
  2953. <para>This is a flags enum purely so we can simply and efficiently represent a set of valid states
  2954. for checking.</para>
  2955. <para>
  2956. Each is documented with an example,
  2957. where ^ represents the current position within the text stream. The examples all use string values,
  2958. but could be any value, including nested objects/arrays.
  2959. The complete state of the tokenizer also includes a stack to indicate the contexts (arrays/objects).
  2960. Any additional notional state of "AfterValue" indicates that a value has been completed, at which
  2961. point there's an immediate transition to ExpectedEndOfDocument, ObjectAfterProperty or ArrayAfterValue.
  2962. </para>
  2963. <para>
  2964. These states were derived manually by reading RFC 7159 carefully.
  2965. </para>
  2966. </remarks>
  2967. </member>
  2968. <member name="F:LC.Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.StartOfDocument">
  2969. <summary>
  2970. ^ { "foo": "bar" }
  2971. Before the value in a document. Next states: ObjectStart, ArrayStart, "AfterValue"
  2972. </summary>
  2973. </member>
  2974. <member name="F:LC.Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ExpectedEndOfDocument">
  2975. <summary>
  2976. { "foo": "bar" } ^
  2977. After the value in a document. Next states: ReaderExhausted
  2978. </summary>
  2979. </member>
  2980. <member name="F:LC.Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ReaderExhausted">
  2981. <summary>
  2982. { "foo": "bar" } ^ (and already read to the end of the reader)
  2983. Terminal state.
  2984. </summary>
  2985. </member>
  2986. <member name="F:LC.Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ObjectStart">
  2987. <summary>
  2988. { ^ "foo": "bar" }
  2989. Before the *first* property in an object.
  2990. Next states:
  2991. "AfterValue" (empty object)
  2992. ObjectBeforeColon (read a name)
  2993. </summary>
  2994. </member>
  2995. <member name="F:LC.Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ObjectBeforeColon">
  2996. <summary>
  2997. { "foo" ^ : "bar", "x": "y" }
  2998. Next state: ObjectAfterColon
  2999. </summary>
  3000. </member>
  3001. <member name="F:LC.Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ObjectAfterColon">
  3002. <summary>
  3003. { "foo" : ^ "bar", "x": "y" }
  3004. Before any property other than the first in an object.
  3005. (Equivalently: after any property in an object)
  3006. Next states:
  3007. "AfterValue" (value is simple)
  3008. ObjectStart (value is object)
  3009. ArrayStart (value is array)
  3010. </summary>
  3011. </member>
  3012. <member name="F:LC.Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ObjectAfterProperty">
  3013. <summary>
  3014. { "foo" : "bar" ^ , "x" : "y" }
  3015. At the end of a property, so expecting either a comma or end-of-object
  3016. Next states: ObjectAfterComma or "AfterValue"
  3017. </summary>
  3018. </member>
  3019. <member name="F:LC.Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ObjectAfterComma">
  3020. <summary>
  3021. { "foo":"bar", ^ "x":"y" }
  3022. Read the comma after the previous property, so expecting another property.
  3023. This is like ObjectStart, but closing brace isn't valid here
  3024. Next state: ObjectBeforeColon.
  3025. </summary>
  3026. </member>
  3027. <member name="F:LC.Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ArrayStart">
  3028. <summary>
  3029. [ ^ "foo", "bar" ]
  3030. Before the *first* value in an array.
  3031. Next states:
  3032. "AfterValue" (read a value)
  3033. "AfterValue" (end of array; will pop stack)
  3034. </summary>
  3035. </member>
  3036. <member name="F:LC.Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ArrayAfterValue">
  3037. <summary>
  3038. [ "foo" ^ , "bar" ]
  3039. After any value in an array, so expecting either a comma or end-of-array
  3040. Next states: ArrayAfterComma or "AfterValue"
  3041. </summary>
  3042. </member>
  3043. <member name="F:LC.Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ArrayAfterComma">
  3044. <summary>
  3045. [ "foo", ^ "bar" ]
  3046. After a comma in an array, so there *must* be another value (simple or complex).
  3047. Next states: "AfterValue" (simple value), StartObject, StartArray
  3048. </summary>
  3049. </member>
  3050. <member name="T:LC.Google.Protobuf.JsonTokenizer.JsonTextTokenizer.PushBackReader">
  3051. <summary>
  3052. Wrapper around a text reader allowing small amounts of buffering and location handling.
  3053. </summary>
  3054. </member>
  3055. <member name="F:LC.Google.Protobuf.JsonTokenizer.JsonTextTokenizer.PushBackReader.nextChar">
  3056. <summary>
  3057. The buffered next character, if we have one.
  3058. </summary>
  3059. </member>
  3060. <member name="M:LC.Google.Protobuf.JsonTokenizer.JsonTextTokenizer.PushBackReader.Read">
  3061. <summary>
  3062. Returns the next character in the stream, or null if we have reached the end.
  3063. </summary>
  3064. <returns></returns>
  3065. </member>
  3066. <member name="M:LC.Google.Protobuf.JsonTokenizer.JsonTextTokenizer.PushBackReader.CreateException(System.String)">
  3067. <summary>
  3068. Creates a new exception appropriate for the current state of the reader.
  3069. </summary>
  3070. </member>
  3071. <member name="T:LC.Google.Protobuf.LimitedInputStream">
  3072. <summary>
  3073. Stream implementation which proxies another stream, only allowing a certain amount
  3074. of data to be read. Note that this is only used to read delimited streams, so it
  3075. doesn't attempt to implement everything.
  3076. </summary>
  3077. </member>
  3078. <member name="T:LC.Google.Protobuf.MessageExtensions">
  3079. <summary>
  3080. Extension methods on <see cref="T:LC.Google.Protobuf.IMessage"/> and <see cref="T:LC.Google.Protobuf.IMessage`1"/>.
  3081. </summary>
  3082. </member>
  3083. <member name="M:LC.Google.Protobuf.MessageExtensions.MergeFrom(LC.Google.Protobuf.IMessage,System.Byte[])">
  3084. <summary>
  3085. Merges data from the given byte array into an existing message.
  3086. </summary>
  3087. <param name="message">The message to merge the data into.</param>
  3088. <param name="data">The data to merge, which must be protobuf-encoded binary data.</param>
  3089. </member>
  3090. <member name="M:LC.Google.Protobuf.MessageExtensions.MergeFrom(LC.Google.Protobuf.IMessage,System.Byte[],System.Int32,System.Int32)">
  3091. <summary>
  3092. Merges data from the given byte array slice into an existing message.
  3093. </summary>
  3094. <param name="message">The message to merge the data into.</param>
  3095. <param name="data">The data containing the slice to merge, which must be protobuf-encoded binary data.</param>
  3096. <param name="offset">The offset of the slice to merge.</param>
  3097. <param name="length">The length of the slice to merge.</param>
  3098. </member>
  3099. <member name="M:LC.Google.Protobuf.MessageExtensions.MergeFrom(LC.Google.Protobuf.IMessage,LC.Google.Protobuf.ByteString)">
  3100. <summary>
  3101. Merges data from the given byte string into an existing message.
  3102. </summary>
  3103. <param name="message">The message to merge the data into.</param>
  3104. <param name="data">The data to merge, which must be protobuf-encoded binary data.</param>
  3105. </member>
  3106. <member name="M:LC.Google.Protobuf.MessageExtensions.MergeFrom(LC.Google.Protobuf.IMessage,System.IO.Stream)">
  3107. <summary>
  3108. Merges data from the given stream into an existing message.
  3109. </summary>
  3110. <param name="message">The message to merge the data into.</param>
  3111. <param name="input">Stream containing the data to merge, which must be protobuf-encoded binary data.</param>
  3112. </member>
  3113. <member name="M:LC.Google.Protobuf.MessageExtensions.MergeDelimitedFrom(LC.Google.Protobuf.IMessage,System.IO.Stream)">
  3114. <summary>
  3115. Merges length-delimited data from the given stream into an existing message.
  3116. </summary>
  3117. <remarks>
  3118. The stream is expected to contain a length and then the data. Only the amount of data
  3119. specified by the length will be consumed.
  3120. </remarks>
  3121. <param name="message">The message to merge the data into.</param>
  3122. <param name="input">Stream containing the data to merge, which must be protobuf-encoded binary data.</param>
  3123. </member>
  3124. <member name="M:LC.Google.Protobuf.MessageExtensions.ToByteArray(LC.Google.Protobuf.IMessage)">
  3125. <summary>
  3126. Converts the given message into a byte array in protobuf encoding.
  3127. </summary>
  3128. <param name="message">The message to convert.</param>
  3129. <returns>The message data as a byte array.</returns>
  3130. </member>
  3131. <member name="M:LC.Google.Protobuf.MessageExtensions.WriteTo(LC.Google.Protobuf.IMessage,System.IO.Stream)">
  3132. <summary>
  3133. Writes the given message data to the given stream in protobuf encoding.
  3134. </summary>
  3135. <param name="message">The message to write to the stream.</param>
  3136. <param name="output">The stream to write to.</param>
  3137. </member>
  3138. <member name="M:LC.Google.Protobuf.MessageExtensions.WriteDelimitedTo(LC.Google.Protobuf.IMessage,System.IO.Stream)">
  3139. <summary>
  3140. Writes the length and then data of the given message to a stream.
  3141. </summary>
  3142. <param name="message">The message to write.</param>
  3143. <param name="output">The output stream to write to.</param>
  3144. </member>
  3145. <member name="M:LC.Google.Protobuf.MessageExtensions.ToByteString(LC.Google.Protobuf.IMessage)">
  3146. <summary>
  3147. Converts the given message into a byte string in protobuf encoding.
  3148. </summary>
  3149. <param name="message">The message to convert.</param>
  3150. <returns>The message data as a byte string.</returns>
  3151. </member>
  3152. <member name="M:LC.Google.Protobuf.MessageExtensions.IsInitialized(LC.Google.Protobuf.IMessage)">
  3153. <summary>
  3154. Checks if all required fields in a message have values set. For proto3 messages, this returns true
  3155. </summary>
  3156. </member>
  3157. <member name="T:LC.Google.Protobuf.MessageParser">
  3158. <summary>
  3159. A general message parser, typically used by reflection-based code as all the methods
  3160. return simple <see cref="T:LC.Google.Protobuf.IMessage"/>.
  3161. </summary>
  3162. </member>
  3163. <member name="M:LC.Google.Protobuf.MessageParser.CreateTemplate">
  3164. <summary>
  3165. Creates a template instance ready for population.
  3166. </summary>
  3167. <returns>An empty message.</returns>
  3168. </member>
  3169. <member name="M:LC.Google.Protobuf.MessageParser.ParseFrom(System.Byte[])">
  3170. <summary>
  3171. Parses a message from a byte array.
  3172. </summary>
  3173. <param name="data">The byte array containing the message. Must not be null.</param>
  3174. <returns>The newly parsed message.</returns>
  3175. </member>
  3176. <member name="M:LC.Google.Protobuf.MessageParser.ParseFrom(System.Byte[],System.Int32,System.Int32)">
  3177. <summary>
  3178. Parses a message from a byte array slice.
  3179. </summary>
  3180. <param name="data">The byte array containing the message. Must not be null.</param>
  3181. <param name="offset">The offset of the slice to parse.</param>
  3182. <param name="length">The length of the slice to parse.</param>
  3183. <returns>The newly parsed message.</returns>
  3184. </member>
  3185. <member name="M:LC.Google.Protobuf.MessageParser.ParseFrom(LC.Google.Protobuf.ByteString)">
  3186. <summary>
  3187. Parses a message from the given byte string.
  3188. </summary>
  3189. <param name="data">The data to parse.</param>
  3190. <returns>The parsed message.</returns>
  3191. </member>
  3192. <member name="M:LC.Google.Protobuf.MessageParser.ParseFrom(System.IO.Stream)">
  3193. <summary>
  3194. Parses a message from the given stream.
  3195. </summary>
  3196. <param name="input">The stream to parse.</param>
  3197. <returns>The parsed message.</returns>
  3198. </member>
  3199. <member name="M:LC.Google.Protobuf.MessageParser.ParseDelimitedFrom(System.IO.Stream)">
  3200. <summary>
  3201. Parses a length-delimited message from the given stream.
  3202. </summary>
  3203. <remarks>
  3204. The stream is expected to contain a length and then the data. Only the amount of data
  3205. specified by the length will be consumed.
  3206. </remarks>
  3207. <param name="input">The stream to parse.</param>
  3208. <returns>The parsed message.</returns>
  3209. </member>
  3210. <member name="M:LC.Google.Protobuf.MessageParser.ParseFrom(LC.Google.Protobuf.CodedInputStream)">
  3211. <summary>
  3212. Parses a message from the given coded input stream.
  3213. </summary>
  3214. <param name="input">The stream to parse.</param>
  3215. <returns>The parsed message.</returns>
  3216. </member>
  3217. <member name="M:LC.Google.Protobuf.MessageParser.ParseJson(System.String)">
  3218. <summary>
  3219. Parses a message from the given JSON.
  3220. </summary>
  3221. <param name="json">The JSON to parse.</param>
  3222. <returns>The parsed message.</returns>
  3223. <exception cref="T:LC.Google.Protobuf.InvalidJsonException">The JSON does not comply with RFC 7159</exception>
  3224. <exception cref="T:LC.Google.Protobuf.InvalidProtocolBufferException">The JSON does not represent a Protocol Buffers message correctly</exception>
  3225. </member>
  3226. <member name="M:LC.Google.Protobuf.MessageParser.WithDiscardUnknownFields(System.Boolean)">
  3227. <summary>
  3228. Creates a new message parser which optionally discards unknown fields when parsing.
  3229. </summary>
  3230. <param name="discardUnknownFields">Whether or not to discard unknown fields when parsing.</param>
  3231. <returns>A newly configured message parser.</returns>
  3232. </member>
  3233. <member name="M:LC.Google.Protobuf.MessageParser.WithExtensionRegistry(LC.Google.Protobuf.ExtensionRegistry)">
  3234. <summary>
  3235. Creates a new message parser which registers extensions from the specified registry upon creating the message instance
  3236. </summary>
  3237. <param name="registry">The extensions to register</param>
  3238. <returns>A newly configured message parser.</returns>
  3239. </member>
  3240. <member name="T:LC.Google.Protobuf.MessageParser`1">
  3241. <summary>
  3242. A parser for a specific message type.
  3243. </summary>
  3244. <remarks>
  3245. <p>
  3246. This delegates most behavior to the
  3247. <see cref="M:LC.Google.Protobuf.IMessage.MergeFrom(LC.Google.Protobuf.CodedInputStream)"/> implementation within the original type, but
  3248. provides convenient overloads to parse from a variety of sources.
  3249. </p>
  3250. <p>
  3251. Most applications will never need to create their own instances of this type;
  3252. instead, use the static <c>Parser</c> property of a generated message type to obtain a
  3253. parser for that type.
  3254. </p>
  3255. </remarks>
  3256. <typeparam name="T">The type of message to be parsed.</typeparam>
  3257. </member>
  3258. <member name="M:LC.Google.Protobuf.MessageParser`1.#ctor(System.Func{`0})">
  3259. <summary>
  3260. Creates a new parser.
  3261. </summary>
  3262. <remarks>
  3263. The factory method is effectively an optimization over using a generic constraint
  3264. to require a parameterless constructor: delegates are significantly faster to execute.
  3265. </remarks>
  3266. <param name="factory">Function to invoke when a new, empty message is required.</param>
  3267. </member>
  3268. <member name="M:LC.Google.Protobuf.MessageParser`1.CreateTemplate">
  3269. <summary>
  3270. Creates a template instance ready for population.
  3271. </summary>
  3272. <returns>An empty message.</returns>
  3273. </member>
  3274. <member name="M:LC.Google.Protobuf.MessageParser`1.ParseFrom(System.Byte[])">
  3275. <summary>
  3276. Parses a message from a byte array.
  3277. </summary>
  3278. <param name="data">The byte array containing the message. Must not be null.</param>
  3279. <returns>The newly parsed message.</returns>
  3280. </member>
  3281. <member name="M:LC.Google.Protobuf.MessageParser`1.ParseFrom(System.Byte[],System.Int32,System.Int32)">
  3282. <summary>
  3283. Parses a message from a byte array slice.
  3284. </summary>
  3285. <param name="data">The byte array containing the message. Must not be null.</param>
  3286. <param name="offset">The offset of the slice to parse.</param>
  3287. <param name="length">The length of the slice to parse.</param>
  3288. <returns>The newly parsed message.</returns>
  3289. </member>
  3290. <member name="M:LC.Google.Protobuf.MessageParser`1.ParseFrom(LC.Google.Protobuf.ByteString)">
  3291. <summary>
  3292. Parses a message from the given byte string.
  3293. </summary>
  3294. <param name="data">The data to parse.</param>
  3295. <returns>The parsed message.</returns>
  3296. </member>
  3297. <member name="M:LC.Google.Protobuf.MessageParser`1.ParseFrom(System.IO.Stream)">
  3298. <summary>
  3299. Parses a message from the given stream.
  3300. </summary>
  3301. <param name="input">The stream to parse.</param>
  3302. <returns>The parsed message.</returns>
  3303. </member>
  3304. <member name="M:LC.Google.Protobuf.MessageParser`1.ParseDelimitedFrom(System.IO.Stream)">
  3305. <summary>
  3306. Parses a length-delimited message from the given stream.
  3307. </summary>
  3308. <remarks>
  3309. The stream is expected to contain a length and then the data. Only the amount of data
  3310. specified by the length will be consumed.
  3311. </remarks>
  3312. <param name="input">The stream to parse.</param>
  3313. <returns>The parsed message.</returns>
  3314. </member>
  3315. <member name="M:LC.Google.Protobuf.MessageParser`1.ParseFrom(LC.Google.Protobuf.CodedInputStream)">
  3316. <summary>
  3317. Parses a message from the given coded input stream.
  3318. </summary>
  3319. <param name="input">The stream to parse.</param>
  3320. <returns>The parsed message.</returns>
  3321. </member>
  3322. <member name="M:LC.Google.Protobuf.MessageParser`1.ParseJson(System.String)">
  3323. <summary>
  3324. Parses a message from the given JSON.
  3325. </summary>
  3326. <param name="json">The JSON to parse.</param>
  3327. <returns>The parsed message.</returns>
  3328. <exception cref="T:LC.Google.Protobuf.InvalidJsonException">The JSON does not comply with RFC 7159</exception>
  3329. <exception cref="T:LC.Google.Protobuf.InvalidProtocolBufferException">The JSON does not represent a Protocol Buffers message correctly</exception>
  3330. </member>
  3331. <member name="M:LC.Google.Protobuf.MessageParser`1.WithDiscardUnknownFields(System.Boolean)">
  3332. <summary>
  3333. Creates a new message parser which optionally discards unknown fields when parsing.
  3334. </summary>
  3335. <param name="discardUnknownFields">Whether or not to discard unknown fields when parsing.</param>
  3336. <returns>A newly configured message parser.</returns>
  3337. </member>
  3338. <member name="M:LC.Google.Protobuf.MessageParser`1.WithExtensionRegistry(LC.Google.Protobuf.ExtensionRegistry)">
  3339. <summary>
  3340. Creates a new message parser which registers extensions from the specified registry upon creating the message instance
  3341. </summary>
  3342. <param name="registry">The extensions to register</param>
  3343. <returns>A newly configured message parser.</returns>
  3344. </member>
  3345. <member name="T:LC.Google.Protobuf.ObjectIntPair`1">
  3346. <summary>
  3347. Struct used to hold the keys for the fieldByNumber table in DescriptorPool and the keys for the
  3348. extensionByNumber table in ExtensionRegistry.
  3349. </summary>
  3350. </member>
  3351. <member name="T:LC.Google.Protobuf.ProtoPreconditions">
  3352. <summary>
  3353. Helper methods for throwing exceptions when preconditions are not met.
  3354. </summary>
  3355. <remarks>
  3356. This class is used internally and by generated code; it is not particularly
  3357. expected to be used from application code, although nothing prevents it
  3358. from being used that way.
  3359. </remarks>
  3360. </member>
  3361. <member name="M:LC.Google.Protobuf.ProtoPreconditions.CheckNotNull``1(``0,System.String)">
  3362. <summary>
  3363. Throws an ArgumentNullException if the given value is null, otherwise
  3364. return the value to the caller.
  3365. </summary>
  3366. </member>
  3367. <member name="M:LC.Google.Protobuf.ProtoPreconditions.CheckNotNullUnconstrained``1(``0,System.String)">
  3368. <summary>
  3369. Throws an ArgumentNullException if the given value is null, otherwise
  3370. return the value to the caller.
  3371. </summary>
  3372. <remarks>
  3373. This is equivalent to <see cref="M:LC.Google.Protobuf.ProtoPreconditions.CheckNotNull``1(``0,System.String)"/> but without the type parameter
  3374. constraint. In most cases, the constraint is useful to prevent you from calling CheckNotNull
  3375. with a value type - but it gets in the way if either you want to use it with a nullable
  3376. value type, or you want to use it with an unconstrained type parameter.
  3377. </remarks>
  3378. </member>
  3379. <member name="T:LC.Google.Protobuf.Reflection.CustomOptions">
  3380. <summary>
  3381. Container for a set of custom options specified within a message, field etc.
  3382. </summary>
  3383. <remarks>
  3384. <para>
  3385. This type is publicly immutable, but internally mutable. It is only populated
  3386. by the descriptor parsing code - by the time any user code is able to see an instance,
  3387. it will be fully initialized.
  3388. </para>
  3389. <para>
  3390. If an option is requested using the incorrect method, an answer may still be returned: all
  3391. of the numeric types are represented internally using 64-bit integers, for example. It is up to
  3392. the caller to ensure that they make the appropriate method call for the option they're interested in.
  3393. Note that enum options are simply stored as integers, so the value should be fetched using
  3394. <see cref="M:LC.Google.Protobuf.Reflection.CustomOptions.TryGetInt32(System.Int32,System.Int32@)"/> and then cast appropriately.
  3395. </para>
  3396. <para>
  3397. Repeated options are currently not supported. Asking for a single value of an option
  3398. which was actually repeated will return the last value, except for message types where
  3399. all the set values are merged together.
  3400. </para>
  3401. </remarks>
  3402. </member>
  3403. <member name="M:LC.Google.Protobuf.Reflection.CustomOptions.TryGetBool(System.Int32,System.Boolean@)">
  3404. <summary>
  3405. Retrieves a Boolean value for the specified option field.
  3406. </summary>
  3407. <param name="field">The field to fetch the value for.</param>
  3408. <param name="value">The output variable to populate.</param>
  3409. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3410. </member>
  3411. <member name="M:LC.Google.Protobuf.Reflection.CustomOptions.TryGetInt32(System.Int32,System.Int32@)">
  3412. <summary>
  3413. Retrieves a signed 32-bit integer value for the specified option field.
  3414. </summary>
  3415. <param name="field">The field to fetch the value for.</param>
  3416. <param name="value">The output variable to populate.</param>
  3417. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3418. </member>
  3419. <member name="M:LC.Google.Protobuf.Reflection.CustomOptions.TryGetInt64(System.Int32,System.Int64@)">
  3420. <summary>
  3421. Retrieves a signed 64-bit integer value for the specified option field.
  3422. </summary>
  3423. <param name="field">The field to fetch the value for.</param>
  3424. <param name="value">The output variable to populate.</param>
  3425. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3426. </member>
  3427. <member name="M:LC.Google.Protobuf.Reflection.CustomOptions.TryGetFixed32(System.Int32,System.UInt32@)">
  3428. <summary>
  3429. Retrieves an unsigned 32-bit integer value for the specified option field,
  3430. assuming a fixed-length representation.
  3431. </summary>
  3432. <param name="field">The field to fetch the value for.</param>
  3433. <param name="value">The output variable to populate.</param>
  3434. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3435. </member>
  3436. <member name="M:LC.Google.Protobuf.Reflection.CustomOptions.TryGetFixed64(System.Int32,System.UInt64@)">
  3437. <summary>
  3438. Retrieves an unsigned 64-bit integer value for the specified option field,
  3439. assuming a fixed-length representation.
  3440. </summary>
  3441. <param name="field">The field to fetch the value for.</param>
  3442. <param name="value">The output variable to populate.</param>
  3443. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3444. </member>
  3445. <member name="M:LC.Google.Protobuf.Reflection.CustomOptions.TryGetSFixed32(System.Int32,System.Int32@)">
  3446. <summary>
  3447. Retrieves a signed 32-bit integer value for the specified option field,
  3448. assuming a fixed-length representation.
  3449. </summary>
  3450. <param name="field">The field to fetch the value for.</param>
  3451. <param name="value">The output variable to populate.</param>
  3452. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3453. </member>
  3454. <member name="M:LC.Google.Protobuf.Reflection.CustomOptions.TryGetSFixed64(System.Int32,System.Int64@)">
  3455. <summary>
  3456. Retrieves a signed 64-bit integer value for the specified option field,
  3457. assuming a fixed-length representation.
  3458. </summary>
  3459. <param name="field">The field to fetch the value for.</param>
  3460. <param name="value">The output variable to populate.</param>
  3461. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3462. </member>
  3463. <member name="M:LC.Google.Protobuf.Reflection.CustomOptions.TryGetSInt32(System.Int32,System.Int32@)">
  3464. <summary>
  3465. Retrieves a signed 32-bit integer value for the specified option field,
  3466. assuming a zigzag encoding.
  3467. </summary>
  3468. <param name="field">The field to fetch the value for.</param>
  3469. <param name="value">The output variable to populate.</param>
  3470. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3471. </member>
  3472. <member name="M:LC.Google.Protobuf.Reflection.CustomOptions.TryGetSInt64(System.Int32,System.Int64@)">
  3473. <summary>
  3474. Retrieves a signed 64-bit integer value for the specified option field,
  3475. assuming a zigzag encoding.
  3476. </summary>
  3477. <param name="field">The field to fetch the value for.</param>
  3478. <param name="value">The output variable to populate.</param>
  3479. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3480. </member>
  3481. <member name="M:LC.Google.Protobuf.Reflection.CustomOptions.TryGetUInt32(System.Int32,System.UInt32@)">
  3482. <summary>
  3483. Retrieves an unsigned 32-bit integer value for the specified option field.
  3484. </summary>
  3485. <param name="field">The field to fetch the value for.</param>
  3486. <param name="value">The output variable to populate.</param>
  3487. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3488. </member>
  3489. <member name="M:LC.Google.Protobuf.Reflection.CustomOptions.TryGetUInt64(System.Int32,System.UInt64@)">
  3490. <summary>
  3491. Retrieves an unsigned 64-bit integer value for the specified option field.
  3492. </summary>
  3493. <param name="field">The field to fetch the value for.</param>
  3494. <param name="value">The output variable to populate.</param>
  3495. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3496. </member>
  3497. <member name="M:LC.Google.Protobuf.Reflection.CustomOptions.TryGetFloat(System.Int32,System.Single@)">
  3498. <summary>
  3499. Retrieves a 32-bit floating point value for the specified option field.
  3500. </summary>
  3501. <param name="field">The field to fetch the value for.</param>
  3502. <param name="value">The output variable to populate.</param>
  3503. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3504. </member>
  3505. <member name="M:LC.Google.Protobuf.Reflection.CustomOptions.TryGetDouble(System.Int32,System.Double@)">
  3506. <summary>
  3507. Retrieves a 64-bit floating point value for the specified option field.
  3508. </summary>
  3509. <param name="field">The field to fetch the value for.</param>
  3510. <param name="value">The output variable to populate.</param>
  3511. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3512. </member>
  3513. <member name="M:LC.Google.Protobuf.Reflection.CustomOptions.TryGetString(System.Int32,System.String@)">
  3514. <summary>
  3515. Retrieves a string value for the specified option field.
  3516. </summary>
  3517. <param name="field">The field to fetch the value for.</param>
  3518. <param name="value">The output variable to populate.</param>
  3519. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3520. </member>
  3521. <member name="M:LC.Google.Protobuf.Reflection.CustomOptions.TryGetBytes(System.Int32,LC.Google.Protobuf.ByteString@)">
  3522. <summary>
  3523. Retrieves a bytes value for the specified option field.
  3524. </summary>
  3525. <param name="field">The field to fetch the value for.</param>
  3526. <param name="value">The output variable to populate.</param>
  3527. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3528. </member>
  3529. <member name="M:LC.Google.Protobuf.Reflection.CustomOptions.TryGetMessage``1(System.Int32,``0@)">
  3530. <summary>
  3531. Retrieves a message value for the specified option field.
  3532. </summary>
  3533. <param name="field">The field to fetch the value for.</param>
  3534. <param name="value">The output variable to populate.</param>
  3535. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3536. </member>
  3537. <member name="T:LC.Google.Protobuf.Reflection.DescriptorReflection">
  3538. <summary>Holder for reflection information generated from google/protobuf/descriptor.proto</summary>
  3539. </member>
  3540. <member name="P:LC.Google.Protobuf.Reflection.DescriptorReflection.Descriptor">
  3541. <summary>File descriptor for google/protobuf/descriptor.proto</summary>
  3542. </member>
  3543. <member name="T:LC.Google.Protobuf.Reflection.FileDescriptorSet">
  3544. <summary>
  3545. The protocol compiler can output a FileDescriptorSet containing the .proto
  3546. files it parses.
  3547. </summary>
  3548. </member>
  3549. <member name="F:LC.Google.Protobuf.Reflection.FileDescriptorSet.FileFieldNumber">
  3550. <summary>Field number for the "file" field.</summary>
  3551. </member>
  3552. <member name="T:LC.Google.Protobuf.Reflection.FileDescriptorProto">
  3553. <summary>
  3554. Describes a complete .proto file.
  3555. </summary>
  3556. </member>
  3557. <member name="F:LC.Google.Protobuf.Reflection.FileDescriptorProto.NameFieldNumber">
  3558. <summary>Field number for the "name" field.</summary>
  3559. </member>
  3560. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptorProto.Name">
  3561. <summary>
  3562. file name, relative to root of source tree
  3563. </summary>
  3564. </member>
  3565. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptorProto.HasName">
  3566. <summary>Gets whether the "name" field is set</summary>
  3567. </member>
  3568. <member name="M:LC.Google.Protobuf.Reflection.FileDescriptorProto.ClearName">
  3569. <summary>Clears the value of the "name" field</summary>
  3570. </member>
  3571. <member name="F:LC.Google.Protobuf.Reflection.FileDescriptorProto.PackageFieldNumber">
  3572. <summary>Field number for the "package" field.</summary>
  3573. </member>
  3574. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptorProto.Package">
  3575. <summary>
  3576. e.g. "foo", "foo.bar", etc.
  3577. </summary>
  3578. </member>
  3579. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptorProto.HasPackage">
  3580. <summary>Gets whether the "package" field is set</summary>
  3581. </member>
  3582. <member name="M:LC.Google.Protobuf.Reflection.FileDescriptorProto.ClearPackage">
  3583. <summary>Clears the value of the "package" field</summary>
  3584. </member>
  3585. <member name="F:LC.Google.Protobuf.Reflection.FileDescriptorProto.DependencyFieldNumber">
  3586. <summary>Field number for the "dependency" field.</summary>
  3587. </member>
  3588. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptorProto.Dependency">
  3589. <summary>
  3590. Names of files imported by this file.
  3591. </summary>
  3592. </member>
  3593. <member name="F:LC.Google.Protobuf.Reflection.FileDescriptorProto.PublicDependencyFieldNumber">
  3594. <summary>Field number for the "public_dependency" field.</summary>
  3595. </member>
  3596. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptorProto.PublicDependency">
  3597. <summary>
  3598. Indexes of the public imported files in the dependency list above.
  3599. </summary>
  3600. </member>
  3601. <member name="F:LC.Google.Protobuf.Reflection.FileDescriptorProto.WeakDependencyFieldNumber">
  3602. <summary>Field number for the "weak_dependency" field.</summary>
  3603. </member>
  3604. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptorProto.WeakDependency">
  3605. <summary>
  3606. Indexes of the weak imported files in the dependency list.
  3607. For Google-internal migration only. Do not use.
  3608. </summary>
  3609. </member>
  3610. <member name="F:LC.Google.Protobuf.Reflection.FileDescriptorProto.MessageTypeFieldNumber">
  3611. <summary>Field number for the "message_type" field.</summary>
  3612. </member>
  3613. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptorProto.MessageType">
  3614. <summary>
  3615. All top-level definitions in this file.
  3616. </summary>
  3617. </member>
  3618. <member name="F:LC.Google.Protobuf.Reflection.FileDescriptorProto.EnumTypeFieldNumber">
  3619. <summary>Field number for the "enum_type" field.</summary>
  3620. </member>
  3621. <member name="F:LC.Google.Protobuf.Reflection.FileDescriptorProto.ServiceFieldNumber">
  3622. <summary>Field number for the "service" field.</summary>
  3623. </member>
  3624. <member name="F:LC.Google.Protobuf.Reflection.FileDescriptorProto.ExtensionFieldNumber">
  3625. <summary>Field number for the "extension" field.</summary>
  3626. </member>
  3627. <member name="F:LC.Google.Protobuf.Reflection.FileDescriptorProto.OptionsFieldNumber">
  3628. <summary>Field number for the "options" field.</summary>
  3629. </member>
  3630. <member name="F:LC.Google.Protobuf.Reflection.FileDescriptorProto.SourceCodeInfoFieldNumber">
  3631. <summary>Field number for the "source_code_info" field.</summary>
  3632. </member>
  3633. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptorProto.SourceCodeInfo">
  3634. <summary>
  3635. This field contains optional information about the original source code.
  3636. You may safely remove this entire field without harming runtime
  3637. functionality of the descriptors -- the information is needed only by
  3638. development tools.
  3639. </summary>
  3640. </member>
  3641. <member name="F:LC.Google.Protobuf.Reflection.FileDescriptorProto.SyntaxFieldNumber">
  3642. <summary>Field number for the "syntax" field.</summary>
  3643. </member>
  3644. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptorProto.Syntax">
  3645. <summary>
  3646. The syntax of the proto file.
  3647. The supported values are "proto2" and "proto3".
  3648. </summary>
  3649. </member>
  3650. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptorProto.HasSyntax">
  3651. <summary>Gets whether the "syntax" field is set</summary>
  3652. </member>
  3653. <member name="M:LC.Google.Protobuf.Reflection.FileDescriptorProto.ClearSyntax">
  3654. <summary>Clears the value of the "syntax" field</summary>
  3655. </member>
  3656. <member name="T:LC.Google.Protobuf.Reflection.DescriptorProto">
  3657. <summary>
  3658. Describes a message type.
  3659. </summary>
  3660. </member>
  3661. <member name="F:LC.Google.Protobuf.Reflection.DescriptorProto.NameFieldNumber">
  3662. <summary>Field number for the "name" field.</summary>
  3663. </member>
  3664. <member name="P:LC.Google.Protobuf.Reflection.DescriptorProto.HasName">
  3665. <summary>Gets whether the "name" field is set</summary>
  3666. </member>
  3667. <member name="M:LC.Google.Protobuf.Reflection.DescriptorProto.ClearName">
  3668. <summary>Clears the value of the "name" field</summary>
  3669. </member>
  3670. <member name="F:LC.Google.Protobuf.Reflection.DescriptorProto.FieldFieldNumber">
  3671. <summary>Field number for the "field" field.</summary>
  3672. </member>
  3673. <member name="F:LC.Google.Protobuf.Reflection.DescriptorProto.ExtensionFieldNumber">
  3674. <summary>Field number for the "extension" field.</summary>
  3675. </member>
  3676. <member name="F:LC.Google.Protobuf.Reflection.DescriptorProto.NestedTypeFieldNumber">
  3677. <summary>Field number for the "nested_type" field.</summary>
  3678. </member>
  3679. <member name="F:LC.Google.Protobuf.Reflection.DescriptorProto.EnumTypeFieldNumber">
  3680. <summary>Field number for the "enum_type" field.</summary>
  3681. </member>
  3682. <member name="F:LC.Google.Protobuf.Reflection.DescriptorProto.ExtensionRangeFieldNumber">
  3683. <summary>Field number for the "extension_range" field.</summary>
  3684. </member>
  3685. <member name="F:LC.Google.Protobuf.Reflection.DescriptorProto.OneofDeclFieldNumber">
  3686. <summary>Field number for the "oneof_decl" field.</summary>
  3687. </member>
  3688. <member name="F:LC.Google.Protobuf.Reflection.DescriptorProto.OptionsFieldNumber">
  3689. <summary>Field number for the "options" field.</summary>
  3690. </member>
  3691. <member name="F:LC.Google.Protobuf.Reflection.DescriptorProto.ReservedRangeFieldNumber">
  3692. <summary>Field number for the "reserved_range" field.</summary>
  3693. </member>
  3694. <member name="F:LC.Google.Protobuf.Reflection.DescriptorProto.ReservedNameFieldNumber">
  3695. <summary>Field number for the "reserved_name" field.</summary>
  3696. </member>
  3697. <member name="P:LC.Google.Protobuf.Reflection.DescriptorProto.ReservedName">
  3698. <summary>
  3699. Reserved field names, which may not be used by fields in the same message.
  3700. A given name may only be reserved once.
  3701. </summary>
  3702. </member>
  3703. <member name="T:LC.Google.Protobuf.Reflection.DescriptorProto.Types">
  3704. <summary>Container for nested types declared in the DescriptorProto message type.</summary>
  3705. </member>
  3706. <member name="F:LC.Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.StartFieldNumber">
  3707. <summary>Field number for the "start" field.</summary>
  3708. </member>
  3709. <member name="P:LC.Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.Start">
  3710. <summary>
  3711. Inclusive.
  3712. </summary>
  3713. </member>
  3714. <member name="P:LC.Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.HasStart">
  3715. <summary>Gets whether the "start" field is set</summary>
  3716. </member>
  3717. <member name="M:LC.Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.ClearStart">
  3718. <summary>Clears the value of the "start" field</summary>
  3719. </member>
  3720. <member name="F:LC.Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.EndFieldNumber">
  3721. <summary>Field number for the "end" field.</summary>
  3722. </member>
  3723. <member name="P:LC.Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.End">
  3724. <summary>
  3725. Exclusive.
  3726. </summary>
  3727. </member>
  3728. <member name="P:LC.Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.HasEnd">
  3729. <summary>Gets whether the "end" field is set</summary>
  3730. </member>
  3731. <member name="M:LC.Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.ClearEnd">
  3732. <summary>Clears the value of the "end" field</summary>
  3733. </member>
  3734. <member name="F:LC.Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.OptionsFieldNumber">
  3735. <summary>Field number for the "options" field.</summary>
  3736. </member>
  3737. <member name="T:LC.Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange">
  3738. <summary>
  3739. Range of reserved tag numbers. Reserved tag numbers may not be used by
  3740. fields or extension ranges in the same message. Reserved ranges may
  3741. not overlap.
  3742. </summary>
  3743. </member>
  3744. <member name="F:LC.Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange.StartFieldNumber">
  3745. <summary>Field number for the "start" field.</summary>
  3746. </member>
  3747. <member name="P:LC.Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange.Start">
  3748. <summary>
  3749. Inclusive.
  3750. </summary>
  3751. </member>
  3752. <member name="P:LC.Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange.HasStart">
  3753. <summary>Gets whether the "start" field is set</summary>
  3754. </member>
  3755. <member name="M:LC.Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange.ClearStart">
  3756. <summary>Clears the value of the "start" field</summary>
  3757. </member>
  3758. <member name="F:LC.Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange.EndFieldNumber">
  3759. <summary>Field number for the "end" field.</summary>
  3760. </member>
  3761. <member name="P:LC.Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange.End">
  3762. <summary>
  3763. Exclusive.
  3764. </summary>
  3765. </member>
  3766. <member name="P:LC.Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange.HasEnd">
  3767. <summary>Gets whether the "end" field is set</summary>
  3768. </member>
  3769. <member name="M:LC.Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange.ClearEnd">
  3770. <summary>Clears the value of the "end" field</summary>
  3771. </member>
  3772. <member name="F:LC.Google.Protobuf.Reflection.ExtensionRangeOptions.UninterpretedOptionFieldNumber">
  3773. <summary>Field number for the "uninterpreted_option" field.</summary>
  3774. </member>
  3775. <member name="P:LC.Google.Protobuf.Reflection.ExtensionRangeOptions.UninterpretedOption">
  3776. <summary>
  3777. The parser stores options it doesn't recognize here. See above.
  3778. </summary>
  3779. </member>
  3780. <member name="T:LC.Google.Protobuf.Reflection.FieldDescriptorProto">
  3781. <summary>
  3782. Describes a field within a message.
  3783. </summary>
  3784. </member>
  3785. <member name="F:LC.Google.Protobuf.Reflection.FieldDescriptorProto.NameFieldNumber">
  3786. <summary>Field number for the "name" field.</summary>
  3787. </member>
  3788. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptorProto.HasName">
  3789. <summary>Gets whether the "name" field is set</summary>
  3790. </member>
  3791. <member name="M:LC.Google.Protobuf.Reflection.FieldDescriptorProto.ClearName">
  3792. <summary>Clears the value of the "name" field</summary>
  3793. </member>
  3794. <member name="F:LC.Google.Protobuf.Reflection.FieldDescriptorProto.NumberFieldNumber">
  3795. <summary>Field number for the "number" field.</summary>
  3796. </member>
  3797. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptorProto.HasNumber">
  3798. <summary>Gets whether the "number" field is set</summary>
  3799. </member>
  3800. <member name="M:LC.Google.Protobuf.Reflection.FieldDescriptorProto.ClearNumber">
  3801. <summary>Clears the value of the "number" field</summary>
  3802. </member>
  3803. <member name="F:LC.Google.Protobuf.Reflection.FieldDescriptorProto.LabelFieldNumber">
  3804. <summary>Field number for the "label" field.</summary>
  3805. </member>
  3806. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptorProto.HasLabel">
  3807. <summary>Gets whether the "label" field is set</summary>
  3808. </member>
  3809. <member name="M:LC.Google.Protobuf.Reflection.FieldDescriptorProto.ClearLabel">
  3810. <summary>Clears the value of the "label" field</summary>
  3811. </member>
  3812. <member name="F:LC.Google.Protobuf.Reflection.FieldDescriptorProto.TypeFieldNumber">
  3813. <summary>Field number for the "type" field.</summary>
  3814. </member>
  3815. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptorProto.Type">
  3816. <summary>
  3817. If type_name is set, this need not be set. If both this and type_name
  3818. are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP.
  3819. </summary>
  3820. </member>
  3821. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptorProto.HasType">
  3822. <summary>Gets whether the "type" field is set</summary>
  3823. </member>
  3824. <member name="M:LC.Google.Protobuf.Reflection.FieldDescriptorProto.ClearType">
  3825. <summary>Clears the value of the "type" field</summary>
  3826. </member>
  3827. <member name="F:LC.Google.Protobuf.Reflection.FieldDescriptorProto.TypeNameFieldNumber">
  3828. <summary>Field number for the "type_name" field.</summary>
  3829. </member>
  3830. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptorProto.TypeName">
  3831. <summary>
  3832. For message and enum types, this is the name of the type. If the name
  3833. starts with a '.', it is fully-qualified. Otherwise, C++-like scoping
  3834. rules are used to find the type (i.e. first the nested types within this
  3835. message are searched, then within the parent, on up to the root
  3836. namespace).
  3837. </summary>
  3838. </member>
  3839. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptorProto.HasTypeName">
  3840. <summary>Gets whether the "type_name" field is set</summary>
  3841. </member>
  3842. <member name="M:LC.Google.Protobuf.Reflection.FieldDescriptorProto.ClearTypeName">
  3843. <summary>Clears the value of the "type_name" field</summary>
  3844. </member>
  3845. <member name="F:LC.Google.Protobuf.Reflection.FieldDescriptorProto.ExtendeeFieldNumber">
  3846. <summary>Field number for the "extendee" field.</summary>
  3847. </member>
  3848. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptorProto.Extendee">
  3849. <summary>
  3850. For extensions, this is the name of the type being extended. It is
  3851. resolved in the same manner as type_name.
  3852. </summary>
  3853. </member>
  3854. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptorProto.HasExtendee">
  3855. <summary>Gets whether the "extendee" field is set</summary>
  3856. </member>
  3857. <member name="M:LC.Google.Protobuf.Reflection.FieldDescriptorProto.ClearExtendee">
  3858. <summary>Clears the value of the "extendee" field</summary>
  3859. </member>
  3860. <member name="F:LC.Google.Protobuf.Reflection.FieldDescriptorProto.DefaultValueFieldNumber">
  3861. <summary>Field number for the "default_value" field.</summary>
  3862. </member>
  3863. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptorProto.DefaultValue">
  3864. <summary>
  3865. For numeric types, contains the original text representation of the value.
  3866. For booleans, "true" or "false".
  3867. For strings, contains the default text contents (not escaped in any way).
  3868. For bytes, contains the C escaped value. All bytes >= 128 are escaped.
  3869. TODO(kenton): Base-64 encode?
  3870. </summary>
  3871. </member>
  3872. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptorProto.HasDefaultValue">
  3873. <summary>Gets whether the "default_value" field is set</summary>
  3874. </member>
  3875. <member name="M:LC.Google.Protobuf.Reflection.FieldDescriptorProto.ClearDefaultValue">
  3876. <summary>Clears the value of the "default_value" field</summary>
  3877. </member>
  3878. <member name="F:LC.Google.Protobuf.Reflection.FieldDescriptorProto.OneofIndexFieldNumber">
  3879. <summary>Field number for the "oneof_index" field.</summary>
  3880. </member>
  3881. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptorProto.OneofIndex">
  3882. <summary>
  3883. If set, gives the index of a oneof in the containing type's oneof_decl
  3884. list. This field is a member of that oneof.
  3885. </summary>
  3886. </member>
  3887. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptorProto.HasOneofIndex">
  3888. <summary>Gets whether the "oneof_index" field is set</summary>
  3889. </member>
  3890. <member name="M:LC.Google.Protobuf.Reflection.FieldDescriptorProto.ClearOneofIndex">
  3891. <summary>Clears the value of the "oneof_index" field</summary>
  3892. </member>
  3893. <member name="F:LC.Google.Protobuf.Reflection.FieldDescriptorProto.JsonNameFieldNumber">
  3894. <summary>Field number for the "json_name" field.</summary>
  3895. </member>
  3896. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptorProto.JsonName">
  3897. <summary>
  3898. JSON name of this field. The value is set by protocol compiler. If the
  3899. user has set a "json_name" option on this field, that option's value
  3900. will be used. Otherwise, it's deduced from the field's name by converting
  3901. it to camelCase.
  3902. </summary>
  3903. </member>
  3904. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptorProto.HasJsonName">
  3905. <summary>Gets whether the "json_name" field is set</summary>
  3906. </member>
  3907. <member name="M:LC.Google.Protobuf.Reflection.FieldDescriptorProto.ClearJsonName">
  3908. <summary>Clears the value of the "json_name" field</summary>
  3909. </member>
  3910. <member name="F:LC.Google.Protobuf.Reflection.FieldDescriptorProto.OptionsFieldNumber">
  3911. <summary>Field number for the "options" field.</summary>
  3912. </member>
  3913. <member name="F:LC.Google.Protobuf.Reflection.FieldDescriptorProto.Proto3OptionalFieldNumber">
  3914. <summary>Field number for the "proto3_optional" field.</summary>
  3915. </member>
  3916. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptorProto.Proto3Optional">
  3917. <summary>
  3918. If true, this is a proto3 "optional". When a proto3 field is optional, it
  3919. tracks presence regardless of field type.
  3920. When proto3_optional is true, this field must be belong to a oneof to
  3921. signal to old proto3 clients that presence is tracked for this field. This
  3922. oneof is known as a "synthetic" oneof, and this field must be its sole
  3923. member (each proto3 optional field gets its own synthetic oneof). Synthetic
  3924. oneofs exist in the descriptor only, and do not generate any API. Synthetic
  3925. oneofs must be ordered after all "real" oneofs.
  3926. For message fields, proto3_optional doesn't create any semantic change,
  3927. since non-repeated message fields always track presence. However it still
  3928. indicates the semantic detail of whether the user wrote "optional" or not.
  3929. This can be useful for round-tripping the .proto file. For consistency we
  3930. give message fields a synthetic oneof also, even though it is not required
  3931. to track presence. This is especially important because the parser can't
  3932. tell if a field is a message or an enum, so it must always create a
  3933. synthetic oneof.
  3934. Proto2 optional fields do not set this flag, because they already indicate
  3935. optional with `LABEL_OPTIONAL`.
  3936. </summary>
  3937. </member>
  3938. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptorProto.HasProto3Optional">
  3939. <summary>Gets whether the "proto3_optional" field is set</summary>
  3940. </member>
  3941. <member name="M:LC.Google.Protobuf.Reflection.FieldDescriptorProto.ClearProto3Optional">
  3942. <summary>Clears the value of the "proto3_optional" field</summary>
  3943. </member>
  3944. <member name="T:LC.Google.Protobuf.Reflection.FieldDescriptorProto.Types">
  3945. <summary>Container for nested types declared in the FieldDescriptorProto message type.</summary>
  3946. </member>
  3947. <member name="F:LC.Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type.Double">
  3948. <summary>
  3949. 0 is reserved for errors.
  3950. Order is weird for historical reasons.
  3951. </summary>
  3952. </member>
  3953. <member name="F:LC.Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type.Int64">
  3954. <summary>
  3955. Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if
  3956. negative values are likely.
  3957. </summary>
  3958. </member>
  3959. <member name="F:LC.Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type.Int32">
  3960. <summary>
  3961. Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if
  3962. negative values are likely.
  3963. </summary>
  3964. </member>
  3965. <member name="F:LC.Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type.Group">
  3966. <summary>
  3967. Tag-delimited aggregate.
  3968. Group type is deprecated and not supported in proto3. However, Proto3
  3969. implementations should still be able to parse the group wire format and
  3970. treat group fields as unknown fields.
  3971. </summary>
  3972. </member>
  3973. <member name="F:LC.Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type.Message">
  3974. <summary>
  3975. Length-delimited aggregate.
  3976. </summary>
  3977. </member>
  3978. <member name="F:LC.Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type.Bytes">
  3979. <summary>
  3980. New in version 2.
  3981. </summary>
  3982. </member>
  3983. <member name="F:LC.Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type.Sint32">
  3984. <summary>
  3985. Uses ZigZag encoding.
  3986. </summary>
  3987. </member>
  3988. <member name="F:LC.Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type.Sint64">
  3989. <summary>
  3990. Uses ZigZag encoding.
  3991. </summary>
  3992. </member>
  3993. <member name="F:LC.Google.Protobuf.Reflection.FieldDescriptorProto.Types.Label.Optional">
  3994. <summary>
  3995. 0 is reserved for errors
  3996. </summary>
  3997. </member>
  3998. <member name="T:LC.Google.Protobuf.Reflection.OneofDescriptorProto">
  3999. <summary>
  4000. Describes a oneof.
  4001. </summary>
  4002. </member>
  4003. <member name="F:LC.Google.Protobuf.Reflection.OneofDescriptorProto.NameFieldNumber">
  4004. <summary>Field number for the "name" field.</summary>
  4005. </member>
  4006. <member name="P:LC.Google.Protobuf.Reflection.OneofDescriptorProto.HasName">
  4007. <summary>Gets whether the "name" field is set</summary>
  4008. </member>
  4009. <member name="M:LC.Google.Protobuf.Reflection.OneofDescriptorProto.ClearName">
  4010. <summary>Clears the value of the "name" field</summary>
  4011. </member>
  4012. <member name="F:LC.Google.Protobuf.Reflection.OneofDescriptorProto.OptionsFieldNumber">
  4013. <summary>Field number for the "options" field.</summary>
  4014. </member>
  4015. <member name="T:LC.Google.Protobuf.Reflection.EnumDescriptorProto">
  4016. <summary>
  4017. Describes an enum type.
  4018. </summary>
  4019. </member>
  4020. <member name="F:LC.Google.Protobuf.Reflection.EnumDescriptorProto.NameFieldNumber">
  4021. <summary>Field number for the "name" field.</summary>
  4022. </member>
  4023. <member name="P:LC.Google.Protobuf.Reflection.EnumDescriptorProto.HasName">
  4024. <summary>Gets whether the "name" field is set</summary>
  4025. </member>
  4026. <member name="M:LC.Google.Protobuf.Reflection.EnumDescriptorProto.ClearName">
  4027. <summary>Clears the value of the "name" field</summary>
  4028. </member>
  4029. <member name="F:LC.Google.Protobuf.Reflection.EnumDescriptorProto.ValueFieldNumber">
  4030. <summary>Field number for the "value" field.</summary>
  4031. </member>
  4032. <member name="F:LC.Google.Protobuf.Reflection.EnumDescriptorProto.OptionsFieldNumber">
  4033. <summary>Field number for the "options" field.</summary>
  4034. </member>
  4035. <member name="F:LC.Google.Protobuf.Reflection.EnumDescriptorProto.ReservedRangeFieldNumber">
  4036. <summary>Field number for the "reserved_range" field.</summary>
  4037. </member>
  4038. <member name="P:LC.Google.Protobuf.Reflection.EnumDescriptorProto.ReservedRange">
  4039. <summary>
  4040. Range of reserved numeric values. Reserved numeric values may not be used
  4041. by enum values in the same enum declaration. Reserved ranges may not
  4042. overlap.
  4043. </summary>
  4044. </member>
  4045. <member name="F:LC.Google.Protobuf.Reflection.EnumDescriptorProto.ReservedNameFieldNumber">
  4046. <summary>Field number for the "reserved_name" field.</summary>
  4047. </member>
  4048. <member name="P:LC.Google.Protobuf.Reflection.EnumDescriptorProto.ReservedName">
  4049. <summary>
  4050. Reserved enum value names, which may not be reused. A given name may only
  4051. be reserved once.
  4052. </summary>
  4053. </member>
  4054. <member name="T:LC.Google.Protobuf.Reflection.EnumDescriptorProto.Types">
  4055. <summary>Container for nested types declared in the EnumDescriptorProto message type.</summary>
  4056. </member>
  4057. <member name="T:LC.Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange">
  4058. <summary>
  4059. Range of reserved numeric values. Reserved values may not be used by
  4060. entries in the same enum. Reserved ranges may not overlap.
  4061. Note that this is distinct from DescriptorProto.ReservedRange in that it
  4062. is inclusive such that it can appropriately represent the entire int32
  4063. domain.
  4064. </summary>
  4065. </member>
  4066. <member name="F:LC.Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange.StartFieldNumber">
  4067. <summary>Field number for the "start" field.</summary>
  4068. </member>
  4069. <member name="P:LC.Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange.Start">
  4070. <summary>
  4071. Inclusive.
  4072. </summary>
  4073. </member>
  4074. <member name="P:LC.Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange.HasStart">
  4075. <summary>Gets whether the "start" field is set</summary>
  4076. </member>
  4077. <member name="M:LC.Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange.ClearStart">
  4078. <summary>Clears the value of the "start" field</summary>
  4079. </member>
  4080. <member name="F:LC.Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange.EndFieldNumber">
  4081. <summary>Field number for the "end" field.</summary>
  4082. </member>
  4083. <member name="P:LC.Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange.End">
  4084. <summary>
  4085. Inclusive.
  4086. </summary>
  4087. </member>
  4088. <member name="P:LC.Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange.HasEnd">
  4089. <summary>Gets whether the "end" field is set</summary>
  4090. </member>
  4091. <member name="M:LC.Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange.ClearEnd">
  4092. <summary>Clears the value of the "end" field</summary>
  4093. </member>
  4094. <member name="T:LC.Google.Protobuf.Reflection.EnumValueDescriptorProto">
  4095. <summary>
  4096. Describes a value within an enum.
  4097. </summary>
  4098. </member>
  4099. <member name="F:LC.Google.Protobuf.Reflection.EnumValueDescriptorProto.NameFieldNumber">
  4100. <summary>Field number for the "name" field.</summary>
  4101. </member>
  4102. <member name="P:LC.Google.Protobuf.Reflection.EnumValueDescriptorProto.HasName">
  4103. <summary>Gets whether the "name" field is set</summary>
  4104. </member>
  4105. <member name="M:LC.Google.Protobuf.Reflection.EnumValueDescriptorProto.ClearName">
  4106. <summary>Clears the value of the "name" field</summary>
  4107. </member>
  4108. <member name="F:LC.Google.Protobuf.Reflection.EnumValueDescriptorProto.NumberFieldNumber">
  4109. <summary>Field number for the "number" field.</summary>
  4110. </member>
  4111. <member name="P:LC.Google.Protobuf.Reflection.EnumValueDescriptorProto.HasNumber">
  4112. <summary>Gets whether the "number" field is set</summary>
  4113. </member>
  4114. <member name="M:LC.Google.Protobuf.Reflection.EnumValueDescriptorProto.ClearNumber">
  4115. <summary>Clears the value of the "number" field</summary>
  4116. </member>
  4117. <member name="F:LC.Google.Protobuf.Reflection.EnumValueDescriptorProto.OptionsFieldNumber">
  4118. <summary>Field number for the "options" field.</summary>
  4119. </member>
  4120. <member name="T:LC.Google.Protobuf.Reflection.ServiceDescriptorProto">
  4121. <summary>
  4122. Describes a service.
  4123. </summary>
  4124. </member>
  4125. <member name="F:LC.Google.Protobuf.Reflection.ServiceDescriptorProto.NameFieldNumber">
  4126. <summary>Field number for the "name" field.</summary>
  4127. </member>
  4128. <member name="P:LC.Google.Protobuf.Reflection.ServiceDescriptorProto.HasName">
  4129. <summary>Gets whether the "name" field is set</summary>
  4130. </member>
  4131. <member name="M:LC.Google.Protobuf.Reflection.ServiceDescriptorProto.ClearName">
  4132. <summary>Clears the value of the "name" field</summary>
  4133. </member>
  4134. <member name="F:LC.Google.Protobuf.Reflection.ServiceDescriptorProto.MethodFieldNumber">
  4135. <summary>Field number for the "method" field.</summary>
  4136. </member>
  4137. <member name="F:LC.Google.Protobuf.Reflection.ServiceDescriptorProto.OptionsFieldNumber">
  4138. <summary>Field number for the "options" field.</summary>
  4139. </member>
  4140. <member name="T:LC.Google.Protobuf.Reflection.MethodDescriptorProto">
  4141. <summary>
  4142. Describes a method of a service.
  4143. </summary>
  4144. </member>
  4145. <member name="F:LC.Google.Protobuf.Reflection.MethodDescriptorProto.NameFieldNumber">
  4146. <summary>Field number for the "name" field.</summary>
  4147. </member>
  4148. <member name="P:LC.Google.Protobuf.Reflection.MethodDescriptorProto.HasName">
  4149. <summary>Gets whether the "name" field is set</summary>
  4150. </member>
  4151. <member name="M:LC.Google.Protobuf.Reflection.MethodDescriptorProto.ClearName">
  4152. <summary>Clears the value of the "name" field</summary>
  4153. </member>
  4154. <member name="F:LC.Google.Protobuf.Reflection.MethodDescriptorProto.InputTypeFieldNumber">
  4155. <summary>Field number for the "input_type" field.</summary>
  4156. </member>
  4157. <member name="P:LC.Google.Protobuf.Reflection.MethodDescriptorProto.InputType">
  4158. <summary>
  4159. Input and output type names. These are resolved in the same way as
  4160. FieldDescriptorProto.type_name, but must refer to a message type.
  4161. </summary>
  4162. </member>
  4163. <member name="P:LC.Google.Protobuf.Reflection.MethodDescriptorProto.HasInputType">
  4164. <summary>Gets whether the "input_type" field is set</summary>
  4165. </member>
  4166. <member name="M:LC.Google.Protobuf.Reflection.MethodDescriptorProto.ClearInputType">
  4167. <summary>Clears the value of the "input_type" field</summary>
  4168. </member>
  4169. <member name="F:LC.Google.Protobuf.Reflection.MethodDescriptorProto.OutputTypeFieldNumber">
  4170. <summary>Field number for the "output_type" field.</summary>
  4171. </member>
  4172. <member name="P:LC.Google.Protobuf.Reflection.MethodDescriptorProto.HasOutputType">
  4173. <summary>Gets whether the "output_type" field is set</summary>
  4174. </member>
  4175. <member name="M:LC.Google.Protobuf.Reflection.MethodDescriptorProto.ClearOutputType">
  4176. <summary>Clears the value of the "output_type" field</summary>
  4177. </member>
  4178. <member name="F:LC.Google.Protobuf.Reflection.MethodDescriptorProto.OptionsFieldNumber">
  4179. <summary>Field number for the "options" field.</summary>
  4180. </member>
  4181. <member name="F:LC.Google.Protobuf.Reflection.MethodDescriptorProto.ClientStreamingFieldNumber">
  4182. <summary>Field number for the "client_streaming" field.</summary>
  4183. </member>
  4184. <member name="P:LC.Google.Protobuf.Reflection.MethodDescriptorProto.ClientStreaming">
  4185. <summary>
  4186. Identifies if client streams multiple client messages
  4187. </summary>
  4188. </member>
  4189. <member name="P:LC.Google.Protobuf.Reflection.MethodDescriptorProto.HasClientStreaming">
  4190. <summary>Gets whether the "client_streaming" field is set</summary>
  4191. </member>
  4192. <member name="M:LC.Google.Protobuf.Reflection.MethodDescriptorProto.ClearClientStreaming">
  4193. <summary>Clears the value of the "client_streaming" field</summary>
  4194. </member>
  4195. <member name="F:LC.Google.Protobuf.Reflection.MethodDescriptorProto.ServerStreamingFieldNumber">
  4196. <summary>Field number for the "server_streaming" field.</summary>
  4197. </member>
  4198. <member name="P:LC.Google.Protobuf.Reflection.MethodDescriptorProto.ServerStreaming">
  4199. <summary>
  4200. Identifies if server streams multiple server messages
  4201. </summary>
  4202. </member>
  4203. <member name="P:LC.Google.Protobuf.Reflection.MethodDescriptorProto.HasServerStreaming">
  4204. <summary>Gets whether the "server_streaming" field is set</summary>
  4205. </member>
  4206. <member name="M:LC.Google.Protobuf.Reflection.MethodDescriptorProto.ClearServerStreaming">
  4207. <summary>Clears the value of the "server_streaming" field</summary>
  4208. </member>
  4209. <member name="F:LC.Google.Protobuf.Reflection.FileOptions.JavaPackageFieldNumber">
  4210. <summary>Field number for the "java_package" field.</summary>
  4211. </member>
  4212. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.JavaPackage">
  4213. <summary>
  4214. Sets the Java package where classes generated from this .proto will be
  4215. placed. By default, the proto package is used, but this is often
  4216. inappropriate because proto packages do not normally start with backwards
  4217. domain names.
  4218. </summary>
  4219. </member>
  4220. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.HasJavaPackage">
  4221. <summary>Gets whether the "java_package" field is set</summary>
  4222. </member>
  4223. <member name="M:LC.Google.Protobuf.Reflection.FileOptions.ClearJavaPackage">
  4224. <summary>Clears the value of the "java_package" field</summary>
  4225. </member>
  4226. <member name="F:LC.Google.Protobuf.Reflection.FileOptions.JavaOuterClassnameFieldNumber">
  4227. <summary>Field number for the "java_outer_classname" field.</summary>
  4228. </member>
  4229. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.JavaOuterClassname">
  4230. <summary>
  4231. If set, all the classes from the .proto file are wrapped in a single
  4232. outer class with the given name. This applies to both Proto1
  4233. (equivalent to the old "--one_java_file" option) and Proto2 (where
  4234. a .proto always translates to a single class, but you may want to
  4235. explicitly choose the class name).
  4236. </summary>
  4237. </member>
  4238. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.HasJavaOuterClassname">
  4239. <summary>Gets whether the "java_outer_classname" field is set</summary>
  4240. </member>
  4241. <member name="M:LC.Google.Protobuf.Reflection.FileOptions.ClearJavaOuterClassname">
  4242. <summary>Clears the value of the "java_outer_classname" field</summary>
  4243. </member>
  4244. <member name="F:LC.Google.Protobuf.Reflection.FileOptions.JavaMultipleFilesFieldNumber">
  4245. <summary>Field number for the "java_multiple_files" field.</summary>
  4246. </member>
  4247. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.JavaMultipleFiles">
  4248. <summary>
  4249. If set true, then the Java code generator will generate a separate .java
  4250. file for each top-level message, enum, and service defined in the .proto
  4251. file. Thus, these types will *not* be nested inside the outer class
  4252. named by java_outer_classname. However, the outer class will still be
  4253. generated to contain the file's getDescriptor() method as well as any
  4254. top-level extensions defined in the file.
  4255. </summary>
  4256. </member>
  4257. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.HasJavaMultipleFiles">
  4258. <summary>Gets whether the "java_multiple_files" field is set</summary>
  4259. </member>
  4260. <member name="M:LC.Google.Protobuf.Reflection.FileOptions.ClearJavaMultipleFiles">
  4261. <summary>Clears the value of the "java_multiple_files" field</summary>
  4262. </member>
  4263. <member name="F:LC.Google.Protobuf.Reflection.FileOptions.JavaGenerateEqualsAndHashFieldNumber">
  4264. <summary>Field number for the "java_generate_equals_and_hash" field.</summary>
  4265. </member>
  4266. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.JavaGenerateEqualsAndHash">
  4267. <summary>
  4268. This option does nothing.
  4269. </summary>
  4270. </member>
  4271. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.HasJavaGenerateEqualsAndHash">
  4272. <summary>Gets whether the "java_generate_equals_and_hash" field is set</summary>
  4273. </member>
  4274. <member name="M:LC.Google.Protobuf.Reflection.FileOptions.ClearJavaGenerateEqualsAndHash">
  4275. <summary>Clears the value of the "java_generate_equals_and_hash" field</summary>
  4276. </member>
  4277. <member name="F:LC.Google.Protobuf.Reflection.FileOptions.JavaStringCheckUtf8FieldNumber">
  4278. <summary>Field number for the "java_string_check_utf8" field.</summary>
  4279. </member>
  4280. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.JavaStringCheckUtf8">
  4281. <summary>
  4282. If set true, then the Java2 code generator will generate code that
  4283. throws an exception whenever an attempt is made to assign a non-UTF-8
  4284. byte sequence to a string field.
  4285. Message reflection will do the same.
  4286. However, an extension field still accepts non-UTF-8 byte sequences.
  4287. This option has no effect on when used with the lite runtime.
  4288. </summary>
  4289. </member>
  4290. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.HasJavaStringCheckUtf8">
  4291. <summary>Gets whether the "java_string_check_utf8" field is set</summary>
  4292. </member>
  4293. <member name="M:LC.Google.Protobuf.Reflection.FileOptions.ClearJavaStringCheckUtf8">
  4294. <summary>Clears the value of the "java_string_check_utf8" field</summary>
  4295. </member>
  4296. <member name="F:LC.Google.Protobuf.Reflection.FileOptions.OptimizeForFieldNumber">
  4297. <summary>Field number for the "optimize_for" field.</summary>
  4298. </member>
  4299. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.HasOptimizeFor">
  4300. <summary>Gets whether the "optimize_for" field is set</summary>
  4301. </member>
  4302. <member name="M:LC.Google.Protobuf.Reflection.FileOptions.ClearOptimizeFor">
  4303. <summary>Clears the value of the "optimize_for" field</summary>
  4304. </member>
  4305. <member name="F:LC.Google.Protobuf.Reflection.FileOptions.GoPackageFieldNumber">
  4306. <summary>Field number for the "go_package" field.</summary>
  4307. </member>
  4308. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.GoPackage">
  4309. <summary>
  4310. Sets the Go package where structs generated from this .proto will be
  4311. placed. If omitted, the Go package will be derived from the following:
  4312. - The basename of the package import path, if provided.
  4313. - Otherwise, the package statement in the .proto file, if present.
  4314. - Otherwise, the basename of the .proto file, without extension.
  4315. </summary>
  4316. </member>
  4317. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.HasGoPackage">
  4318. <summary>Gets whether the "go_package" field is set</summary>
  4319. </member>
  4320. <member name="M:LC.Google.Protobuf.Reflection.FileOptions.ClearGoPackage">
  4321. <summary>Clears the value of the "go_package" field</summary>
  4322. </member>
  4323. <member name="F:LC.Google.Protobuf.Reflection.FileOptions.CcGenericServicesFieldNumber">
  4324. <summary>Field number for the "cc_generic_services" field.</summary>
  4325. </member>
  4326. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.CcGenericServices">
  4327. <summary>
  4328. Should generic services be generated in each language? "Generic" services
  4329. are not specific to any particular RPC system. They are generated by the
  4330. main code generators in each language (without additional plugins).
  4331. Generic services were the only kind of service generation supported by
  4332. early versions of google.protobuf.
  4333. Generic services are now considered deprecated in favor of using plugins
  4334. that generate code specific to your particular RPC system. Therefore,
  4335. these default to false. Old code which depends on generic services should
  4336. explicitly set them to true.
  4337. </summary>
  4338. </member>
  4339. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.HasCcGenericServices">
  4340. <summary>Gets whether the "cc_generic_services" field is set</summary>
  4341. </member>
  4342. <member name="M:LC.Google.Protobuf.Reflection.FileOptions.ClearCcGenericServices">
  4343. <summary>Clears the value of the "cc_generic_services" field</summary>
  4344. </member>
  4345. <member name="F:LC.Google.Protobuf.Reflection.FileOptions.JavaGenericServicesFieldNumber">
  4346. <summary>Field number for the "java_generic_services" field.</summary>
  4347. </member>
  4348. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.HasJavaGenericServices">
  4349. <summary>Gets whether the "java_generic_services" field is set</summary>
  4350. </member>
  4351. <member name="M:LC.Google.Protobuf.Reflection.FileOptions.ClearJavaGenericServices">
  4352. <summary>Clears the value of the "java_generic_services" field</summary>
  4353. </member>
  4354. <member name="F:LC.Google.Protobuf.Reflection.FileOptions.PyGenericServicesFieldNumber">
  4355. <summary>Field number for the "py_generic_services" field.</summary>
  4356. </member>
  4357. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.HasPyGenericServices">
  4358. <summary>Gets whether the "py_generic_services" field is set</summary>
  4359. </member>
  4360. <member name="M:LC.Google.Protobuf.Reflection.FileOptions.ClearPyGenericServices">
  4361. <summary>Clears the value of the "py_generic_services" field</summary>
  4362. </member>
  4363. <member name="F:LC.Google.Protobuf.Reflection.FileOptions.PhpGenericServicesFieldNumber">
  4364. <summary>Field number for the "php_generic_services" field.</summary>
  4365. </member>
  4366. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.HasPhpGenericServices">
  4367. <summary>Gets whether the "php_generic_services" field is set</summary>
  4368. </member>
  4369. <member name="M:LC.Google.Protobuf.Reflection.FileOptions.ClearPhpGenericServices">
  4370. <summary>Clears the value of the "php_generic_services" field</summary>
  4371. </member>
  4372. <member name="F:LC.Google.Protobuf.Reflection.FileOptions.DeprecatedFieldNumber">
  4373. <summary>Field number for the "deprecated" field.</summary>
  4374. </member>
  4375. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.Deprecated">
  4376. <summary>
  4377. Is this file deprecated?
  4378. Depending on the target platform, this can emit Deprecated annotations
  4379. for everything in the file, or it will be completely ignored; in the very
  4380. least, this is a formalization for deprecating files.
  4381. </summary>
  4382. </member>
  4383. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.HasDeprecated">
  4384. <summary>Gets whether the "deprecated" field is set</summary>
  4385. </member>
  4386. <member name="M:LC.Google.Protobuf.Reflection.FileOptions.ClearDeprecated">
  4387. <summary>Clears the value of the "deprecated" field</summary>
  4388. </member>
  4389. <member name="F:LC.Google.Protobuf.Reflection.FileOptions.CcEnableArenasFieldNumber">
  4390. <summary>Field number for the "cc_enable_arenas" field.</summary>
  4391. </member>
  4392. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.CcEnableArenas">
  4393. <summary>
  4394. Enables the use of arenas for the proto messages in this file. This applies
  4395. only to generated classes for C++.
  4396. </summary>
  4397. </member>
  4398. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.HasCcEnableArenas">
  4399. <summary>Gets whether the "cc_enable_arenas" field is set</summary>
  4400. </member>
  4401. <member name="M:LC.Google.Protobuf.Reflection.FileOptions.ClearCcEnableArenas">
  4402. <summary>Clears the value of the "cc_enable_arenas" field</summary>
  4403. </member>
  4404. <member name="F:LC.Google.Protobuf.Reflection.FileOptions.ObjcClassPrefixFieldNumber">
  4405. <summary>Field number for the "objc_class_prefix" field.</summary>
  4406. </member>
  4407. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.ObjcClassPrefix">
  4408. <summary>
  4409. Sets the objective c class prefix which is prepended to all objective c
  4410. generated classes from this .proto. There is no default.
  4411. </summary>
  4412. </member>
  4413. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.HasObjcClassPrefix">
  4414. <summary>Gets whether the "objc_class_prefix" field is set</summary>
  4415. </member>
  4416. <member name="M:LC.Google.Protobuf.Reflection.FileOptions.ClearObjcClassPrefix">
  4417. <summary>Clears the value of the "objc_class_prefix" field</summary>
  4418. </member>
  4419. <member name="F:LC.Google.Protobuf.Reflection.FileOptions.CsharpNamespaceFieldNumber">
  4420. <summary>Field number for the "csharp_namespace" field.</summary>
  4421. </member>
  4422. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.CsharpNamespace">
  4423. <summary>
  4424. Namespace for generated classes; defaults to the package.
  4425. </summary>
  4426. </member>
  4427. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.HasCsharpNamespace">
  4428. <summary>Gets whether the "csharp_namespace" field is set</summary>
  4429. </member>
  4430. <member name="M:LC.Google.Protobuf.Reflection.FileOptions.ClearCsharpNamespace">
  4431. <summary>Clears the value of the "csharp_namespace" field</summary>
  4432. </member>
  4433. <member name="F:LC.Google.Protobuf.Reflection.FileOptions.SwiftPrefixFieldNumber">
  4434. <summary>Field number for the "swift_prefix" field.</summary>
  4435. </member>
  4436. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.SwiftPrefix">
  4437. <summary>
  4438. By default Swift generators will take the proto package and CamelCase it
  4439. replacing '.' with underscore and use that to prefix the types/symbols
  4440. defined. When this options is provided, they will use this value instead
  4441. to prefix the types/symbols defined.
  4442. </summary>
  4443. </member>
  4444. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.HasSwiftPrefix">
  4445. <summary>Gets whether the "swift_prefix" field is set</summary>
  4446. </member>
  4447. <member name="M:LC.Google.Protobuf.Reflection.FileOptions.ClearSwiftPrefix">
  4448. <summary>Clears the value of the "swift_prefix" field</summary>
  4449. </member>
  4450. <member name="F:LC.Google.Protobuf.Reflection.FileOptions.PhpClassPrefixFieldNumber">
  4451. <summary>Field number for the "php_class_prefix" field.</summary>
  4452. </member>
  4453. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.PhpClassPrefix">
  4454. <summary>
  4455. Sets the php class prefix which is prepended to all php generated classes
  4456. from this .proto. Default is empty.
  4457. </summary>
  4458. </member>
  4459. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.HasPhpClassPrefix">
  4460. <summary>Gets whether the "php_class_prefix" field is set</summary>
  4461. </member>
  4462. <member name="M:LC.Google.Protobuf.Reflection.FileOptions.ClearPhpClassPrefix">
  4463. <summary>Clears the value of the "php_class_prefix" field</summary>
  4464. </member>
  4465. <member name="F:LC.Google.Protobuf.Reflection.FileOptions.PhpNamespaceFieldNumber">
  4466. <summary>Field number for the "php_namespace" field.</summary>
  4467. </member>
  4468. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.PhpNamespace">
  4469. <summary>
  4470. Use this option to change the namespace of php generated classes. Default
  4471. is empty. When this option is empty, the package name will be used for
  4472. determining the namespace.
  4473. </summary>
  4474. </member>
  4475. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.HasPhpNamespace">
  4476. <summary>Gets whether the "php_namespace" field is set</summary>
  4477. </member>
  4478. <member name="M:LC.Google.Protobuf.Reflection.FileOptions.ClearPhpNamespace">
  4479. <summary>Clears the value of the "php_namespace" field</summary>
  4480. </member>
  4481. <member name="F:LC.Google.Protobuf.Reflection.FileOptions.PhpMetadataNamespaceFieldNumber">
  4482. <summary>Field number for the "php_metadata_namespace" field.</summary>
  4483. </member>
  4484. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.PhpMetadataNamespace">
  4485. <summary>
  4486. Use this option to change the namespace of php generated metadata classes.
  4487. Default is empty. When this option is empty, the proto file name will be
  4488. used for determining the namespace.
  4489. </summary>
  4490. </member>
  4491. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.HasPhpMetadataNamespace">
  4492. <summary>Gets whether the "php_metadata_namespace" field is set</summary>
  4493. </member>
  4494. <member name="M:LC.Google.Protobuf.Reflection.FileOptions.ClearPhpMetadataNamespace">
  4495. <summary>Clears the value of the "php_metadata_namespace" field</summary>
  4496. </member>
  4497. <member name="F:LC.Google.Protobuf.Reflection.FileOptions.RubyPackageFieldNumber">
  4498. <summary>Field number for the "ruby_package" field.</summary>
  4499. </member>
  4500. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.RubyPackage">
  4501. <summary>
  4502. Use this option to change the package of ruby generated classes. Default
  4503. is empty. When this option is not set, the package name will be used for
  4504. determining the ruby package.
  4505. </summary>
  4506. </member>
  4507. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.HasRubyPackage">
  4508. <summary>Gets whether the "ruby_package" field is set</summary>
  4509. </member>
  4510. <member name="M:LC.Google.Protobuf.Reflection.FileOptions.ClearRubyPackage">
  4511. <summary>Clears the value of the "ruby_package" field</summary>
  4512. </member>
  4513. <member name="F:LC.Google.Protobuf.Reflection.FileOptions.UninterpretedOptionFieldNumber">
  4514. <summary>Field number for the "uninterpreted_option" field.</summary>
  4515. </member>
  4516. <member name="P:LC.Google.Protobuf.Reflection.FileOptions.UninterpretedOption">
  4517. <summary>
  4518. The parser stores options it doesn't recognize here.
  4519. See the documentation for the "Options" section above.
  4520. </summary>
  4521. </member>
  4522. <member name="T:LC.Google.Protobuf.Reflection.FileOptions.Types">
  4523. <summary>Container for nested types declared in the FileOptions message type.</summary>
  4524. </member>
  4525. <member name="T:LC.Google.Protobuf.Reflection.FileOptions.Types.OptimizeMode">
  4526. <summary>
  4527. Generated classes can be optimized for speed or code size.
  4528. </summary>
  4529. </member>
  4530. <member name="F:LC.Google.Protobuf.Reflection.FileOptions.Types.OptimizeMode.Speed">
  4531. <summary>
  4532. Generate complete code for parsing, serialization,
  4533. </summary>
  4534. </member>
  4535. <member name="F:LC.Google.Protobuf.Reflection.FileOptions.Types.OptimizeMode.CodeSize">
  4536. <summary>
  4537. etc.
  4538. </summary>
  4539. </member>
  4540. <member name="F:LC.Google.Protobuf.Reflection.FileOptions.Types.OptimizeMode.LiteRuntime">
  4541. <summary>
  4542. Generate code using MessageLite and the lite runtime.
  4543. </summary>
  4544. </member>
  4545. <member name="F:LC.Google.Protobuf.Reflection.MessageOptions.MessageSetWireFormatFieldNumber">
  4546. <summary>Field number for the "message_set_wire_format" field.</summary>
  4547. </member>
  4548. <member name="P:LC.Google.Protobuf.Reflection.MessageOptions.MessageSetWireFormat">
  4549. <summary>
  4550. Set true to use the old proto1 MessageSet wire format for extensions.
  4551. This is provided for backwards-compatibility with the MessageSet wire
  4552. format. You should not use this for any other reason: It's less
  4553. efficient, has fewer features, and is more complicated.
  4554. The message must be defined exactly as follows:
  4555. message Foo {
  4556. option message_set_wire_format = true;
  4557. extensions 4 to max;
  4558. }
  4559. Note that the message cannot have any defined fields; MessageSets only
  4560. have extensions.
  4561. All extensions of your type must be singular messages; e.g. they cannot
  4562. be int32s, enums, or repeated messages.
  4563. Because this is an option, the above two restrictions are not enforced by
  4564. the protocol compiler.
  4565. </summary>
  4566. </member>
  4567. <member name="P:LC.Google.Protobuf.Reflection.MessageOptions.HasMessageSetWireFormat">
  4568. <summary>Gets whether the "message_set_wire_format" field is set</summary>
  4569. </member>
  4570. <member name="M:LC.Google.Protobuf.Reflection.MessageOptions.ClearMessageSetWireFormat">
  4571. <summary>Clears the value of the "message_set_wire_format" field</summary>
  4572. </member>
  4573. <member name="F:LC.Google.Protobuf.Reflection.MessageOptions.NoStandardDescriptorAccessorFieldNumber">
  4574. <summary>Field number for the "no_standard_descriptor_accessor" field.</summary>
  4575. </member>
  4576. <member name="P:LC.Google.Protobuf.Reflection.MessageOptions.NoStandardDescriptorAccessor">
  4577. <summary>
  4578. Disables the generation of the standard "descriptor()" accessor, which can
  4579. conflict with a field of the same name. This is meant to make migration
  4580. from proto1 easier; new code should avoid fields named "descriptor".
  4581. </summary>
  4582. </member>
  4583. <member name="P:LC.Google.Protobuf.Reflection.MessageOptions.HasNoStandardDescriptorAccessor">
  4584. <summary>Gets whether the "no_standard_descriptor_accessor" field is set</summary>
  4585. </member>
  4586. <member name="M:LC.Google.Protobuf.Reflection.MessageOptions.ClearNoStandardDescriptorAccessor">
  4587. <summary>Clears the value of the "no_standard_descriptor_accessor" field</summary>
  4588. </member>
  4589. <member name="F:LC.Google.Protobuf.Reflection.MessageOptions.DeprecatedFieldNumber">
  4590. <summary>Field number for the "deprecated" field.</summary>
  4591. </member>
  4592. <member name="P:LC.Google.Protobuf.Reflection.MessageOptions.Deprecated">
  4593. <summary>
  4594. Is this message deprecated?
  4595. Depending on the target platform, this can emit Deprecated annotations
  4596. for the message, or it will be completely ignored; in the very least,
  4597. this is a formalization for deprecating messages.
  4598. </summary>
  4599. </member>
  4600. <member name="P:LC.Google.Protobuf.Reflection.MessageOptions.HasDeprecated">
  4601. <summary>Gets whether the "deprecated" field is set</summary>
  4602. </member>
  4603. <member name="M:LC.Google.Protobuf.Reflection.MessageOptions.ClearDeprecated">
  4604. <summary>Clears the value of the "deprecated" field</summary>
  4605. </member>
  4606. <member name="F:LC.Google.Protobuf.Reflection.MessageOptions.MapEntryFieldNumber">
  4607. <summary>Field number for the "map_entry" field.</summary>
  4608. </member>
  4609. <member name="P:LC.Google.Protobuf.Reflection.MessageOptions.MapEntry">
  4610. <summary>
  4611. Whether the message is an automatically generated map entry type for the
  4612. maps field.
  4613. For maps fields:
  4614. map&lt;KeyType, ValueType> map_field = 1;
  4615. The parsed descriptor looks like:
  4616. message MapFieldEntry {
  4617. option map_entry = true;
  4618. optional KeyType key = 1;
  4619. optional ValueType value = 2;
  4620. }
  4621. repeated MapFieldEntry map_field = 1;
  4622. Implementations may choose not to generate the map_entry=true message, but
  4623. use a native map in the target language to hold the keys and values.
  4624. The reflection APIs in such implementations still need to work as
  4625. if the field is a repeated message field.
  4626. NOTE: Do not set the option in .proto files. Always use the maps syntax
  4627. instead. The option should only be implicitly set by the proto compiler
  4628. parser.
  4629. </summary>
  4630. </member>
  4631. <member name="P:LC.Google.Protobuf.Reflection.MessageOptions.HasMapEntry">
  4632. <summary>Gets whether the "map_entry" field is set</summary>
  4633. </member>
  4634. <member name="M:LC.Google.Protobuf.Reflection.MessageOptions.ClearMapEntry">
  4635. <summary>Clears the value of the "map_entry" field</summary>
  4636. </member>
  4637. <member name="F:LC.Google.Protobuf.Reflection.MessageOptions.UninterpretedOptionFieldNumber">
  4638. <summary>Field number for the "uninterpreted_option" field.</summary>
  4639. </member>
  4640. <member name="P:LC.Google.Protobuf.Reflection.MessageOptions.UninterpretedOption">
  4641. <summary>
  4642. The parser stores options it doesn't recognize here. See above.
  4643. </summary>
  4644. </member>
  4645. <member name="F:LC.Google.Protobuf.Reflection.FieldOptions.CtypeFieldNumber">
  4646. <summary>Field number for the "ctype" field.</summary>
  4647. </member>
  4648. <member name="P:LC.Google.Protobuf.Reflection.FieldOptions.Ctype">
  4649. <summary>
  4650. The ctype option instructs the C++ code generator to use a different
  4651. representation of the field than it normally would. See the specific
  4652. options below. This option is not yet implemented in the open source
  4653. release -- sorry, we'll try to include it in a future version!
  4654. </summary>
  4655. </member>
  4656. <member name="P:LC.Google.Protobuf.Reflection.FieldOptions.HasCtype">
  4657. <summary>Gets whether the "ctype" field is set</summary>
  4658. </member>
  4659. <member name="M:LC.Google.Protobuf.Reflection.FieldOptions.ClearCtype">
  4660. <summary>Clears the value of the "ctype" field</summary>
  4661. </member>
  4662. <member name="F:LC.Google.Protobuf.Reflection.FieldOptions.PackedFieldNumber">
  4663. <summary>Field number for the "packed" field.</summary>
  4664. </member>
  4665. <member name="P:LC.Google.Protobuf.Reflection.FieldOptions.Packed">
  4666. <summary>
  4667. The packed option can be enabled for repeated primitive fields to enable
  4668. a more efficient representation on the wire. Rather than repeatedly
  4669. writing the tag and type for each element, the entire array is encoded as
  4670. a single length-delimited blob. In proto3, only explicit setting it to
  4671. false will avoid using packed encoding.
  4672. </summary>
  4673. </member>
  4674. <member name="P:LC.Google.Protobuf.Reflection.FieldOptions.HasPacked">
  4675. <summary>Gets whether the "packed" field is set</summary>
  4676. </member>
  4677. <member name="M:LC.Google.Protobuf.Reflection.FieldOptions.ClearPacked">
  4678. <summary>Clears the value of the "packed" field</summary>
  4679. </member>
  4680. <member name="F:LC.Google.Protobuf.Reflection.FieldOptions.JstypeFieldNumber">
  4681. <summary>Field number for the "jstype" field.</summary>
  4682. </member>
  4683. <member name="P:LC.Google.Protobuf.Reflection.FieldOptions.Jstype">
  4684. <summary>
  4685. The jstype option determines the JavaScript type used for values of the
  4686. field. The option is permitted only for 64 bit integral and fixed types
  4687. (int64, uint64, sint64, fixed64, sfixed64). A field with jstype JS_STRING
  4688. is represented as JavaScript string, which avoids loss of precision that
  4689. can happen when a large value is converted to a floating point JavaScript.
  4690. Specifying JS_NUMBER for the jstype causes the generated JavaScript code to
  4691. use the JavaScript "number" type. The behavior of the default option
  4692. JS_NORMAL is implementation dependent.
  4693. This option is an enum to permit additional types to be added, e.g.
  4694. goog.math.Integer.
  4695. </summary>
  4696. </member>
  4697. <member name="P:LC.Google.Protobuf.Reflection.FieldOptions.HasJstype">
  4698. <summary>Gets whether the "jstype" field is set</summary>
  4699. </member>
  4700. <member name="M:LC.Google.Protobuf.Reflection.FieldOptions.ClearJstype">
  4701. <summary>Clears the value of the "jstype" field</summary>
  4702. </member>
  4703. <member name="F:LC.Google.Protobuf.Reflection.FieldOptions.LazyFieldNumber">
  4704. <summary>Field number for the "lazy" field.</summary>
  4705. </member>
  4706. <member name="P:LC.Google.Protobuf.Reflection.FieldOptions.Lazy">
  4707. <summary>
  4708. Should this field be parsed lazily? Lazy applies only to message-type
  4709. fields. It means that when the outer message is initially parsed, the
  4710. inner message's contents will not be parsed but instead stored in encoded
  4711. form. The inner message will actually be parsed when it is first accessed.
  4712. This is only a hint. Implementations are free to choose whether to use
  4713. eager or lazy parsing regardless of the value of this option. However,
  4714. setting this option true suggests that the protocol author believes that
  4715. using lazy parsing on this field is worth the additional bookkeeping
  4716. overhead typically needed to implement it.
  4717. This option does not affect the public interface of any generated code;
  4718. all method signatures remain the same. Furthermore, thread-safety of the
  4719. interface is not affected by this option; const methods remain safe to
  4720. call from multiple threads concurrently, while non-const methods continue
  4721. to require exclusive access.
  4722. Note that implementations may choose not to check required fields within
  4723. a lazy sub-message. That is, calling IsInitialized() on the outer message
  4724. may return true even if the inner message has missing required fields.
  4725. This is necessary because otherwise the inner message would have to be
  4726. parsed in order to perform the check, defeating the purpose of lazy
  4727. parsing. An implementation which chooses not to check required fields
  4728. must be consistent about it. That is, for any particular sub-message, the
  4729. implementation must either *always* check its required fields, or *never*
  4730. check its required fields, regardless of whether or not the message has
  4731. been parsed.
  4732. </summary>
  4733. </member>
  4734. <member name="P:LC.Google.Protobuf.Reflection.FieldOptions.HasLazy">
  4735. <summary>Gets whether the "lazy" field is set</summary>
  4736. </member>
  4737. <member name="M:LC.Google.Protobuf.Reflection.FieldOptions.ClearLazy">
  4738. <summary>Clears the value of the "lazy" field</summary>
  4739. </member>
  4740. <member name="F:LC.Google.Protobuf.Reflection.FieldOptions.DeprecatedFieldNumber">
  4741. <summary>Field number for the "deprecated" field.</summary>
  4742. </member>
  4743. <member name="P:LC.Google.Protobuf.Reflection.FieldOptions.Deprecated">
  4744. <summary>
  4745. Is this field deprecated?
  4746. Depending on the target platform, this can emit Deprecated annotations
  4747. for accessors, or it will be completely ignored; in the very least, this
  4748. is a formalization for deprecating fields.
  4749. </summary>
  4750. </member>
  4751. <member name="P:LC.Google.Protobuf.Reflection.FieldOptions.HasDeprecated">
  4752. <summary>Gets whether the "deprecated" field is set</summary>
  4753. </member>
  4754. <member name="M:LC.Google.Protobuf.Reflection.FieldOptions.ClearDeprecated">
  4755. <summary>Clears the value of the "deprecated" field</summary>
  4756. </member>
  4757. <member name="F:LC.Google.Protobuf.Reflection.FieldOptions.WeakFieldNumber">
  4758. <summary>Field number for the "weak" field.</summary>
  4759. </member>
  4760. <member name="P:LC.Google.Protobuf.Reflection.FieldOptions.Weak">
  4761. <summary>
  4762. For Google-internal migration only. Do not use.
  4763. </summary>
  4764. </member>
  4765. <member name="P:LC.Google.Protobuf.Reflection.FieldOptions.HasWeak">
  4766. <summary>Gets whether the "weak" field is set</summary>
  4767. </member>
  4768. <member name="M:LC.Google.Protobuf.Reflection.FieldOptions.ClearWeak">
  4769. <summary>Clears the value of the "weak" field</summary>
  4770. </member>
  4771. <member name="F:LC.Google.Protobuf.Reflection.FieldOptions.UninterpretedOptionFieldNumber">
  4772. <summary>Field number for the "uninterpreted_option" field.</summary>
  4773. </member>
  4774. <member name="P:LC.Google.Protobuf.Reflection.FieldOptions.UninterpretedOption">
  4775. <summary>
  4776. The parser stores options it doesn't recognize here. See above.
  4777. </summary>
  4778. </member>
  4779. <member name="T:LC.Google.Protobuf.Reflection.FieldOptions.Types">
  4780. <summary>Container for nested types declared in the FieldOptions message type.</summary>
  4781. </member>
  4782. <member name="F:LC.Google.Protobuf.Reflection.FieldOptions.Types.CType.String">
  4783. <summary>
  4784. Default mode.
  4785. </summary>
  4786. </member>
  4787. <member name="F:LC.Google.Protobuf.Reflection.FieldOptions.Types.JSType.JsNormal">
  4788. <summary>
  4789. Use the default type.
  4790. </summary>
  4791. </member>
  4792. <member name="F:LC.Google.Protobuf.Reflection.FieldOptions.Types.JSType.JsString">
  4793. <summary>
  4794. Use JavaScript strings.
  4795. </summary>
  4796. </member>
  4797. <member name="F:LC.Google.Protobuf.Reflection.FieldOptions.Types.JSType.JsNumber">
  4798. <summary>
  4799. Use JavaScript numbers.
  4800. </summary>
  4801. </member>
  4802. <member name="F:LC.Google.Protobuf.Reflection.OneofOptions.UninterpretedOptionFieldNumber">
  4803. <summary>Field number for the "uninterpreted_option" field.</summary>
  4804. </member>
  4805. <member name="P:LC.Google.Protobuf.Reflection.OneofOptions.UninterpretedOption">
  4806. <summary>
  4807. The parser stores options it doesn't recognize here. See above.
  4808. </summary>
  4809. </member>
  4810. <member name="F:LC.Google.Protobuf.Reflection.EnumOptions.AllowAliasFieldNumber">
  4811. <summary>Field number for the "allow_alias" field.</summary>
  4812. </member>
  4813. <member name="P:LC.Google.Protobuf.Reflection.EnumOptions.AllowAlias">
  4814. <summary>
  4815. Set this option to true to allow mapping different tag names to the same
  4816. value.
  4817. </summary>
  4818. </member>
  4819. <member name="P:LC.Google.Protobuf.Reflection.EnumOptions.HasAllowAlias">
  4820. <summary>Gets whether the "allow_alias" field is set</summary>
  4821. </member>
  4822. <member name="M:LC.Google.Protobuf.Reflection.EnumOptions.ClearAllowAlias">
  4823. <summary>Clears the value of the "allow_alias" field</summary>
  4824. </member>
  4825. <member name="F:LC.Google.Protobuf.Reflection.EnumOptions.DeprecatedFieldNumber">
  4826. <summary>Field number for the "deprecated" field.</summary>
  4827. </member>
  4828. <member name="P:LC.Google.Protobuf.Reflection.EnumOptions.Deprecated">
  4829. <summary>
  4830. Is this enum deprecated?
  4831. Depending on the target platform, this can emit Deprecated annotations
  4832. for the enum, or it will be completely ignored; in the very least, this
  4833. is a formalization for deprecating enums.
  4834. </summary>
  4835. </member>
  4836. <member name="P:LC.Google.Protobuf.Reflection.EnumOptions.HasDeprecated">
  4837. <summary>Gets whether the "deprecated" field is set</summary>
  4838. </member>
  4839. <member name="M:LC.Google.Protobuf.Reflection.EnumOptions.ClearDeprecated">
  4840. <summary>Clears the value of the "deprecated" field</summary>
  4841. </member>
  4842. <member name="F:LC.Google.Protobuf.Reflection.EnumOptions.UninterpretedOptionFieldNumber">
  4843. <summary>Field number for the "uninterpreted_option" field.</summary>
  4844. </member>
  4845. <member name="P:LC.Google.Protobuf.Reflection.EnumOptions.UninterpretedOption">
  4846. <summary>
  4847. The parser stores options it doesn't recognize here. See above.
  4848. </summary>
  4849. </member>
  4850. <member name="F:LC.Google.Protobuf.Reflection.EnumValueOptions.DeprecatedFieldNumber">
  4851. <summary>Field number for the "deprecated" field.</summary>
  4852. </member>
  4853. <member name="P:LC.Google.Protobuf.Reflection.EnumValueOptions.Deprecated">
  4854. <summary>
  4855. Is this enum value deprecated?
  4856. Depending on the target platform, this can emit Deprecated annotations
  4857. for the enum value, or it will be completely ignored; in the very least,
  4858. this is a formalization for deprecating enum values.
  4859. </summary>
  4860. </member>
  4861. <member name="P:LC.Google.Protobuf.Reflection.EnumValueOptions.HasDeprecated">
  4862. <summary>Gets whether the "deprecated" field is set</summary>
  4863. </member>
  4864. <member name="M:LC.Google.Protobuf.Reflection.EnumValueOptions.ClearDeprecated">
  4865. <summary>Clears the value of the "deprecated" field</summary>
  4866. </member>
  4867. <member name="F:LC.Google.Protobuf.Reflection.EnumValueOptions.UninterpretedOptionFieldNumber">
  4868. <summary>Field number for the "uninterpreted_option" field.</summary>
  4869. </member>
  4870. <member name="P:LC.Google.Protobuf.Reflection.EnumValueOptions.UninterpretedOption">
  4871. <summary>
  4872. The parser stores options it doesn't recognize here. See above.
  4873. </summary>
  4874. </member>
  4875. <member name="F:LC.Google.Protobuf.Reflection.ServiceOptions.DeprecatedFieldNumber">
  4876. <summary>Field number for the "deprecated" field.</summary>
  4877. </member>
  4878. <member name="P:LC.Google.Protobuf.Reflection.ServiceOptions.Deprecated">
  4879. <summary>
  4880. Is this service deprecated?
  4881. Depending on the target platform, this can emit Deprecated annotations
  4882. for the service, or it will be completely ignored; in the very least,
  4883. this is a formalization for deprecating services.
  4884. </summary>
  4885. </member>
  4886. <member name="P:LC.Google.Protobuf.Reflection.ServiceOptions.HasDeprecated">
  4887. <summary>Gets whether the "deprecated" field is set</summary>
  4888. </member>
  4889. <member name="M:LC.Google.Protobuf.Reflection.ServiceOptions.ClearDeprecated">
  4890. <summary>Clears the value of the "deprecated" field</summary>
  4891. </member>
  4892. <member name="F:LC.Google.Protobuf.Reflection.ServiceOptions.UninterpretedOptionFieldNumber">
  4893. <summary>Field number for the "uninterpreted_option" field.</summary>
  4894. </member>
  4895. <member name="P:LC.Google.Protobuf.Reflection.ServiceOptions.UninterpretedOption">
  4896. <summary>
  4897. The parser stores options it doesn't recognize here. See above.
  4898. </summary>
  4899. </member>
  4900. <member name="F:LC.Google.Protobuf.Reflection.MethodOptions.DeprecatedFieldNumber">
  4901. <summary>Field number for the "deprecated" field.</summary>
  4902. </member>
  4903. <member name="P:LC.Google.Protobuf.Reflection.MethodOptions.Deprecated">
  4904. <summary>
  4905. Is this method deprecated?
  4906. Depending on the target platform, this can emit Deprecated annotations
  4907. for the method, or it will be completely ignored; in the very least,
  4908. this is a formalization for deprecating methods.
  4909. </summary>
  4910. </member>
  4911. <member name="P:LC.Google.Protobuf.Reflection.MethodOptions.HasDeprecated">
  4912. <summary>Gets whether the "deprecated" field is set</summary>
  4913. </member>
  4914. <member name="M:LC.Google.Protobuf.Reflection.MethodOptions.ClearDeprecated">
  4915. <summary>Clears the value of the "deprecated" field</summary>
  4916. </member>
  4917. <member name="F:LC.Google.Protobuf.Reflection.MethodOptions.IdempotencyLevelFieldNumber">
  4918. <summary>Field number for the "idempotency_level" field.</summary>
  4919. </member>
  4920. <member name="P:LC.Google.Protobuf.Reflection.MethodOptions.HasIdempotencyLevel">
  4921. <summary>Gets whether the "idempotency_level" field is set</summary>
  4922. </member>
  4923. <member name="M:LC.Google.Protobuf.Reflection.MethodOptions.ClearIdempotencyLevel">
  4924. <summary>Clears the value of the "idempotency_level" field</summary>
  4925. </member>
  4926. <member name="F:LC.Google.Protobuf.Reflection.MethodOptions.UninterpretedOptionFieldNumber">
  4927. <summary>Field number for the "uninterpreted_option" field.</summary>
  4928. </member>
  4929. <member name="P:LC.Google.Protobuf.Reflection.MethodOptions.UninterpretedOption">
  4930. <summary>
  4931. The parser stores options it doesn't recognize here. See above.
  4932. </summary>
  4933. </member>
  4934. <member name="T:LC.Google.Protobuf.Reflection.MethodOptions.Types">
  4935. <summary>Container for nested types declared in the MethodOptions message type.</summary>
  4936. </member>
  4937. <member name="T:LC.Google.Protobuf.Reflection.MethodOptions.Types.IdempotencyLevel">
  4938. <summary>
  4939. Is this method side-effect-free (or safe in HTTP parlance), or idempotent,
  4940. or neither? HTTP based RPC implementation may choose GET verb for safe
  4941. methods, and PUT verb for idempotent methods instead of the default POST.
  4942. </summary>
  4943. </member>
  4944. <member name="F:LC.Google.Protobuf.Reflection.MethodOptions.Types.IdempotencyLevel.NoSideEffects">
  4945. <summary>
  4946. implies idempotent
  4947. </summary>
  4948. </member>
  4949. <member name="F:LC.Google.Protobuf.Reflection.MethodOptions.Types.IdempotencyLevel.Idempotent">
  4950. <summary>
  4951. idempotent, but may have side effects
  4952. </summary>
  4953. </member>
  4954. <member name="T:LC.Google.Protobuf.Reflection.UninterpretedOption">
  4955. <summary>
  4956. A message representing a option the parser does not recognize. This only
  4957. appears in options protos created by the compiler::Parser class.
  4958. DescriptorPool resolves these when building Descriptor objects. Therefore,
  4959. options protos in descriptor objects (e.g. returned by Descriptor::options(),
  4960. or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
  4961. in them.
  4962. </summary>
  4963. </member>
  4964. <member name="F:LC.Google.Protobuf.Reflection.UninterpretedOption.NameFieldNumber">
  4965. <summary>Field number for the "name" field.</summary>
  4966. </member>
  4967. <member name="F:LC.Google.Protobuf.Reflection.UninterpretedOption.IdentifierValueFieldNumber">
  4968. <summary>Field number for the "identifier_value" field.</summary>
  4969. </member>
  4970. <member name="P:LC.Google.Protobuf.Reflection.UninterpretedOption.IdentifierValue">
  4971. <summary>
  4972. The value of the uninterpreted option, in whatever type the tokenizer
  4973. identified it as during parsing. Exactly one of these should be set.
  4974. </summary>
  4975. </member>
  4976. <member name="P:LC.Google.Protobuf.Reflection.UninterpretedOption.HasIdentifierValue">
  4977. <summary>Gets whether the "identifier_value" field is set</summary>
  4978. </member>
  4979. <member name="M:LC.Google.Protobuf.Reflection.UninterpretedOption.ClearIdentifierValue">
  4980. <summary>Clears the value of the "identifier_value" field</summary>
  4981. </member>
  4982. <member name="F:LC.Google.Protobuf.Reflection.UninterpretedOption.PositiveIntValueFieldNumber">
  4983. <summary>Field number for the "positive_int_value" field.</summary>
  4984. </member>
  4985. <member name="P:LC.Google.Protobuf.Reflection.UninterpretedOption.HasPositiveIntValue">
  4986. <summary>Gets whether the "positive_int_value" field is set</summary>
  4987. </member>
  4988. <member name="M:LC.Google.Protobuf.Reflection.UninterpretedOption.ClearPositiveIntValue">
  4989. <summary>Clears the value of the "positive_int_value" field</summary>
  4990. </member>
  4991. <member name="F:LC.Google.Protobuf.Reflection.UninterpretedOption.NegativeIntValueFieldNumber">
  4992. <summary>Field number for the "negative_int_value" field.</summary>
  4993. </member>
  4994. <member name="P:LC.Google.Protobuf.Reflection.UninterpretedOption.HasNegativeIntValue">
  4995. <summary>Gets whether the "negative_int_value" field is set</summary>
  4996. </member>
  4997. <member name="M:LC.Google.Protobuf.Reflection.UninterpretedOption.ClearNegativeIntValue">
  4998. <summary>Clears the value of the "negative_int_value" field</summary>
  4999. </member>
  5000. <member name="F:LC.Google.Protobuf.Reflection.UninterpretedOption.DoubleValueFieldNumber">
  5001. <summary>Field number for the "double_value" field.</summary>
  5002. </member>
  5003. <member name="P:LC.Google.Protobuf.Reflection.UninterpretedOption.HasDoubleValue">
  5004. <summary>Gets whether the "double_value" field is set</summary>
  5005. </member>
  5006. <member name="M:LC.Google.Protobuf.Reflection.UninterpretedOption.ClearDoubleValue">
  5007. <summary>Clears the value of the "double_value" field</summary>
  5008. </member>
  5009. <member name="F:LC.Google.Protobuf.Reflection.UninterpretedOption.StringValueFieldNumber">
  5010. <summary>Field number for the "string_value" field.</summary>
  5011. </member>
  5012. <member name="P:LC.Google.Protobuf.Reflection.UninterpretedOption.HasStringValue">
  5013. <summary>Gets whether the "string_value" field is set</summary>
  5014. </member>
  5015. <member name="M:LC.Google.Protobuf.Reflection.UninterpretedOption.ClearStringValue">
  5016. <summary>Clears the value of the "string_value" field</summary>
  5017. </member>
  5018. <member name="F:LC.Google.Protobuf.Reflection.UninterpretedOption.AggregateValueFieldNumber">
  5019. <summary>Field number for the "aggregate_value" field.</summary>
  5020. </member>
  5021. <member name="P:LC.Google.Protobuf.Reflection.UninterpretedOption.HasAggregateValue">
  5022. <summary>Gets whether the "aggregate_value" field is set</summary>
  5023. </member>
  5024. <member name="M:LC.Google.Protobuf.Reflection.UninterpretedOption.ClearAggregateValue">
  5025. <summary>Clears the value of the "aggregate_value" field</summary>
  5026. </member>
  5027. <member name="T:LC.Google.Protobuf.Reflection.UninterpretedOption.Types">
  5028. <summary>Container for nested types declared in the UninterpretedOption message type.</summary>
  5029. </member>
  5030. <member name="T:LC.Google.Protobuf.Reflection.UninterpretedOption.Types.NamePart">
  5031. <summary>
  5032. The name of the uninterpreted option. Each string represents a segment in
  5033. a dot-separated name. is_extension is true iff a segment represents an
  5034. extension (denoted with parentheses in options specs in .proto files).
  5035. E.g.,{ ["foo", false], ["bar.baz", true], ["qux", false] } represents
  5036. "foo.(bar.baz).qux".
  5037. </summary>
  5038. </member>
  5039. <member name="F:LC.Google.Protobuf.Reflection.UninterpretedOption.Types.NamePart.NamePart_FieldNumber">
  5040. <summary>Field number for the "name_part" field.</summary>
  5041. </member>
  5042. <member name="P:LC.Google.Protobuf.Reflection.UninterpretedOption.Types.NamePart.HasNamePart_">
  5043. <summary>Gets whether the "name_part" field is set</summary>
  5044. </member>
  5045. <member name="M:LC.Google.Protobuf.Reflection.UninterpretedOption.Types.NamePart.ClearNamePart_">
  5046. <summary>Clears the value of the "name_part" field</summary>
  5047. </member>
  5048. <member name="F:LC.Google.Protobuf.Reflection.UninterpretedOption.Types.NamePart.IsExtensionFieldNumber">
  5049. <summary>Field number for the "is_extension" field.</summary>
  5050. </member>
  5051. <member name="P:LC.Google.Protobuf.Reflection.UninterpretedOption.Types.NamePart.HasIsExtension">
  5052. <summary>Gets whether the "is_extension" field is set</summary>
  5053. </member>
  5054. <member name="M:LC.Google.Protobuf.Reflection.UninterpretedOption.Types.NamePart.ClearIsExtension">
  5055. <summary>Clears the value of the "is_extension" field</summary>
  5056. </member>
  5057. <member name="T:LC.Google.Protobuf.Reflection.SourceCodeInfo">
  5058. <summary>
  5059. Encapsulates information about the original source file from which a
  5060. FileDescriptorProto was generated.
  5061. </summary>
  5062. </member>
  5063. <member name="F:LC.Google.Protobuf.Reflection.SourceCodeInfo.LocationFieldNumber">
  5064. <summary>Field number for the "location" field.</summary>
  5065. </member>
  5066. <member name="P:LC.Google.Protobuf.Reflection.SourceCodeInfo.Location">
  5067. <summary>
  5068. A Location identifies a piece of source code in a .proto file which
  5069. corresponds to a particular definition. This information is intended
  5070. to be useful to IDEs, code indexers, documentation generators, and similar
  5071. tools.
  5072. For example, say we have a file like:
  5073. message Foo {
  5074. optional string foo = 1;
  5075. }
  5076. Let's look at just the field definition:
  5077. optional string foo = 1;
  5078. ^ ^^ ^^ ^ ^^^
  5079. a bc de f ghi
  5080. We have the following locations:
  5081. span path represents
  5082. [a,i) [ 4, 0, 2, 0 ] The whole field definition.
  5083. [a,b) [ 4, 0, 2, 0, 4 ] The label (optional).
  5084. [c,d) [ 4, 0, 2, 0, 5 ] The type (string).
  5085. [e,f) [ 4, 0, 2, 0, 1 ] The name (foo).
  5086. [g,h) [ 4, 0, 2, 0, 3 ] The number (1).
  5087. Notes:
  5088. - A location may refer to a repeated field itself (i.e. not to any
  5089. particular index within it). This is used whenever a set of elements are
  5090. logically enclosed in a single code segment. For example, an entire
  5091. extend block (possibly containing multiple extension definitions) will
  5092. have an outer location whose path refers to the "extensions" repeated
  5093. field without an index.
  5094. - Multiple locations may have the same path. This happens when a single
  5095. logical declaration is spread out across multiple places. The most
  5096. obvious example is the "extend" block again -- there may be multiple
  5097. extend blocks in the same scope, each of which will have the same path.
  5098. - A location's span is not always a subset of its parent's span. For
  5099. example, the "extendee" of an extension declaration appears at the
  5100. beginning of the "extend" block and is shared by all extensions within
  5101. the block.
  5102. - Just because a location's span is a subset of some other location's span
  5103. does not mean that it is a descendant. For example, a "group" defines
  5104. both a type and a field in a single declaration. Thus, the locations
  5105. corresponding to the type and field and their components will overlap.
  5106. - Code which tries to interpret locations should probably be designed to
  5107. ignore those that it doesn't understand, as more types of locations could
  5108. be recorded in the future.
  5109. </summary>
  5110. </member>
  5111. <member name="T:LC.Google.Protobuf.Reflection.SourceCodeInfo.Types">
  5112. <summary>Container for nested types declared in the SourceCodeInfo message type.</summary>
  5113. </member>
  5114. <member name="F:LC.Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.PathFieldNumber">
  5115. <summary>Field number for the "path" field.</summary>
  5116. </member>
  5117. <member name="P:LC.Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.Path">
  5118. <summary>
  5119. Identifies which part of the FileDescriptorProto was defined at this
  5120. location.
  5121. Each element is a field number or an index. They form a path from
  5122. the root FileDescriptorProto to the place where the definition. For
  5123. example, this path:
  5124. [ 4, 3, 2, 7, 1 ]
  5125. refers to:
  5126. file.message_type(3) // 4, 3
  5127. .field(7) // 2, 7
  5128. .name() // 1
  5129. This is because FileDescriptorProto.message_type has field number 4:
  5130. repeated DescriptorProto message_type = 4;
  5131. and DescriptorProto.field has field number 2:
  5132. repeated FieldDescriptorProto field = 2;
  5133. and FieldDescriptorProto.name has field number 1:
  5134. optional string name = 1;
  5135. Thus, the above path gives the location of a field name. If we removed
  5136. the last element:
  5137. [ 4, 3, 2, 7 ]
  5138. this path refers to the whole field declaration (from the beginning
  5139. of the label to the terminating semicolon).
  5140. </summary>
  5141. </member>
  5142. <member name="F:LC.Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.SpanFieldNumber">
  5143. <summary>Field number for the "span" field.</summary>
  5144. </member>
  5145. <member name="P:LC.Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.Span">
  5146. <summary>
  5147. Always has exactly three or four elements: start line, start column,
  5148. end line (optional, otherwise assumed same as start line), end column.
  5149. These are packed into a single field for efficiency. Note that line
  5150. and column numbers are zero-based -- typically you will want to add
  5151. 1 to each before displaying to a user.
  5152. </summary>
  5153. </member>
  5154. <member name="F:LC.Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.LeadingCommentsFieldNumber">
  5155. <summary>Field number for the "leading_comments" field.</summary>
  5156. </member>
  5157. <member name="P:LC.Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.LeadingComments">
  5158. <summary>
  5159. If this SourceCodeInfo represents a complete declaration, these are any
  5160. comments appearing before and after the declaration which appear to be
  5161. attached to the declaration.
  5162. A series of line comments appearing on consecutive lines, with no other
  5163. tokens appearing on those lines, will be treated as a single comment.
  5164. leading_detached_comments will keep paragraphs of comments that appear
  5165. before (but not connected to) the current element. Each paragraph,
  5166. separated by empty lines, will be one comment element in the repeated
  5167. field.
  5168. Only the comment content is provided; comment markers (e.g. //) are
  5169. stripped out. For block comments, leading whitespace and an asterisk
  5170. will be stripped from the beginning of each line other than the first.
  5171. Newlines are included in the output.
  5172. Examples:
  5173. optional int32 foo = 1; // Comment attached to foo.
  5174. // Comment attached to bar.
  5175. optional int32 bar = 2;
  5176. optional string baz = 3;
  5177. // Comment attached to baz.
  5178. // Another line attached to baz.
  5179. // Comment attached to qux.
  5180. //
  5181. // Another line attached to qux.
  5182. optional double qux = 4;
  5183. // Detached comment for corge. This is not leading or trailing comments
  5184. // to qux or corge because there are blank lines separating it from
  5185. // both.
  5186. // Detached comment for corge paragraph 2.
  5187. optional string corge = 5;
  5188. /* Block comment attached
  5189. * to corge. Leading asterisks
  5190. * will be removed. */
  5191. /* Block comment attached to
  5192. * grault. */
  5193. optional int32 grault = 6;
  5194. // ignored detached comments.
  5195. </summary>
  5196. </member>
  5197. <member name="P:LC.Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.HasLeadingComments">
  5198. <summary>Gets whether the "leading_comments" field is set</summary>
  5199. </member>
  5200. <member name="M:LC.Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.ClearLeadingComments">
  5201. <summary>Clears the value of the "leading_comments" field</summary>
  5202. </member>
  5203. <member name="F:LC.Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.TrailingCommentsFieldNumber">
  5204. <summary>Field number for the "trailing_comments" field.</summary>
  5205. </member>
  5206. <member name="P:LC.Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.HasTrailingComments">
  5207. <summary>Gets whether the "trailing_comments" field is set</summary>
  5208. </member>
  5209. <member name="M:LC.Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.ClearTrailingComments">
  5210. <summary>Clears the value of the "trailing_comments" field</summary>
  5211. </member>
  5212. <member name="F:LC.Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.LeadingDetachedCommentsFieldNumber">
  5213. <summary>Field number for the "leading_detached_comments" field.</summary>
  5214. </member>
  5215. <member name="T:LC.Google.Protobuf.Reflection.GeneratedCodeInfo">
  5216. <summary>
  5217. Describes the relationship between generated code and its original source
  5218. file. A GeneratedCodeInfo message is associated with only one generated
  5219. source file, but may contain references to different source .proto files.
  5220. </summary>
  5221. </member>
  5222. <member name="F:LC.Google.Protobuf.Reflection.GeneratedCodeInfo.AnnotationFieldNumber">
  5223. <summary>Field number for the "annotation" field.</summary>
  5224. </member>
  5225. <member name="P:LC.Google.Protobuf.Reflection.GeneratedCodeInfo.Annotation">
  5226. <summary>
  5227. An Annotation connects some span of text in generated code to an element
  5228. of its generating .proto file.
  5229. </summary>
  5230. </member>
  5231. <member name="T:LC.Google.Protobuf.Reflection.GeneratedCodeInfo.Types">
  5232. <summary>Container for nested types declared in the GeneratedCodeInfo message type.</summary>
  5233. </member>
  5234. <member name="F:LC.Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.PathFieldNumber">
  5235. <summary>Field number for the "path" field.</summary>
  5236. </member>
  5237. <member name="P:LC.Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.Path">
  5238. <summary>
  5239. Identifies the element in the original source .proto file. This field
  5240. is formatted the same as SourceCodeInfo.Location.path.
  5241. </summary>
  5242. </member>
  5243. <member name="F:LC.Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.SourceFileFieldNumber">
  5244. <summary>Field number for the "source_file" field.</summary>
  5245. </member>
  5246. <member name="P:LC.Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.SourceFile">
  5247. <summary>
  5248. Identifies the filesystem path to the original source .proto.
  5249. </summary>
  5250. </member>
  5251. <member name="P:LC.Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.HasSourceFile">
  5252. <summary>Gets whether the "source_file" field is set</summary>
  5253. </member>
  5254. <member name="M:LC.Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.ClearSourceFile">
  5255. <summary>Clears the value of the "source_file" field</summary>
  5256. </member>
  5257. <member name="F:LC.Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.BeginFieldNumber">
  5258. <summary>Field number for the "begin" field.</summary>
  5259. </member>
  5260. <member name="P:LC.Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.Begin">
  5261. <summary>
  5262. Identifies the starting offset in bytes in the generated code
  5263. that relates to the identified object.
  5264. </summary>
  5265. </member>
  5266. <member name="P:LC.Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.HasBegin">
  5267. <summary>Gets whether the "begin" field is set</summary>
  5268. </member>
  5269. <member name="M:LC.Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.ClearBegin">
  5270. <summary>Clears the value of the "begin" field</summary>
  5271. </member>
  5272. <member name="F:LC.Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.EndFieldNumber">
  5273. <summary>Field number for the "end" field.</summary>
  5274. </member>
  5275. <member name="P:LC.Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.End">
  5276. <summary>
  5277. Identifies the ending offset in bytes in the generated code that
  5278. relates to the identified offset. The end offset should be one past
  5279. the last relevant byte (so the length of the text = end - begin).
  5280. </summary>
  5281. </member>
  5282. <member name="P:LC.Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.HasEnd">
  5283. <summary>Gets whether the "end" field is set</summary>
  5284. </member>
  5285. <member name="M:LC.Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.ClearEnd">
  5286. <summary>Clears the value of the "end" field</summary>
  5287. </member>
  5288. <member name="T:LC.Google.Protobuf.Reflection.DescriptorBase">
  5289. <summary>
  5290. Base class for nearly all descriptors, providing common functionality.
  5291. </summary>
  5292. </member>
  5293. <member name="P:LC.Google.Protobuf.Reflection.DescriptorBase.Index">
  5294. <value>
  5295. The index of this descriptor within its parent descriptor.
  5296. </value>
  5297. <remarks>
  5298. This returns the index of this descriptor within its parent, for
  5299. this descriptor's type. (There can be duplicate values for different
  5300. types, e.g. one enum type with index 0 and one message type with index 0.)
  5301. </remarks>
  5302. </member>
  5303. <member name="P:LC.Google.Protobuf.Reflection.DescriptorBase.Name">
  5304. <summary>
  5305. Returns the name of the entity (field, message etc) being described.
  5306. </summary>
  5307. </member>
  5308. <member name="P:LC.Google.Protobuf.Reflection.DescriptorBase.FullName">
  5309. <summary>
  5310. The fully qualified name of the descriptor's target.
  5311. </summary>
  5312. </member>
  5313. <member name="P:LC.Google.Protobuf.Reflection.DescriptorBase.File">
  5314. <value>
  5315. The file this descriptor was declared in.
  5316. </value>
  5317. </member>
  5318. <member name="P:LC.Google.Protobuf.Reflection.DescriptorBase.Declaration">
  5319. <summary>
  5320. The declaration information about the descriptor, or null if no declaration information
  5321. is available for this descriptor.
  5322. </summary>
  5323. <remarks>
  5324. This information is typically only available for dynamically loaded descriptors,
  5325. for example within a protoc plugin where the full descriptors, including source info,
  5326. are passed to the code by protoc.
  5327. </remarks>
  5328. </member>
  5329. <member name="M:LC.Google.Protobuf.Reflection.DescriptorBase.GetNestedDescriptorListForField(System.Int32)">
  5330. <summary>
  5331. Retrieves the list of nested descriptors corresponding to the given field number, if any.
  5332. If the field is unknown or not a nested descriptor list, return null to terminate the search.
  5333. The default implementation returns null.
  5334. </summary>
  5335. </member>
  5336. <member name="T:LC.Google.Protobuf.Reflection.DescriptorDeclaration">
  5337. <summary>
  5338. Provides additional information about the declaration of a descriptor,
  5339. such as source location and comments.
  5340. </summary>
  5341. </member>
  5342. <member name="P:LC.Google.Protobuf.Reflection.DescriptorDeclaration.Descriptor">
  5343. <summary>
  5344. The descriptor this declaration relates to.
  5345. </summary>
  5346. </member>
  5347. <member name="P:LC.Google.Protobuf.Reflection.DescriptorDeclaration.StartLine">
  5348. <summary>
  5349. The start line of the declaration within the source file. This value is 1-based.
  5350. </summary>
  5351. </member>
  5352. <member name="P:LC.Google.Protobuf.Reflection.DescriptorDeclaration.StartColumn">
  5353. <summary>
  5354. The start column of the declaration within the source file. This value is 1-based.
  5355. </summary>
  5356. </member>
  5357. <member name="P:LC.Google.Protobuf.Reflection.DescriptorDeclaration.EndLine">
  5358. <summary>
  5359. // The end line of the declaration within the source file. This value is 1-based.
  5360. </summary>
  5361. </member>
  5362. <member name="P:LC.Google.Protobuf.Reflection.DescriptorDeclaration.EndColumn">
  5363. <summary>
  5364. The end column of the declaration within the source file. This value is 1-based, and
  5365. exclusive. (The final character of the declaration is on the column before this value.)
  5366. </summary>
  5367. </member>
  5368. <member name="P:LC.Google.Protobuf.Reflection.DescriptorDeclaration.LeadingComments">
  5369. <summary>
  5370. Comments appearing before the declaration. Never null, but may be empty. Multi-line comments
  5371. are represented as a newline-separated string. Leading whitespace and the comment marker ("//")
  5372. are removed from each line.
  5373. </summary>
  5374. </member>
  5375. <member name="P:LC.Google.Protobuf.Reflection.DescriptorDeclaration.TrailingComments">
  5376. <summary>
  5377. Comments appearing after the declaration. Never null, but may be empty. Multi-line comments
  5378. are represented as a newline-separated string. Leading whitespace and the comment marker ("//")
  5379. are removed from each line.
  5380. </summary>
  5381. </member>
  5382. <member name="P:LC.Google.Protobuf.Reflection.DescriptorDeclaration.LeadingDetachedComments">
  5383. <summary>
  5384. Comments appearing before the declaration, but separated from it by blank
  5385. lines. Each string represents a newline-separated paragraph of comments.
  5386. Leading whitespace and the comment marker ("//") are removed from each line.
  5387. The list is never null, but may be empty. Likewise each element is never null, but may be empty.
  5388. </summary>
  5389. </member>
  5390. <member name="T:LC.Google.Protobuf.Reflection.DescriptorPool">
  5391. <summary>
  5392. Contains lookup tables containing all the descriptors defined in a particular file.
  5393. </summary>
  5394. </member>
  5395. <member name="M:LC.Google.Protobuf.Reflection.DescriptorPool.FindSymbol``1(System.String)">
  5396. <summary>
  5397. Finds a symbol of the given name within the pool.
  5398. </summary>
  5399. <typeparam name="T">The type of symbol to look for</typeparam>
  5400. <param name="fullName">Fully-qualified name to look up</param>
  5401. <returns>The symbol with the given name and type,
  5402. or null if the symbol doesn't exist or has the wrong type</returns>
  5403. </member>
  5404. <member name="M:LC.Google.Protobuf.Reflection.DescriptorPool.AddPackage(System.String,LC.Google.Protobuf.Reflection.FileDescriptor)">
  5405. <summary>
  5406. Adds a package to the symbol tables. If a package by the same name
  5407. already exists, that is fine, but if some other kind of symbol
  5408. exists under the same name, an exception is thrown. If the package
  5409. has multiple components, this also adds the parent package(s).
  5410. </summary>
  5411. </member>
  5412. <member name="M:LC.Google.Protobuf.Reflection.DescriptorPool.AddSymbol(LC.Google.Protobuf.Reflection.IDescriptor)">
  5413. <summary>
  5414. Adds a symbol to the symbol table.
  5415. </summary>
  5416. <exception cref="T:LC.Google.Protobuf.Reflection.DescriptorValidationException">The symbol already existed
  5417. in the symbol table.</exception>
  5418. </member>
  5419. <member name="M:LC.Google.Protobuf.Reflection.DescriptorPool.ValidateSymbolName(LC.Google.Protobuf.Reflection.IDescriptor)">
  5420. <summary>
  5421. Verifies that the descriptor's name is valid (i.e. it contains
  5422. only letters, digits and underscores, and does not start with a digit).
  5423. </summary>
  5424. <param name="descriptor"></param>
  5425. </member>
  5426. <member name="M:LC.Google.Protobuf.Reflection.DescriptorPool.FindFieldByNumber(LC.Google.Protobuf.Reflection.MessageDescriptor,System.Int32)">
  5427. <summary>
  5428. Returns the field with the given number in the given descriptor,
  5429. or null if it can't be found.
  5430. </summary>
  5431. </member>
  5432. <member name="M:LC.Google.Protobuf.Reflection.DescriptorPool.AddFieldByNumber(LC.Google.Protobuf.Reflection.FieldDescriptor)">
  5433. <summary>
  5434. Adds a field to the fieldsByNumber table.
  5435. </summary>
  5436. <exception cref="T:LC.Google.Protobuf.Reflection.DescriptorValidationException">A field with the same
  5437. containing type and number already exists.</exception>
  5438. </member>
  5439. <member name="M:LC.Google.Protobuf.Reflection.DescriptorPool.AddEnumValueByNumber(LC.Google.Protobuf.Reflection.EnumValueDescriptor)">
  5440. <summary>
  5441. Adds an enum value to the enumValuesByNumber table. If an enum value
  5442. with the same type and number already exists, this method does nothing.
  5443. (This is allowed; the first value defined with the number takes precedence.)
  5444. </summary>
  5445. </member>
  5446. <member name="M:LC.Google.Protobuf.Reflection.DescriptorPool.LookupSymbol(System.String,LC.Google.Protobuf.Reflection.IDescriptor)">
  5447. <summary>
  5448. Looks up a descriptor by name, relative to some other descriptor.
  5449. The name may be fully-qualified (with a leading '.'), partially-qualified,
  5450. or unqualified. C++-like name lookup semantics are used to search for the
  5451. matching descriptor.
  5452. </summary>
  5453. <remarks>
  5454. This isn't heavily optimized, but it's only used during cross linking anyway.
  5455. If it starts being used more widely, we should look at performance more carefully.
  5456. </remarks>
  5457. </member>
  5458. <member name="T:LC.Google.Protobuf.Reflection.DescriptorUtil">
  5459. <summary>
  5460. Internal class containing utility methods when working with descriptors.
  5461. </summary>
  5462. </member>
  5463. <member name="T:LC.Google.Protobuf.Reflection.DescriptorUtil.IndexedConverter`2">
  5464. <summary>
  5465. Equivalent to Func[TInput, int, TOutput] but usable in .NET 2.0. Only used to convert
  5466. arrays.
  5467. </summary>
  5468. </member>
  5469. <member name="M:LC.Google.Protobuf.Reflection.DescriptorUtil.ConvertAndMakeReadOnly``2(System.Collections.Generic.IList{``0},LC.Google.Protobuf.Reflection.DescriptorUtil.IndexedConverter{``0,``1})">
  5470. <summary>
  5471. Converts the given array into a read-only list, applying the specified conversion to
  5472. each input element.
  5473. </summary>
  5474. </member>
  5475. <member name="T:LC.Google.Protobuf.Reflection.DescriptorValidationException">
  5476. <summary>
  5477. Thrown when building descriptors fails because the source DescriptorProtos
  5478. are not valid.
  5479. </summary>
  5480. </member>
  5481. <member name="P:LC.Google.Protobuf.Reflection.DescriptorValidationException.ProblemSymbolName">
  5482. <value>
  5483. The full name of the descriptor where the error occurred.
  5484. </value>
  5485. </member>
  5486. <member name="P:LC.Google.Protobuf.Reflection.DescriptorValidationException.Description">
  5487. <value>
  5488. A human-readable description of the error. (The Message property
  5489. is made up of the descriptor's name and this description.)
  5490. </value>
  5491. </member>
  5492. <member name="T:LC.Google.Protobuf.Reflection.EnumDescriptor">
  5493. <summary>
  5494. Descriptor for an enum type in a .proto file.
  5495. </summary>
  5496. </member>
  5497. <member name="P:LC.Google.Protobuf.Reflection.EnumDescriptor.Name">
  5498. <summary>
  5499. The brief name of the descriptor's target.
  5500. </summary>
  5501. </member>
  5502. <member name="P:LC.Google.Protobuf.Reflection.EnumDescriptor.ClrType">
  5503. <summary>
  5504. The CLR type for this enum. For generated code, this will be a CLR enum type.
  5505. </summary>
  5506. </member>
  5507. <member name="P:LC.Google.Protobuf.Reflection.EnumDescriptor.ContainingType">
  5508. <value>
  5509. If this is a nested type, get the outer descriptor, otherwise null.
  5510. </value>
  5511. </member>
  5512. <member name="P:LC.Google.Protobuf.Reflection.EnumDescriptor.Values">
  5513. <value>
  5514. An unmodifiable list of defined value descriptors for this enum.
  5515. </value>
  5516. </member>
  5517. <member name="M:LC.Google.Protobuf.Reflection.EnumDescriptor.FindValueByNumber(System.Int32)">
  5518. <summary>
  5519. Finds an enum value by number. If multiple enum values have the
  5520. same number, this returns the first defined value with that number.
  5521. If there is no value for the given number, this returns <c>null</c>.
  5522. </summary>
  5523. </member>
  5524. <member name="M:LC.Google.Protobuf.Reflection.EnumDescriptor.FindValueByName(System.String)">
  5525. <summary>
  5526. Finds an enum value by name.
  5527. </summary>
  5528. <param name="name">The unqualified name of the value (e.g. "FOO").</param>
  5529. <returns>The value's descriptor, or null if not found.</returns>
  5530. </member>
  5531. <member name="P:LC.Google.Protobuf.Reflection.EnumDescriptor.CustomOptions">
  5532. <summary>
  5533. The (possibly empty) set of custom options for this enum.
  5534. </summary>
  5535. </member>
  5536. <member name="M:LC.Google.Protobuf.Reflection.EnumDescriptor.GetOptions">
  5537. <summary>
  5538. The <c>EnumOptions</c>, defined in <c>descriptor.proto</c>.
  5539. If the options message is not present (i.e. there are no options), <c>null</c> is returned.
  5540. Custom options can be retrieved as extensions of the returned message.
  5541. NOTE: A defensive copy is created each time this property is retrieved.
  5542. </summary>
  5543. </member>
  5544. <member name="M:LC.Google.Protobuf.Reflection.EnumDescriptor.GetOption``1(LC.Google.Protobuf.Extension{LC.Google.Protobuf.Reflection.EnumOptions,``0})">
  5545. <summary>
  5546. Gets a single value enum option for this descriptor
  5547. </summary>
  5548. </member>
  5549. <member name="M:LC.Google.Protobuf.Reflection.EnumDescriptor.GetOption``1(LC.Google.Protobuf.RepeatedExtension{LC.Google.Protobuf.Reflection.EnumOptions,``0})">
  5550. <summary>
  5551. Gets a repeated value enum option for this descriptor
  5552. </summary>
  5553. </member>
  5554. <member name="T:LC.Google.Protobuf.Reflection.EnumValueDescriptor">
  5555. <summary>
  5556. Descriptor for a single enum value within an enum in a .proto file.
  5557. </summary>
  5558. </member>
  5559. <member name="P:LC.Google.Protobuf.Reflection.EnumValueDescriptor.Name">
  5560. <summary>
  5561. Returns the name of the enum value described by this object.
  5562. </summary>
  5563. </member>
  5564. <member name="P:LC.Google.Protobuf.Reflection.EnumValueDescriptor.Number">
  5565. <summary>
  5566. Returns the number associated with this enum value.
  5567. </summary>
  5568. </member>
  5569. <member name="P:LC.Google.Protobuf.Reflection.EnumValueDescriptor.EnumDescriptor">
  5570. <summary>
  5571. Returns the enum descriptor that this value is part of.
  5572. </summary>
  5573. </member>
  5574. <member name="P:LC.Google.Protobuf.Reflection.EnumValueDescriptor.CustomOptions">
  5575. <summary>
  5576. The (possibly empty) set of custom options for this enum value.
  5577. </summary>
  5578. </member>
  5579. <member name="M:LC.Google.Protobuf.Reflection.EnumValueDescriptor.GetOptions">
  5580. <summary>
  5581. The <c>EnumValueOptions</c>, defined in <c>descriptor.proto</c>.
  5582. If the options message is not present (i.e. there are no options), <c>null</c> is returned.
  5583. Custom options can be retrieved as extensions of the returned message.
  5584. NOTE: A defensive copy is created each time this property is retrieved.
  5585. </summary>
  5586. </member>
  5587. <member name="M:LC.Google.Protobuf.Reflection.EnumValueDescriptor.GetOption``1(LC.Google.Protobuf.Extension{LC.Google.Protobuf.Reflection.EnumValueOptions,``0})">
  5588. <summary>
  5589. Gets a single value enum value option for this descriptor
  5590. </summary>
  5591. </member>
  5592. <member name="M:LC.Google.Protobuf.Reflection.EnumValueDescriptor.GetOption``1(LC.Google.Protobuf.RepeatedExtension{LC.Google.Protobuf.Reflection.EnumValueOptions,``0})">
  5593. <summary>
  5594. Gets a repeated value enum value option for this descriptor
  5595. </summary>
  5596. </member>
  5597. <member name="T:LC.Google.Protobuf.Reflection.ExtensionCollection">
  5598. <summary>
  5599. A collection to simplify retrieving the descriptors of extensions in a descriptor for a message
  5600. </summary>
  5601. </member>
  5602. <member name="P:LC.Google.Protobuf.Reflection.ExtensionCollection.UnorderedExtensions">
  5603. <summary>
  5604. Returns a readonly list of all the extensions defined in this type in
  5605. the order they were defined in the source .proto file
  5606. </summary>
  5607. </member>
  5608. <member name="M:LC.Google.Protobuf.Reflection.ExtensionCollection.GetExtensionsInDeclarationOrder(LC.Google.Protobuf.Reflection.MessageDescriptor)">
  5609. <summary>
  5610. Returns a readonly list of all the extensions define in this type that extend
  5611. the provided descriptor type in the order they were defined in the source .proto file
  5612. </summary>
  5613. </member>
  5614. <member name="M:LC.Google.Protobuf.Reflection.ExtensionCollection.GetExtensionsInNumberOrder(LC.Google.Protobuf.Reflection.MessageDescriptor)">
  5615. <summary>
  5616. Returns a readonly list of all the extensions define in this type that extend
  5617. the provided descriptor type in accending field order
  5618. </summary>
  5619. </member>
  5620. <member name="T:LC.Google.Protobuf.Reflection.FieldAccessorBase">
  5621. <summary>
  5622. Base class for field accessors.
  5623. </summary>
  5624. </member>
  5625. <member name="T:LC.Google.Protobuf.Reflection.FieldDescriptor">
  5626. <summary>
  5627. Descriptor for a field or extension within a message in a .proto file.
  5628. </summary>
  5629. </member>
  5630. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptor.ContainingType">
  5631. <summary>
  5632. 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.
  5633. </summary>
  5634. </member>
  5635. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptor.ContainingOneof">
  5636. <summary>
  5637. Returns the oneof containing this field, or <c>null</c> if it is not part of a oneof.
  5638. </summary>
  5639. </member>
  5640. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptor.RealContainingOneof">
  5641. <summary>
  5642. Returns the oneof containing this field if it's a "real" oneof, or <c>null</c> if either this
  5643. field is not part of a oneof, or the oneof is synthetic.
  5644. </summary>
  5645. </member>
  5646. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptor.JsonName">
  5647. <summary>
  5648. The effective JSON name for this field. This is usually the lower-camel-cased form of the field name,
  5649. but can be overridden using the <c>json_name</c> option in the .proto file.
  5650. </summary>
  5651. </member>
  5652. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptor.HasPresence">
  5653. <summary>
  5654. Indicates whether this field supports presence, either implicitly (e.g. due to it being a message
  5655. type field) or explicitly via Has/Clear members. If this returns true, it is safe to call
  5656. <see cref="M:LC.Google.Protobuf.Reflection.IFieldAccessor.Clear(LC.Google.Protobuf.IMessage)"/> and <see cref="M:LC.Google.Protobuf.Reflection.IFieldAccessor.HasValue(LC.Google.Protobuf.IMessage)"/>
  5657. on this field's accessor with a suitable message.
  5658. </summary>
  5659. </member>
  5660. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptor.Extension">
  5661. <summary>
  5662. An extension identifier for this field, or <c>null</c> if this field isn't an extension.
  5663. </summary>
  5664. </member>
  5665. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptor.Name">
  5666. <summary>
  5667. The brief name of the descriptor's target.
  5668. </summary>
  5669. </member>
  5670. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptor.Accessor">
  5671. <summary>
  5672. Returns the accessor for this field.
  5673. </summary>
  5674. <remarks>
  5675. <para>
  5676. While a <see cref="T:LC.Google.Protobuf.Reflection.FieldDescriptor"/> describes the field, it does not provide
  5677. any way of obtaining or changing the value of the field within a specific message;
  5678. that is the responsibility of the accessor.
  5679. </para>
  5680. <para>
  5681. In descriptors for generated code, the value returned by this property will be non-null for all
  5682. regular fields. However, if a message containing a map field is introspected, the list of nested messages will include
  5683. an auto-generated nested key/value pair message for the field. This is not represented in any
  5684. generated type, and the value of the map field itself is represented by a dictionary in the
  5685. reflection API. There are never instances of those "hidden" messages, so no accessor is provided
  5686. and this property will return null.
  5687. </para>
  5688. <para>
  5689. In dynamically loaded descriptors, the value returned by this property will current be null;
  5690. if and when dynamic messages are supported, it will return a suitable accessor to work with
  5691. them.
  5692. </para>
  5693. </remarks>
  5694. </member>
  5695. <member name="M:LC.Google.Protobuf.Reflection.FieldDescriptor.GetFieldTypeFromProtoType(LC.Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type)">
  5696. <summary>
  5697. Maps a field type as included in the .proto file to a FieldType.
  5698. </summary>
  5699. </member>
  5700. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptor.IsRepeated">
  5701. <summary>
  5702. Returns <c>true</c> if this field is a repeated field; <c>false</c> otherwise.
  5703. </summary>
  5704. </member>
  5705. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptor.IsRequired">
  5706. <summary>
  5707. Returns <c>true</c> if this field is a required field; <c>false</c> otherwise.
  5708. </summary>
  5709. </member>
  5710. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptor.IsMap">
  5711. <summary>
  5712. Returns <c>true</c> if this field is a map field; <c>false</c> otherwise.
  5713. </summary>
  5714. </member>
  5715. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptor.IsPacked">
  5716. <summary>
  5717. Returns <c>true</c> if this field is a packed, repeated field; <c>false</c> otherwise.
  5718. </summary>
  5719. </member>
  5720. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptor.IsExtension">
  5721. <summary>
  5722. Returns <c>true</c> if this field extends another message type; <c>false</c> otherwise.
  5723. </summary>
  5724. </member>
  5725. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptor.FieldType">
  5726. <summary>
  5727. Returns the type of the field.
  5728. </summary>
  5729. </member>
  5730. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptor.FieldNumber">
  5731. <summary>
  5732. Returns the field number declared in the proto file.
  5733. </summary>
  5734. </member>
  5735. <member name="M:LC.Google.Protobuf.Reflection.FieldDescriptor.CompareTo(LC.Google.Protobuf.Reflection.FieldDescriptor)">
  5736. <summary>
  5737. Compares this descriptor with another one, ordering in "canonical" order
  5738. which simply means ascending order by field number. <paramref name="other"/>
  5739. must be a field of the same type, i.e. the <see cref="P:LC.Google.Protobuf.Reflection.FieldDescriptor.ContainingType"/> of
  5740. both fields must be the same.
  5741. </summary>
  5742. </member>
  5743. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptor.EnumType">
  5744. <summary>
  5745. For enum fields, returns the field's type.
  5746. </summary>
  5747. </member>
  5748. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptor.MessageType">
  5749. <summary>
  5750. For embedded message and group fields, returns the field's type.
  5751. </summary>
  5752. </member>
  5753. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptor.ExtendeeType">
  5754. <summary>
  5755. For extension fields, returns the extended type
  5756. </summary>
  5757. </member>
  5758. <member name="P:LC.Google.Protobuf.Reflection.FieldDescriptor.CustomOptions">
  5759. <summary>
  5760. The (possibly empty) set of custom options for this field.
  5761. </summary>
  5762. </member>
  5763. <member name="M:LC.Google.Protobuf.Reflection.FieldDescriptor.GetOptions">
  5764. <summary>
  5765. The <c>FieldOptions</c>, defined in <c>descriptor.proto</c>.
  5766. If the options message is not present (i.e. there are no options), <c>null</c> is returned.
  5767. Custom options can be retrieved as extensions of the returned message.
  5768. NOTE: A defensive copy is created each time this property is retrieved.
  5769. </summary>
  5770. </member>
  5771. <member name="M:LC.Google.Protobuf.Reflection.FieldDescriptor.GetOption``1(LC.Google.Protobuf.Extension{LC.Google.Protobuf.Reflection.FieldOptions,``0})">
  5772. <summary>
  5773. Gets a single value field option for this descriptor
  5774. </summary>
  5775. </member>
  5776. <member name="M:LC.Google.Protobuf.Reflection.FieldDescriptor.GetOption``1(LC.Google.Protobuf.RepeatedExtension{LC.Google.Protobuf.Reflection.FieldOptions,``0})">
  5777. <summary>
  5778. Gets a repeated value field option for this descriptor
  5779. </summary>
  5780. </member>
  5781. <member name="M:LC.Google.Protobuf.Reflection.FieldDescriptor.CrossLink">
  5782. <summary>
  5783. Look up and cross-link all field types etc.
  5784. </summary>
  5785. </member>
  5786. <member name="T:LC.Google.Protobuf.Reflection.FieldType">
  5787. <summary>
  5788. Enumeration of all the possible field types.
  5789. </summary>
  5790. </member>
  5791. <member name="F:LC.Google.Protobuf.Reflection.FieldType.Double">
  5792. <summary>
  5793. The <c>double</c> field type.
  5794. </summary>
  5795. </member>
  5796. <member name="F:LC.Google.Protobuf.Reflection.FieldType.Float">
  5797. <summary>
  5798. The <c>float</c> field type.
  5799. </summary>
  5800. </member>
  5801. <member name="F:LC.Google.Protobuf.Reflection.FieldType.Int64">
  5802. <summary>
  5803. The <c>int64</c> field type.
  5804. </summary>
  5805. </member>
  5806. <member name="F:LC.Google.Protobuf.Reflection.FieldType.UInt64">
  5807. <summary>
  5808. The <c>uint64</c> field type.
  5809. </summary>
  5810. </member>
  5811. <member name="F:LC.Google.Protobuf.Reflection.FieldType.Int32">
  5812. <summary>
  5813. The <c>int32</c> field type.
  5814. </summary>
  5815. </member>
  5816. <member name="F:LC.Google.Protobuf.Reflection.FieldType.Fixed64">
  5817. <summary>
  5818. The <c>fixed64</c> field type.
  5819. </summary>
  5820. </member>
  5821. <member name="F:LC.Google.Protobuf.Reflection.FieldType.Fixed32">
  5822. <summary>
  5823. The <c>fixed32</c> field type.
  5824. </summary>
  5825. </member>
  5826. <member name="F:LC.Google.Protobuf.Reflection.FieldType.Bool">
  5827. <summary>
  5828. The <c>bool</c> field type.
  5829. </summary>
  5830. </member>
  5831. <member name="F:LC.Google.Protobuf.Reflection.FieldType.String">
  5832. <summary>
  5833. The <c>string</c> field type.
  5834. </summary>
  5835. </member>
  5836. <member name="F:LC.Google.Protobuf.Reflection.FieldType.Group">
  5837. <summary>
  5838. The field type used for groups.
  5839. </summary>
  5840. </member>
  5841. <member name="F:LC.Google.Protobuf.Reflection.FieldType.Message">
  5842. <summary>
  5843. The field type used for message fields.
  5844. </summary>
  5845. </member>
  5846. <member name="F:LC.Google.Protobuf.Reflection.FieldType.Bytes">
  5847. <summary>
  5848. The <c>bytes</c> field type.
  5849. </summary>
  5850. </member>
  5851. <member name="F:LC.Google.Protobuf.Reflection.FieldType.UInt32">
  5852. <summary>
  5853. The <c>uint32</c> field type.
  5854. </summary>
  5855. </member>
  5856. <member name="F:LC.Google.Protobuf.Reflection.FieldType.SFixed32">
  5857. <summary>
  5858. The <c>sfixed32</c> field type.
  5859. </summary>
  5860. </member>
  5861. <member name="F:LC.Google.Protobuf.Reflection.FieldType.SFixed64">
  5862. <summary>
  5863. The <c>sfixed64</c> field type.
  5864. </summary>
  5865. </member>
  5866. <member name="F:LC.Google.Protobuf.Reflection.FieldType.SInt32">
  5867. <summary>
  5868. The <c>sint32</c> field type.
  5869. </summary>
  5870. </member>
  5871. <member name="F:LC.Google.Protobuf.Reflection.FieldType.SInt64">
  5872. <summary>
  5873. The <c>sint64</c> field type.
  5874. </summary>
  5875. </member>
  5876. <member name="F:LC.Google.Protobuf.Reflection.FieldType.Enum">
  5877. <summary>
  5878. The field type used for enum fields.
  5879. </summary>
  5880. </member>
  5881. <member name="T:LC.Google.Protobuf.Reflection.Syntax">
  5882. <summary>
  5883. The syntax of a .proto file
  5884. </summary>
  5885. </member>
  5886. <member name="F:LC.Google.Protobuf.Reflection.Syntax.Proto2">
  5887. <summary>
  5888. Proto2 syntax
  5889. </summary>
  5890. </member>
  5891. <member name="F:LC.Google.Protobuf.Reflection.Syntax.Proto3">
  5892. <summary>
  5893. Proto3 syntax
  5894. </summary>
  5895. </member>
  5896. <member name="F:LC.Google.Protobuf.Reflection.Syntax.Unknown">
  5897. <summary>
  5898. An unknown declared syntax
  5899. </summary>
  5900. </member>
  5901. <member name="T:LC.Google.Protobuf.Reflection.FileDescriptor">
  5902. <summary>
  5903. Describes a .proto file, including everything defined within.
  5904. IDescriptor is implemented such that the File property returns this descriptor,
  5905. and the FullName is the same as the Name.
  5906. </summary>
  5907. </member>
  5908. <member name="M:LC.Google.Protobuf.Reflection.FileDescriptor.ComputeFullName(LC.Google.Protobuf.Reflection.MessageDescriptor,System.String)">
  5909. <summary>
  5910. Computes the full name of a descriptor within this file, with an optional parent message.
  5911. </summary>
  5912. </member>
  5913. <member name="M:LC.Google.Protobuf.Reflection.FileDescriptor.DeterminePublicDependencies(LC.Google.Protobuf.Reflection.FileDescriptor,LC.Google.Protobuf.Reflection.FileDescriptorProto,System.Collections.Generic.IEnumerable{LC.Google.Protobuf.Reflection.FileDescriptor},System.Boolean)">
  5914. <summary>
  5915. Extracts public dependencies from direct dependencies. This is a static method despite its
  5916. first parameter, as the value we're in the middle of constructing is only used for exceptions.
  5917. </summary>
  5918. </member>
  5919. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptor.Proto">
  5920. <value>
  5921. The descriptor in its protocol message representation.
  5922. </value>
  5923. </member>
  5924. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptor.Syntax">
  5925. <summary>
  5926. The syntax of the file
  5927. </summary>
  5928. </member>
  5929. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptor.Name">
  5930. <value>
  5931. The file name.
  5932. </value>
  5933. </member>
  5934. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptor.Package">
  5935. <summary>
  5936. The package as declared in the .proto file. This may or may not
  5937. be equivalent to the .NET namespace of the generated classes.
  5938. </summary>
  5939. </member>
  5940. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptor.MessageTypes">
  5941. <value>
  5942. Unmodifiable list of top-level message types declared in this file.
  5943. </value>
  5944. </member>
  5945. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptor.EnumTypes">
  5946. <value>
  5947. Unmodifiable list of top-level enum types declared in this file.
  5948. </value>
  5949. </member>
  5950. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptor.Services">
  5951. <value>
  5952. Unmodifiable list of top-level services declared in this file.
  5953. </value>
  5954. </member>
  5955. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptor.Extensions">
  5956. <summary>
  5957. Unmodifiable list of top-level extensions declared in this file.
  5958. Note that some extensions may be incomplete (FieldDescriptor.Extension may be null)
  5959. if this descriptor was generated using a version of protoc that did not fully
  5960. support extensions in C#.
  5961. </summary>
  5962. </member>
  5963. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptor.Dependencies">
  5964. <value>
  5965. Unmodifiable list of this file's dependencies (imports).
  5966. </value>
  5967. </member>
  5968. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptor.PublicDependencies">
  5969. <value>
  5970. Unmodifiable list of this file's public dependencies (public imports).
  5971. </value>
  5972. </member>
  5973. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptor.SerializedData">
  5974. <value>
  5975. The original serialized binary form of this descriptor.
  5976. </value>
  5977. </member>
  5978. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptor.LC#Google#Protobuf#Reflection#IDescriptor#FullName">
  5979. <value>
  5980. Implementation of IDescriptor.FullName - just returns the same as Name.
  5981. </value>
  5982. </member>
  5983. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptor.LC#Google#Protobuf#Reflection#IDescriptor#File">
  5984. <value>
  5985. Implementation of IDescriptor.File - just returns this descriptor.
  5986. </value>
  5987. </member>
  5988. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptor.DescriptorPool">
  5989. <value>
  5990. Pool containing symbol descriptors.
  5991. </value>
  5992. </member>
  5993. <member name="M:LC.Google.Protobuf.Reflection.FileDescriptor.FindTypeByName``1(System.String)">
  5994. <summary>
  5995. Finds a type (message, enum, service or extension) in the file by name. Does not find nested types.
  5996. </summary>
  5997. <param name="name">The unqualified type name to look for.</param>
  5998. <typeparam name="T">The type of descriptor to look for</typeparam>
  5999. <returns>The type's descriptor, or null if not found.</returns>
  6000. </member>
  6001. <member name="M:LC.Google.Protobuf.Reflection.FileDescriptor.BuildFrom(LC.Google.Protobuf.ByteString,LC.Google.Protobuf.Reflection.FileDescriptorProto,LC.Google.Protobuf.Reflection.FileDescriptor[],System.Boolean,LC.Google.Protobuf.Reflection.GeneratedClrTypeInfo)">
  6002. <summary>
  6003. Builds a FileDescriptor from its protocol buffer representation.
  6004. </summary>
  6005. <param name="descriptorData">The original serialized descriptor data.
  6006. We have only limited proto2 support, so serializing FileDescriptorProto
  6007. would not necessarily give us this.</param>
  6008. <param name="proto">The protocol message form of the FileDescriptor.</param>
  6009. <param name="dependencies">FileDescriptors corresponding to all of the
  6010. file's dependencies, in the exact order listed in the .proto file. May be null,
  6011. in which case it is treated as an empty array.</param>
  6012. <param name="allowUnknownDependencies">Whether unknown dependencies are ignored (true) or cause an exception to be thrown (false).</param>
  6013. <param name="generatedCodeInfo">Details about generated code, for the purposes of reflection.</param>
  6014. <exception cref="T:LC.Google.Protobuf.Reflection.DescriptorValidationException">If <paramref name="proto"/> is not
  6015. a valid descriptor. This can occur for a number of reasons, such as a field
  6016. having an undefined type or because two messages were defined with the same name.</exception>
  6017. </member>
  6018. <member name="M:LC.Google.Protobuf.Reflection.FileDescriptor.FromGeneratedCode(System.Byte[],LC.Google.Protobuf.Reflection.FileDescriptor[],LC.Google.Protobuf.Reflection.GeneratedClrTypeInfo)">
  6019. <summary>
  6020. Creates a descriptor for generated code.
  6021. </summary>
  6022. <remarks>
  6023. This method is only designed to be used by the results of generating code with protoc,
  6024. which creates the appropriate dependencies etc. It has to be public because the generated
  6025. code is "external", but should not be called directly by end users.
  6026. </remarks>
  6027. </member>
  6028. <member name="M:LC.Google.Protobuf.Reflection.FileDescriptor.BuildFromByteStrings(System.Collections.Generic.IEnumerable{LC.Google.Protobuf.ByteString})">
  6029. <summary>
  6030. Converts the given descriptor binary data into FileDescriptor objects.
  6031. Note: reflection using the returned FileDescriptors is not currently supported.
  6032. </summary>
  6033. <param name="descriptorData">The binary file descriptor proto data. Must not be null, and any
  6034. dependencies must come before the descriptor which depends on them. (If A depends on B, and B
  6035. depends on C, then the descriptors must be presented in the order C, B, A.) This is compatible
  6036. with the order in which protoc provides descriptors to plugins.</param>
  6037. <returns>The file descriptors corresponding to <paramref name="descriptorData"/>.</returns>
  6038. </member>
  6039. <member name="M:LC.Google.Protobuf.Reflection.FileDescriptor.ToString">
  6040. <summary>
  6041. Returns a <see cref="T:System.String" /> that represents this instance.
  6042. </summary>
  6043. <returns>
  6044. A <see cref="T:System.String" /> that represents this instance.
  6045. </returns>
  6046. </member>
  6047. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptor.DescriptorProtoFileDescriptor">
  6048. <summary>
  6049. Returns the file descriptor for descriptor.proto.
  6050. </summary>
  6051. <remarks>
  6052. This is used for protos which take a direct dependency on <c>descriptor.proto</c>, typically for
  6053. annotations. While <c>descriptor.proto</c> is a proto2 file, it is built into the Google.Protobuf
  6054. runtime for reflection purposes. The messages are internal to the runtime as they would require
  6055. proto2 semantics for full support, but the file descriptor is available via this property. The
  6056. C# codegen in protoc automatically uses this property when it detects a dependency on <c>descriptor.proto</c>.
  6057. </remarks>
  6058. <value>
  6059. The file descriptor for <c>descriptor.proto</c>.
  6060. </value>
  6061. </member>
  6062. <member name="P:LC.Google.Protobuf.Reflection.FileDescriptor.CustomOptions">
  6063. <summary>
  6064. The (possibly empty) set of custom options for this file.
  6065. </summary>
  6066. </member>
  6067. <member name="M:LC.Google.Protobuf.Reflection.FileDescriptor.GetOptions">
  6068. <summary>
  6069. The <c>FileOptions</c>, defined in <c>descriptor.proto</c>.
  6070. If the options message is not present (i.e. there are no options), <c>null</c> is returned.
  6071. Custom options can be retrieved as extensions of the returned message.
  6072. NOTE: A defensive copy is created each time this property is retrieved.
  6073. </summary>
  6074. </member>
  6075. <member name="M:LC.Google.Protobuf.Reflection.FileDescriptor.GetOption``1(LC.Google.Protobuf.Extension{LC.Google.Protobuf.Reflection.FileOptions,``0})">
  6076. <summary>
  6077. Gets a single value file option for this descriptor
  6078. </summary>
  6079. </member>
  6080. <member name="M:LC.Google.Protobuf.Reflection.FileDescriptor.GetOption``1(LC.Google.Protobuf.RepeatedExtension{LC.Google.Protobuf.Reflection.FileOptions,``0})">
  6081. <summary>
  6082. Gets a repeated value file option for this descriptor
  6083. </summary>
  6084. </member>
  6085. <member name="M:LC.Google.Protobuf.Reflection.FileDescriptor.ForceReflectionInitialization``1">
  6086. <summary>
  6087. Performs initialization for the given generic type argument.
  6088. </summary>
  6089. <remarks>
  6090. This method is present for the sake of AOT compilers. It allows code (whether handwritten or generated)
  6091. to make calls into the reflection machinery of this library to express an intention to use that type
  6092. reflectively (e.g. for JSON parsing and formatting). The call itself does almost nothing, but AOT compilers
  6093. attempting to determine which generic type arguments need to be handled will spot the code path and act
  6094. accordingly.
  6095. </remarks>
  6096. <typeparam name="T">The type to force initialization for.</typeparam>
  6097. </member>
  6098. <member name="T:LC.Google.Protobuf.Reflection.GeneratedClrTypeInfo">
  6099. <summary>
  6100. Extra information provided by generated code when initializing a message or file descriptor.
  6101. These are constructed as required, and are not long-lived. Hand-written code should
  6102. never need to use this type.
  6103. </summary>
  6104. </member>
  6105. <member name="P:LC.Google.Protobuf.Reflection.GeneratedClrTypeInfo.ClrType">
  6106. <summary>
  6107. Irrelevant for file descriptors; the CLR type for the message for message descriptors.
  6108. </summary>
  6109. </member>
  6110. <member name="P:LC.Google.Protobuf.Reflection.GeneratedClrTypeInfo.Parser">
  6111. <summary>
  6112. Irrelevant for file descriptors; the parser for message descriptors.
  6113. </summary>
  6114. </member>
  6115. <member name="P:LC.Google.Protobuf.Reflection.GeneratedClrTypeInfo.PropertyNames">
  6116. <summary>
  6117. Irrelevant for file descriptors; the CLR property names (in message descriptor field order)
  6118. for fields in the message for message descriptors.
  6119. </summary>
  6120. </member>
  6121. <member name="P:LC.Google.Protobuf.Reflection.GeneratedClrTypeInfo.Extensions">
  6122. <summary>
  6123. The extensions defined within this file/message descriptor
  6124. </summary>
  6125. </member>
  6126. <member name="P:LC.Google.Protobuf.Reflection.GeneratedClrTypeInfo.OneofNames">
  6127. <summary>
  6128. Irrelevant for file descriptors; the CLR property "base" names (in message descriptor oneof order)
  6129. for oneofs in the message for message descriptors. It is expected that for a oneof name of "Foo",
  6130. there will be a "FooCase" property and a "ClearFoo" method.
  6131. </summary>
  6132. </member>
  6133. <member name="P:LC.Google.Protobuf.Reflection.GeneratedClrTypeInfo.NestedTypes">
  6134. <summary>
  6135. The reflection information for types within this file/message descriptor. Elements may be null
  6136. if there is no corresponding generated type, e.g. for map entry types.
  6137. </summary>
  6138. </member>
  6139. <member name="P:LC.Google.Protobuf.Reflection.GeneratedClrTypeInfo.NestedEnums">
  6140. <summary>
  6141. The CLR types for enums within this file/message descriptor.
  6142. </summary>
  6143. </member>
  6144. <member name="M:LC.Google.Protobuf.Reflection.GeneratedClrTypeInfo.#ctor(System.Type,LC.Google.Protobuf.MessageParser,System.String[],System.String[],System.Type[],LC.Google.Protobuf.Extension[],LC.Google.Protobuf.Reflection.GeneratedClrTypeInfo[])">
  6145. <summary>
  6146. Creates a GeneratedClrTypeInfo for a message descriptor, with nested types, nested enums, the CLR type, property names and oneof names.
  6147. Each array parameter may be null, to indicate a lack of values.
  6148. The parameter order is designed to make it feasible to format the generated code readably.
  6149. </summary>
  6150. </member>
  6151. <member name="M:LC.Google.Protobuf.Reflection.GeneratedClrTypeInfo.#ctor(System.Type,LC.Google.Protobuf.MessageParser,System.String[],System.String[],System.Type[],LC.Google.Protobuf.Reflection.GeneratedClrTypeInfo[])">
  6152. <summary>
  6153. Creates a GeneratedClrTypeInfo for a message descriptor, with nested types, nested enums, the CLR type, property names and oneof names.
  6154. Each array parameter may be null, to indicate a lack of values.
  6155. The parameter order is designed to make it feasible to format the generated code readably.
  6156. </summary>
  6157. </member>
  6158. <member name="M:LC.Google.Protobuf.Reflection.GeneratedClrTypeInfo.#ctor(System.Type[],LC.Google.Protobuf.Extension[],LC.Google.Protobuf.Reflection.GeneratedClrTypeInfo[])">
  6159. <summary>
  6160. Creates a GeneratedClrTypeInfo for a file descriptor, with only types, enums, and extensions.
  6161. </summary>
  6162. </member>
  6163. <member name="M:LC.Google.Protobuf.Reflection.GeneratedClrTypeInfo.#ctor(System.Type[],LC.Google.Protobuf.Reflection.GeneratedClrTypeInfo[])">
  6164. <summary>
  6165. Creates a GeneratedClrTypeInfo for a file descriptor, with only types and enums.
  6166. </summary>
  6167. </member>
  6168. <member name="T:LC.Google.Protobuf.Reflection.IDescriptor">
  6169. <summary>
  6170. Interface implemented by all descriptor types.
  6171. </summary>
  6172. </member>
  6173. <member name="P:LC.Google.Protobuf.Reflection.IDescriptor.Name">
  6174. <summary>
  6175. Returns the name of the entity (message, field etc) being described.
  6176. </summary>
  6177. </member>
  6178. <member name="P:LC.Google.Protobuf.Reflection.IDescriptor.FullName">
  6179. <summary>
  6180. Returns the fully-qualified name of the entity being described.
  6181. </summary>
  6182. </member>
  6183. <member name="P:LC.Google.Protobuf.Reflection.IDescriptor.File">
  6184. <summary>
  6185. Returns the descriptor for the .proto file that this entity is part of.
  6186. </summary>
  6187. </member>
  6188. <member name="T:LC.Google.Protobuf.Reflection.IFieldAccessor">
  6189. <summary>
  6190. Allows fields to be reflectively accessed.
  6191. </summary>
  6192. </member>
  6193. <member name="P:LC.Google.Protobuf.Reflection.IFieldAccessor.Descriptor">
  6194. <summary>
  6195. Returns the descriptor associated with this field.
  6196. </summary>
  6197. </member>
  6198. <member name="M:LC.Google.Protobuf.Reflection.IFieldAccessor.Clear(LC.Google.Protobuf.IMessage)">
  6199. <summary>
  6200. Clears the field in the specified message. (For repeated fields,
  6201. this clears the list.)
  6202. </summary>
  6203. </member>
  6204. <member name="M:LC.Google.Protobuf.Reflection.IFieldAccessor.GetValue(LC.Google.Protobuf.IMessage)">
  6205. <summary>
  6206. Fetches the field value. For repeated values, this will be an
  6207. <see cref="T:System.Collections.IList"/> implementation. For map values, this will be an
  6208. <see cref="T:System.Collections.IDictionary"/> implementation.
  6209. </summary>
  6210. </member>
  6211. <member name="M:LC.Google.Protobuf.Reflection.IFieldAccessor.HasValue(LC.Google.Protobuf.IMessage)">
  6212. <summary>
  6213. Indicates whether the field in the specified message is set.
  6214. For proto3 fields that aren't explicitly optional, this throws an <see cref="T:System.InvalidOperationException"/>
  6215. </summary>
  6216. </member>
  6217. <member name="M:LC.Google.Protobuf.Reflection.IFieldAccessor.SetValue(LC.Google.Protobuf.IMessage,System.Object)">
  6218. <summary>
  6219. Mutator for single "simple" fields only.
  6220. </summary>
  6221. <remarks>
  6222. Repeated fields are mutated by fetching the value and manipulating it as a list.
  6223. Map fields are mutated by fetching the value and manipulating it as a dictionary.
  6224. </remarks>
  6225. <exception cref="T:System.InvalidOperationException">The field is not a "simple" field.</exception>
  6226. </member>
  6227. <member name="T:LC.Google.Protobuf.Reflection.MapFieldAccessor">
  6228. <summary>
  6229. Accessor for map fields.
  6230. </summary>
  6231. </member>
  6232. <member name="T:LC.Google.Protobuf.Reflection.MessageDescriptor">
  6233. <summary>
  6234. Describes a message type.
  6235. </summary>
  6236. </member>
  6237. <member name="P:LC.Google.Protobuf.Reflection.MessageDescriptor.Name">
  6238. <summary>
  6239. The brief name of the descriptor's target.
  6240. </summary>
  6241. </member>
  6242. <member name="P:LC.Google.Protobuf.Reflection.MessageDescriptor.ClrType">
  6243. <summary>
  6244. The CLR type used to represent message instances from this descriptor.
  6245. </summary>
  6246. <remarks>
  6247. <para>
  6248. The value returned by this property will be non-null for all regular fields. However,
  6249. if a message containing a map field is introspected, the list of nested messages will include
  6250. an auto-generated nested key/value pair message for the field. This is not represented in any
  6251. generated type, so this property will return null in such cases.
  6252. </para>
  6253. <para>
  6254. For wrapper types (<see cref="T:LC.Google.Protobuf.WellKnownTypes.StringValue"/> and the like), the type returned here
  6255. will be the generated message type, not the native type used by reflection for fields of those types. Code
  6256. using reflection should call <see cref="P:LC.Google.Protobuf.Reflection.MessageDescriptor.IsWrapperType"/> to determine whether a message descriptor represents
  6257. a wrapper type, and handle the result appropriately.
  6258. </para>
  6259. </remarks>
  6260. </member>
  6261. <member name="P:LC.Google.Protobuf.Reflection.MessageDescriptor.Parser">
  6262. <summary>
  6263. A parser for this message type.
  6264. </summary>
  6265. <remarks>
  6266. <para>
  6267. As <see cref="T:LC.Google.Protobuf.Reflection.MessageDescriptor"/> is not generic, this cannot be statically
  6268. typed to the relevant type, but it should produce objects of a type compatible with <see cref="P:LC.Google.Protobuf.Reflection.MessageDescriptor.ClrType"/>.
  6269. </para>
  6270. <para>
  6271. The value returned by this property will be non-null for all regular fields. However,
  6272. if a message containing a map field is introspected, the list of nested messages will include
  6273. an auto-generated nested key/value pair message for the field. No message parser object is created for
  6274. such messages, so this property will return null in such cases.
  6275. </para>
  6276. <para>
  6277. For wrapper types (<see cref="T:LC.Google.Protobuf.WellKnownTypes.StringValue"/> and the like), the parser returned here
  6278. will be the generated message type, not the native type used by reflection for fields of those types. Code
  6279. using reflection should call <see cref="P:LC.Google.Protobuf.Reflection.MessageDescriptor.IsWrapperType"/> to determine whether a message descriptor represents
  6280. a wrapper type, and handle the result appropriately.
  6281. </para>
  6282. </remarks>
  6283. </member>
  6284. <member name="P:LC.Google.Protobuf.Reflection.MessageDescriptor.IsWellKnownType">
  6285. <summary>
  6286. Returns whether this message is one of the "well known types" which may have runtime/protoc support.
  6287. </summary>
  6288. </member>
  6289. <member name="P:LC.Google.Protobuf.Reflection.MessageDescriptor.IsWrapperType">
  6290. <summary>
  6291. Returns whether this message is one of the "wrapper types" used for fields which represent primitive values
  6292. with the addition of presence.
  6293. </summary>
  6294. </member>
  6295. <member name="P:LC.Google.Protobuf.Reflection.MessageDescriptor.ContainingType">
  6296. <value>
  6297. If this is a nested type, get the outer descriptor, otherwise null.
  6298. </value>
  6299. </member>
  6300. <member name="P:LC.Google.Protobuf.Reflection.MessageDescriptor.Fields">
  6301. <value>
  6302. A collection of fields, which can be retrieved by name or field number.
  6303. </value>
  6304. </member>
  6305. <member name="P:LC.Google.Protobuf.Reflection.MessageDescriptor.Extensions">
  6306. <summary>
  6307. An unmodifiable list of extensions defined in this message's scope.
  6308. Note that some extensions may be incomplete (FieldDescriptor.Extension may be null)
  6309. if they are declared in a file generated using a version of protoc that did not fully
  6310. support extensions in C#.
  6311. </summary>
  6312. </member>
  6313. <member name="P:LC.Google.Protobuf.Reflection.MessageDescriptor.NestedTypes">
  6314. <value>
  6315. An unmodifiable list of this message type's nested types.
  6316. </value>
  6317. </member>
  6318. <member name="P:LC.Google.Protobuf.Reflection.MessageDescriptor.EnumTypes">
  6319. <value>
  6320. An unmodifiable list of this message type's enum types.
  6321. </value>
  6322. </member>
  6323. <member name="P:LC.Google.Protobuf.Reflection.MessageDescriptor.Oneofs">
  6324. <value>
  6325. An unmodifiable list of the "oneof" field collections in this message type.
  6326. All "real" oneofs (where <see cref="P:LC.Google.Protobuf.Reflection.OneofDescriptor.IsSynthetic"/> returns false)
  6327. come before synthetic ones.
  6328. </value>
  6329. </member>
  6330. <member name="P:LC.Google.Protobuf.Reflection.MessageDescriptor.RealOneofCount">
  6331. <summary>
  6332. The number of real "oneof" descriptors in this message type. Every element in <see cref="P:LC.Google.Protobuf.Reflection.MessageDescriptor.Oneofs"/>
  6333. with an index less than this will have a <see cref="P:LC.Google.Protobuf.Reflection.OneofDescriptor.IsSynthetic"/> property value
  6334. of <c>false</c>; every element with an index greater than or equal to this will have a
  6335. <see cref="P:LC.Google.Protobuf.Reflection.OneofDescriptor.IsSynthetic"/> property value of <c>true</c>.
  6336. </summary>
  6337. </member>
  6338. <member name="M:LC.Google.Protobuf.Reflection.MessageDescriptor.FindFieldByName(System.String)">
  6339. <summary>
  6340. Finds a field by field name.
  6341. </summary>
  6342. <param name="name">The unqualified name of the field (e.g. "foo").</param>
  6343. <returns>The field's descriptor, or null if not found.</returns>
  6344. </member>
  6345. <member name="M:LC.Google.Protobuf.Reflection.MessageDescriptor.FindFieldByNumber(System.Int32)">
  6346. <summary>
  6347. Finds a field by field number.
  6348. </summary>
  6349. <param name="number">The field number within this message type.</param>
  6350. <returns>The field's descriptor, or null if not found.</returns>
  6351. </member>
  6352. <member name="M:LC.Google.Protobuf.Reflection.MessageDescriptor.FindDescriptor``1(System.String)">
  6353. <summary>
  6354. Finds a nested descriptor by name. The is valid for fields, nested
  6355. message types, oneofs and enums.
  6356. </summary>
  6357. <param name="name">The unqualified name of the descriptor, e.g. "Foo"</param>
  6358. <returns>The descriptor, or null if not found.</returns>
  6359. </member>
  6360. <member name="P:LC.Google.Protobuf.Reflection.MessageDescriptor.CustomOptions">
  6361. <summary>
  6362. The (possibly empty) set of custom options for this message.
  6363. </summary>
  6364. </member>
  6365. <member name="M:LC.Google.Protobuf.Reflection.MessageDescriptor.GetOptions">
  6366. <summary>
  6367. The <c>MessageOptions</c>, defined in <c>descriptor.proto</c>.
  6368. If the options message is not present (i.e. there are no options), <c>null</c> is returned.
  6369. Custom options can be retrieved as extensions of the returned message.
  6370. NOTE: A defensive copy is created each time this property is retrieved.
  6371. </summary>
  6372. </member>
  6373. <member name="M:LC.Google.Protobuf.Reflection.MessageDescriptor.GetOption``1(LC.Google.Protobuf.Extension{LC.Google.Protobuf.Reflection.MessageOptions,``0})">
  6374. <summary>
  6375. Gets a single value message option for this descriptor
  6376. </summary>
  6377. </member>
  6378. <member name="M:LC.Google.Protobuf.Reflection.MessageDescriptor.GetOption``1(LC.Google.Protobuf.RepeatedExtension{LC.Google.Protobuf.Reflection.MessageOptions,``0})">
  6379. <summary>
  6380. Gets a repeated value message option for this descriptor
  6381. </summary>
  6382. </member>
  6383. <member name="M:LC.Google.Protobuf.Reflection.MessageDescriptor.CrossLink">
  6384. <summary>
  6385. Looks up and cross-links all fields and nested types.
  6386. </summary>
  6387. </member>
  6388. <member name="T:LC.Google.Protobuf.Reflection.MessageDescriptor.FieldCollection">
  6389. <summary>
  6390. A collection to simplify retrieving the field accessor for a particular field.
  6391. </summary>
  6392. </member>
  6393. <member name="M:LC.Google.Protobuf.Reflection.MessageDescriptor.FieldCollection.InDeclarationOrder">
  6394. <value>
  6395. Returns the fields in the message as an immutable list, in the order in which they
  6396. are declared in the source .proto file.
  6397. </value>
  6398. </member>
  6399. <member name="M:LC.Google.Protobuf.Reflection.MessageDescriptor.FieldCollection.InFieldNumberOrder">
  6400. <value>
  6401. Returns the fields in the message as an immutable list, in ascending field number
  6402. order. Field numbers need not be contiguous, so there is no direct mapping from the
  6403. index in the list to the field number; to retrieve a field by field number, it is better
  6404. to use the <see cref="T:LC.Google.Protobuf.Reflection.MessageDescriptor.FieldCollection"/> indexer.
  6405. </value>
  6406. </member>
  6407. <member name="M:LC.Google.Protobuf.Reflection.MessageDescriptor.FieldCollection.ByJsonName">
  6408. <value>
  6409. Returns a read-only dictionary mapping the field names in this message as they're available
  6410. in the JSON representation to the field descriptors. For example, a field <c>foo_bar</c>
  6411. in the message would result two entries, one with a key <c>fooBar</c> and one with a key
  6412. <c>foo_bar</c>, both referring to the same field.
  6413. </value>
  6414. </member>
  6415. <member name="P:LC.Google.Protobuf.Reflection.MessageDescriptor.FieldCollection.Item(System.Int32)">
  6416. <summary>
  6417. Retrieves the descriptor for the field with the given number.
  6418. </summary>
  6419. <param name="number">Number of the field to retrieve the descriptor for</param>
  6420. <returns>The accessor for the given field</returns>
  6421. <exception cref="T:System.Collections.Generic.KeyNotFoundException">The message descriptor does not contain a field
  6422. with the given number</exception>
  6423. </member>
  6424. <member name="P:LC.Google.Protobuf.Reflection.MessageDescriptor.FieldCollection.Item(System.String)">
  6425. <summary>
  6426. Retrieves the descriptor for the field with the given name.
  6427. </summary>
  6428. <param name="name">Name of the field to retrieve the descriptor for</param>
  6429. <returns>The descriptor for the given field</returns>
  6430. <exception cref="T:System.Collections.Generic.KeyNotFoundException">The message descriptor does not contain a field
  6431. with the given name</exception>
  6432. </member>
  6433. <member name="T:LC.Google.Protobuf.Reflection.MethodDescriptor">
  6434. <summary>
  6435. Describes a single method in a service.
  6436. </summary>
  6437. </member>
  6438. <member name="P:LC.Google.Protobuf.Reflection.MethodDescriptor.Service">
  6439. <value>
  6440. The service this method belongs to.
  6441. </value>
  6442. </member>
  6443. <member name="P:LC.Google.Protobuf.Reflection.MethodDescriptor.InputType">
  6444. <value>
  6445. The method's input type.
  6446. </value>
  6447. </member>
  6448. <member name="P:LC.Google.Protobuf.Reflection.MethodDescriptor.OutputType">
  6449. <value>
  6450. The method's input type.
  6451. </value>
  6452. </member>
  6453. <member name="P:LC.Google.Protobuf.Reflection.MethodDescriptor.IsClientStreaming">
  6454. <value>
  6455. Indicates if client streams multiple requests.
  6456. </value>
  6457. </member>
  6458. <member name="P:LC.Google.Protobuf.Reflection.MethodDescriptor.IsServerStreaming">
  6459. <value>
  6460. Indicates if server streams multiple responses.
  6461. </value>
  6462. </member>
  6463. <member name="P:LC.Google.Protobuf.Reflection.MethodDescriptor.CustomOptions">
  6464. <summary>
  6465. The (possibly empty) set of custom options for this method.
  6466. </summary>
  6467. </member>
  6468. <member name="M:LC.Google.Protobuf.Reflection.MethodDescriptor.GetOptions">
  6469. <summary>
  6470. The <c>MethodOptions</c>, defined in <c>descriptor.proto</c>.
  6471. If the options message is not present (i.e. there are no options), <c>null</c> is returned.
  6472. Custom options can be retrieved as extensions of the returned message.
  6473. NOTE: A defensive copy is created each time this property is retrieved.
  6474. </summary>
  6475. </member>
  6476. <member name="M:LC.Google.Protobuf.Reflection.MethodDescriptor.GetOption``1(LC.Google.Protobuf.Extension{LC.Google.Protobuf.Reflection.MethodOptions,``0})">
  6477. <summary>
  6478. Gets a single value method option for this descriptor
  6479. </summary>
  6480. </member>
  6481. <member name="M:LC.Google.Protobuf.Reflection.MethodDescriptor.GetOption``1(LC.Google.Protobuf.RepeatedExtension{LC.Google.Protobuf.Reflection.MethodOptions,``0})">
  6482. <summary>
  6483. Gets a repeated value method option for this descriptor
  6484. </summary>
  6485. </member>
  6486. <member name="P:LC.Google.Protobuf.Reflection.MethodDescriptor.Name">
  6487. <summary>
  6488. The brief name of the descriptor's target.
  6489. </summary>
  6490. </member>
  6491. <member name="T:LC.Google.Protobuf.Reflection.OneofAccessor">
  6492. <summary>
  6493. Reflection access for a oneof, allowing clear and "get case" actions.
  6494. </summary>
  6495. </member>
  6496. <member name="P:LC.Google.Protobuf.Reflection.OneofAccessor.Descriptor">
  6497. <summary>
  6498. Gets the descriptor for this oneof.
  6499. </summary>
  6500. <value>
  6501. The descriptor of the oneof.
  6502. </value>
  6503. </member>
  6504. <member name="M:LC.Google.Protobuf.Reflection.OneofAccessor.Clear(LC.Google.Protobuf.IMessage)">
  6505. <summary>
  6506. Clears the oneof in the specified message.
  6507. </summary>
  6508. </member>
  6509. <member name="M:LC.Google.Protobuf.Reflection.OneofAccessor.GetCaseFieldDescriptor(LC.Google.Protobuf.IMessage)">
  6510. <summary>
  6511. Indicates which field in the oneof is set for specified message
  6512. </summary>
  6513. </member>
  6514. <member name="T:LC.Google.Protobuf.Reflection.OneofDescriptor">
  6515. <summary>
  6516. Describes a "oneof" field collection in a message type: a set of
  6517. fields of which at most one can be set in any particular message.
  6518. </summary>
  6519. </member>
  6520. <member name="P:LC.Google.Protobuf.Reflection.OneofDescriptor.Name">
  6521. <summary>
  6522. The brief name of the descriptor's target.
  6523. </summary>
  6524. </member>
  6525. <member name="P:LC.Google.Protobuf.Reflection.OneofDescriptor.ContainingType">
  6526. <summary>
  6527. Gets the message type containing this oneof.
  6528. </summary>
  6529. <value>
  6530. The message type containing this oneof.
  6531. </value>
  6532. </member>
  6533. <member name="P:LC.Google.Protobuf.Reflection.OneofDescriptor.Fields">
  6534. <summary>
  6535. Gets the fields within this oneof, in declaration order.
  6536. </summary>
  6537. <value>
  6538. The fields within this oneof, in declaration order.
  6539. </value>
  6540. </member>
  6541. <member name="P:LC.Google.Protobuf.Reflection.OneofDescriptor.IsSynthetic">
  6542. <summary>
  6543. Returns <c>true</c> if this oneof is a synthetic oneof containing a proto3 optional field;
  6544. <c>false</c> otherwise.
  6545. </summary>
  6546. </member>
  6547. <member name="P:LC.Google.Protobuf.Reflection.OneofDescriptor.Accessor">
  6548. <summary>
  6549. Gets an accessor for reflective access to the values associated with the oneof
  6550. in a particular message.
  6551. </summary>
  6552. <remarks>
  6553. <para>
  6554. In descriptors for generated code, the value returned by this property will always be non-null.
  6555. </para>
  6556. <para>
  6557. In dynamically loaded descriptors, the value returned by this property will current be null;
  6558. if and when dynamic messages are supported, it will return a suitable accessor to work with
  6559. them.
  6560. </para>
  6561. </remarks>
  6562. <value>
  6563. The accessor used for reflective access.
  6564. </value>
  6565. </member>
  6566. <member name="P:LC.Google.Protobuf.Reflection.OneofDescriptor.CustomOptions">
  6567. <summary>
  6568. The (possibly empty) set of custom options for this oneof.
  6569. </summary>
  6570. </member>
  6571. <member name="M:LC.Google.Protobuf.Reflection.OneofDescriptor.GetOptions">
  6572. <summary>
  6573. The <c>OneofOptions</c>, defined in <c>descriptor.proto</c>.
  6574. If the options message is not present (i.e. there are no options), <c>null</c> is returned.
  6575. Custom options can be retrieved as extensions of the returned message.
  6576. NOTE: A defensive copy is created each time this property is retrieved.
  6577. </summary>
  6578. </member>
  6579. <member name="M:LC.Google.Protobuf.Reflection.OneofDescriptor.GetOption``1(LC.Google.Protobuf.Extension{LC.Google.Protobuf.Reflection.OneofOptions,``0})">
  6580. <summary>
  6581. Gets a single value oneof option for this descriptor
  6582. </summary>
  6583. </member>
  6584. <member name="M:LC.Google.Protobuf.Reflection.OneofDescriptor.GetOption``1(LC.Google.Protobuf.RepeatedExtension{LC.Google.Protobuf.Reflection.OneofOptions,``0})">
  6585. <summary>
  6586. Gets a repeated value oneof option for this descriptor
  6587. </summary>
  6588. </member>
  6589. <member name="T:LC.Google.Protobuf.Reflection.OriginalNameAttribute">
  6590. <summary>
  6591. Specifies the original name (in the .proto file) of a named element,
  6592. such as an enum value.
  6593. </summary>
  6594. </member>
  6595. <member name="P:LC.Google.Protobuf.Reflection.OriginalNameAttribute.Name">
  6596. <summary>
  6597. The name of the element in the .proto file.
  6598. </summary>
  6599. </member>
  6600. <member name="P:LC.Google.Protobuf.Reflection.OriginalNameAttribute.PreferredAlias">
  6601. <summary>
  6602. If the name is preferred in the .proto file.
  6603. </summary>
  6604. </member>
  6605. <member name="M:LC.Google.Protobuf.Reflection.OriginalNameAttribute.#ctor(System.String)">
  6606. <summary>
  6607. Constructs a new attribute instance for the given name.
  6608. </summary>
  6609. <param name="name">The name of the element in the .proto file.</param>
  6610. </member>
  6611. <member name="T:LC.Google.Protobuf.Reflection.PackageDescriptor">
  6612. <summary>
  6613. Represents a package in the symbol table. We use PackageDescriptors
  6614. just as placeholders so that someone cannot define, say, a message type
  6615. that has the same name as an existing package.
  6616. </summary>
  6617. </member>
  6618. <member name="T:LC.Google.Protobuf.Reflection.ReflectionUtil">
  6619. <summary>
  6620. The methods in this class are somewhat evil, and should not be tampered with lightly.
  6621. Basically they allow the creation of relatively weakly typed delegates from MethodInfos
  6622. which are more strongly typed. They do this by creating an appropriate strongly typed
  6623. delegate from the MethodInfo, and then calling that within an anonymous method.
  6624. Mind-bending stuff (at least to your humble narrator) but the resulting delegates are
  6625. very fast compared with calling Invoke later on.
  6626. </summary>
  6627. </member>
  6628. <member name="F:LC.Google.Protobuf.Reflection.ReflectionUtil.EmptyTypes">
  6629. <summary>
  6630. Empty Type[] used when calling GetProperty to force property instead of indexer fetching.
  6631. </summary>
  6632. </member>
  6633. <member name="M:LC.Google.Protobuf.Reflection.ReflectionUtil.CreateFuncIMessageObject(System.Reflection.MethodInfo)">
  6634. <summary>
  6635. Creates a delegate which will cast the argument to the type that declares the method,
  6636. call the method on it, then convert the result to object.
  6637. </summary>
  6638. <param name="method">The method to create a delegate for, which must be declared in an IMessage
  6639. implementation.</param>
  6640. </member>
  6641. <member name="M:LC.Google.Protobuf.Reflection.ReflectionUtil.CreateFuncIMessageInt32(System.Reflection.MethodInfo)">
  6642. <summary>
  6643. Creates a delegate which will cast the argument to the type that declares the method,
  6644. call the method on it, then convert the result to the specified type. The method is expected
  6645. to actually return an enum (because of where we're calling it - for oneof cases). Sometimes that
  6646. means we need some extra work to perform conversions.
  6647. </summary>
  6648. <param name="method">The method to create a delegate for, which must be declared in an IMessage
  6649. implementation.</param>
  6650. </member>
  6651. <member name="M:LC.Google.Protobuf.Reflection.ReflectionUtil.CreateActionIMessageObject(System.Reflection.MethodInfo)">
  6652. <summary>
  6653. Creates a delegate which will execute the given method after casting the first argument to
  6654. the type that declares the method, and the second argument to the first parameter type of the method.
  6655. </summary>
  6656. <param name="method">The method to create a delegate for, which must be declared in an IMessage
  6657. implementation.</param>
  6658. </member>
  6659. <member name="M:LC.Google.Protobuf.Reflection.ReflectionUtil.CreateActionIMessage(System.Reflection.MethodInfo)">
  6660. <summary>
  6661. Creates a delegate which will execute the given method after casting the first argument to
  6662. type that declares the method.
  6663. </summary>
  6664. <param name="method">The method to create a delegate for, which must be declared in an IMessage
  6665. implementation.</param>
  6666. </member>
  6667. <member name="M:LC.Google.Protobuf.Reflection.ReflectionUtil.CreateExtensionHelper(LC.Google.Protobuf.Extension)">
  6668. <summary>
  6669. Creates a delegate which will execute the given method after casting the first argument to
  6670. the type that declares the method, and the second argument to the first parameter type of the method.
  6671. </summary>
  6672. </member>
  6673. <member name="M:LC.Google.Protobuf.Reflection.ReflectionUtil.GetReflectionHelper(System.Type,System.Type)">
  6674. <summary>
  6675. Creates a reflection helper for the given type arguments. Currently these are created on demand
  6676. rather than cached; this will be "busy" when initially loading a message's descriptor, but after that
  6677. they can be garbage collected. We could cache them by type if that proves to be important, but creating
  6678. an object is pretty cheap.
  6679. </summary>
  6680. </member>
  6681. <member name="T:LC.Google.Protobuf.Reflection.RepeatedFieldAccessor">
  6682. <summary>
  6683. Accessor for repeated fields.
  6684. </summary>
  6685. </member>
  6686. <member name="T:LC.Google.Protobuf.Reflection.ServiceDescriptor">
  6687. <summary>
  6688. Describes a service type.
  6689. </summary>
  6690. </member>
  6691. <member name="P:LC.Google.Protobuf.Reflection.ServiceDescriptor.Name">
  6692. <summary>
  6693. The brief name of the descriptor's target.
  6694. </summary>
  6695. </member>
  6696. <member name="P:LC.Google.Protobuf.Reflection.ServiceDescriptor.Methods">
  6697. <value>
  6698. An unmodifiable list of methods in this service.
  6699. </value>
  6700. </member>
  6701. <member name="M:LC.Google.Protobuf.Reflection.ServiceDescriptor.FindMethodByName(System.String)">
  6702. <summary>
  6703. Finds a method by name.
  6704. </summary>
  6705. <param name="name">The unqualified name of the method (e.g. "Foo").</param>
  6706. <returns>The method's descriptor, or null if not found.</returns>
  6707. </member>
  6708. <member name="P:LC.Google.Protobuf.Reflection.ServiceDescriptor.CustomOptions">
  6709. <summary>
  6710. The (possibly empty) set of custom options for this service.
  6711. </summary>
  6712. </member>
  6713. <member name="M:LC.Google.Protobuf.Reflection.ServiceDescriptor.GetOptions">
  6714. <summary>
  6715. The <c>ServiceOptions</c>, defined in <c>descriptor.proto</c>.
  6716. If the options message is not present (i.e. there are no options), <c>null</c> is returned.
  6717. Custom options can be retrieved as extensions of the returned message.
  6718. NOTE: A defensive copy is created each time this property is retrieved.
  6719. </summary>
  6720. </member>
  6721. <member name="M:LC.Google.Protobuf.Reflection.ServiceDescriptor.GetOption``1(LC.Google.Protobuf.Extension{LC.Google.Protobuf.Reflection.ServiceOptions,``0})">
  6722. <summary>
  6723. Gets a single value service option for this descriptor
  6724. </summary>
  6725. </member>
  6726. <member name="M:LC.Google.Protobuf.Reflection.ServiceDescriptor.GetOption``1(LC.Google.Protobuf.RepeatedExtension{LC.Google.Protobuf.Reflection.ServiceOptions,``0})">
  6727. <summary>
  6728. Gets a repeated value service option for this descriptor
  6729. </summary>
  6730. </member>
  6731. <member name="T:LC.Google.Protobuf.Reflection.SingleFieldAccessor">
  6732. <summary>
  6733. Accessor for single fields.
  6734. </summary>
  6735. </member>
  6736. <member name="T:LC.Google.Protobuf.Reflection.TypeRegistry">
  6737. <summary>
  6738. An immutable registry of types which can be looked up by their full name.
  6739. </summary>
  6740. </member>
  6741. <member name="P:LC.Google.Protobuf.Reflection.TypeRegistry.Empty">
  6742. <summary>
  6743. An empty type registry, containing no types.
  6744. </summary>
  6745. </member>
  6746. <member name="M:LC.Google.Protobuf.Reflection.TypeRegistry.Find(System.String)">
  6747. <summary>
  6748. Attempts to find a message descriptor by its full name.
  6749. </summary>
  6750. <param name="fullName">The full name of the message, which is the dot-separated
  6751. combination of package, containing messages and message name</param>
  6752. <returns>The message descriptor corresponding to <paramref name="fullName"/> or null
  6753. if there is no such message descriptor.</returns>
  6754. </member>
  6755. <member name="M:LC.Google.Protobuf.Reflection.TypeRegistry.FromFiles(LC.Google.Protobuf.Reflection.FileDescriptor[])">
  6756. <summary>
  6757. Creates a type registry from the specified set of file descriptors.
  6758. </summary>
  6759. <remarks>
  6760. This is a convenience overload for <see cref="M:LC.Google.Protobuf.Reflection.TypeRegistry.FromFiles(System.Collections.Generic.IEnumerable{LC.Google.Protobuf.Reflection.FileDescriptor})"/>
  6761. to allow calls such as <c>TypeRegistry.FromFiles(descriptor1, descriptor2)</c>.
  6762. </remarks>
  6763. <param name="fileDescriptors">The set of files to include in the registry. Must not contain null values.</param>
  6764. <returns>A type registry for the given files.</returns>
  6765. </member>
  6766. <member name="M:LC.Google.Protobuf.Reflection.TypeRegistry.FromFiles(System.Collections.Generic.IEnumerable{LC.Google.Protobuf.Reflection.FileDescriptor})">
  6767. <summary>
  6768. Creates a type registry from the specified set of file descriptors.
  6769. </summary>
  6770. <remarks>
  6771. All message types within all the specified files are added to the registry, and
  6772. the dependencies of the specified files are also added, recursively.
  6773. </remarks>
  6774. <param name="fileDescriptors">The set of files to include in the registry. Must not contain null values.</param>
  6775. <returns>A type registry for the given files.</returns>
  6776. </member>
  6777. <member name="M:LC.Google.Protobuf.Reflection.TypeRegistry.FromMessages(LC.Google.Protobuf.Reflection.MessageDescriptor[])">
  6778. <summary>
  6779. Creates a type registry from the file descriptor parents of the specified set of message descriptors.
  6780. </summary>
  6781. <remarks>
  6782. This is a convenience overload for <see cref="M:LC.Google.Protobuf.Reflection.TypeRegistry.FromMessages(System.Collections.Generic.IEnumerable{LC.Google.Protobuf.Reflection.MessageDescriptor})"/>
  6783. to allow calls such as <c>TypeRegistry.FromFiles(descriptor1, descriptor2)</c>.
  6784. </remarks>
  6785. <param name="messageDescriptors">The set of message descriptors to use to identify file descriptors to include in the registry.
  6786. Must not contain null values.</param>
  6787. <returns>A type registry for the given files.</returns>
  6788. </member>
  6789. <member name="M:LC.Google.Protobuf.Reflection.TypeRegistry.FromMessages(System.Collections.Generic.IEnumerable{LC.Google.Protobuf.Reflection.MessageDescriptor})">
  6790. <summary>
  6791. Creates a type registry from the file descriptor parents of the specified set of message descriptors.
  6792. </summary>
  6793. <remarks>
  6794. The specified message descriptors are only used to identify their file descriptors; the returned registry
  6795. contains all the types within the file descriptors which contain the specified message descriptors (and
  6796. the dependencies of those files), not just the specified messages.
  6797. </remarks>
  6798. <param name="messageDescriptors">The set of message descriptors to use to identify file descriptors to include in the registry.
  6799. Must not contain null values.</param>
  6800. <returns>A type registry for the given files.</returns>
  6801. </member>
  6802. <member name="T:LC.Google.Protobuf.Reflection.TypeRegistry.Builder">
  6803. <summary>
  6804. Builder class which isn't exposed, but acts as a convenient alternative to passing round two dictionaries in recursive calls.
  6805. </summary>
  6806. </member>
  6807. <member name="T:LC.Google.Protobuf.UnknownField">
  6808. <summary>
  6809. Represents a single field in an UnknownFieldSet.
  6810. An UnknownField consists of four lists of values. The lists correspond
  6811. to the four "wire types" used in the protocol buffer binary format.
  6812. Normally, only one of the four lists will contain any values, since it
  6813. is impossible to define a valid message type that declares two different
  6814. types for the same field number. However, the code is designed to allow
  6815. for the case where the same unknown field number is encountered using
  6816. multiple different wire types.
  6817. </summary>
  6818. </member>
  6819. <member name="M:LC.Google.Protobuf.UnknownField.#ctor">
  6820. <summary>
  6821. Creates a new UnknownField.
  6822. </summary>
  6823. </member>
  6824. <member name="M:LC.Google.Protobuf.UnknownField.Equals(System.Object)">
  6825. <summary>
  6826. Checks if two unknown field are equal.
  6827. </summary>
  6828. </member>
  6829. <member name="M:LC.Google.Protobuf.UnknownField.GetHashCode">
  6830. <summary>
  6831. Get the hash code of the unknown field.
  6832. </summary>
  6833. </member>
  6834. <member name="M:LC.Google.Protobuf.UnknownField.WriteTo(System.Int32,LC.Google.Protobuf.CodedOutputStream)">
  6835. <summary>
  6836. Serializes the field, including the field number, and writes it to
  6837. <paramref name="output"/>
  6838. </summary>
  6839. <param name="fieldNumber">The unknown field number.</param>
  6840. <param name="output">The CodedOutputStream to write to.</param>
  6841. </member>
  6842. <member name="M:LC.Google.Protobuf.UnknownField.GetSerializedSize(System.Int32)">
  6843. <summary>
  6844. Computes the number of bytes required to encode this field, including field
  6845. number.
  6846. </summary>
  6847. </member>
  6848. <member name="M:LC.Google.Protobuf.UnknownField.MergeFrom(LC.Google.Protobuf.UnknownField)">
  6849. <summary>
  6850. Merge the values in <paramref name="other" /> into this field. For each list
  6851. of values, <paramref name="other"/>'s values are append to the ones in this
  6852. field.
  6853. </summary>
  6854. </member>
  6855. <member name="M:LC.Google.Protobuf.UnknownField.AddAll``1(System.Collections.Generic.List{``0},System.Collections.Generic.IList{``0})">
  6856. <summary>
  6857. Returns a new list containing all of the given specified values from
  6858. both the <paramref name="current"/> and <paramref name="extras"/> lists.
  6859. If <paramref name="current" /> is null and <paramref name="extras"/> is empty,
  6860. null is returned. Otherwise, either a new list is created (if <paramref name="current" />
  6861. is null) or the elements of <paramref name="extras"/> are added to <paramref name="current" />.
  6862. </summary>
  6863. </member>
  6864. <member name="M:LC.Google.Protobuf.UnknownField.AddVarint(System.UInt64)">
  6865. <summary>
  6866. Adds a varint value.
  6867. </summary>
  6868. </member>
  6869. <member name="M:LC.Google.Protobuf.UnknownField.AddFixed32(System.UInt32)">
  6870. <summary>
  6871. Adds a fixed32 value.
  6872. </summary>
  6873. </member>
  6874. <member name="M:LC.Google.Protobuf.UnknownField.AddFixed64(System.UInt64)">
  6875. <summary>
  6876. Adds a fixed64 value.
  6877. </summary>
  6878. </member>
  6879. <member name="M:LC.Google.Protobuf.UnknownField.AddLengthDelimited(LC.Google.Protobuf.ByteString)">
  6880. <summary>
  6881. Adds a length-delimited value.
  6882. </summary>
  6883. </member>
  6884. <member name="M:LC.Google.Protobuf.UnknownField.Add``1(System.Collections.Generic.List{``0},``0)">
  6885. <summary>
  6886. Adds <paramref name="value"/> to the <paramref name="list"/>, creating
  6887. a new list if <paramref name="list"/> is null. The list is returned - either
  6888. the original reference or the new list.
  6889. </summary>
  6890. </member>
  6891. <member name="T:LC.Google.Protobuf.UnknownFieldSet">
  6892. <summary>
  6893. Used to keep track of fields which were seen when parsing a protocol message
  6894. but whose field numbers or types are unrecognized. This most frequently
  6895. occurs when new fields are added to a message type and then messages containing
  6896. those fields are read by old software that was built before the new types were
  6897. added.
  6898. Most users will never need to use this class directly.
  6899. </summary>
  6900. </member>
  6901. <member name="M:LC.Google.Protobuf.UnknownFieldSet.#ctor">
  6902. <summary>
  6903. Creates a new UnknownFieldSet.
  6904. </summary>
  6905. </member>
  6906. <member name="M:LC.Google.Protobuf.UnknownFieldSet.HasField(System.Int32)">
  6907. <summary>
  6908. Checks whether or not the given field number is present in the set.
  6909. </summary>
  6910. </member>
  6911. <member name="M:LC.Google.Protobuf.UnknownFieldSet.WriteTo(LC.Google.Protobuf.CodedOutputStream)">
  6912. <summary>
  6913. Serializes the set and writes it to <paramref name="output"/>.
  6914. </summary>
  6915. </member>
  6916. <member name="M:LC.Google.Protobuf.UnknownFieldSet.CalculateSize">
  6917. <summary>
  6918. Gets the number of bytes required to encode this set.
  6919. </summary>
  6920. </member>
  6921. <member name="M:LC.Google.Protobuf.UnknownFieldSet.Equals(System.Object)">
  6922. <summary>
  6923. Checks if two unknown field sets are equal.
  6924. </summary>
  6925. </member>
  6926. <member name="M:LC.Google.Protobuf.UnknownFieldSet.GetHashCode">
  6927. <summary>
  6928. Gets the unknown field set's hash code.
  6929. </summary>
  6930. </member>
  6931. <member name="M:LC.Google.Protobuf.UnknownFieldSet.AddOrReplaceField(System.Int32,LC.Google.Protobuf.UnknownField)">
  6932. <summary>
  6933. Adds a field to the set. If a field with the same number already exists, it
  6934. is replaced.
  6935. </summary>
  6936. </member>
  6937. <member name="M:LC.Google.Protobuf.UnknownFieldSet.MergeFieldFrom(LC.Google.Protobuf.CodedInputStream)">
  6938. <summary>
  6939. Parse a single field from <paramref name="input"/> and merge it
  6940. into this set.
  6941. </summary>
  6942. <param name="input">The coded input stream containing the field</param>
  6943. <returns>false if the tag is an "end group" tag, true otherwise</returns>
  6944. </member>
  6945. <member name="M:LC.Google.Protobuf.UnknownFieldSet.MergeFieldFrom(LC.Google.Protobuf.UnknownFieldSet,LC.Google.Protobuf.CodedInputStream)">
  6946. <summary>
  6947. Create a new UnknownFieldSet if unknownFields is null.
  6948. Parse a single field from <paramref name="input"/> and merge it
  6949. into unknownFields. If <paramref name="input"/> is configured to discard unknown fields,
  6950. <paramref name="unknownFields"/> will be returned as-is and the field will be skipped.
  6951. </summary>
  6952. <param name="unknownFields">The UnknownFieldSet which need to be merged</param>
  6953. <param name="input">The coded input stream containing the field</param>
  6954. <returns>The merged UnknownFieldSet</returns>
  6955. </member>
  6956. <member name="M:LC.Google.Protobuf.UnknownFieldSet.MergeFrom(LC.Google.Protobuf.UnknownFieldSet)">
  6957. <summary>
  6958. Merges the fields from <paramref name="other"/> into this set.
  6959. If a field number exists in both sets, the values in <paramref name="other"/>
  6960. will be appended to the values in this set.
  6961. </summary>
  6962. </member>
  6963. <member name="M:LC.Google.Protobuf.UnknownFieldSet.MergeFrom(LC.Google.Protobuf.UnknownFieldSet,LC.Google.Protobuf.UnknownFieldSet)">
  6964. <summary>
  6965. Created a new UnknownFieldSet to <paramref name="unknownFields"/> if
  6966. needed and merges the fields from <paramref name="other"/> into the first set.
  6967. If a field number exists in both sets, the values in <paramref name="other"/>
  6968. will be appended to the values in this set.
  6969. </summary>
  6970. </member>
  6971. <member name="M:LC.Google.Protobuf.UnknownFieldSet.MergeField(System.Int32,LC.Google.Protobuf.UnknownField)">
  6972. <summary>
  6973. Adds a field to the unknown field set. If a field with the same
  6974. number already exists, the two are merged.
  6975. </summary>
  6976. </member>
  6977. <member name="M:LC.Google.Protobuf.UnknownFieldSet.Clone(LC.Google.Protobuf.UnknownFieldSet)">
  6978. <summary>
  6979. Clone an unknown field set from <paramref name="other"/>.
  6980. </summary>
  6981. </member>
  6982. <member name="T:LC.Google.Protobuf.WellKnownTypes.AnyReflection">
  6983. <summary>Holder for reflection information generated from google/protobuf/any.proto</summary>
  6984. </member>
  6985. <member name="P:LC.Google.Protobuf.WellKnownTypes.AnyReflection.Descriptor">
  6986. <summary>File descriptor for google/protobuf/any.proto</summary>
  6987. </member>
  6988. <member name="T:LC.Google.Protobuf.WellKnownTypes.Any">
  6989. <summary>
  6990. `Any` contains an arbitrary serialized protocol buffer message along with a
  6991. URL that describes the type of the serialized message.
  6992. Protobuf library provides support to pack/unpack Any values in the form
  6993. of utility functions or additional generated methods of the Any type.
  6994. Example 1: Pack and unpack a message in C++.
  6995. Foo foo = ...;
  6996. Any any;
  6997. any.PackFrom(foo);
  6998. ...
  6999. if (any.UnpackTo(&amp;foo)) {
  7000. ...
  7001. }
  7002. Example 2: Pack and unpack a message in Java.
  7003. Foo foo = ...;
  7004. Any any = Any.pack(foo);
  7005. ...
  7006. if (any.is(Foo.class)) {
  7007. foo = any.unpack(Foo.class);
  7008. }
  7009. Example 3: Pack and unpack a message in Python.
  7010. foo = Foo(...)
  7011. any = Any()
  7012. any.Pack(foo)
  7013. ...
  7014. if any.Is(Foo.DESCRIPTOR):
  7015. any.Unpack(foo)
  7016. ...
  7017. Example 4: Pack and unpack a message in Go
  7018. foo := &amp;pb.Foo{...}
  7019. any, err := ptypes.MarshalAny(foo)
  7020. ...
  7021. foo := &amp;pb.Foo{}
  7022. if err := ptypes.UnmarshalAny(any, foo); err != nil {
  7023. ...
  7024. }
  7025. The pack methods provided by protobuf library will by default use
  7026. 'type.googleapis.com/full.type.name' as the type URL and the unpack
  7027. methods only use the fully qualified type name after the last '/'
  7028. in the type URL, for example "foo.bar.com/x/y.z" will yield type
  7029. name "y.z".
  7030. JSON
  7031. ====
  7032. The JSON representation of an `Any` value uses the regular
  7033. representation of the deserialized, embedded message, with an
  7034. additional field `@type` which contains the type URL. Example:
  7035. package google.profile;
  7036. message Person {
  7037. string first_name = 1;
  7038. string last_name = 2;
  7039. }
  7040. {
  7041. "@type": "type.googleapis.com/google.profile.Person",
  7042. "firstName": &lt;string>,
  7043. "lastName": &lt;string>
  7044. }
  7045. If the embedded message type is well-known and has a custom JSON
  7046. representation, that representation will be embedded adding a field
  7047. `value` which holds the custom JSON in addition to the `@type`
  7048. field. Example (for message [google.protobuf.Duration][]):
  7049. {
  7050. "@type": "type.googleapis.com/google.protobuf.Duration",
  7051. "value": "1.212s"
  7052. }
  7053. </summary>
  7054. </member>
  7055. <member name="F:LC.Google.Protobuf.WellKnownTypes.Any.TypeUrlFieldNumber">
  7056. <summary>Field number for the "type_url" field.</summary>
  7057. </member>
  7058. <member name="P:LC.Google.Protobuf.WellKnownTypes.Any.TypeUrl">
  7059. <summary>
  7060. A URL/resource name that uniquely identifies the type of the serialized
  7061. protocol buffer message. This string must contain at least
  7062. one "/" character. The last segment of the URL's path must represent
  7063. the fully qualified name of the type (as in
  7064. `path/google.protobuf.Duration`). The name should be in a canonical form
  7065. (e.g., leading "." is not accepted).
  7066. In practice, teams usually precompile into the binary all types that they
  7067. expect it to use in the context of Any. However, for URLs which use the
  7068. scheme `http`, `https`, or no scheme, one can optionally set up a type
  7069. server that maps type URLs to message definitions as follows:
  7070. * If no scheme is provided, `https` is assumed.
  7071. * An HTTP GET on the URL must yield a [google.protobuf.Type][]
  7072. value in binary format, or produce an error.
  7073. * Applications are allowed to cache lookup results based on the
  7074. URL, or have them precompiled into a binary to avoid any
  7075. lookup. Therefore, binary compatibility needs to be preserved
  7076. on changes to types. (Use versioned type names to manage
  7077. breaking changes.)
  7078. Note: this functionality is not currently available in the official
  7079. protobuf release, and it is not used for type URLs beginning with
  7080. type.googleapis.com.
  7081. Schemes other than `http`, `https` (or the empty scheme) might be
  7082. used with implementation specific semantics.
  7083. </summary>
  7084. </member>
  7085. <member name="F:LC.Google.Protobuf.WellKnownTypes.Any.ValueFieldNumber">
  7086. <summary>Field number for the "value" field.</summary>
  7087. </member>
  7088. <member name="P:LC.Google.Protobuf.WellKnownTypes.Any.Value">
  7089. <summary>
  7090. Must be a valid serialized protocol buffer of the above specified type.
  7091. </summary>
  7092. </member>
  7093. <member name="M:LC.Google.Protobuf.WellKnownTypes.Any.GetTypeName(System.String)">
  7094. <summary>
  7095. Retrieves the type name for a type URL, matching the <see cref="P:LC.Google.Protobuf.Reflection.DescriptorBase.FullName"/>
  7096. of the packed message type.
  7097. </summary>
  7098. <remarks>
  7099. <para>
  7100. This is always just the last part of the URL, after the final slash. No validation of
  7101. anything before the trailing slash is performed. If the type URL does not include a slash,
  7102. an empty string is returned rather than an exception being thrown; this won't match any types,
  7103. and the calling code is probably in a better position to give a meaningful error.
  7104. </para>
  7105. <para>
  7106. There is no handling of fragments or queries at the moment.
  7107. </para>
  7108. </remarks>
  7109. <param name="typeUrl">The URL to extract the type name from</param>
  7110. <returns>The type name</returns>
  7111. </member>
  7112. <member name="M:LC.Google.Protobuf.WellKnownTypes.Any.Is(LC.Google.Protobuf.Reflection.MessageDescriptor)">
  7113. <summary>
  7114. Returns a bool indictating whether this Any message is of the target message type
  7115. </summary>
  7116. <param name="descriptor">The descriptor of the message type</param>
  7117. <returns><c>true</c> if the type name matches the descriptor's full name or <c>false</c> otherwise</returns>
  7118. </member>
  7119. <member name="M:LC.Google.Protobuf.WellKnownTypes.Any.Unpack``1">
  7120. <summary>
  7121. Unpacks the content of this Any message into the target message type,
  7122. which must match the type URL within this Any message.
  7123. </summary>
  7124. <typeparam name="T">The type of message to unpack the content into.</typeparam>
  7125. <returns>The unpacked message.</returns>
  7126. <exception cref="T:LC.Google.Protobuf.InvalidProtocolBufferException">The target message type doesn't match the type URL in this message</exception>
  7127. </member>
  7128. <member name="M:LC.Google.Protobuf.WellKnownTypes.Any.TryUnpack``1(``0@)">
  7129. <summary>
  7130. Attempts to unpack the content of this Any message into the target message type,
  7131. if it matches the type URL within this Any message.
  7132. </summary>
  7133. <typeparam name="T">The type of message to attempt to unpack the content into.</typeparam>
  7134. <returns><c>true</c> if the message was successfully unpacked; <c>false</c> if the type name didn't match</returns>
  7135. </member>
  7136. <member name="M:LC.Google.Protobuf.WellKnownTypes.Any.Pack(LC.Google.Protobuf.IMessage)">
  7137. <summary>
  7138. Packs the specified message into an Any message using a type URL prefix of "type.googleapis.com".
  7139. </summary>
  7140. <param name="message">The message to pack.</param>
  7141. <returns>An Any message with the content and type URL of <paramref name="message"/>.</returns>
  7142. </member>
  7143. <member name="M:LC.Google.Protobuf.WellKnownTypes.Any.Pack(LC.Google.Protobuf.IMessage,System.String)">
  7144. <summary>
  7145. Packs the specified message into an Any message using the specified type URL prefix.
  7146. </summary>
  7147. <param name="message">The message to pack.</param>
  7148. <param name="typeUrlPrefix">The prefix for the type URL.</param>
  7149. <returns>An Any message with the content and type URL of <paramref name="message"/>.</returns>
  7150. </member>
  7151. <member name="T:LC.Google.Protobuf.WellKnownTypes.ApiReflection">
  7152. <summary>Holder for reflection information generated from google/protobuf/api.proto</summary>
  7153. </member>
  7154. <member name="P:LC.Google.Protobuf.WellKnownTypes.ApiReflection.Descriptor">
  7155. <summary>File descriptor for google/protobuf/api.proto</summary>
  7156. </member>
  7157. <member name="T:LC.Google.Protobuf.WellKnownTypes.Api">
  7158. <summary>
  7159. Api is a light-weight descriptor for an API Interface.
  7160. Interfaces are also described as "protocol buffer services" in some contexts,
  7161. such as by the "service" keyword in a .proto file, but they are different
  7162. from API Services, which represent a concrete implementation of an interface
  7163. as opposed to simply a description of methods and bindings. They are also
  7164. sometimes simply referred to as "APIs" in other contexts, such as the name of
  7165. this message itself. See https://cloud.google.com/apis/design/glossary for
  7166. detailed terminology.
  7167. </summary>
  7168. </member>
  7169. <member name="F:LC.Google.Protobuf.WellKnownTypes.Api.NameFieldNumber">
  7170. <summary>Field number for the "name" field.</summary>
  7171. </member>
  7172. <member name="P:LC.Google.Protobuf.WellKnownTypes.Api.Name">
  7173. <summary>
  7174. The fully qualified name of this interface, including package name
  7175. followed by the interface's simple name.
  7176. </summary>
  7177. </member>
  7178. <member name="F:LC.Google.Protobuf.WellKnownTypes.Api.MethodsFieldNumber">
  7179. <summary>Field number for the "methods" field.</summary>
  7180. </member>
  7181. <member name="P:LC.Google.Protobuf.WellKnownTypes.Api.Methods">
  7182. <summary>
  7183. The methods of this interface, in unspecified order.
  7184. </summary>
  7185. </member>
  7186. <member name="F:LC.Google.Protobuf.WellKnownTypes.Api.OptionsFieldNumber">
  7187. <summary>Field number for the "options" field.</summary>
  7188. </member>
  7189. <member name="P:LC.Google.Protobuf.WellKnownTypes.Api.Options">
  7190. <summary>
  7191. Any metadata attached to the interface.
  7192. </summary>
  7193. </member>
  7194. <member name="F:LC.Google.Protobuf.WellKnownTypes.Api.VersionFieldNumber">
  7195. <summary>Field number for the "version" field.</summary>
  7196. </member>
  7197. <member name="P:LC.Google.Protobuf.WellKnownTypes.Api.Version">
  7198. <summary>
  7199. A version string for this interface. If specified, must have the form
  7200. `major-version.minor-version`, as in `1.10`. If the minor version is
  7201. omitted, it defaults to zero. If the entire version field is empty, the
  7202. major version is derived from the package name, as outlined below. If the
  7203. field is not empty, the version in the package name will be verified to be
  7204. consistent with what is provided here.
  7205. The versioning schema uses [semantic
  7206. versioning](http://semver.org) where the major version number
  7207. indicates a breaking change and the minor version an additive,
  7208. non-breaking change. Both version numbers are signals to users
  7209. what to expect from different versions, and should be carefully
  7210. chosen based on the product plan.
  7211. The major version is also reflected in the package name of the
  7212. interface, which must end in `v&lt;major-version>`, as in
  7213. `google.feature.v1`. For major versions 0 and 1, the suffix can
  7214. be omitted. Zero major versions must only be used for
  7215. experimental, non-GA interfaces.
  7216. </summary>
  7217. </member>
  7218. <member name="F:LC.Google.Protobuf.WellKnownTypes.Api.SourceContextFieldNumber">
  7219. <summary>Field number for the "source_context" field.</summary>
  7220. </member>
  7221. <member name="P:LC.Google.Protobuf.WellKnownTypes.Api.SourceContext">
  7222. <summary>
  7223. Source context for the protocol buffer service represented by this
  7224. message.
  7225. </summary>
  7226. </member>
  7227. <member name="F:LC.Google.Protobuf.WellKnownTypes.Api.MixinsFieldNumber">
  7228. <summary>Field number for the "mixins" field.</summary>
  7229. </member>
  7230. <member name="P:LC.Google.Protobuf.WellKnownTypes.Api.Mixins">
  7231. <summary>
  7232. Included interfaces. See [Mixin][].
  7233. </summary>
  7234. </member>
  7235. <member name="F:LC.Google.Protobuf.WellKnownTypes.Api.SyntaxFieldNumber">
  7236. <summary>Field number for the "syntax" field.</summary>
  7237. </member>
  7238. <member name="P:LC.Google.Protobuf.WellKnownTypes.Api.Syntax">
  7239. <summary>
  7240. The source syntax of the service.
  7241. </summary>
  7242. </member>
  7243. <member name="T:LC.Google.Protobuf.WellKnownTypes.Method">
  7244. <summary>
  7245. Method represents a method of an API interface.
  7246. </summary>
  7247. </member>
  7248. <member name="F:LC.Google.Protobuf.WellKnownTypes.Method.NameFieldNumber">
  7249. <summary>Field number for the "name" field.</summary>
  7250. </member>
  7251. <member name="P:LC.Google.Protobuf.WellKnownTypes.Method.Name">
  7252. <summary>
  7253. The simple name of this method.
  7254. </summary>
  7255. </member>
  7256. <member name="F:LC.Google.Protobuf.WellKnownTypes.Method.RequestTypeUrlFieldNumber">
  7257. <summary>Field number for the "request_type_url" field.</summary>
  7258. </member>
  7259. <member name="P:LC.Google.Protobuf.WellKnownTypes.Method.RequestTypeUrl">
  7260. <summary>
  7261. A URL of the input message type.
  7262. </summary>
  7263. </member>
  7264. <member name="F:LC.Google.Protobuf.WellKnownTypes.Method.RequestStreamingFieldNumber">
  7265. <summary>Field number for the "request_streaming" field.</summary>
  7266. </member>
  7267. <member name="P:LC.Google.Protobuf.WellKnownTypes.Method.RequestStreaming">
  7268. <summary>
  7269. If true, the request is streamed.
  7270. </summary>
  7271. </member>
  7272. <member name="F:LC.Google.Protobuf.WellKnownTypes.Method.ResponseTypeUrlFieldNumber">
  7273. <summary>Field number for the "response_type_url" field.</summary>
  7274. </member>
  7275. <member name="P:LC.Google.Protobuf.WellKnownTypes.Method.ResponseTypeUrl">
  7276. <summary>
  7277. The URL of the output message type.
  7278. </summary>
  7279. </member>
  7280. <member name="F:LC.Google.Protobuf.WellKnownTypes.Method.ResponseStreamingFieldNumber">
  7281. <summary>Field number for the "response_streaming" field.</summary>
  7282. </member>
  7283. <member name="P:LC.Google.Protobuf.WellKnownTypes.Method.ResponseStreaming">
  7284. <summary>
  7285. If true, the response is streamed.
  7286. </summary>
  7287. </member>
  7288. <member name="F:LC.Google.Protobuf.WellKnownTypes.Method.OptionsFieldNumber">
  7289. <summary>Field number for the "options" field.</summary>
  7290. </member>
  7291. <member name="P:LC.Google.Protobuf.WellKnownTypes.Method.Options">
  7292. <summary>
  7293. Any metadata attached to the method.
  7294. </summary>
  7295. </member>
  7296. <member name="F:LC.Google.Protobuf.WellKnownTypes.Method.SyntaxFieldNumber">
  7297. <summary>Field number for the "syntax" field.</summary>
  7298. </member>
  7299. <member name="P:LC.Google.Protobuf.WellKnownTypes.Method.Syntax">
  7300. <summary>
  7301. The source syntax of this method.
  7302. </summary>
  7303. </member>
  7304. <member name="T:LC.Google.Protobuf.WellKnownTypes.Mixin">
  7305. <summary>
  7306. Declares an API Interface to be included in this interface. The including
  7307. interface must redeclare all the methods from the included interface, but
  7308. documentation and options are inherited as follows:
  7309. - If after comment and whitespace stripping, the documentation
  7310. string of the redeclared method is empty, it will be inherited
  7311. from the original method.
  7312. - Each annotation belonging to the service config (http,
  7313. visibility) which is not set in the redeclared method will be
  7314. inherited.
  7315. - If an http annotation is inherited, the path pattern will be
  7316. modified as follows. Any version prefix will be replaced by the
  7317. version of the including interface plus the [root][] path if
  7318. specified.
  7319. Example of a simple mixin:
  7320. package google.acl.v1;
  7321. service AccessControl {
  7322. // Get the underlying ACL object.
  7323. rpc GetAcl(GetAclRequest) returns (Acl) {
  7324. option (google.api.http).get = "/v1/{resource=**}:getAcl";
  7325. }
  7326. }
  7327. package google.storage.v2;
  7328. service Storage {
  7329. rpc GetAcl(GetAclRequest) returns (Acl);
  7330. // Get a data record.
  7331. rpc GetData(GetDataRequest) returns (Data) {
  7332. option (google.api.http).get = "/v2/{resource=**}";
  7333. }
  7334. }
  7335. Example of a mixin configuration:
  7336. apis:
  7337. - name: google.storage.v2.Storage
  7338. mixins:
  7339. - name: google.acl.v1.AccessControl
  7340. The mixin construct implies that all methods in `AccessControl` are
  7341. also declared with same name and request/response types in
  7342. `Storage`. A documentation generator or annotation processor will
  7343. see the effective `Storage.GetAcl` method after inherting
  7344. documentation and annotations as follows:
  7345. service Storage {
  7346. // Get the underlying ACL object.
  7347. rpc GetAcl(GetAclRequest) returns (Acl) {
  7348. option (google.api.http).get = "/v2/{resource=**}:getAcl";
  7349. }
  7350. ...
  7351. }
  7352. Note how the version in the path pattern changed from `v1` to `v2`.
  7353. If the `root` field in the mixin is specified, it should be a
  7354. relative path under which inherited HTTP paths are placed. Example:
  7355. apis:
  7356. - name: google.storage.v2.Storage
  7357. mixins:
  7358. - name: google.acl.v1.AccessControl
  7359. root: acls
  7360. This implies the following inherited HTTP annotation:
  7361. service Storage {
  7362. // Get the underlying ACL object.
  7363. rpc GetAcl(GetAclRequest) returns (Acl) {
  7364. option (google.api.http).get = "/v2/acls/{resource=**}:getAcl";
  7365. }
  7366. ...
  7367. }
  7368. </summary>
  7369. </member>
  7370. <member name="F:LC.Google.Protobuf.WellKnownTypes.Mixin.NameFieldNumber">
  7371. <summary>Field number for the "name" field.</summary>
  7372. </member>
  7373. <member name="P:LC.Google.Protobuf.WellKnownTypes.Mixin.Name">
  7374. <summary>
  7375. The fully qualified name of the interface which is included.
  7376. </summary>
  7377. </member>
  7378. <member name="F:LC.Google.Protobuf.WellKnownTypes.Mixin.RootFieldNumber">
  7379. <summary>Field number for the "root" field.</summary>
  7380. </member>
  7381. <member name="P:LC.Google.Protobuf.WellKnownTypes.Mixin.Root">
  7382. <summary>
  7383. If non-empty specifies a path under which inherited HTTP paths
  7384. are rooted.
  7385. </summary>
  7386. </member>
  7387. <member name="T:LC.Google.Protobuf.WellKnownTypes.DurationReflection">
  7388. <summary>Holder for reflection information generated from google/protobuf/duration.proto</summary>
  7389. </member>
  7390. <member name="P:LC.Google.Protobuf.WellKnownTypes.DurationReflection.Descriptor">
  7391. <summary>File descriptor for google/protobuf/duration.proto</summary>
  7392. </member>
  7393. <member name="T:LC.Google.Protobuf.WellKnownTypes.Duration">
  7394. <summary>
  7395. A Duration represents a signed, fixed-length span of time represented
  7396. as a count of seconds and fractions of seconds at nanosecond
  7397. resolution. It is independent of any calendar and concepts like "day"
  7398. or "month". It is related to Timestamp in that the difference between
  7399. two Timestamp values is a Duration and it can be added or subtracted
  7400. from a Timestamp. Range is approximately +-10,000 years.
  7401. # Examples
  7402. Example 1: Compute Duration from two Timestamps in pseudo code.
  7403. Timestamp start = ...;
  7404. Timestamp end = ...;
  7405. Duration duration = ...;
  7406. duration.seconds = end.seconds - start.seconds;
  7407. duration.nanos = end.nanos - start.nanos;
  7408. if (duration.seconds &lt; 0 &amp;&amp; duration.nanos > 0) {
  7409. duration.seconds += 1;
  7410. duration.nanos -= 1000000000;
  7411. } else if (duration.seconds > 0 &amp;&amp; duration.nanos &lt; 0) {
  7412. duration.seconds -= 1;
  7413. duration.nanos += 1000000000;
  7414. }
  7415. Example 2: Compute Timestamp from Timestamp + Duration in pseudo code.
  7416. Timestamp start = ...;
  7417. Duration duration = ...;
  7418. Timestamp end = ...;
  7419. end.seconds = start.seconds + duration.seconds;
  7420. end.nanos = start.nanos + duration.nanos;
  7421. if (end.nanos &lt; 0) {
  7422. end.seconds -= 1;
  7423. end.nanos += 1000000000;
  7424. } else if (end.nanos >= 1000000000) {
  7425. end.seconds += 1;
  7426. end.nanos -= 1000000000;
  7427. }
  7428. Example 3: Compute Duration from datetime.timedelta in Python.
  7429. td = datetime.timedelta(days=3, minutes=10)
  7430. duration = Duration()
  7431. duration.FromTimedelta(td)
  7432. # JSON Mapping
  7433. In JSON format, the Duration type is encoded as a string rather than an
  7434. object, where the string ends in the suffix "s" (indicating seconds) and
  7435. is preceded by the number of seconds, with nanoseconds expressed as
  7436. fractional seconds. For example, 3 seconds with 0 nanoseconds should be
  7437. encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should
  7438. be expressed in JSON format as "3.000000001s", and 3 seconds and 1
  7439. microsecond should be expressed in JSON format as "3.000001s".
  7440. </summary>
  7441. </member>
  7442. <member name="F:LC.Google.Protobuf.WellKnownTypes.Duration.SecondsFieldNumber">
  7443. <summary>Field number for the "seconds" field.</summary>
  7444. </member>
  7445. <member name="P:LC.Google.Protobuf.WellKnownTypes.Duration.Seconds">
  7446. <summary>
  7447. Signed seconds of the span of time. Must be from -315,576,000,000
  7448. to +315,576,000,000 inclusive. Note: these bounds are computed from:
  7449. 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years
  7450. </summary>
  7451. </member>
  7452. <member name="F:LC.Google.Protobuf.WellKnownTypes.Duration.NanosFieldNumber">
  7453. <summary>Field number for the "nanos" field.</summary>
  7454. </member>
  7455. <member name="P:LC.Google.Protobuf.WellKnownTypes.Duration.Nanos">
  7456. <summary>
  7457. Signed fractions of a second at nanosecond resolution of the span
  7458. of time. Durations less than one second are represented with a 0
  7459. `seconds` field and a positive or negative `nanos` field. For durations
  7460. of one second or more, a non-zero value for the `nanos` field must be
  7461. of the same sign as the `seconds` field. Must be from -999,999,999
  7462. to +999,999,999 inclusive.
  7463. </summary>
  7464. </member>
  7465. <member name="F:LC.Google.Protobuf.WellKnownTypes.Duration.NanosecondsPerSecond">
  7466. <summary>
  7467. The number of nanoseconds in a second.
  7468. </summary>
  7469. </member>
  7470. <member name="F:LC.Google.Protobuf.WellKnownTypes.Duration.NanosecondsPerTick">
  7471. <summary>
  7472. The number of nanoseconds in a BCL tick (as used by <see cref="T:System.TimeSpan"/> and <see cref="T:System.DateTime"/>).
  7473. </summary>
  7474. </member>
  7475. <member name="F:LC.Google.Protobuf.WellKnownTypes.Duration.MaxSeconds">
  7476. <summary>
  7477. The maximum permitted number of seconds.
  7478. </summary>
  7479. </member>
  7480. <member name="F:LC.Google.Protobuf.WellKnownTypes.Duration.MinSeconds">
  7481. <summary>
  7482. The minimum permitted number of seconds.
  7483. </summary>
  7484. </member>
  7485. <member name="M:LC.Google.Protobuf.WellKnownTypes.Duration.ToTimeSpan">
  7486. <summary>
  7487. Converts this <see cref="T:LC.Google.Protobuf.WellKnownTypes.Duration"/> to a <see cref="T:System.TimeSpan"/>.
  7488. </summary>
  7489. <remarks>If the duration is not a precise number of ticks, it is truncated towards 0.</remarks>
  7490. <returns>The value of this duration, as a <c>TimeSpan</c>.</returns>
  7491. <exception cref="T:System.InvalidOperationException">This value isn't a valid normalized duration, as
  7492. described in the documentation.</exception>
  7493. </member>
  7494. <member name="M:LC.Google.Protobuf.WellKnownTypes.Duration.FromTimeSpan(System.TimeSpan)">
  7495. <summary>
  7496. Converts the given <see cref="T:System.TimeSpan"/> to a <see cref="T:LC.Google.Protobuf.WellKnownTypes.Duration"/>.
  7497. </summary>
  7498. <param name="timeSpan">The <c>TimeSpan</c> to convert.</param>
  7499. <returns>The value of the given <c>TimeSpan</c>, as a <c>Duration</c>.</returns>
  7500. </member>
  7501. <member name="M:LC.Google.Protobuf.WellKnownTypes.Duration.op_UnaryNegation(LC.Google.Protobuf.WellKnownTypes.Duration)">
  7502. <summary>
  7503. Returns the result of negating the duration. For example, the negation of 5 minutes is -5 minutes.
  7504. </summary>
  7505. <param name="value">The duration to negate. Must not be null.</param>
  7506. <returns>The negated value of this duration.</returns>
  7507. </member>
  7508. <member name="M:LC.Google.Protobuf.WellKnownTypes.Duration.op_Addition(LC.Google.Protobuf.WellKnownTypes.Duration,LC.Google.Protobuf.WellKnownTypes.Duration)">
  7509. <summary>
  7510. Adds the two specified <see cref="T:LC.Google.Protobuf.WellKnownTypes.Duration"/> values together.
  7511. </summary>
  7512. <param name="lhs">The first value to add. Must not be null.</param>
  7513. <param name="rhs">The second value to add. Must not be null.</param>
  7514. <returns></returns>
  7515. </member>
  7516. <member name="M:LC.Google.Protobuf.WellKnownTypes.Duration.op_Subtraction(LC.Google.Protobuf.WellKnownTypes.Duration,LC.Google.Protobuf.WellKnownTypes.Duration)">
  7517. <summary>
  7518. Subtracts one <see cref="T:LC.Google.Protobuf.WellKnownTypes.Duration"/> from another.
  7519. </summary>
  7520. <param name="lhs">The duration to subtract from. Must not be null.</param>
  7521. <param name="rhs">The duration to subtract. Must not be null.</param>
  7522. <returns>The difference between the two specified durations.</returns>
  7523. </member>
  7524. <member name="M:LC.Google.Protobuf.WellKnownTypes.Duration.Normalize(System.Int64,System.Int32)">
  7525. <summary>
  7526. Creates a duration with the normalized values from the given number of seconds and
  7527. nanoseconds, conforming with the description in the proto file.
  7528. </summary>
  7529. </member>
  7530. <member name="M:LC.Google.Protobuf.WellKnownTypes.Duration.ToJson(System.Int64,System.Int32,System.Boolean)">
  7531. <summary>
  7532. Converts a duration specified in seconds/nanoseconds to a string.
  7533. </summary>
  7534. <remarks>
  7535. If the value is a normalized duration in the range described in <c>duration.proto</c>,
  7536. <paramref name="diagnosticOnly"/> is ignored. Otherwise, if the parameter is <c>true</c>,
  7537. a JSON object with a warning is returned; if it is <c>false</c>, an <see cref="T:System.InvalidOperationException"/> is thrown.
  7538. </remarks>
  7539. <param name="seconds">Seconds portion of the duration.</param>
  7540. <param name="nanoseconds">Nanoseconds portion of the duration.</param>
  7541. <param name="diagnosticOnly">Determines the handling of non-normalized values</param>
  7542. <exception cref="T:System.InvalidOperationException">The represented duration is invalid, and <paramref name="diagnosticOnly"/> is <c>false</c>.</exception>
  7543. </member>
  7544. <member name="M:LC.Google.Protobuf.WellKnownTypes.Duration.ToDiagnosticString">
  7545. <summary>
  7546. Returns a string representation of this <see cref="T:LC.Google.Protobuf.WellKnownTypes.Duration"/> for diagnostic purposes.
  7547. </summary>
  7548. <remarks>
  7549. Normally the returned value will be a JSON string value (including leading and trailing quotes) but
  7550. when the value is non-normalized or out of range, a JSON object representation will be returned
  7551. instead, including a warning. This is to avoid exceptions being thrown when trying to
  7552. diagnose problems - the regular JSON formatter will still throw an exception for non-normalized
  7553. values.
  7554. </remarks>
  7555. <returns>A string representation of this value.</returns>
  7556. </member>
  7557. <member name="M:LC.Google.Protobuf.WellKnownTypes.Duration.AppendNanoseconds(System.Text.StringBuilder,System.Int32)">
  7558. <summary>
  7559. Appends a number of nanoseconds to a StringBuilder. Either 0 digits are added (in which
  7560. case no "." is appended), or 3 6 or 9 digits. This is internal for use in Timestamp as well
  7561. as Duration.
  7562. </summary>
  7563. </member>
  7564. <member name="T:LC.Google.Protobuf.WellKnownTypes.EmptyReflection">
  7565. <summary>Holder for reflection information generated from google/protobuf/empty.proto</summary>
  7566. </member>
  7567. <member name="P:LC.Google.Protobuf.WellKnownTypes.EmptyReflection.Descriptor">
  7568. <summary>File descriptor for google/protobuf/empty.proto</summary>
  7569. </member>
  7570. <member name="T:LC.Google.Protobuf.WellKnownTypes.Empty">
  7571. <summary>
  7572. A generic empty message that you can re-use to avoid defining duplicated
  7573. empty messages in your APIs. A typical example is to use it as the request
  7574. or the response type of an API method. For instance:
  7575. service Foo {
  7576. rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
  7577. }
  7578. The JSON representation for `Empty` is empty JSON object `{}`.
  7579. </summary>
  7580. </member>
  7581. <member name="T:LC.Google.Protobuf.WellKnownTypes.FieldMaskReflection">
  7582. <summary>Holder for reflection information generated from google/protobuf/field_mask.proto</summary>
  7583. </member>
  7584. <member name="P:LC.Google.Protobuf.WellKnownTypes.FieldMaskReflection.Descriptor">
  7585. <summary>File descriptor for google/protobuf/field_mask.proto</summary>
  7586. </member>
  7587. <member name="T:LC.Google.Protobuf.WellKnownTypes.FieldMask">
  7588. <summary>
  7589. `FieldMask` represents a set of symbolic field paths, for example:
  7590. paths: "f.a"
  7591. paths: "f.b.d"
  7592. Here `f` represents a field in some root message, `a` and `b`
  7593. fields in the message found in `f`, and `d` a field found in the
  7594. message in `f.b`.
  7595. Field masks are used to specify a subset of fields that should be
  7596. returned by a get operation or modified by an update operation.
  7597. Field masks also have a custom JSON encoding (see below).
  7598. # Field Masks in Projections
  7599. When used in the context of a projection, a response message or
  7600. sub-message is filtered by the API to only contain those fields as
  7601. specified in the mask. For example, if the mask in the previous
  7602. example is applied to a response message as follows:
  7603. f {
  7604. a : 22
  7605. b {
  7606. d : 1
  7607. x : 2
  7608. }
  7609. y : 13
  7610. }
  7611. z: 8
  7612. The result will not contain specific values for fields x,y and z
  7613. (their value will be set to the default, and omitted in proto text
  7614. output):
  7615. f {
  7616. a : 22
  7617. b {
  7618. d : 1
  7619. }
  7620. }
  7621. A repeated field is not allowed except at the last position of a
  7622. paths string.
  7623. If a FieldMask object is not present in a get operation, the
  7624. operation applies to all fields (as if a FieldMask of all fields
  7625. had been specified).
  7626. Note that a field mask does not necessarily apply to the
  7627. top-level response message. In case of a REST get operation, the
  7628. field mask applies directly to the response, but in case of a REST
  7629. list operation, the mask instead applies to each individual message
  7630. in the returned resource list. In case of a REST custom method,
  7631. other definitions may be used. Where the mask applies will be
  7632. clearly documented together with its declaration in the API. In
  7633. any case, the effect on the returned resource/resources is required
  7634. behavior for APIs.
  7635. # Field Masks in Update Operations
  7636. A field mask in update operations specifies which fields of the
  7637. targeted resource are going to be updated. The API is required
  7638. to only change the values of the fields as specified in the mask
  7639. and leave the others untouched. If a resource is passed in to
  7640. describe the updated values, the API ignores the values of all
  7641. fields not covered by the mask.
  7642. If a repeated field is specified for an update operation, new values will
  7643. be appended to the existing repeated field in the target resource. Note that
  7644. a repeated field is only allowed in the last position of a `paths` string.
  7645. If a sub-message is specified in the last position of the field mask for an
  7646. update operation, then new value will be merged into the existing sub-message
  7647. in the target resource.
  7648. For example, given the target message:
  7649. f {
  7650. b {
  7651. d: 1
  7652. x: 2
  7653. }
  7654. c: [1]
  7655. }
  7656. And an update message:
  7657. f {
  7658. b {
  7659. d: 10
  7660. }
  7661. c: [2]
  7662. }
  7663. then if the field mask is:
  7664. paths: ["f.b", "f.c"]
  7665. then the result will be:
  7666. f {
  7667. b {
  7668. d: 10
  7669. x: 2
  7670. }
  7671. c: [1, 2]
  7672. }
  7673. An implementation may provide options to override this default behavior for
  7674. repeated and message fields.
  7675. In order to reset a field's value to the default, the field must
  7676. be in the mask and set to the default value in the provided resource.
  7677. Hence, in order to reset all fields of a resource, provide a default
  7678. instance of the resource and set all fields in the mask, or do
  7679. not provide a mask as described below.
  7680. If a field mask is not present on update, the operation applies to
  7681. all fields (as if a field mask of all fields has been specified).
  7682. Note that in the presence of schema evolution, this may mean that
  7683. fields the client does not know and has therefore not filled into
  7684. the request will be reset to their default. If this is unwanted
  7685. behavior, a specific service may require a client to always specify
  7686. a field mask, producing an error if not.
  7687. As with get operations, the location of the resource which
  7688. describes the updated values in the request message depends on the
  7689. operation kind. In any case, the effect of the field mask is
  7690. required to be honored by the API.
  7691. ## Considerations for HTTP REST
  7692. The HTTP kind of an update operation which uses a field mask must
  7693. be set to PATCH instead of PUT in order to satisfy HTTP semantics
  7694. (PUT must only be used for full updates).
  7695. # JSON Encoding of Field Masks
  7696. In JSON, a field mask is encoded as a single string where paths are
  7697. separated by a comma. Fields name in each path are converted
  7698. to/from lower-camel naming conventions.
  7699. As an example, consider the following message declarations:
  7700. message Profile {
  7701. User user = 1;
  7702. Photo photo = 2;
  7703. }
  7704. message User {
  7705. string display_name = 1;
  7706. string address = 2;
  7707. }
  7708. In proto a field mask for `Profile` may look as such:
  7709. mask {
  7710. paths: "user.display_name"
  7711. paths: "photo"
  7712. }
  7713. In JSON, the same mask is represented as below:
  7714. {
  7715. mask: "user.displayName,photo"
  7716. }
  7717. # Field Masks and Oneof Fields
  7718. Field masks treat fields in oneofs just as regular fields. Consider the
  7719. following message:
  7720. message SampleMessage {
  7721. oneof test_oneof {
  7722. string name = 4;
  7723. SubMessage sub_message = 9;
  7724. }
  7725. }
  7726. The field mask can be:
  7727. mask {
  7728. paths: "name"
  7729. }
  7730. Or:
  7731. mask {
  7732. paths: "sub_message"
  7733. }
  7734. Note that oneof type names ("test_oneof" in this case) cannot be used in
  7735. paths.
  7736. ## Field Mask Verification
  7737. The implementation of any API method which has a FieldMask type field in the
  7738. request should verify the included field paths, and return an
  7739. `INVALID_ARGUMENT` error if any path is unmappable.
  7740. </summary>
  7741. </member>
  7742. <member name="F:LC.Google.Protobuf.WellKnownTypes.FieldMask.PathsFieldNumber">
  7743. <summary>Field number for the "paths" field.</summary>
  7744. </member>
  7745. <member name="P:LC.Google.Protobuf.WellKnownTypes.FieldMask.Paths">
  7746. <summary>
  7747. The set of field mask paths.
  7748. </summary>
  7749. </member>
  7750. <member name="M:LC.Google.Protobuf.WellKnownTypes.FieldMask.ToJson(System.Collections.Generic.IList{System.String},System.Boolean)">
  7751. <summary>
  7752. Converts a field mask specified by paths to a string.
  7753. </summary>
  7754. <remarks>
  7755. If the value is a normalized duration in the range described in <c>field_mask.proto</c>,
  7756. <paramref name="diagnosticOnly"/> is ignored. Otherwise, if the parameter is <c>true</c>,
  7757. a JSON object with a warning is returned; if it is <c>false</c>, an <see cref="T:System.InvalidOperationException"/> is thrown.
  7758. </remarks>
  7759. <param name="paths">Paths in the field mask</param>
  7760. <param name="diagnosticOnly">Determines the handling of non-normalized values</param>
  7761. <exception cref="T:System.InvalidOperationException">The represented field mask is invalid, and <paramref name="diagnosticOnly"/> is <c>false</c>.</exception>
  7762. </member>
  7763. <member name="M:LC.Google.Protobuf.WellKnownTypes.FieldMask.ToDiagnosticString">
  7764. <summary>
  7765. Returns a string representation of this <see cref="T:LC.Google.Protobuf.WellKnownTypes.FieldMask"/> for diagnostic purposes.
  7766. </summary>
  7767. <remarks>
  7768. Normally the returned value will be a JSON string value (including leading and trailing quotes) but
  7769. when the value is non-normalized or out of range, a JSON object representation will be returned
  7770. instead, including a warning. This is to avoid exceptions being thrown when trying to
  7771. diagnose problems - the regular JSON formatter will still throw an exception for non-normalized
  7772. values.
  7773. </remarks>
  7774. <returns>A string representation of this value.</returns>
  7775. </member>
  7776. <member name="M:LC.Google.Protobuf.WellKnownTypes.FieldMask.FromString(System.String)">
  7777. <summary>
  7778. Parses from a string to a FieldMask.
  7779. </summary>
  7780. </member>
  7781. <member name="M:LC.Google.Protobuf.WellKnownTypes.FieldMask.FromString``1(System.String)">
  7782. <summary>
  7783. Parses from a string to a FieldMask and validates all field paths.
  7784. </summary>
  7785. <typeparam name="T">The type to validate the field paths against.</typeparam>
  7786. </member>
  7787. <member name="M:LC.Google.Protobuf.WellKnownTypes.FieldMask.FromStringEnumerable``1(System.Collections.Generic.IEnumerable{System.String})">
  7788. <summary>
  7789. Constructs a FieldMask for a list of field paths in a certain type.
  7790. </summary>
  7791. <typeparam name="T">The type to validate the field paths against.</typeparam>
  7792. </member>
  7793. <member name="M:LC.Google.Protobuf.WellKnownTypes.FieldMask.FromFieldNumbers``1(System.Int32[])">
  7794. <summary>
  7795. Constructs a FieldMask from the passed field numbers.
  7796. </summary>
  7797. <typeparam name="T">The type to validate the field paths against.</typeparam>
  7798. </member>
  7799. <member name="M:LC.Google.Protobuf.WellKnownTypes.FieldMask.FromFieldNumbers``1(System.Collections.Generic.IEnumerable{System.Int32})">
  7800. <summary>
  7801. Constructs a FieldMask from the passed field numbers.
  7802. </summary>
  7803. <typeparam name="T">The type to validate the field paths against.</typeparam>
  7804. </member>
  7805. <member name="M:LC.Google.Protobuf.WellKnownTypes.FieldMask.IsPathValid(System.String)">
  7806. <summary>
  7807. Checks whether the given path is valid for a field mask.
  7808. </summary>
  7809. <returns>true if the path is valid; false otherwise</returns>
  7810. </member>
  7811. <member name="M:LC.Google.Protobuf.WellKnownTypes.FieldMask.IsValid``1(LC.Google.Protobuf.WellKnownTypes.FieldMask)">
  7812. <summary>
  7813. Checks whether paths in a given fields mask are valid.
  7814. </summary>
  7815. <typeparam name="T">The type to validate the field paths against.</typeparam>
  7816. </member>
  7817. <member name="M:LC.Google.Protobuf.WellKnownTypes.FieldMask.IsValid(LC.Google.Protobuf.Reflection.MessageDescriptor,LC.Google.Protobuf.WellKnownTypes.FieldMask)">
  7818. <summary>
  7819. Checks whether paths in a given fields mask are valid.
  7820. </summary>
  7821. </member>
  7822. <member name="M:LC.Google.Protobuf.WellKnownTypes.FieldMask.IsValid``1(System.String)">
  7823. <summary>
  7824. Checks whether a given field path is valid.
  7825. </summary>
  7826. <typeparam name="T">The type to validate the field paths against.</typeparam>
  7827. </member>
  7828. <member name="M:LC.Google.Protobuf.WellKnownTypes.FieldMask.IsValid(LC.Google.Protobuf.Reflection.MessageDescriptor,System.String)">
  7829. <summary>
  7830. Checks whether paths in a given fields mask are valid.
  7831. </summary>
  7832. </member>
  7833. <member name="M:LC.Google.Protobuf.WellKnownTypes.FieldMask.Normalize">
  7834. <summary>
  7835. Converts this FieldMask to its canonical form. In the canonical form of a
  7836. FieldMask, all field paths are sorted alphabetically and redundant field
  7837. paths are removed.
  7838. </summary>
  7839. </member>
  7840. <member name="M:LC.Google.Protobuf.WellKnownTypes.FieldMask.Union(LC.Google.Protobuf.WellKnownTypes.FieldMask[])">
  7841. <summary>
  7842. Creates a union of two or more FieldMasks.
  7843. </summary>
  7844. </member>
  7845. <member name="M:LC.Google.Protobuf.WellKnownTypes.FieldMask.Intersection(LC.Google.Protobuf.WellKnownTypes.FieldMask)">
  7846. <summary>
  7847. Calculates the intersection of two FieldMasks.
  7848. </summary>
  7849. </member>
  7850. <member name="M:LC.Google.Protobuf.WellKnownTypes.FieldMask.Merge(LC.Google.Protobuf.IMessage,LC.Google.Protobuf.IMessage,LC.Google.Protobuf.WellKnownTypes.FieldMask.MergeOptions)">
  7851. <summary>
  7852. Merges fields specified by this FieldMask from one message to another with the
  7853. specified merge options.
  7854. </summary>
  7855. </member>
  7856. <member name="M:LC.Google.Protobuf.WellKnownTypes.FieldMask.Merge(LC.Google.Protobuf.IMessage,LC.Google.Protobuf.IMessage)">
  7857. <summary>
  7858. Merges fields specified by this FieldMask from one message to another.
  7859. </summary>
  7860. </member>
  7861. <member name="T:LC.Google.Protobuf.WellKnownTypes.FieldMask.MergeOptions">
  7862. <summary>
  7863. Options to customize merging behavior.
  7864. </summary>
  7865. </member>
  7866. <member name="P:LC.Google.Protobuf.WellKnownTypes.FieldMask.MergeOptions.ReplaceMessageFields">
  7867. <summary>
  7868. Whether to replace message fields(i.e., discard existing content in
  7869. destination message fields) when merging.
  7870. Default behavior is to merge the source message field into the
  7871. destination message field.
  7872. </summary>
  7873. </member>
  7874. <member name="P:LC.Google.Protobuf.WellKnownTypes.FieldMask.MergeOptions.ReplaceRepeatedFields">
  7875. <summary>
  7876. Whether to replace repeated fields (i.e., discard existing content in
  7877. destination repeated fields) when merging.
  7878. Default behavior is to append elements from source repeated field to the
  7879. destination repeated field.
  7880. </summary>
  7881. </member>
  7882. <member name="P:LC.Google.Protobuf.WellKnownTypes.FieldMask.MergeOptions.ReplacePrimitiveFields">
  7883. <summary>
  7884. Whether to replace primitive (non-repeated and non-message) fields in
  7885. destination message fields with the source primitive fields (i.e., if the
  7886. field is set in the source, the value is copied to the
  7887. destination; if the field is unset in the source, the field is cleared
  7888. from the destination) when merging.
  7889. Default behavior is to always set the value of the source primitive
  7890. field to the destination primitive field, and if the source field is
  7891. unset, the default value of the source field is copied to the
  7892. destination.
  7893. </summary>
  7894. </member>
  7895. <member name="T:LC.Google.Protobuf.WellKnownTypes.SourceContextReflection">
  7896. <summary>Holder for reflection information generated from google/protobuf/source_context.proto</summary>
  7897. </member>
  7898. <member name="P:LC.Google.Protobuf.WellKnownTypes.SourceContextReflection.Descriptor">
  7899. <summary>File descriptor for google/protobuf/source_context.proto</summary>
  7900. </member>
  7901. <member name="T:LC.Google.Protobuf.WellKnownTypes.SourceContext">
  7902. <summary>
  7903. `SourceContext` represents information about the source of a
  7904. protobuf element, like the file in which it is defined.
  7905. </summary>
  7906. </member>
  7907. <member name="F:LC.Google.Protobuf.WellKnownTypes.SourceContext.FileNameFieldNumber">
  7908. <summary>Field number for the "file_name" field.</summary>
  7909. </member>
  7910. <member name="P:LC.Google.Protobuf.WellKnownTypes.SourceContext.FileName">
  7911. <summary>
  7912. The path-qualified name of the .proto file that contained the associated
  7913. protobuf element. For example: `"google/protobuf/source_context.proto"`.
  7914. </summary>
  7915. </member>
  7916. <member name="T:LC.Google.Protobuf.WellKnownTypes.StructReflection">
  7917. <summary>Holder for reflection information generated from google/protobuf/struct.proto</summary>
  7918. </member>
  7919. <member name="P:LC.Google.Protobuf.WellKnownTypes.StructReflection.Descriptor">
  7920. <summary>File descriptor for google/protobuf/struct.proto</summary>
  7921. </member>
  7922. <member name="T:LC.Google.Protobuf.WellKnownTypes.NullValue">
  7923. <summary>
  7924. `NullValue` is a singleton enumeration to represent the null value for the
  7925. `Value` type union.
  7926. The JSON representation for `NullValue` is JSON `null`.
  7927. </summary>
  7928. </member>
  7929. <member name="F:LC.Google.Protobuf.WellKnownTypes.NullValue.NullValue">
  7930. <summary>
  7931. Null value.
  7932. </summary>
  7933. </member>
  7934. <member name="T:LC.Google.Protobuf.WellKnownTypes.Struct">
  7935. <summary>
  7936. `Struct` represents a structured data value, consisting of fields
  7937. which map to dynamically typed values. In some languages, `Struct`
  7938. might be supported by a native representation. For example, in
  7939. scripting languages like JS a struct is represented as an
  7940. object. The details of that representation are described together
  7941. with the proto support for the language.
  7942. The JSON representation for `Struct` is JSON object.
  7943. </summary>
  7944. </member>
  7945. <member name="F:LC.Google.Protobuf.WellKnownTypes.Struct.FieldsFieldNumber">
  7946. <summary>Field number for the "fields" field.</summary>
  7947. </member>
  7948. <member name="P:LC.Google.Protobuf.WellKnownTypes.Struct.Fields">
  7949. <summary>
  7950. Unordered map of dynamically typed values.
  7951. </summary>
  7952. </member>
  7953. <member name="T:LC.Google.Protobuf.WellKnownTypes.Value">
  7954. <summary>
  7955. `Value` represents a dynamically typed value which can be either
  7956. null, a number, a string, a boolean, a recursive struct value, or a
  7957. list of values. A producer of value is expected to set one of that
  7958. variants, absence of any variant indicates an error.
  7959. The JSON representation for `Value` is JSON value.
  7960. </summary>
  7961. </member>
  7962. <member name="F:LC.Google.Protobuf.WellKnownTypes.Value.NullValueFieldNumber">
  7963. <summary>Field number for the "null_value" field.</summary>
  7964. </member>
  7965. <member name="P:LC.Google.Protobuf.WellKnownTypes.Value.NullValue">
  7966. <summary>
  7967. Represents a null value.
  7968. </summary>
  7969. </member>
  7970. <member name="F:LC.Google.Protobuf.WellKnownTypes.Value.NumberValueFieldNumber">
  7971. <summary>Field number for the "number_value" field.</summary>
  7972. </member>
  7973. <member name="P:LC.Google.Protobuf.WellKnownTypes.Value.NumberValue">
  7974. <summary>
  7975. Represents a double value.
  7976. </summary>
  7977. </member>
  7978. <member name="F:LC.Google.Protobuf.WellKnownTypes.Value.StringValueFieldNumber">
  7979. <summary>Field number for the "string_value" field.</summary>
  7980. </member>
  7981. <member name="P:LC.Google.Protobuf.WellKnownTypes.Value.StringValue">
  7982. <summary>
  7983. Represents a string value.
  7984. </summary>
  7985. </member>
  7986. <member name="F:LC.Google.Protobuf.WellKnownTypes.Value.BoolValueFieldNumber">
  7987. <summary>Field number for the "bool_value" field.</summary>
  7988. </member>
  7989. <member name="P:LC.Google.Protobuf.WellKnownTypes.Value.BoolValue">
  7990. <summary>
  7991. Represents a boolean value.
  7992. </summary>
  7993. </member>
  7994. <member name="F:LC.Google.Protobuf.WellKnownTypes.Value.StructValueFieldNumber">
  7995. <summary>Field number for the "struct_value" field.</summary>
  7996. </member>
  7997. <member name="P:LC.Google.Protobuf.WellKnownTypes.Value.StructValue">
  7998. <summary>
  7999. Represents a structured value.
  8000. </summary>
  8001. </member>
  8002. <member name="F:LC.Google.Protobuf.WellKnownTypes.Value.ListValueFieldNumber">
  8003. <summary>Field number for the "list_value" field.</summary>
  8004. </member>
  8005. <member name="P:LC.Google.Protobuf.WellKnownTypes.Value.ListValue">
  8006. <summary>
  8007. Represents a repeated `Value`.
  8008. </summary>
  8009. </member>
  8010. <member name="T:LC.Google.Protobuf.WellKnownTypes.Value.KindOneofCase">
  8011. <summary>Enum of possible cases for the "kind" oneof.</summary>
  8012. </member>
  8013. <member name="M:LC.Google.Protobuf.WellKnownTypes.Value.ForString(System.String)">
  8014. <summary>
  8015. Convenience method to create a Value message with a string value.
  8016. </summary>
  8017. <param name="value">Value to set for the StringValue property.</param>
  8018. <returns>A newly-created Value message with the given value.</returns>
  8019. </member>
  8020. <member name="M:LC.Google.Protobuf.WellKnownTypes.Value.ForNumber(System.Double)">
  8021. <summary>
  8022. Convenience method to create a Value message with a number value.
  8023. </summary>
  8024. <param name="value">Value to set for the NumberValue property.</param>
  8025. <returns>A newly-created Value message with the given value.</returns>
  8026. </member>
  8027. <member name="M:LC.Google.Protobuf.WellKnownTypes.Value.ForBool(System.Boolean)">
  8028. <summary>
  8029. Convenience method to create a Value message with a Boolean value.
  8030. </summary>
  8031. <param name="value">Value to set for the BoolValue property.</param>
  8032. <returns>A newly-created Value message with the given value.</returns>
  8033. </member>
  8034. <member name="M:LC.Google.Protobuf.WellKnownTypes.Value.ForNull">
  8035. <summary>
  8036. Convenience method to create a Value message with a null initial value.
  8037. </summary>
  8038. <returns>A newly-created Value message a null initial value.</returns>
  8039. </member>
  8040. <member name="M:LC.Google.Protobuf.WellKnownTypes.Value.ForList(LC.Google.Protobuf.WellKnownTypes.Value[])">
  8041. <summary>
  8042. Convenience method to create a Value message with an initial list of values.
  8043. </summary>
  8044. <remarks>The values provided are not cloned; the references are copied directly.</remarks>
  8045. <returns>A newly-created Value message an initial list value.</returns>
  8046. </member>
  8047. <member name="M:LC.Google.Protobuf.WellKnownTypes.Value.ForStruct(LC.Google.Protobuf.WellKnownTypes.Struct)">
  8048. <summary>
  8049. Convenience method to create a Value message with an initial struct value
  8050. </summary>
  8051. <remarks>The value provided is not cloned; the reference is copied directly.</remarks>
  8052. <returns>A newly-created Value message an initial struct value.</returns>
  8053. </member>
  8054. <member name="T:LC.Google.Protobuf.WellKnownTypes.ListValue">
  8055. <summary>
  8056. `ListValue` is a wrapper around a repeated field of values.
  8057. The JSON representation for `ListValue` is JSON array.
  8058. </summary>
  8059. </member>
  8060. <member name="F:LC.Google.Protobuf.WellKnownTypes.ListValue.ValuesFieldNumber">
  8061. <summary>Field number for the "values" field.</summary>
  8062. </member>
  8063. <member name="P:LC.Google.Protobuf.WellKnownTypes.ListValue.Values">
  8064. <summary>
  8065. Repeated field of dynamically typed values.
  8066. </summary>
  8067. </member>
  8068. <member name="T:LC.Google.Protobuf.WellKnownTypes.TimeExtensions">
  8069. <summary>
  8070. Extension methods on BCL time-related types, converting to protobuf types.
  8071. </summary>
  8072. </member>
  8073. <member name="M:LC.Google.Protobuf.WellKnownTypes.TimeExtensions.ToTimestamp(System.DateTime)">
  8074. <summary>
  8075. Converts the given <see cref="T:System.DateTime"/> to a <see cref="T:LC.Google.Protobuf.WellKnownTypes.Timestamp"/>.
  8076. </summary>
  8077. <param name="dateTime">The date and time to convert to a timestamp.</param>
  8078. <exception cref="T:System.ArgumentException">The <paramref name="dateTime"/> value has a <see cref="P:System.DateTime.Kind"/>other than <c>Utc</c>.</exception>
  8079. <returns>The converted timestamp.</returns>
  8080. </member>
  8081. <member name="M:LC.Google.Protobuf.WellKnownTypes.TimeExtensions.ToTimestamp(System.DateTimeOffset)">
  8082. <summary>
  8083. Converts the given <see cref="T:System.DateTimeOffset"/> to a <see cref="T:LC.Google.Protobuf.WellKnownTypes.Timestamp"/>
  8084. </summary>
  8085. <remarks>The offset is taken into consideration when converting the value (so the same instant in time
  8086. is represented) but is not a separate part of the resulting value. In other words, there is no
  8087. roundtrip operation to retrieve the original <c>DateTimeOffset</c>.</remarks>
  8088. <param name="dateTimeOffset">The date and time (with UTC offset) to convert to a timestamp.</param>
  8089. <returns>The converted timestamp.</returns>
  8090. </member>
  8091. <member name="M:LC.Google.Protobuf.WellKnownTypes.TimeExtensions.ToDuration(System.TimeSpan)">
  8092. <summary>
  8093. Converts the given <see cref="T:System.TimeSpan"/> to a <see cref="T:LC.Google.Protobuf.WellKnownTypes.Duration"/>.
  8094. </summary>
  8095. <param name="timeSpan">The time span to convert.</param>
  8096. <returns>The converted duration.</returns>
  8097. </member>
  8098. <member name="T:LC.Google.Protobuf.WellKnownTypes.TimestampReflection">
  8099. <summary>Holder for reflection information generated from google/protobuf/timestamp.proto</summary>
  8100. </member>
  8101. <member name="P:LC.Google.Protobuf.WellKnownTypes.TimestampReflection.Descriptor">
  8102. <summary>File descriptor for google/protobuf/timestamp.proto</summary>
  8103. </member>
  8104. <member name="T:LC.Google.Protobuf.WellKnownTypes.Timestamp">
  8105. <summary>
  8106. A Timestamp represents a point in time independent of any time zone or local
  8107. calendar, encoded as a count of seconds and fractions of seconds at
  8108. nanosecond resolution. The count is relative to an epoch at UTC midnight on
  8109. January 1, 1970, in the proleptic Gregorian calendar which extends the
  8110. Gregorian calendar backwards to year one.
  8111. All minutes are 60 seconds long. Leap seconds are "smeared" so that no leap
  8112. second table is needed for interpretation, using a [24-hour linear
  8113. smear](https://developers.google.com/time/smear).
  8114. The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By
  8115. restricting to that range, we ensure that we can convert to and from [RFC
  8116. 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.
  8117. # Examples
  8118. Example 1: Compute Timestamp from POSIX `time()`.
  8119. Timestamp timestamp;
  8120. timestamp.set_seconds(time(NULL));
  8121. timestamp.set_nanos(0);
  8122. Example 2: Compute Timestamp from POSIX `gettimeofday()`.
  8123. struct timeval tv;
  8124. gettimeofday(&amp;tv, NULL);
  8125. Timestamp timestamp;
  8126. timestamp.set_seconds(tv.tv_sec);
  8127. timestamp.set_nanos(tv.tv_usec * 1000);
  8128. Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.
  8129. FILETIME ft;
  8130. GetSystemTimeAsFileTime(&amp;ft);
  8131. UINT64 ticks = (((UINT64)ft.dwHighDateTime) &lt;&lt; 32) | ft.dwLowDateTime;
  8132. // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z
  8133. // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.
  8134. Timestamp timestamp;
  8135. timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));
  8136. timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));
  8137. Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.
  8138. long millis = System.currentTimeMillis();
  8139. Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
  8140. .setNanos((int) ((millis % 1000) * 1000000)).build();
  8141. Example 5: Compute Timestamp from current time in Python.
  8142. timestamp = Timestamp()
  8143. timestamp.GetCurrentTime()
  8144. # JSON Mapping
  8145. In JSON format, the Timestamp type is encoded as a string in the
  8146. [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the
  8147. format is "{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z"
  8148. where {year} is always expressed using four digits while {month}, {day},
  8149. {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional
  8150. seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),
  8151. are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone
  8152. is required. A proto3 JSON serializer should always use UTC (as indicated by
  8153. "Z") when printing the Timestamp type and a proto3 JSON parser should be
  8154. able to accept both UTC and other timezones (as indicated by an offset).
  8155. For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past
  8156. 01:30 UTC on January 15, 2017.
  8157. In JavaScript, one can convert a Date object to this format using the
  8158. standard
  8159. [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)
  8160. method. In Python, a standard `datetime.datetime` object can be converted
  8161. to this format using
  8162. [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
  8163. the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
  8164. the Joda Time's [`ISODateTimeFormat.dateTime()`](
  8165. http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D
  8166. ) to obtain a formatter capable of generating timestamps in this format.
  8167. </summary>
  8168. </member>
  8169. <member name="F:LC.Google.Protobuf.WellKnownTypes.Timestamp.SecondsFieldNumber">
  8170. <summary>Field number for the "seconds" field.</summary>
  8171. </member>
  8172. <member name="P:LC.Google.Protobuf.WellKnownTypes.Timestamp.Seconds">
  8173. <summary>
  8174. Represents seconds of UTC time since Unix epoch
  8175. 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
  8176. 9999-12-31T23:59:59Z inclusive.
  8177. </summary>
  8178. </member>
  8179. <member name="F:LC.Google.Protobuf.WellKnownTypes.Timestamp.NanosFieldNumber">
  8180. <summary>Field number for the "nanos" field.</summary>
  8181. </member>
  8182. <member name="P:LC.Google.Protobuf.WellKnownTypes.Timestamp.Nanos">
  8183. <summary>
  8184. Non-negative fractions of a second at nanosecond resolution. Negative
  8185. second values with fractions must still have non-negative nanos values
  8186. that count forward in time. Must be from 0 to 999,999,999
  8187. inclusive.
  8188. </summary>
  8189. </member>
  8190. <member name="M:LC.Google.Protobuf.WellKnownTypes.Timestamp.op_Subtraction(LC.Google.Protobuf.WellKnownTypes.Timestamp,LC.Google.Protobuf.WellKnownTypes.Timestamp)">
  8191. <summary>
  8192. Returns the difference between one <see cref="T:LC.Google.Protobuf.WellKnownTypes.Timestamp"/> and another, as a <see cref="T:LC.Google.Protobuf.WellKnownTypes.Duration"/>.
  8193. </summary>
  8194. <param name="lhs">The timestamp to subtract from. Must not be null.</param>
  8195. <param name="rhs">The timestamp to subtract. Must not be null.</param>
  8196. <returns>The difference between the two specified timestamps.</returns>
  8197. </member>
  8198. <member name="M:LC.Google.Protobuf.WellKnownTypes.Timestamp.op_Addition(LC.Google.Protobuf.WellKnownTypes.Timestamp,LC.Google.Protobuf.WellKnownTypes.Duration)">
  8199. <summary>
  8200. Adds a <see cref="T:LC.Google.Protobuf.WellKnownTypes.Duration"/> to a <see cref="T:LC.Google.Protobuf.WellKnownTypes.Timestamp"/>, to obtain another <c>Timestamp</c>.
  8201. </summary>
  8202. <param name="lhs">The timestamp to add the duration to. Must not be null.</param>
  8203. <param name="rhs">The duration to add. Must not be null.</param>
  8204. <returns>The result of adding the duration to the timestamp.</returns>
  8205. </member>
  8206. <member name="M:LC.Google.Protobuf.WellKnownTypes.Timestamp.op_Subtraction(LC.Google.Protobuf.WellKnownTypes.Timestamp,LC.Google.Protobuf.WellKnownTypes.Duration)">
  8207. <summary>
  8208. Subtracts a <see cref="T:LC.Google.Protobuf.WellKnownTypes.Duration"/> from a <see cref="T:LC.Google.Protobuf.WellKnownTypes.Timestamp"/>, to obtain another <c>Timestamp</c>.
  8209. </summary>
  8210. <param name="lhs">The timestamp to subtract the duration from. Must not be null.</param>
  8211. <param name="rhs">The duration to subtract.</param>
  8212. <returns>The result of subtracting the duration from the timestamp.</returns>
  8213. </member>
  8214. <member name="M:LC.Google.Protobuf.WellKnownTypes.Timestamp.ToDateTime">
  8215. <summary>
  8216. Converts this timestamp into a <see cref="T:System.DateTime"/>.
  8217. </summary>
  8218. <remarks>
  8219. The resulting <c>DateTime</c> will always have a <c>Kind</c> of <c>Utc</c>.
  8220. If the timestamp is not a precise number of ticks, it will be truncated towards the start
  8221. of time. For example, a timestamp with a <see cref="P:LC.Google.Protobuf.WellKnownTypes.Timestamp.Nanos"/> value of 99 will result in a
  8222. <see cref="T:System.DateTime"/> value precisely on a second.
  8223. </remarks>
  8224. <returns>This timestamp as a <c>DateTime</c>.</returns>
  8225. <exception cref="T:System.InvalidOperationException">The timestamp contains invalid values; either it is
  8226. incorrectly normalized or is outside the valid range.</exception>
  8227. </member>
  8228. <member name="M:LC.Google.Protobuf.WellKnownTypes.Timestamp.ToDateTimeOffset">
  8229. <summary>
  8230. Converts this timestamp into a <see cref="T:System.DateTimeOffset"/>.
  8231. </summary>
  8232. <remarks>
  8233. The resulting <c>DateTimeOffset</c> will always have an <c>Offset</c> of zero.
  8234. If the timestamp is not a precise number of ticks, it will be truncated towards the start
  8235. of time. For example, a timestamp with a <see cref="P:LC.Google.Protobuf.WellKnownTypes.Timestamp.Nanos"/> value of 99 will result in a
  8236. <see cref="T:System.DateTimeOffset"/> value precisely on a second.
  8237. </remarks>
  8238. <returns>This timestamp as a <c>DateTimeOffset</c>.</returns>
  8239. <exception cref="T:System.InvalidOperationException">The timestamp contains invalid values; either it is
  8240. incorrectly normalized or is outside the valid range.</exception>
  8241. </member>
  8242. <member name="M:LC.Google.Protobuf.WellKnownTypes.Timestamp.FromDateTime(System.DateTime)">
  8243. <summary>
  8244. Converts the specified <see cref="T:System.DateTime"/> to a <see cref="T:LC.Google.Protobuf.WellKnownTypes.Timestamp"/>.
  8245. </summary>
  8246. <param name="dateTime"></param>
  8247. <exception cref="T:System.ArgumentException">The <c>Kind</c> of <paramref name="dateTime"/> is not <c>DateTimeKind.Utc</c>.</exception>
  8248. <returns>The converted timestamp.</returns>
  8249. </member>
  8250. <member name="M:LC.Google.Protobuf.WellKnownTypes.Timestamp.FromDateTimeOffset(System.DateTimeOffset)">
  8251. <summary>
  8252. Converts the given <see cref="T:System.DateTimeOffset"/> to a <see cref="T:LC.Google.Protobuf.WellKnownTypes.Timestamp"/>
  8253. </summary>
  8254. <remarks>The offset is taken into consideration when converting the value (so the same instant in time
  8255. is represented) but is not a separate part of the resulting value. In other words, there is no
  8256. roundtrip operation to retrieve the original <c>DateTimeOffset</c>.</remarks>
  8257. <param name="dateTimeOffset">The date and time (with UTC offset) to convert to a timestamp.</param>
  8258. <returns>The converted timestamp.</returns>
  8259. </member>
  8260. <member name="M:LC.Google.Protobuf.WellKnownTypes.Timestamp.ToJson(System.Int64,System.Int32,System.Boolean)">
  8261. <summary>
  8262. Converts a timestamp specified in seconds/nanoseconds to a string.
  8263. </summary>
  8264. <remarks>
  8265. If the value is a normalized duration in the range described in <c>timestamp.proto</c>,
  8266. <paramref name="diagnosticOnly"/> is ignored. Otherwise, if the parameter is <c>true</c>,
  8267. a JSON object with a warning is returned; if it is <c>false</c>, an <see cref="T:System.InvalidOperationException"/> is thrown.
  8268. </remarks>
  8269. <param name="seconds">Seconds portion of the duration.</param>
  8270. <param name="nanoseconds">Nanoseconds portion of the duration.</param>
  8271. <param name="diagnosticOnly">Determines the handling of non-normalized values</param>
  8272. <exception cref="T:System.InvalidOperationException">The represented duration is invalid, and <paramref name="diagnosticOnly"/> is <c>false</c>.</exception>
  8273. </member>
  8274. <member name="M:LC.Google.Protobuf.WellKnownTypes.Timestamp.CompareTo(LC.Google.Protobuf.WellKnownTypes.Timestamp)">
  8275. <summary>
  8276. Given another timestamp, returns 0 if the timestamps are equivalent, -1 if this timestamp precedes the other, and 1 otherwise
  8277. </summary>
  8278. <remarks>
  8279. Make sure the timestamps are normalized. Comparing non-normalized timestamps is not specified and may give unexpected results.
  8280. </remarks>
  8281. <param name="other">Timestamp to compare</param>
  8282. <returns>an integer indicating whether this timestamp precedes or follows the other</returns>
  8283. </member>
  8284. <member name="M:LC.Google.Protobuf.WellKnownTypes.Timestamp.op_LessThan(LC.Google.Protobuf.WellKnownTypes.Timestamp,LC.Google.Protobuf.WellKnownTypes.Timestamp)">
  8285. <summary>
  8286. Compares two timestamps and returns whether the first is less than (chronologically precedes) the second
  8287. </summary>
  8288. <remarks>
  8289. Make sure the timestamps are normalized. Comparing non-normalized timestamps is not specified and may give unexpected results.
  8290. </remarks>
  8291. <param name="a"></param>
  8292. <param name="b"></param>
  8293. <returns>true if a precedes b</returns>
  8294. </member>
  8295. <member name="M:LC.Google.Protobuf.WellKnownTypes.Timestamp.op_GreaterThan(LC.Google.Protobuf.WellKnownTypes.Timestamp,LC.Google.Protobuf.WellKnownTypes.Timestamp)">
  8296. <summary>
  8297. Compares two timestamps and returns whether the first is greater than (chronologically follows) the second
  8298. </summary>
  8299. <remarks>
  8300. Make sure the timestamps are normalized. Comparing non-normalized timestamps is not specified and may give unexpected results.
  8301. </remarks>
  8302. <param name="a"></param>
  8303. <param name="b"></param>
  8304. <returns>true if a follows b</returns>
  8305. </member>
  8306. <member name="M:LC.Google.Protobuf.WellKnownTypes.Timestamp.op_LessThanOrEqual(LC.Google.Protobuf.WellKnownTypes.Timestamp,LC.Google.Protobuf.WellKnownTypes.Timestamp)">
  8307. <summary>
  8308. Compares two timestamps and returns whether the first is less than (chronologically precedes) the second
  8309. </summary>
  8310. <remarks>
  8311. Make sure the timestamps are normalized. Comparing non-normalized timestamps is not specified and may give unexpected results.
  8312. </remarks>
  8313. <param name="a"></param>
  8314. <param name="b"></param>
  8315. <returns>true if a precedes b</returns>
  8316. </member>
  8317. <member name="M:LC.Google.Protobuf.WellKnownTypes.Timestamp.op_GreaterThanOrEqual(LC.Google.Protobuf.WellKnownTypes.Timestamp,LC.Google.Protobuf.WellKnownTypes.Timestamp)">
  8318. <summary>
  8319. Compares two timestamps and returns whether the first is greater than (chronologically follows) the second
  8320. </summary>
  8321. <remarks>
  8322. Make sure the timestamps are normalized. Comparing non-normalized timestamps is not specified and may give unexpected results.
  8323. </remarks>
  8324. <param name="a"></param>
  8325. <param name="b"></param>
  8326. <returns>true if a follows b</returns>
  8327. </member>
  8328. <member name="M:LC.Google.Protobuf.WellKnownTypes.Timestamp.op_Equality(LC.Google.Protobuf.WellKnownTypes.Timestamp,LC.Google.Protobuf.WellKnownTypes.Timestamp)">
  8329. <summary>
  8330. Returns whether two timestamps are equivalent
  8331. </summary>
  8332. <remarks>
  8333. Make sure the timestamps are normalized. Comparing non-normalized timestamps is not specified and may give unexpected results.
  8334. </remarks>
  8335. <param name="a"></param>
  8336. <param name="b"></param>
  8337. <returns>true if the two timestamps refer to the same nanosecond</returns>
  8338. </member>
  8339. <member name="M:LC.Google.Protobuf.WellKnownTypes.Timestamp.op_Inequality(LC.Google.Protobuf.WellKnownTypes.Timestamp,LC.Google.Protobuf.WellKnownTypes.Timestamp)">
  8340. <summary>
  8341. Returns whether two timestamps differ
  8342. </summary>
  8343. <remarks>
  8344. Make sure the timestamps are normalized. Comparing non-normalized timestamps is not specified and may give unexpected results.
  8345. </remarks>
  8346. <param name="a"></param>
  8347. <param name="b"></param>
  8348. <returns>true if the two timestamps differ</returns>
  8349. </member>
  8350. <member name="M:LC.Google.Protobuf.WellKnownTypes.Timestamp.ToDiagnosticString">
  8351. <summary>
  8352. Returns a string representation of this <see cref="T:LC.Google.Protobuf.WellKnownTypes.Timestamp"/> for diagnostic purposes.
  8353. </summary>
  8354. <remarks>
  8355. Normally the returned value will be a JSON string value (including leading and trailing quotes) but
  8356. when the value is non-normalized or out of range, a JSON object representation will be returned
  8357. instead, including a warning. This is to avoid exceptions being thrown when trying to
  8358. diagnose problems - the regular JSON formatter will still throw an exception for non-normalized
  8359. values.
  8360. </remarks>
  8361. <returns>A string representation of this value.</returns>
  8362. </member>
  8363. <member name="T:LC.Google.Protobuf.WellKnownTypes.TypeReflection">
  8364. <summary>Holder for reflection information generated from google/protobuf/type.proto</summary>
  8365. </member>
  8366. <member name="P:LC.Google.Protobuf.WellKnownTypes.TypeReflection.Descriptor">
  8367. <summary>File descriptor for google/protobuf/type.proto</summary>
  8368. </member>
  8369. <member name="T:LC.Google.Protobuf.WellKnownTypes.Syntax">
  8370. <summary>
  8371. The syntax in which a protocol buffer element is defined.
  8372. </summary>
  8373. </member>
  8374. <member name="F:LC.Google.Protobuf.WellKnownTypes.Syntax.Proto2">
  8375. <summary>
  8376. Syntax `proto2`.
  8377. </summary>
  8378. </member>
  8379. <member name="F:LC.Google.Protobuf.WellKnownTypes.Syntax.Proto3">
  8380. <summary>
  8381. Syntax `proto3`.
  8382. </summary>
  8383. </member>
  8384. <member name="T:LC.Google.Protobuf.WellKnownTypes.Type">
  8385. <summary>
  8386. A protocol buffer message type.
  8387. </summary>
  8388. </member>
  8389. <member name="F:LC.Google.Protobuf.WellKnownTypes.Type.NameFieldNumber">
  8390. <summary>Field number for the "name" field.</summary>
  8391. </member>
  8392. <member name="P:LC.Google.Protobuf.WellKnownTypes.Type.Name">
  8393. <summary>
  8394. The fully qualified message name.
  8395. </summary>
  8396. </member>
  8397. <member name="F:LC.Google.Protobuf.WellKnownTypes.Type.FieldsFieldNumber">
  8398. <summary>Field number for the "fields" field.</summary>
  8399. </member>
  8400. <member name="P:LC.Google.Protobuf.WellKnownTypes.Type.Fields">
  8401. <summary>
  8402. The list of fields.
  8403. </summary>
  8404. </member>
  8405. <member name="F:LC.Google.Protobuf.WellKnownTypes.Type.OneofsFieldNumber">
  8406. <summary>Field number for the "oneofs" field.</summary>
  8407. </member>
  8408. <member name="P:LC.Google.Protobuf.WellKnownTypes.Type.Oneofs">
  8409. <summary>
  8410. The list of types appearing in `oneof` definitions in this type.
  8411. </summary>
  8412. </member>
  8413. <member name="F:LC.Google.Protobuf.WellKnownTypes.Type.OptionsFieldNumber">
  8414. <summary>Field number for the "options" field.</summary>
  8415. </member>
  8416. <member name="P:LC.Google.Protobuf.WellKnownTypes.Type.Options">
  8417. <summary>
  8418. The protocol buffer options.
  8419. </summary>
  8420. </member>
  8421. <member name="F:LC.Google.Protobuf.WellKnownTypes.Type.SourceContextFieldNumber">
  8422. <summary>Field number for the "source_context" field.</summary>
  8423. </member>
  8424. <member name="P:LC.Google.Protobuf.WellKnownTypes.Type.SourceContext">
  8425. <summary>
  8426. The source context.
  8427. </summary>
  8428. </member>
  8429. <member name="F:LC.Google.Protobuf.WellKnownTypes.Type.SyntaxFieldNumber">
  8430. <summary>Field number for the "syntax" field.</summary>
  8431. </member>
  8432. <member name="P:LC.Google.Protobuf.WellKnownTypes.Type.Syntax">
  8433. <summary>
  8434. The source syntax.
  8435. </summary>
  8436. </member>
  8437. <member name="T:LC.Google.Protobuf.WellKnownTypes.Field">
  8438. <summary>
  8439. A single field of a message type.
  8440. </summary>
  8441. </member>
  8442. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.KindFieldNumber">
  8443. <summary>Field number for the "kind" field.</summary>
  8444. </member>
  8445. <member name="P:LC.Google.Protobuf.WellKnownTypes.Field.Kind">
  8446. <summary>
  8447. The field type.
  8448. </summary>
  8449. </member>
  8450. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.CardinalityFieldNumber">
  8451. <summary>Field number for the "cardinality" field.</summary>
  8452. </member>
  8453. <member name="P:LC.Google.Protobuf.WellKnownTypes.Field.Cardinality">
  8454. <summary>
  8455. The field cardinality.
  8456. </summary>
  8457. </member>
  8458. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.NumberFieldNumber">
  8459. <summary>Field number for the "number" field.</summary>
  8460. </member>
  8461. <member name="P:LC.Google.Protobuf.WellKnownTypes.Field.Number">
  8462. <summary>
  8463. The field number.
  8464. </summary>
  8465. </member>
  8466. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.NameFieldNumber">
  8467. <summary>Field number for the "name" field.</summary>
  8468. </member>
  8469. <member name="P:LC.Google.Protobuf.WellKnownTypes.Field.Name">
  8470. <summary>
  8471. The field name.
  8472. </summary>
  8473. </member>
  8474. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.TypeUrlFieldNumber">
  8475. <summary>Field number for the "type_url" field.</summary>
  8476. </member>
  8477. <member name="P:LC.Google.Protobuf.WellKnownTypes.Field.TypeUrl">
  8478. <summary>
  8479. The field type URL, without the scheme, for message or enumeration
  8480. types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`.
  8481. </summary>
  8482. </member>
  8483. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.OneofIndexFieldNumber">
  8484. <summary>Field number for the "oneof_index" field.</summary>
  8485. </member>
  8486. <member name="P:LC.Google.Protobuf.WellKnownTypes.Field.OneofIndex">
  8487. <summary>
  8488. The index of the field type in `Type.oneofs`, for message or enumeration
  8489. types. The first type has index 1; zero means the type is not in the list.
  8490. </summary>
  8491. </member>
  8492. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.PackedFieldNumber">
  8493. <summary>Field number for the "packed" field.</summary>
  8494. </member>
  8495. <member name="P:LC.Google.Protobuf.WellKnownTypes.Field.Packed">
  8496. <summary>
  8497. Whether to use alternative packed wire representation.
  8498. </summary>
  8499. </member>
  8500. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.OptionsFieldNumber">
  8501. <summary>Field number for the "options" field.</summary>
  8502. </member>
  8503. <member name="P:LC.Google.Protobuf.WellKnownTypes.Field.Options">
  8504. <summary>
  8505. The protocol buffer options.
  8506. </summary>
  8507. </member>
  8508. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.JsonNameFieldNumber">
  8509. <summary>Field number for the "json_name" field.</summary>
  8510. </member>
  8511. <member name="P:LC.Google.Protobuf.WellKnownTypes.Field.JsonName">
  8512. <summary>
  8513. The field JSON name.
  8514. </summary>
  8515. </member>
  8516. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.DefaultValueFieldNumber">
  8517. <summary>Field number for the "default_value" field.</summary>
  8518. </member>
  8519. <member name="P:LC.Google.Protobuf.WellKnownTypes.Field.DefaultValue">
  8520. <summary>
  8521. The string value of the default value of this field. Proto2 syntax only.
  8522. </summary>
  8523. </member>
  8524. <member name="T:LC.Google.Protobuf.WellKnownTypes.Field.Types">
  8525. <summary>Container for nested types declared in the Field message type.</summary>
  8526. </member>
  8527. <member name="T:LC.Google.Protobuf.WellKnownTypes.Field.Types.Kind">
  8528. <summary>
  8529. Basic field types.
  8530. </summary>
  8531. </member>
  8532. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeUnknown">
  8533. <summary>
  8534. Field type unknown.
  8535. </summary>
  8536. </member>
  8537. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeDouble">
  8538. <summary>
  8539. Field type double.
  8540. </summary>
  8541. </member>
  8542. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeFloat">
  8543. <summary>
  8544. Field type float.
  8545. </summary>
  8546. </member>
  8547. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeInt64">
  8548. <summary>
  8549. Field type int64.
  8550. </summary>
  8551. </member>
  8552. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeUint64">
  8553. <summary>
  8554. Field type uint64.
  8555. </summary>
  8556. </member>
  8557. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeInt32">
  8558. <summary>
  8559. Field type int32.
  8560. </summary>
  8561. </member>
  8562. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeFixed64">
  8563. <summary>
  8564. Field type fixed64.
  8565. </summary>
  8566. </member>
  8567. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeFixed32">
  8568. <summary>
  8569. Field type fixed32.
  8570. </summary>
  8571. </member>
  8572. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeBool">
  8573. <summary>
  8574. Field type bool.
  8575. </summary>
  8576. </member>
  8577. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeString">
  8578. <summary>
  8579. Field type string.
  8580. </summary>
  8581. </member>
  8582. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeGroup">
  8583. <summary>
  8584. Field type group. Proto2 syntax only, and deprecated.
  8585. </summary>
  8586. </member>
  8587. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeMessage">
  8588. <summary>
  8589. Field type message.
  8590. </summary>
  8591. </member>
  8592. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeBytes">
  8593. <summary>
  8594. Field type bytes.
  8595. </summary>
  8596. </member>
  8597. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeUint32">
  8598. <summary>
  8599. Field type uint32.
  8600. </summary>
  8601. </member>
  8602. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeEnum">
  8603. <summary>
  8604. Field type enum.
  8605. </summary>
  8606. </member>
  8607. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeSfixed32">
  8608. <summary>
  8609. Field type sfixed32.
  8610. </summary>
  8611. </member>
  8612. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeSfixed64">
  8613. <summary>
  8614. Field type sfixed64.
  8615. </summary>
  8616. </member>
  8617. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeSint32">
  8618. <summary>
  8619. Field type sint32.
  8620. </summary>
  8621. </member>
  8622. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeSint64">
  8623. <summary>
  8624. Field type sint64.
  8625. </summary>
  8626. </member>
  8627. <member name="T:LC.Google.Protobuf.WellKnownTypes.Field.Types.Cardinality">
  8628. <summary>
  8629. Whether a field is optional, required, or repeated.
  8630. </summary>
  8631. </member>
  8632. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.Types.Cardinality.Unknown">
  8633. <summary>
  8634. For fields with unknown cardinality.
  8635. </summary>
  8636. </member>
  8637. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.Types.Cardinality.Optional">
  8638. <summary>
  8639. For optional fields.
  8640. </summary>
  8641. </member>
  8642. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.Types.Cardinality.Required">
  8643. <summary>
  8644. For required fields. Proto2 syntax only.
  8645. </summary>
  8646. </member>
  8647. <member name="F:LC.Google.Protobuf.WellKnownTypes.Field.Types.Cardinality.Repeated">
  8648. <summary>
  8649. For repeated fields.
  8650. </summary>
  8651. </member>
  8652. <member name="T:LC.Google.Protobuf.WellKnownTypes.Enum">
  8653. <summary>
  8654. Enum type definition.
  8655. </summary>
  8656. </member>
  8657. <member name="F:LC.Google.Protobuf.WellKnownTypes.Enum.NameFieldNumber">
  8658. <summary>Field number for the "name" field.</summary>
  8659. </member>
  8660. <member name="P:LC.Google.Protobuf.WellKnownTypes.Enum.Name">
  8661. <summary>
  8662. Enum type name.
  8663. </summary>
  8664. </member>
  8665. <member name="F:LC.Google.Protobuf.WellKnownTypes.Enum.EnumvalueFieldNumber">
  8666. <summary>Field number for the "enumvalue" field.</summary>
  8667. </member>
  8668. <member name="P:LC.Google.Protobuf.WellKnownTypes.Enum.Enumvalue">
  8669. <summary>
  8670. Enum value definitions.
  8671. </summary>
  8672. </member>
  8673. <member name="F:LC.Google.Protobuf.WellKnownTypes.Enum.OptionsFieldNumber">
  8674. <summary>Field number for the "options" field.</summary>
  8675. </member>
  8676. <member name="P:LC.Google.Protobuf.WellKnownTypes.Enum.Options">
  8677. <summary>
  8678. Protocol buffer options.
  8679. </summary>
  8680. </member>
  8681. <member name="F:LC.Google.Protobuf.WellKnownTypes.Enum.SourceContextFieldNumber">
  8682. <summary>Field number for the "source_context" field.</summary>
  8683. </member>
  8684. <member name="P:LC.Google.Protobuf.WellKnownTypes.Enum.SourceContext">
  8685. <summary>
  8686. The source context.
  8687. </summary>
  8688. </member>
  8689. <member name="F:LC.Google.Protobuf.WellKnownTypes.Enum.SyntaxFieldNumber">
  8690. <summary>Field number for the "syntax" field.</summary>
  8691. </member>
  8692. <member name="P:LC.Google.Protobuf.WellKnownTypes.Enum.Syntax">
  8693. <summary>
  8694. The source syntax.
  8695. </summary>
  8696. </member>
  8697. <member name="T:LC.Google.Protobuf.WellKnownTypes.EnumValue">
  8698. <summary>
  8699. Enum value definition.
  8700. </summary>
  8701. </member>
  8702. <member name="F:LC.Google.Protobuf.WellKnownTypes.EnumValue.NameFieldNumber">
  8703. <summary>Field number for the "name" field.</summary>
  8704. </member>
  8705. <member name="P:LC.Google.Protobuf.WellKnownTypes.EnumValue.Name">
  8706. <summary>
  8707. Enum value name.
  8708. </summary>
  8709. </member>
  8710. <member name="F:LC.Google.Protobuf.WellKnownTypes.EnumValue.NumberFieldNumber">
  8711. <summary>Field number for the "number" field.</summary>
  8712. </member>
  8713. <member name="P:LC.Google.Protobuf.WellKnownTypes.EnumValue.Number">
  8714. <summary>
  8715. Enum value number.
  8716. </summary>
  8717. </member>
  8718. <member name="F:LC.Google.Protobuf.WellKnownTypes.EnumValue.OptionsFieldNumber">
  8719. <summary>Field number for the "options" field.</summary>
  8720. </member>
  8721. <member name="P:LC.Google.Protobuf.WellKnownTypes.EnumValue.Options">
  8722. <summary>
  8723. Protocol buffer options.
  8724. </summary>
  8725. </member>
  8726. <member name="T:LC.Google.Protobuf.WellKnownTypes.Option">
  8727. <summary>
  8728. A protocol buffer option, which can be attached to a message, field,
  8729. enumeration, etc.
  8730. </summary>
  8731. </member>
  8732. <member name="F:LC.Google.Protobuf.WellKnownTypes.Option.NameFieldNumber">
  8733. <summary>Field number for the "name" field.</summary>
  8734. </member>
  8735. <member name="P:LC.Google.Protobuf.WellKnownTypes.Option.Name">
  8736. <summary>
  8737. The option's name. For protobuf built-in options (options defined in
  8738. descriptor.proto), this is the short name. For example, `"map_entry"`.
  8739. For custom options, it should be the fully-qualified name. For example,
  8740. `"google.api.http"`.
  8741. </summary>
  8742. </member>
  8743. <member name="F:LC.Google.Protobuf.WellKnownTypes.Option.ValueFieldNumber">
  8744. <summary>Field number for the "value" field.</summary>
  8745. </member>
  8746. <member name="P:LC.Google.Protobuf.WellKnownTypes.Option.Value">
  8747. <summary>
  8748. The option's value packed in an Any message. If the value is a primitive,
  8749. the corresponding wrapper type defined in google/protobuf/wrappers.proto
  8750. should be used. If the value is an enum, it should be stored as an int32
  8751. value using the google.protobuf.Int32Value type.
  8752. </summary>
  8753. </member>
  8754. <member name="T:LC.Google.Protobuf.WellKnownTypes.WrappersReflection">
  8755. <summary>Holder for reflection information generated from google/protobuf/wrappers.proto</summary>
  8756. </member>
  8757. <member name="P:LC.Google.Protobuf.WellKnownTypes.WrappersReflection.Descriptor">
  8758. <summary>File descriptor for google/protobuf/wrappers.proto</summary>
  8759. </member>
  8760. <member name="F:LC.Google.Protobuf.WellKnownTypes.WrappersReflection.WrapperValueFieldNumber">
  8761. <summary>
  8762. Field number for the single "value" field in all wrapper types.
  8763. </summary>
  8764. </member>
  8765. <member name="T:LC.Google.Protobuf.WellKnownTypes.DoubleValue">
  8766. <summary>
  8767. Wrapper message for `double`.
  8768. The JSON representation for `DoubleValue` is JSON number.
  8769. </summary>
  8770. </member>
  8771. <member name="F:LC.Google.Protobuf.WellKnownTypes.DoubleValue.ValueFieldNumber">
  8772. <summary>Field number for the "value" field.</summary>
  8773. </member>
  8774. <member name="P:LC.Google.Protobuf.WellKnownTypes.DoubleValue.Value">
  8775. <summary>
  8776. The double value.
  8777. </summary>
  8778. </member>
  8779. <member name="T:LC.Google.Protobuf.WellKnownTypes.FloatValue">
  8780. <summary>
  8781. Wrapper message for `float`.
  8782. The JSON representation for `FloatValue` is JSON number.
  8783. </summary>
  8784. </member>
  8785. <member name="F:LC.Google.Protobuf.WellKnownTypes.FloatValue.ValueFieldNumber">
  8786. <summary>Field number for the "value" field.</summary>
  8787. </member>
  8788. <member name="P:LC.Google.Protobuf.WellKnownTypes.FloatValue.Value">
  8789. <summary>
  8790. The float value.
  8791. </summary>
  8792. </member>
  8793. <member name="T:LC.Google.Protobuf.WellKnownTypes.Int64Value">
  8794. <summary>
  8795. Wrapper message for `int64`.
  8796. The JSON representation for `Int64Value` is JSON string.
  8797. </summary>
  8798. </member>
  8799. <member name="F:LC.Google.Protobuf.WellKnownTypes.Int64Value.ValueFieldNumber">
  8800. <summary>Field number for the "value" field.</summary>
  8801. </member>
  8802. <member name="P:LC.Google.Protobuf.WellKnownTypes.Int64Value.Value">
  8803. <summary>
  8804. The int64 value.
  8805. </summary>
  8806. </member>
  8807. <member name="T:LC.Google.Protobuf.WellKnownTypes.UInt64Value">
  8808. <summary>
  8809. Wrapper message for `uint64`.
  8810. The JSON representation for `UInt64Value` is JSON string.
  8811. </summary>
  8812. </member>
  8813. <member name="F:LC.Google.Protobuf.WellKnownTypes.UInt64Value.ValueFieldNumber">
  8814. <summary>Field number for the "value" field.</summary>
  8815. </member>
  8816. <member name="P:LC.Google.Protobuf.WellKnownTypes.UInt64Value.Value">
  8817. <summary>
  8818. The uint64 value.
  8819. </summary>
  8820. </member>
  8821. <member name="T:LC.Google.Protobuf.WellKnownTypes.Int32Value">
  8822. <summary>
  8823. Wrapper message for `int32`.
  8824. The JSON representation for `Int32Value` is JSON number.
  8825. </summary>
  8826. </member>
  8827. <member name="F:LC.Google.Protobuf.WellKnownTypes.Int32Value.ValueFieldNumber">
  8828. <summary>Field number for the "value" field.</summary>
  8829. </member>
  8830. <member name="P:LC.Google.Protobuf.WellKnownTypes.Int32Value.Value">
  8831. <summary>
  8832. The int32 value.
  8833. </summary>
  8834. </member>
  8835. <member name="T:LC.Google.Protobuf.WellKnownTypes.UInt32Value">
  8836. <summary>
  8837. Wrapper message for `uint32`.
  8838. The JSON representation for `UInt32Value` is JSON number.
  8839. </summary>
  8840. </member>
  8841. <member name="F:LC.Google.Protobuf.WellKnownTypes.UInt32Value.ValueFieldNumber">
  8842. <summary>Field number for the "value" field.</summary>
  8843. </member>
  8844. <member name="P:LC.Google.Protobuf.WellKnownTypes.UInt32Value.Value">
  8845. <summary>
  8846. The uint32 value.
  8847. </summary>
  8848. </member>
  8849. <member name="T:LC.Google.Protobuf.WellKnownTypes.BoolValue">
  8850. <summary>
  8851. Wrapper message for `bool`.
  8852. The JSON representation for `BoolValue` is JSON `true` and `false`.
  8853. </summary>
  8854. </member>
  8855. <member name="F:LC.Google.Protobuf.WellKnownTypes.BoolValue.ValueFieldNumber">
  8856. <summary>Field number for the "value" field.</summary>
  8857. </member>
  8858. <member name="P:LC.Google.Protobuf.WellKnownTypes.BoolValue.Value">
  8859. <summary>
  8860. The bool value.
  8861. </summary>
  8862. </member>
  8863. <member name="T:LC.Google.Protobuf.WellKnownTypes.StringValue">
  8864. <summary>
  8865. Wrapper message for `string`.
  8866. The JSON representation for `StringValue` is JSON string.
  8867. </summary>
  8868. </member>
  8869. <member name="F:LC.Google.Protobuf.WellKnownTypes.StringValue.ValueFieldNumber">
  8870. <summary>Field number for the "value" field.</summary>
  8871. </member>
  8872. <member name="P:LC.Google.Protobuf.WellKnownTypes.StringValue.Value">
  8873. <summary>
  8874. The string value.
  8875. </summary>
  8876. </member>
  8877. <member name="T:LC.Google.Protobuf.WellKnownTypes.BytesValue">
  8878. <summary>
  8879. Wrapper message for `bytes`.
  8880. The JSON representation for `BytesValue` is JSON string.
  8881. </summary>
  8882. </member>
  8883. <member name="F:LC.Google.Protobuf.WellKnownTypes.BytesValue.ValueFieldNumber">
  8884. <summary>Field number for the "value" field.</summary>
  8885. </member>
  8886. <member name="P:LC.Google.Protobuf.WellKnownTypes.BytesValue.Value">
  8887. <summary>
  8888. The bytes value.
  8889. </summary>
  8890. </member>
  8891. <member name="T:LC.Google.Protobuf.WireFormat">
  8892. <summary>
  8893. This class is used internally by the Protocol Buffer Library and generated
  8894. message implementations. It is public only for the sake of those generated
  8895. messages. Others should not use this class directly.
  8896. <para>
  8897. This class contains constants and helper functions useful for dealing with
  8898. the Protocol Buffer wire format.
  8899. </para>
  8900. </summary>
  8901. </member>
  8902. <member name="T:LC.Google.Protobuf.WireFormat.WireType">
  8903. <summary>
  8904. Wire types within protobuf encoding.
  8905. </summary>
  8906. </member>
  8907. <member name="F:LC.Google.Protobuf.WireFormat.WireType.Varint">
  8908. <summary>
  8909. Variable-length integer.
  8910. </summary>
  8911. </member>
  8912. <member name="F:LC.Google.Protobuf.WireFormat.WireType.Fixed64">
  8913. <summary>
  8914. A fixed-length 64-bit value.
  8915. </summary>
  8916. </member>
  8917. <member name="F:LC.Google.Protobuf.WireFormat.WireType.LengthDelimited">
  8918. <summary>
  8919. A length-delimited value, i.e. a length followed by that many bytes of data.
  8920. </summary>
  8921. </member>
  8922. <member name="F:LC.Google.Protobuf.WireFormat.WireType.StartGroup">
  8923. <summary>
  8924. A "start group" value
  8925. </summary>
  8926. </member>
  8927. <member name="F:LC.Google.Protobuf.WireFormat.WireType.EndGroup">
  8928. <summary>
  8929. An "end group" value
  8930. </summary>
  8931. </member>
  8932. <member name="F:LC.Google.Protobuf.WireFormat.WireType.Fixed32">
  8933. <summary>
  8934. A fixed-length 32-bit value.
  8935. </summary>
  8936. </member>
  8937. <member name="M:LC.Google.Protobuf.WireFormat.GetTagWireType(System.UInt32)">
  8938. <summary>
  8939. Given a tag value, determines the wire type (lower 3 bits).
  8940. </summary>
  8941. </member>
  8942. <member name="M:LC.Google.Protobuf.WireFormat.GetTagFieldNumber(System.UInt32)">
  8943. <summary>
  8944. Given a tag value, determines the field number (the upper 29 bits).
  8945. </summary>
  8946. </member>
  8947. <member name="M:LC.Google.Protobuf.WireFormat.MakeTag(System.Int32,LC.Google.Protobuf.WireFormat.WireType)">
  8948. <summary>
  8949. Makes a tag value given a field number and wire type.
  8950. </summary>
  8951. </member>
  8952. </members>
  8953. </doc>