xrefmap.yml 313 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196
  1. ### YamlMime:XRefMap
  2. sorted: true
  3. references:
  4. - uid: Grpc.Auth
  5. name: Grpc.Auth
  6. href: api/Grpc.Auth.html
  7. commentId: N:Grpc.Auth
  8. fullName: Grpc.Auth
  9. nameWithType: Grpc.Auth
  10. - uid: Grpc.Auth.GoogleAuthInterceptors
  11. name: GoogleAuthInterceptors
  12. href: api/Grpc.Auth.GoogleAuthInterceptors.html
  13. commentId: T:Grpc.Auth.GoogleAuthInterceptors
  14. fullName: Grpc.Auth.GoogleAuthInterceptors
  15. nameWithType: GoogleAuthInterceptors
  16. - uid: Grpc.Auth.GoogleAuthInterceptors.FromAccessToken(System.String)
  17. name: FromAccessToken(String)
  18. href: api/Grpc.Auth.GoogleAuthInterceptors.html#Grpc_Auth_GoogleAuthInterceptors_FromAccessToken_System_String_
  19. commentId: M:Grpc.Auth.GoogleAuthInterceptors.FromAccessToken(System.String)
  20. fullName: Grpc.Auth.GoogleAuthInterceptors.FromAccessToken(System.String)
  21. nameWithType: GoogleAuthInterceptors.FromAccessToken(String)
  22. - uid: Grpc.Auth.GoogleAuthInterceptors.FromAccessToken*
  23. name: FromAccessToken
  24. href: api/Grpc.Auth.GoogleAuthInterceptors.html#Grpc_Auth_GoogleAuthInterceptors_FromAccessToken_
  25. commentId: Overload:Grpc.Auth.GoogleAuthInterceptors.FromAccessToken
  26. fullName: Grpc.Auth.GoogleAuthInterceptors.FromAccessToken
  27. nameWithType: GoogleAuthInterceptors.FromAccessToken
  28. - uid: Grpc.Auth.GoogleAuthInterceptors.FromCredential(Google.Apis.Auth.OAuth2.ITokenAccess)
  29. name: FromCredential(ITokenAccess)
  30. href: api/Grpc.Auth.GoogleAuthInterceptors.html#Grpc_Auth_GoogleAuthInterceptors_FromCredential_Google_Apis_Auth_OAuth2_ITokenAccess_
  31. commentId: M:Grpc.Auth.GoogleAuthInterceptors.FromCredential(Google.Apis.Auth.OAuth2.ITokenAccess)
  32. fullName: Grpc.Auth.GoogleAuthInterceptors.FromCredential(Google.Apis.Auth.OAuth2.ITokenAccess)
  33. nameWithType: GoogleAuthInterceptors.FromCredential(ITokenAccess)
  34. - uid: Grpc.Auth.GoogleAuthInterceptors.FromCredential*
  35. name: FromCredential
  36. href: api/Grpc.Auth.GoogleAuthInterceptors.html#Grpc_Auth_GoogleAuthInterceptors_FromCredential_
  37. commentId: Overload:Grpc.Auth.GoogleAuthInterceptors.FromCredential
  38. fullName: Grpc.Auth.GoogleAuthInterceptors.FromCredential
  39. nameWithType: GoogleAuthInterceptors.FromCredential
  40. - uid: Grpc.Auth.GoogleGrpcCredentials
  41. name: GoogleGrpcCredentials
  42. href: api/Grpc.Auth.GoogleGrpcCredentials.html
  43. commentId: T:Grpc.Auth.GoogleGrpcCredentials
  44. fullName: Grpc.Auth.GoogleGrpcCredentials
  45. nameWithType: GoogleGrpcCredentials
  46. - uid: Grpc.Auth.GoogleGrpcCredentials.FromAccessToken(System.String)
  47. name: FromAccessToken(String)
  48. href: api/Grpc.Auth.GoogleGrpcCredentials.html#Grpc_Auth_GoogleGrpcCredentials_FromAccessToken_System_String_
  49. commentId: M:Grpc.Auth.GoogleGrpcCredentials.FromAccessToken(System.String)
  50. fullName: Grpc.Auth.GoogleGrpcCredentials.FromAccessToken(System.String)
  51. nameWithType: GoogleGrpcCredentials.FromAccessToken(String)
  52. - uid: Grpc.Auth.GoogleGrpcCredentials.FromAccessToken*
  53. name: FromAccessToken
  54. href: api/Grpc.Auth.GoogleGrpcCredentials.html#Grpc_Auth_GoogleGrpcCredentials_FromAccessToken_
  55. commentId: Overload:Grpc.Auth.GoogleGrpcCredentials.FromAccessToken
  56. fullName: Grpc.Auth.GoogleGrpcCredentials.FromAccessToken
  57. nameWithType: GoogleGrpcCredentials.FromAccessToken
  58. - uid: Grpc.Auth.GoogleGrpcCredentials.GetApplicationDefaultAsync
  59. name: GetApplicationDefaultAsync()
  60. href: api/Grpc.Auth.GoogleGrpcCredentials.html#Grpc_Auth_GoogleGrpcCredentials_GetApplicationDefaultAsync
  61. commentId: M:Grpc.Auth.GoogleGrpcCredentials.GetApplicationDefaultAsync
  62. fullName: Grpc.Auth.GoogleGrpcCredentials.GetApplicationDefaultAsync()
  63. nameWithType: GoogleGrpcCredentials.GetApplicationDefaultAsync()
  64. - uid: Grpc.Auth.GoogleGrpcCredentials.GetApplicationDefaultAsync*
  65. name: GetApplicationDefaultAsync
  66. href: api/Grpc.Auth.GoogleGrpcCredentials.html#Grpc_Auth_GoogleGrpcCredentials_GetApplicationDefaultAsync_
  67. commentId: Overload:Grpc.Auth.GoogleGrpcCredentials.GetApplicationDefaultAsync
  68. fullName: Grpc.Auth.GoogleGrpcCredentials.GetApplicationDefaultAsync
  69. nameWithType: GoogleGrpcCredentials.GetApplicationDefaultAsync
  70. - uid: Grpc.Auth.GoogleGrpcCredentials.ToCallCredentials(Google.Apis.Auth.OAuth2.ITokenAccess)
  71. name: ToCallCredentials(ITokenAccess)
  72. href: api/Grpc.Auth.GoogleGrpcCredentials.html#Grpc_Auth_GoogleGrpcCredentials_ToCallCredentials_Google_Apis_Auth_OAuth2_ITokenAccess_
  73. commentId: M:Grpc.Auth.GoogleGrpcCredentials.ToCallCredentials(Google.Apis.Auth.OAuth2.ITokenAccess)
  74. fullName: Grpc.Auth.GoogleGrpcCredentials.ToCallCredentials(Google.Apis.Auth.OAuth2.ITokenAccess)
  75. nameWithType: GoogleGrpcCredentials.ToCallCredentials(ITokenAccess)
  76. - uid: Grpc.Auth.GoogleGrpcCredentials.ToCallCredentials*
  77. name: ToCallCredentials
  78. href: api/Grpc.Auth.GoogleGrpcCredentials.html#Grpc_Auth_GoogleGrpcCredentials_ToCallCredentials_
  79. commentId: Overload:Grpc.Auth.GoogleGrpcCredentials.ToCallCredentials
  80. fullName: Grpc.Auth.GoogleGrpcCredentials.ToCallCredentials
  81. nameWithType: GoogleGrpcCredentials.ToCallCredentials
  82. - uid: Grpc.Auth.GoogleGrpcCredentials.ToChannelCredentials(Google.Apis.Auth.OAuth2.ITokenAccess)
  83. name: ToChannelCredentials(ITokenAccess)
  84. href: api/Grpc.Auth.GoogleGrpcCredentials.html#Grpc_Auth_GoogleGrpcCredentials_ToChannelCredentials_Google_Apis_Auth_OAuth2_ITokenAccess_
  85. commentId: M:Grpc.Auth.GoogleGrpcCredentials.ToChannelCredentials(Google.Apis.Auth.OAuth2.ITokenAccess)
  86. fullName: Grpc.Auth.GoogleGrpcCredentials.ToChannelCredentials(Google.Apis.Auth.OAuth2.ITokenAccess)
  87. nameWithType: GoogleGrpcCredentials.ToChannelCredentials(ITokenAccess)
  88. - uid: Grpc.Auth.GoogleGrpcCredentials.ToChannelCredentials*
  89. name: ToChannelCredentials
  90. href: api/Grpc.Auth.GoogleGrpcCredentials.html#Grpc_Auth_GoogleGrpcCredentials_ToChannelCredentials_
  91. commentId: Overload:Grpc.Auth.GoogleGrpcCredentials.ToChannelCredentials
  92. fullName: Grpc.Auth.GoogleGrpcCredentials.ToChannelCredentials
  93. nameWithType: GoogleGrpcCredentials.ToChannelCredentials
  94. - uid: Grpc.Core
  95. name: Grpc.Core
  96. href: api/Grpc.Core.html
  97. commentId: N:Grpc.Core
  98. fullName: Grpc.Core
  99. nameWithType: Grpc.Core
  100. - uid: Grpc.Core.AsyncAuthInterceptor
  101. name: AsyncAuthInterceptor
  102. href: api/Grpc.Core.AsyncAuthInterceptor.html
  103. commentId: T:Grpc.Core.AsyncAuthInterceptor
  104. fullName: Grpc.Core.AsyncAuthInterceptor
  105. nameWithType: AsyncAuthInterceptor
  106. - uid: Grpc.Core.AsyncClientStreamingCall`2
  107. name: AsyncClientStreamingCall<TRequest, TResponse>
  108. href: api/Grpc.Core.AsyncClientStreamingCall-2.html
  109. commentId: T:Grpc.Core.AsyncClientStreamingCall`2
  110. name.vb: AsyncClientStreamingCall(Of TRequest, TResponse)
  111. fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>
  112. fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse)
  113. nameWithType: AsyncClientStreamingCall<TRequest, TResponse>
  114. nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse)
  115. - uid: Grpc.Core.AsyncClientStreamingCall`2.Dispose
  116. name: Dispose()
  117. href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_Dispose
  118. commentId: M:Grpc.Core.AsyncClientStreamingCall`2.Dispose
  119. fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.Dispose()
  120. fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).Dispose()
  121. nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.Dispose()
  122. nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).Dispose()
  123. - uid: Grpc.Core.AsyncClientStreamingCall`2.Dispose*
  124. name: Dispose
  125. href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_Dispose_
  126. commentId: Overload:Grpc.Core.AsyncClientStreamingCall`2.Dispose
  127. fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.Dispose
  128. fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).Dispose
  129. nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.Dispose
  130. nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).Dispose
  131. - uid: Grpc.Core.AsyncClientStreamingCall`2.GetAwaiter
  132. name: GetAwaiter()
  133. href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_GetAwaiter
  134. commentId: M:Grpc.Core.AsyncClientStreamingCall`2.GetAwaiter
  135. fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.GetAwaiter()
  136. fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).GetAwaiter()
  137. nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.GetAwaiter()
  138. nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).GetAwaiter()
  139. - uid: Grpc.Core.AsyncClientStreamingCall`2.GetAwaiter*
  140. name: GetAwaiter
  141. href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_GetAwaiter_
  142. commentId: Overload:Grpc.Core.AsyncClientStreamingCall`2.GetAwaiter
  143. fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.GetAwaiter
  144. fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).GetAwaiter
  145. nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.GetAwaiter
  146. nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).GetAwaiter
  147. - uid: Grpc.Core.AsyncClientStreamingCall`2.GetStatus
  148. name: GetStatus()
  149. href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_GetStatus
  150. commentId: M:Grpc.Core.AsyncClientStreamingCall`2.GetStatus
  151. fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.GetStatus()
  152. fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).GetStatus()
  153. nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.GetStatus()
  154. nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).GetStatus()
  155. - uid: Grpc.Core.AsyncClientStreamingCall`2.GetStatus*
  156. name: GetStatus
  157. href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_GetStatus_
  158. commentId: Overload:Grpc.Core.AsyncClientStreamingCall`2.GetStatus
  159. fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.GetStatus
  160. fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).GetStatus
  161. nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.GetStatus
  162. nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).GetStatus
  163. - uid: Grpc.Core.AsyncClientStreamingCall`2.GetTrailers
  164. name: GetTrailers()
  165. href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_GetTrailers
  166. commentId: M:Grpc.Core.AsyncClientStreamingCall`2.GetTrailers
  167. fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.GetTrailers()
  168. fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).GetTrailers()
  169. nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.GetTrailers()
  170. nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).GetTrailers()
  171. - uid: Grpc.Core.AsyncClientStreamingCall`2.GetTrailers*
  172. name: GetTrailers
  173. href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_GetTrailers_
  174. commentId: Overload:Grpc.Core.AsyncClientStreamingCall`2.GetTrailers
  175. fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.GetTrailers
  176. fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).GetTrailers
  177. nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.GetTrailers
  178. nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).GetTrailers
  179. - uid: Grpc.Core.AsyncClientStreamingCall`2.RequestStream
  180. name: RequestStream
  181. href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_RequestStream
  182. commentId: P:Grpc.Core.AsyncClientStreamingCall`2.RequestStream
  183. fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.RequestStream
  184. fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).RequestStream
  185. nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.RequestStream
  186. nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).RequestStream
  187. - uid: Grpc.Core.AsyncClientStreamingCall`2.RequestStream*
  188. name: RequestStream
  189. href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_RequestStream_
  190. commentId: Overload:Grpc.Core.AsyncClientStreamingCall`2.RequestStream
  191. fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.RequestStream
  192. fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).RequestStream
  193. nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.RequestStream
  194. nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).RequestStream
  195. - uid: Grpc.Core.AsyncClientStreamingCall`2.ResponseAsync
  196. name: ResponseAsync
  197. href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_ResponseAsync
  198. commentId: P:Grpc.Core.AsyncClientStreamingCall`2.ResponseAsync
  199. fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.ResponseAsync
  200. fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).ResponseAsync
  201. nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.ResponseAsync
  202. nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).ResponseAsync
  203. - uid: Grpc.Core.AsyncClientStreamingCall`2.ResponseAsync*
  204. name: ResponseAsync
  205. href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_ResponseAsync_
  206. commentId: Overload:Grpc.Core.AsyncClientStreamingCall`2.ResponseAsync
  207. fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.ResponseAsync
  208. fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).ResponseAsync
  209. nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.ResponseAsync
  210. nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).ResponseAsync
  211. - uid: Grpc.Core.AsyncClientStreamingCall`2.ResponseHeadersAsync
  212. name: ResponseHeadersAsync
  213. href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_ResponseHeadersAsync
  214. commentId: P:Grpc.Core.AsyncClientStreamingCall`2.ResponseHeadersAsync
  215. fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.ResponseHeadersAsync
  216. fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).ResponseHeadersAsync
  217. nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.ResponseHeadersAsync
  218. nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).ResponseHeadersAsync
  219. - uid: Grpc.Core.AsyncClientStreamingCall`2.ResponseHeadersAsync*
  220. name: ResponseHeadersAsync
  221. href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_ResponseHeadersAsync_
  222. commentId: Overload:Grpc.Core.AsyncClientStreamingCall`2.ResponseHeadersAsync
  223. fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.ResponseHeadersAsync
  224. fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).ResponseHeadersAsync
  225. nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.ResponseHeadersAsync
  226. nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).ResponseHeadersAsync
  227. - uid: Grpc.Core.AsyncDuplexStreamingCall`2
  228. name: AsyncDuplexStreamingCall<TRequest, TResponse>
  229. href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html
  230. commentId: T:Grpc.Core.AsyncDuplexStreamingCall`2
  231. name.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse)
  232. fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>
  233. fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse)
  234. nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>
  235. nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse)
  236. - uid: Grpc.Core.AsyncDuplexStreamingCall`2.Dispose
  237. name: Dispose()
  238. href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html#Grpc_Core_AsyncDuplexStreamingCall_2_Dispose
  239. commentId: M:Grpc.Core.AsyncDuplexStreamingCall`2.Dispose
  240. fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>.Dispose()
  241. fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse).Dispose()
  242. nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>.Dispose()
  243. nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse).Dispose()
  244. - uid: Grpc.Core.AsyncDuplexStreamingCall`2.Dispose*
  245. name: Dispose
  246. href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html#Grpc_Core_AsyncDuplexStreamingCall_2_Dispose_
  247. commentId: Overload:Grpc.Core.AsyncDuplexStreamingCall`2.Dispose
  248. fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>.Dispose
  249. fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse).Dispose
  250. nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>.Dispose
  251. nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse).Dispose
  252. - uid: Grpc.Core.AsyncDuplexStreamingCall`2.GetStatus
  253. name: GetStatus()
  254. href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html#Grpc_Core_AsyncDuplexStreamingCall_2_GetStatus
  255. commentId: M:Grpc.Core.AsyncDuplexStreamingCall`2.GetStatus
  256. fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>.GetStatus()
  257. fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse).GetStatus()
  258. nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>.GetStatus()
  259. nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse).GetStatus()
  260. - uid: Grpc.Core.AsyncDuplexStreamingCall`2.GetStatus*
  261. name: GetStatus
  262. href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html#Grpc_Core_AsyncDuplexStreamingCall_2_GetStatus_
  263. commentId: Overload:Grpc.Core.AsyncDuplexStreamingCall`2.GetStatus
  264. fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>.GetStatus
  265. fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse).GetStatus
  266. nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>.GetStatus
  267. nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse).GetStatus
  268. - uid: Grpc.Core.AsyncDuplexStreamingCall`2.GetTrailers
  269. name: GetTrailers()
  270. href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html#Grpc_Core_AsyncDuplexStreamingCall_2_GetTrailers
  271. commentId: M:Grpc.Core.AsyncDuplexStreamingCall`2.GetTrailers
  272. fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>.GetTrailers()
  273. fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse).GetTrailers()
  274. nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>.GetTrailers()
  275. nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse).GetTrailers()
  276. - uid: Grpc.Core.AsyncDuplexStreamingCall`2.GetTrailers*
  277. name: GetTrailers
  278. href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html#Grpc_Core_AsyncDuplexStreamingCall_2_GetTrailers_
  279. commentId: Overload:Grpc.Core.AsyncDuplexStreamingCall`2.GetTrailers
  280. fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>.GetTrailers
  281. fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse).GetTrailers
  282. nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>.GetTrailers
  283. nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse).GetTrailers
  284. - uid: Grpc.Core.AsyncDuplexStreamingCall`2.RequestStream
  285. name: RequestStream
  286. href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html#Grpc_Core_AsyncDuplexStreamingCall_2_RequestStream
  287. commentId: P:Grpc.Core.AsyncDuplexStreamingCall`2.RequestStream
  288. fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>.RequestStream
  289. fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse).RequestStream
  290. nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>.RequestStream
  291. nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse).RequestStream
  292. - uid: Grpc.Core.AsyncDuplexStreamingCall`2.RequestStream*
  293. name: RequestStream
  294. href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html#Grpc_Core_AsyncDuplexStreamingCall_2_RequestStream_
  295. commentId: Overload:Grpc.Core.AsyncDuplexStreamingCall`2.RequestStream
  296. fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>.RequestStream
  297. fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse).RequestStream
  298. nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>.RequestStream
  299. nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse).RequestStream
  300. - uid: Grpc.Core.AsyncDuplexStreamingCall`2.ResponseHeadersAsync
  301. name: ResponseHeadersAsync
  302. href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html#Grpc_Core_AsyncDuplexStreamingCall_2_ResponseHeadersAsync
  303. commentId: P:Grpc.Core.AsyncDuplexStreamingCall`2.ResponseHeadersAsync
  304. fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>.ResponseHeadersAsync
  305. fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse).ResponseHeadersAsync
  306. nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>.ResponseHeadersAsync
  307. nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse).ResponseHeadersAsync
  308. - uid: Grpc.Core.AsyncDuplexStreamingCall`2.ResponseHeadersAsync*
  309. name: ResponseHeadersAsync
  310. href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html#Grpc_Core_AsyncDuplexStreamingCall_2_ResponseHeadersAsync_
  311. commentId: Overload:Grpc.Core.AsyncDuplexStreamingCall`2.ResponseHeadersAsync
  312. fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>.ResponseHeadersAsync
  313. fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse).ResponseHeadersAsync
  314. nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>.ResponseHeadersAsync
  315. nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse).ResponseHeadersAsync
  316. - uid: Grpc.Core.AsyncDuplexStreamingCall`2.ResponseStream
  317. name: ResponseStream
  318. href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html#Grpc_Core_AsyncDuplexStreamingCall_2_ResponseStream
  319. commentId: P:Grpc.Core.AsyncDuplexStreamingCall`2.ResponseStream
  320. fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>.ResponseStream
  321. fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse).ResponseStream
  322. nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>.ResponseStream
  323. nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse).ResponseStream
  324. - uid: Grpc.Core.AsyncDuplexStreamingCall`2.ResponseStream*
  325. name: ResponseStream
  326. href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html#Grpc_Core_AsyncDuplexStreamingCall_2_ResponseStream_
  327. commentId: Overload:Grpc.Core.AsyncDuplexStreamingCall`2.ResponseStream
  328. fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>.ResponseStream
  329. fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse).ResponseStream
  330. nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>.ResponseStream
  331. nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse).ResponseStream
  332. - uid: Grpc.Core.AsyncServerStreamingCall`1
  333. name: AsyncServerStreamingCall<TResponse>
  334. href: api/Grpc.Core.AsyncServerStreamingCall-1.html
  335. commentId: T:Grpc.Core.AsyncServerStreamingCall`1
  336. name.vb: AsyncServerStreamingCall(Of TResponse)
  337. fullName: Grpc.Core.AsyncServerStreamingCall<TResponse>
  338. fullName.vb: Grpc.Core.AsyncServerStreamingCall(Of TResponse)
  339. nameWithType: AsyncServerStreamingCall<TResponse>
  340. nameWithType.vb: AsyncServerStreamingCall(Of TResponse)
  341. - uid: Grpc.Core.AsyncServerStreamingCall`1.Dispose
  342. name: Dispose()
  343. href: api/Grpc.Core.AsyncServerStreamingCall-1.html#Grpc_Core_AsyncServerStreamingCall_1_Dispose
  344. commentId: M:Grpc.Core.AsyncServerStreamingCall`1.Dispose
  345. fullName: Grpc.Core.AsyncServerStreamingCall<TResponse>.Dispose()
  346. fullName.vb: Grpc.Core.AsyncServerStreamingCall(Of TResponse).Dispose()
  347. nameWithType: AsyncServerStreamingCall<TResponse>.Dispose()
  348. nameWithType.vb: AsyncServerStreamingCall(Of TResponse).Dispose()
  349. - uid: Grpc.Core.AsyncServerStreamingCall`1.Dispose*
  350. name: Dispose
  351. href: api/Grpc.Core.AsyncServerStreamingCall-1.html#Grpc_Core_AsyncServerStreamingCall_1_Dispose_
  352. commentId: Overload:Grpc.Core.AsyncServerStreamingCall`1.Dispose
  353. fullName: Grpc.Core.AsyncServerStreamingCall<TResponse>.Dispose
  354. fullName.vb: Grpc.Core.AsyncServerStreamingCall(Of TResponse).Dispose
  355. nameWithType: AsyncServerStreamingCall<TResponse>.Dispose
  356. nameWithType.vb: AsyncServerStreamingCall(Of TResponse).Dispose
  357. - uid: Grpc.Core.AsyncServerStreamingCall`1.GetStatus
  358. name: GetStatus()
  359. href: api/Grpc.Core.AsyncServerStreamingCall-1.html#Grpc_Core_AsyncServerStreamingCall_1_GetStatus
  360. commentId: M:Grpc.Core.AsyncServerStreamingCall`1.GetStatus
  361. fullName: Grpc.Core.AsyncServerStreamingCall<TResponse>.GetStatus()
  362. fullName.vb: Grpc.Core.AsyncServerStreamingCall(Of TResponse).GetStatus()
  363. nameWithType: AsyncServerStreamingCall<TResponse>.GetStatus()
  364. nameWithType.vb: AsyncServerStreamingCall(Of TResponse).GetStatus()
  365. - uid: Grpc.Core.AsyncServerStreamingCall`1.GetStatus*
  366. name: GetStatus
  367. href: api/Grpc.Core.AsyncServerStreamingCall-1.html#Grpc_Core_AsyncServerStreamingCall_1_GetStatus_
  368. commentId: Overload:Grpc.Core.AsyncServerStreamingCall`1.GetStatus
  369. fullName: Grpc.Core.AsyncServerStreamingCall<TResponse>.GetStatus
  370. fullName.vb: Grpc.Core.AsyncServerStreamingCall(Of TResponse).GetStatus
  371. nameWithType: AsyncServerStreamingCall<TResponse>.GetStatus
  372. nameWithType.vb: AsyncServerStreamingCall(Of TResponse).GetStatus
  373. - uid: Grpc.Core.AsyncServerStreamingCall`1.GetTrailers
  374. name: GetTrailers()
  375. href: api/Grpc.Core.AsyncServerStreamingCall-1.html#Grpc_Core_AsyncServerStreamingCall_1_GetTrailers
  376. commentId: M:Grpc.Core.AsyncServerStreamingCall`1.GetTrailers
  377. fullName: Grpc.Core.AsyncServerStreamingCall<TResponse>.GetTrailers()
  378. fullName.vb: Grpc.Core.AsyncServerStreamingCall(Of TResponse).GetTrailers()
  379. nameWithType: AsyncServerStreamingCall<TResponse>.GetTrailers()
  380. nameWithType.vb: AsyncServerStreamingCall(Of TResponse).GetTrailers()
  381. - uid: Grpc.Core.AsyncServerStreamingCall`1.GetTrailers*
  382. name: GetTrailers
  383. href: api/Grpc.Core.AsyncServerStreamingCall-1.html#Grpc_Core_AsyncServerStreamingCall_1_GetTrailers_
  384. commentId: Overload:Grpc.Core.AsyncServerStreamingCall`1.GetTrailers
  385. fullName: Grpc.Core.AsyncServerStreamingCall<TResponse>.GetTrailers
  386. fullName.vb: Grpc.Core.AsyncServerStreamingCall(Of TResponse).GetTrailers
  387. nameWithType: AsyncServerStreamingCall<TResponse>.GetTrailers
  388. nameWithType.vb: AsyncServerStreamingCall(Of TResponse).GetTrailers
  389. - uid: Grpc.Core.AsyncServerStreamingCall`1.ResponseHeadersAsync
  390. name: ResponseHeadersAsync
  391. href: api/Grpc.Core.AsyncServerStreamingCall-1.html#Grpc_Core_AsyncServerStreamingCall_1_ResponseHeadersAsync
  392. commentId: P:Grpc.Core.AsyncServerStreamingCall`1.ResponseHeadersAsync
  393. fullName: Grpc.Core.AsyncServerStreamingCall<TResponse>.ResponseHeadersAsync
  394. fullName.vb: Grpc.Core.AsyncServerStreamingCall(Of TResponse).ResponseHeadersAsync
  395. nameWithType: AsyncServerStreamingCall<TResponse>.ResponseHeadersAsync
  396. nameWithType.vb: AsyncServerStreamingCall(Of TResponse).ResponseHeadersAsync
  397. - uid: Grpc.Core.AsyncServerStreamingCall`1.ResponseHeadersAsync*
  398. name: ResponseHeadersAsync
  399. href: api/Grpc.Core.AsyncServerStreamingCall-1.html#Grpc_Core_AsyncServerStreamingCall_1_ResponseHeadersAsync_
  400. commentId: Overload:Grpc.Core.AsyncServerStreamingCall`1.ResponseHeadersAsync
  401. fullName: Grpc.Core.AsyncServerStreamingCall<TResponse>.ResponseHeadersAsync
  402. fullName.vb: Grpc.Core.AsyncServerStreamingCall(Of TResponse).ResponseHeadersAsync
  403. nameWithType: AsyncServerStreamingCall<TResponse>.ResponseHeadersAsync
  404. nameWithType.vb: AsyncServerStreamingCall(Of TResponse).ResponseHeadersAsync
  405. - uid: Grpc.Core.AsyncServerStreamingCall`1.ResponseStream
  406. name: ResponseStream
  407. href: api/Grpc.Core.AsyncServerStreamingCall-1.html#Grpc_Core_AsyncServerStreamingCall_1_ResponseStream
  408. commentId: P:Grpc.Core.AsyncServerStreamingCall`1.ResponseStream
  409. fullName: Grpc.Core.AsyncServerStreamingCall<TResponse>.ResponseStream
  410. fullName.vb: Grpc.Core.AsyncServerStreamingCall(Of TResponse).ResponseStream
  411. nameWithType: AsyncServerStreamingCall<TResponse>.ResponseStream
  412. nameWithType.vb: AsyncServerStreamingCall(Of TResponse).ResponseStream
  413. - uid: Grpc.Core.AsyncServerStreamingCall`1.ResponseStream*
  414. name: ResponseStream
  415. href: api/Grpc.Core.AsyncServerStreamingCall-1.html#Grpc_Core_AsyncServerStreamingCall_1_ResponseStream_
  416. commentId: Overload:Grpc.Core.AsyncServerStreamingCall`1.ResponseStream
  417. fullName: Grpc.Core.AsyncServerStreamingCall<TResponse>.ResponseStream
  418. fullName.vb: Grpc.Core.AsyncServerStreamingCall(Of TResponse).ResponseStream
  419. nameWithType: AsyncServerStreamingCall<TResponse>.ResponseStream
  420. nameWithType.vb: AsyncServerStreamingCall(Of TResponse).ResponseStream
  421. - uid: Grpc.Core.AsyncUnaryCall`1
  422. name: AsyncUnaryCall<TResponse>
  423. href: api/Grpc.Core.AsyncUnaryCall-1.html
  424. commentId: T:Grpc.Core.AsyncUnaryCall`1
  425. name.vb: AsyncUnaryCall(Of TResponse)
  426. fullName: Grpc.Core.AsyncUnaryCall<TResponse>
  427. fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse)
  428. nameWithType: AsyncUnaryCall<TResponse>
  429. nameWithType.vb: AsyncUnaryCall(Of TResponse)
  430. - uid: Grpc.Core.AsyncUnaryCall`1.Dispose
  431. name: Dispose()
  432. href: api/Grpc.Core.AsyncUnaryCall-1.html#Grpc_Core_AsyncUnaryCall_1_Dispose
  433. commentId: M:Grpc.Core.AsyncUnaryCall`1.Dispose
  434. fullName: Grpc.Core.AsyncUnaryCall<TResponse>.Dispose()
  435. fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse).Dispose()
  436. nameWithType: AsyncUnaryCall<TResponse>.Dispose()
  437. nameWithType.vb: AsyncUnaryCall(Of TResponse).Dispose()
  438. - uid: Grpc.Core.AsyncUnaryCall`1.Dispose*
  439. name: Dispose
  440. href: api/Grpc.Core.AsyncUnaryCall-1.html#Grpc_Core_AsyncUnaryCall_1_Dispose_
  441. commentId: Overload:Grpc.Core.AsyncUnaryCall`1.Dispose
  442. fullName: Grpc.Core.AsyncUnaryCall<TResponse>.Dispose
  443. fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse).Dispose
  444. nameWithType: AsyncUnaryCall<TResponse>.Dispose
  445. nameWithType.vb: AsyncUnaryCall(Of TResponse).Dispose
  446. - uid: Grpc.Core.AsyncUnaryCall`1.GetAwaiter
  447. name: GetAwaiter()
  448. href: api/Grpc.Core.AsyncUnaryCall-1.html#Grpc_Core_AsyncUnaryCall_1_GetAwaiter
  449. commentId: M:Grpc.Core.AsyncUnaryCall`1.GetAwaiter
  450. fullName: Grpc.Core.AsyncUnaryCall<TResponse>.GetAwaiter()
  451. fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse).GetAwaiter()
  452. nameWithType: AsyncUnaryCall<TResponse>.GetAwaiter()
  453. nameWithType.vb: AsyncUnaryCall(Of TResponse).GetAwaiter()
  454. - uid: Grpc.Core.AsyncUnaryCall`1.GetAwaiter*
  455. name: GetAwaiter
  456. href: api/Grpc.Core.AsyncUnaryCall-1.html#Grpc_Core_AsyncUnaryCall_1_GetAwaiter_
  457. commentId: Overload:Grpc.Core.AsyncUnaryCall`1.GetAwaiter
  458. fullName: Grpc.Core.AsyncUnaryCall<TResponse>.GetAwaiter
  459. fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse).GetAwaiter
  460. nameWithType: AsyncUnaryCall<TResponse>.GetAwaiter
  461. nameWithType.vb: AsyncUnaryCall(Of TResponse).GetAwaiter
  462. - uid: Grpc.Core.AsyncUnaryCall`1.GetStatus
  463. name: GetStatus()
  464. href: api/Grpc.Core.AsyncUnaryCall-1.html#Grpc_Core_AsyncUnaryCall_1_GetStatus
  465. commentId: M:Grpc.Core.AsyncUnaryCall`1.GetStatus
  466. fullName: Grpc.Core.AsyncUnaryCall<TResponse>.GetStatus()
  467. fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse).GetStatus()
  468. nameWithType: AsyncUnaryCall<TResponse>.GetStatus()
  469. nameWithType.vb: AsyncUnaryCall(Of TResponse).GetStatus()
  470. - uid: Grpc.Core.AsyncUnaryCall`1.GetStatus*
  471. name: GetStatus
  472. href: api/Grpc.Core.AsyncUnaryCall-1.html#Grpc_Core_AsyncUnaryCall_1_GetStatus_
  473. commentId: Overload:Grpc.Core.AsyncUnaryCall`1.GetStatus
  474. fullName: Grpc.Core.AsyncUnaryCall<TResponse>.GetStatus
  475. fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse).GetStatus
  476. nameWithType: AsyncUnaryCall<TResponse>.GetStatus
  477. nameWithType.vb: AsyncUnaryCall(Of TResponse).GetStatus
  478. - uid: Grpc.Core.AsyncUnaryCall`1.GetTrailers
  479. name: GetTrailers()
  480. href: api/Grpc.Core.AsyncUnaryCall-1.html#Grpc_Core_AsyncUnaryCall_1_GetTrailers
  481. commentId: M:Grpc.Core.AsyncUnaryCall`1.GetTrailers
  482. fullName: Grpc.Core.AsyncUnaryCall<TResponse>.GetTrailers()
  483. fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse).GetTrailers()
  484. nameWithType: AsyncUnaryCall<TResponse>.GetTrailers()
  485. nameWithType.vb: AsyncUnaryCall(Of TResponse).GetTrailers()
  486. - uid: Grpc.Core.AsyncUnaryCall`1.GetTrailers*
  487. name: GetTrailers
  488. href: api/Grpc.Core.AsyncUnaryCall-1.html#Grpc_Core_AsyncUnaryCall_1_GetTrailers_
  489. commentId: Overload:Grpc.Core.AsyncUnaryCall`1.GetTrailers
  490. fullName: Grpc.Core.AsyncUnaryCall<TResponse>.GetTrailers
  491. fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse).GetTrailers
  492. nameWithType: AsyncUnaryCall<TResponse>.GetTrailers
  493. nameWithType.vb: AsyncUnaryCall(Of TResponse).GetTrailers
  494. - uid: Grpc.Core.AsyncUnaryCall`1.ResponseAsync
  495. name: ResponseAsync
  496. href: api/Grpc.Core.AsyncUnaryCall-1.html#Grpc_Core_AsyncUnaryCall_1_ResponseAsync
  497. commentId: P:Grpc.Core.AsyncUnaryCall`1.ResponseAsync
  498. fullName: Grpc.Core.AsyncUnaryCall<TResponse>.ResponseAsync
  499. fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse).ResponseAsync
  500. nameWithType: AsyncUnaryCall<TResponse>.ResponseAsync
  501. nameWithType.vb: AsyncUnaryCall(Of TResponse).ResponseAsync
  502. - uid: Grpc.Core.AsyncUnaryCall`1.ResponseAsync*
  503. name: ResponseAsync
  504. href: api/Grpc.Core.AsyncUnaryCall-1.html#Grpc_Core_AsyncUnaryCall_1_ResponseAsync_
  505. commentId: Overload:Grpc.Core.AsyncUnaryCall`1.ResponseAsync
  506. fullName: Grpc.Core.AsyncUnaryCall<TResponse>.ResponseAsync
  507. fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse).ResponseAsync
  508. nameWithType: AsyncUnaryCall<TResponse>.ResponseAsync
  509. nameWithType.vb: AsyncUnaryCall(Of TResponse).ResponseAsync
  510. - uid: Grpc.Core.AsyncUnaryCall`1.ResponseHeadersAsync
  511. name: ResponseHeadersAsync
  512. href: api/Grpc.Core.AsyncUnaryCall-1.html#Grpc_Core_AsyncUnaryCall_1_ResponseHeadersAsync
  513. commentId: P:Grpc.Core.AsyncUnaryCall`1.ResponseHeadersAsync
  514. fullName: Grpc.Core.AsyncUnaryCall<TResponse>.ResponseHeadersAsync
  515. fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse).ResponseHeadersAsync
  516. nameWithType: AsyncUnaryCall<TResponse>.ResponseHeadersAsync
  517. nameWithType.vb: AsyncUnaryCall(Of TResponse).ResponseHeadersAsync
  518. - uid: Grpc.Core.AsyncUnaryCall`1.ResponseHeadersAsync*
  519. name: ResponseHeadersAsync
  520. href: api/Grpc.Core.AsyncUnaryCall-1.html#Grpc_Core_AsyncUnaryCall_1_ResponseHeadersAsync_
  521. commentId: Overload:Grpc.Core.AsyncUnaryCall`1.ResponseHeadersAsync
  522. fullName: Grpc.Core.AsyncUnaryCall<TResponse>.ResponseHeadersAsync
  523. fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse).ResponseHeadersAsync
  524. nameWithType: AsyncUnaryCall<TResponse>.ResponseHeadersAsync
  525. nameWithType.vb: AsyncUnaryCall(Of TResponse).ResponseHeadersAsync
  526. - uid: Grpc.Core.AuthContext
  527. name: AuthContext
  528. href: api/Grpc.Core.AuthContext.html
  529. commentId: T:Grpc.Core.AuthContext
  530. fullName: Grpc.Core.AuthContext
  531. nameWithType: AuthContext
  532. - uid: Grpc.Core.AuthContext.FindPropertiesByName(System.String)
  533. name: FindPropertiesByName(String)
  534. href: api/Grpc.Core.AuthContext.html#Grpc_Core_AuthContext_FindPropertiesByName_System_String_
  535. commentId: M:Grpc.Core.AuthContext.FindPropertiesByName(System.String)
  536. fullName: Grpc.Core.AuthContext.FindPropertiesByName(System.String)
  537. nameWithType: AuthContext.FindPropertiesByName(String)
  538. - uid: Grpc.Core.AuthContext.FindPropertiesByName*
  539. name: FindPropertiesByName
  540. href: api/Grpc.Core.AuthContext.html#Grpc_Core_AuthContext_FindPropertiesByName_
  541. commentId: Overload:Grpc.Core.AuthContext.FindPropertiesByName
  542. fullName: Grpc.Core.AuthContext.FindPropertiesByName
  543. nameWithType: AuthContext.FindPropertiesByName
  544. - uid: Grpc.Core.AuthContext.IsPeerAuthenticated
  545. name: IsPeerAuthenticated
  546. href: api/Grpc.Core.AuthContext.html#Grpc_Core_AuthContext_IsPeerAuthenticated
  547. commentId: P:Grpc.Core.AuthContext.IsPeerAuthenticated
  548. fullName: Grpc.Core.AuthContext.IsPeerAuthenticated
  549. nameWithType: AuthContext.IsPeerAuthenticated
  550. - uid: Grpc.Core.AuthContext.IsPeerAuthenticated*
  551. name: IsPeerAuthenticated
  552. href: api/Grpc.Core.AuthContext.html#Grpc_Core_AuthContext_IsPeerAuthenticated_
  553. commentId: Overload:Grpc.Core.AuthContext.IsPeerAuthenticated
  554. fullName: Grpc.Core.AuthContext.IsPeerAuthenticated
  555. nameWithType: AuthContext.IsPeerAuthenticated
  556. - uid: Grpc.Core.AuthContext.PeerIdentity
  557. name: PeerIdentity
  558. href: api/Grpc.Core.AuthContext.html#Grpc_Core_AuthContext_PeerIdentity
  559. commentId: P:Grpc.Core.AuthContext.PeerIdentity
  560. fullName: Grpc.Core.AuthContext.PeerIdentity
  561. nameWithType: AuthContext.PeerIdentity
  562. - uid: Grpc.Core.AuthContext.PeerIdentity*
  563. name: PeerIdentity
  564. href: api/Grpc.Core.AuthContext.html#Grpc_Core_AuthContext_PeerIdentity_
  565. commentId: Overload:Grpc.Core.AuthContext.PeerIdentity
  566. fullName: Grpc.Core.AuthContext.PeerIdentity
  567. nameWithType: AuthContext.PeerIdentity
  568. - uid: Grpc.Core.AuthContext.PeerIdentityPropertyName
  569. name: PeerIdentityPropertyName
  570. href: api/Grpc.Core.AuthContext.html#Grpc_Core_AuthContext_PeerIdentityPropertyName
  571. commentId: P:Grpc.Core.AuthContext.PeerIdentityPropertyName
  572. fullName: Grpc.Core.AuthContext.PeerIdentityPropertyName
  573. nameWithType: AuthContext.PeerIdentityPropertyName
  574. - uid: Grpc.Core.AuthContext.PeerIdentityPropertyName*
  575. name: PeerIdentityPropertyName
  576. href: api/Grpc.Core.AuthContext.html#Grpc_Core_AuthContext_PeerIdentityPropertyName_
  577. commentId: Overload:Grpc.Core.AuthContext.PeerIdentityPropertyName
  578. fullName: Grpc.Core.AuthContext.PeerIdentityPropertyName
  579. nameWithType: AuthContext.PeerIdentityPropertyName
  580. - uid: Grpc.Core.AuthContext.Properties
  581. name: Properties
  582. href: api/Grpc.Core.AuthContext.html#Grpc_Core_AuthContext_Properties
  583. commentId: P:Grpc.Core.AuthContext.Properties
  584. fullName: Grpc.Core.AuthContext.Properties
  585. nameWithType: AuthContext.Properties
  586. - uid: Grpc.Core.AuthContext.Properties*
  587. name: Properties
  588. href: api/Grpc.Core.AuthContext.html#Grpc_Core_AuthContext_Properties_
  589. commentId: Overload:Grpc.Core.AuthContext.Properties
  590. fullName: Grpc.Core.AuthContext.Properties
  591. nameWithType: AuthContext.Properties
  592. - uid: Grpc.Core.AuthInterceptorContext
  593. name: AuthInterceptorContext
  594. href: api/Grpc.Core.AuthInterceptorContext.html
  595. commentId: T:Grpc.Core.AuthInterceptorContext
  596. fullName: Grpc.Core.AuthInterceptorContext
  597. nameWithType: AuthInterceptorContext
  598. - uid: Grpc.Core.AuthInterceptorContext.#ctor(System.String,System.String)
  599. name: AuthInterceptorContext(String, String)
  600. href: api/Grpc.Core.AuthInterceptorContext.html#Grpc_Core_AuthInterceptorContext__ctor_System_String_System_String_
  601. commentId: M:Grpc.Core.AuthInterceptorContext.#ctor(System.String,System.String)
  602. fullName: Grpc.Core.AuthInterceptorContext.AuthInterceptorContext(System.String, System.String)
  603. nameWithType: AuthInterceptorContext.AuthInterceptorContext(String, String)
  604. - uid: Grpc.Core.AuthInterceptorContext.#ctor*
  605. name: AuthInterceptorContext
  606. href: api/Grpc.Core.AuthInterceptorContext.html#Grpc_Core_AuthInterceptorContext__ctor_
  607. commentId: Overload:Grpc.Core.AuthInterceptorContext.#ctor
  608. fullName: Grpc.Core.AuthInterceptorContext.AuthInterceptorContext
  609. nameWithType: AuthInterceptorContext.AuthInterceptorContext
  610. - uid: Grpc.Core.AuthInterceptorContext.MethodName
  611. name: MethodName
  612. href: api/Grpc.Core.AuthInterceptorContext.html#Grpc_Core_AuthInterceptorContext_MethodName
  613. commentId: P:Grpc.Core.AuthInterceptorContext.MethodName
  614. fullName: Grpc.Core.AuthInterceptorContext.MethodName
  615. nameWithType: AuthInterceptorContext.MethodName
  616. - uid: Grpc.Core.AuthInterceptorContext.MethodName*
  617. name: MethodName
  618. href: api/Grpc.Core.AuthInterceptorContext.html#Grpc_Core_AuthInterceptorContext_MethodName_
  619. commentId: Overload:Grpc.Core.AuthInterceptorContext.MethodName
  620. fullName: Grpc.Core.AuthInterceptorContext.MethodName
  621. nameWithType: AuthInterceptorContext.MethodName
  622. - uid: Grpc.Core.AuthInterceptorContext.ServiceUrl
  623. name: ServiceUrl
  624. href: api/Grpc.Core.AuthInterceptorContext.html#Grpc_Core_AuthInterceptorContext_ServiceUrl
  625. commentId: P:Grpc.Core.AuthInterceptorContext.ServiceUrl
  626. fullName: Grpc.Core.AuthInterceptorContext.ServiceUrl
  627. nameWithType: AuthInterceptorContext.ServiceUrl
  628. - uid: Grpc.Core.AuthInterceptorContext.ServiceUrl*
  629. name: ServiceUrl
  630. href: api/Grpc.Core.AuthInterceptorContext.html#Grpc_Core_AuthInterceptorContext_ServiceUrl_
  631. commentId: Overload:Grpc.Core.AuthInterceptorContext.ServiceUrl
  632. fullName: Grpc.Core.AuthInterceptorContext.ServiceUrl
  633. nameWithType: AuthInterceptorContext.ServiceUrl
  634. - uid: Grpc.Core.AuthProperty
  635. name: AuthProperty
  636. href: api/Grpc.Core.AuthProperty.html
  637. commentId: T:Grpc.Core.AuthProperty
  638. fullName: Grpc.Core.AuthProperty
  639. nameWithType: AuthProperty
  640. - uid: Grpc.Core.AuthProperty.Create(System.String,System.Byte[])
  641. name: Create(String, Byte[])
  642. href: api/Grpc.Core.AuthProperty.html#Grpc_Core_AuthProperty_Create_System_String_System_Byte___
  643. commentId: M:Grpc.Core.AuthProperty.Create(System.String,System.Byte[])
  644. name.vb: Create(String, Byte())
  645. fullName: Grpc.Core.AuthProperty.Create(System.String, System.Byte[])
  646. fullName.vb: Grpc.Core.AuthProperty.Create(System.String, System.Byte())
  647. nameWithType: AuthProperty.Create(String, Byte[])
  648. nameWithType.vb: AuthProperty.Create(String, Byte())
  649. - uid: Grpc.Core.AuthProperty.Create*
  650. name: Create
  651. href: api/Grpc.Core.AuthProperty.html#Grpc_Core_AuthProperty_Create_
  652. commentId: Overload:Grpc.Core.AuthProperty.Create
  653. fullName: Grpc.Core.AuthProperty.Create
  654. nameWithType: AuthProperty.Create
  655. - uid: Grpc.Core.AuthProperty.Name
  656. name: Name
  657. href: api/Grpc.Core.AuthProperty.html#Grpc_Core_AuthProperty_Name
  658. commentId: P:Grpc.Core.AuthProperty.Name
  659. fullName: Grpc.Core.AuthProperty.Name
  660. nameWithType: AuthProperty.Name
  661. - uid: Grpc.Core.AuthProperty.Name*
  662. name: Name
  663. href: api/Grpc.Core.AuthProperty.html#Grpc_Core_AuthProperty_Name_
  664. commentId: Overload:Grpc.Core.AuthProperty.Name
  665. fullName: Grpc.Core.AuthProperty.Name
  666. nameWithType: AuthProperty.Name
  667. - uid: Grpc.Core.AuthProperty.Value
  668. name: Value
  669. href: api/Grpc.Core.AuthProperty.html#Grpc_Core_AuthProperty_Value
  670. commentId: P:Grpc.Core.AuthProperty.Value
  671. fullName: Grpc.Core.AuthProperty.Value
  672. nameWithType: AuthProperty.Value
  673. - uid: Grpc.Core.AuthProperty.Value*
  674. name: Value
  675. href: api/Grpc.Core.AuthProperty.html#Grpc_Core_AuthProperty_Value_
  676. commentId: Overload:Grpc.Core.AuthProperty.Value
  677. fullName: Grpc.Core.AuthProperty.Value
  678. nameWithType: AuthProperty.Value
  679. - uid: Grpc.Core.AuthProperty.ValueBytes
  680. name: ValueBytes
  681. href: api/Grpc.Core.AuthProperty.html#Grpc_Core_AuthProperty_ValueBytes
  682. commentId: P:Grpc.Core.AuthProperty.ValueBytes
  683. fullName: Grpc.Core.AuthProperty.ValueBytes
  684. nameWithType: AuthProperty.ValueBytes
  685. - uid: Grpc.Core.AuthProperty.ValueBytes*
  686. name: ValueBytes
  687. href: api/Grpc.Core.AuthProperty.html#Grpc_Core_AuthProperty_ValueBytes_
  688. commentId: Overload:Grpc.Core.AuthProperty.ValueBytes
  689. fullName: Grpc.Core.AuthProperty.ValueBytes
  690. nameWithType: AuthProperty.ValueBytes
  691. - uid: Grpc.Core.CallCredentials
  692. name: CallCredentials
  693. href: api/Grpc.Core.CallCredentials.html
  694. commentId: T:Grpc.Core.CallCredentials
  695. fullName: Grpc.Core.CallCredentials
  696. nameWithType: CallCredentials
  697. - uid: Grpc.Core.CallCredentials.Compose(Grpc.Core.CallCredentials[])
  698. name: Compose(CallCredentials[])
  699. href: api/Grpc.Core.CallCredentials.html#Grpc_Core_CallCredentials_Compose_Grpc_Core_CallCredentials___
  700. commentId: M:Grpc.Core.CallCredentials.Compose(Grpc.Core.CallCredentials[])
  701. name.vb: Compose(CallCredentials())
  702. fullName: Grpc.Core.CallCredentials.Compose(Grpc.Core.CallCredentials[])
  703. fullName.vb: Grpc.Core.CallCredentials.Compose(Grpc.Core.CallCredentials())
  704. nameWithType: CallCredentials.Compose(CallCredentials[])
  705. nameWithType.vb: CallCredentials.Compose(CallCredentials())
  706. - uid: Grpc.Core.CallCredentials.Compose*
  707. name: Compose
  708. href: api/Grpc.Core.CallCredentials.html#Grpc_Core_CallCredentials_Compose_
  709. commentId: Overload:Grpc.Core.CallCredentials.Compose
  710. fullName: Grpc.Core.CallCredentials.Compose
  711. nameWithType: CallCredentials.Compose
  712. - uid: Grpc.Core.CallCredentials.FromInterceptor(Grpc.Core.AsyncAuthInterceptor)
  713. name: FromInterceptor(AsyncAuthInterceptor)
  714. href: api/Grpc.Core.CallCredentials.html#Grpc_Core_CallCredentials_FromInterceptor_Grpc_Core_AsyncAuthInterceptor_
  715. commentId: M:Grpc.Core.CallCredentials.FromInterceptor(Grpc.Core.AsyncAuthInterceptor)
  716. fullName: Grpc.Core.CallCredentials.FromInterceptor(Grpc.Core.AsyncAuthInterceptor)
  717. nameWithType: CallCredentials.FromInterceptor(AsyncAuthInterceptor)
  718. - uid: Grpc.Core.CallCredentials.FromInterceptor*
  719. name: FromInterceptor
  720. href: api/Grpc.Core.CallCredentials.html#Grpc_Core_CallCredentials_FromInterceptor_
  721. commentId: Overload:Grpc.Core.CallCredentials.FromInterceptor
  722. fullName: Grpc.Core.CallCredentials.FromInterceptor
  723. nameWithType: CallCredentials.FromInterceptor
  724. - uid: Grpc.Core.CallInvocationDetails`2
  725. name: CallInvocationDetails<TRequest, TResponse>
  726. href: api/Grpc.Core.CallInvocationDetails-2.html
  727. commentId: T:Grpc.Core.CallInvocationDetails`2
  728. name.vb: CallInvocationDetails(Of TRequest, TResponse)
  729. fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>
  730. fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse)
  731. nameWithType: CallInvocationDetails<TRequest, TResponse>
  732. nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse)
  733. - uid: Grpc.Core.CallInvocationDetails`2.#ctor(Grpc.Core.Channel,Grpc.Core.Method{`0,`1},Grpc.Core.CallOptions)
  734. name: CallInvocationDetails(Channel, Method<TRequest, TResponse>, CallOptions)
  735. href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2__ctor_Grpc_Core_Channel_Grpc_Core_Method__0__1__Grpc_Core_CallOptions_
  736. commentId: M:Grpc.Core.CallInvocationDetails`2.#ctor(Grpc.Core.Channel,Grpc.Core.Method{`0,`1},Grpc.Core.CallOptions)
  737. name.vb: CallInvocationDetails(Channel, Method(Of TRequest, TResponse), CallOptions)
  738. fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.CallInvocationDetails(Grpc.Core.Channel, Grpc.Core.Method<TRequest, TResponse>, Grpc.Core.CallOptions)
  739. fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).CallInvocationDetails(Grpc.Core.Channel, Grpc.Core.Method(Of TRequest, TResponse), Grpc.Core.CallOptions)
  740. nameWithType: CallInvocationDetails<TRequest, TResponse>.CallInvocationDetails(Channel, Method<TRequest, TResponse>, CallOptions)
  741. nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).CallInvocationDetails(Channel, Method(Of TRequest, TResponse), CallOptions)
  742. - uid: Grpc.Core.CallInvocationDetails`2.#ctor(Grpc.Core.Channel,Grpc.Core.Method{`0,`1},System.String,Grpc.Core.CallOptions)
  743. name: CallInvocationDetails(Channel, Method<TRequest, TResponse>, String, CallOptions)
  744. href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2__ctor_Grpc_Core_Channel_Grpc_Core_Method__0__1__System_String_Grpc_Core_CallOptions_
  745. commentId: M:Grpc.Core.CallInvocationDetails`2.#ctor(Grpc.Core.Channel,Grpc.Core.Method{`0,`1},System.String,Grpc.Core.CallOptions)
  746. name.vb: CallInvocationDetails(Channel, Method(Of TRequest, TResponse), String, CallOptions)
  747. fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.CallInvocationDetails(Grpc.Core.Channel, Grpc.Core.Method<TRequest, TResponse>, System.String, Grpc.Core.CallOptions)
  748. fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).CallInvocationDetails(Grpc.Core.Channel, Grpc.Core.Method(Of TRequest, TResponse), System.String, Grpc.Core.CallOptions)
  749. nameWithType: CallInvocationDetails<TRequest, TResponse>.CallInvocationDetails(Channel, Method<TRequest, TResponse>, String, CallOptions)
  750. nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).CallInvocationDetails(Channel, Method(Of TRequest, TResponse), String, CallOptions)
  751. - uid: Grpc.Core.CallInvocationDetails`2.#ctor(Grpc.Core.Channel,System.String,System.String,Grpc.Core.Marshaller{`0},Grpc.Core.Marshaller{`1},Grpc.Core.CallOptions)
  752. name: CallInvocationDetails(Channel, String, String, Marshaller<TRequest>, Marshaller<TResponse>, CallOptions)
  753. href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2__ctor_Grpc_Core_Channel_System_String_System_String_Grpc_Core_Marshaller__0__Grpc_Core_Marshaller__1__Grpc_Core_CallOptions_
  754. commentId: M:Grpc.Core.CallInvocationDetails`2.#ctor(Grpc.Core.Channel,System.String,System.String,Grpc.Core.Marshaller{`0},Grpc.Core.Marshaller{`1},Grpc.Core.CallOptions)
  755. name.vb: CallInvocationDetails(Channel, String, String, Marshaller(Of TRequest), Marshaller(Of TResponse), CallOptions)
  756. fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.CallInvocationDetails(Grpc.Core.Channel, System.String, System.String, Grpc.Core.Marshaller<TRequest>, Grpc.Core.Marshaller<TResponse>, Grpc.Core.CallOptions)
  757. fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).CallInvocationDetails(Grpc.Core.Channel, System.String, System.String, Grpc.Core.Marshaller(Of TRequest), Grpc.Core.Marshaller(Of TResponse), Grpc.Core.CallOptions)
  758. nameWithType: CallInvocationDetails<TRequest, TResponse>.CallInvocationDetails(Channel, String, String, Marshaller<TRequest>, Marshaller<TResponse>, CallOptions)
  759. nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).CallInvocationDetails(Channel, String, String, Marshaller(Of TRequest), Marshaller(Of TResponse), CallOptions)
  760. - uid: Grpc.Core.CallInvocationDetails`2.#ctor*
  761. name: CallInvocationDetails
  762. href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2__ctor_
  763. commentId: Overload:Grpc.Core.CallInvocationDetails`2.#ctor
  764. fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.CallInvocationDetails
  765. fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).CallInvocationDetails
  766. nameWithType: CallInvocationDetails<TRequest, TResponse>.CallInvocationDetails
  767. nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).CallInvocationDetails
  768. - uid: Grpc.Core.CallInvocationDetails`2.Channel
  769. name: Channel
  770. href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_Channel
  771. commentId: P:Grpc.Core.CallInvocationDetails`2.Channel
  772. fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.Channel
  773. fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).Channel
  774. nameWithType: CallInvocationDetails<TRequest, TResponse>.Channel
  775. nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).Channel
  776. - uid: Grpc.Core.CallInvocationDetails`2.Channel*
  777. name: Channel
  778. href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_Channel_
  779. commentId: Overload:Grpc.Core.CallInvocationDetails`2.Channel
  780. fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.Channel
  781. fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).Channel
  782. nameWithType: CallInvocationDetails<TRequest, TResponse>.Channel
  783. nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).Channel
  784. - uid: Grpc.Core.CallInvocationDetails`2.Host
  785. name: Host
  786. href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_Host
  787. commentId: P:Grpc.Core.CallInvocationDetails`2.Host
  788. fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.Host
  789. fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).Host
  790. nameWithType: CallInvocationDetails<TRequest, TResponse>.Host
  791. nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).Host
  792. - uid: Grpc.Core.CallInvocationDetails`2.Host*
  793. name: Host
  794. href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_Host_
  795. commentId: Overload:Grpc.Core.CallInvocationDetails`2.Host
  796. fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.Host
  797. fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).Host
  798. nameWithType: CallInvocationDetails<TRequest, TResponse>.Host
  799. nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).Host
  800. - uid: Grpc.Core.CallInvocationDetails`2.Method
  801. name: Method
  802. href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_Method
  803. commentId: P:Grpc.Core.CallInvocationDetails`2.Method
  804. fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.Method
  805. fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).Method
  806. nameWithType: CallInvocationDetails<TRequest, TResponse>.Method
  807. nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).Method
  808. - uid: Grpc.Core.CallInvocationDetails`2.Method*
  809. name: Method
  810. href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_Method_
  811. commentId: Overload:Grpc.Core.CallInvocationDetails`2.Method
  812. fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.Method
  813. fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).Method
  814. nameWithType: CallInvocationDetails<TRequest, TResponse>.Method
  815. nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).Method
  816. - uid: Grpc.Core.CallInvocationDetails`2.Options
  817. name: Options
  818. href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_Options
  819. commentId: P:Grpc.Core.CallInvocationDetails`2.Options
  820. fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.Options
  821. fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).Options
  822. nameWithType: CallInvocationDetails<TRequest, TResponse>.Options
  823. nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).Options
  824. - uid: Grpc.Core.CallInvocationDetails`2.Options*
  825. name: Options
  826. href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_Options_
  827. commentId: Overload:Grpc.Core.CallInvocationDetails`2.Options
  828. fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.Options
  829. fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).Options
  830. nameWithType: CallInvocationDetails<TRequest, TResponse>.Options
  831. nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).Options
  832. - uid: Grpc.Core.CallInvocationDetails`2.RequestMarshaller
  833. name: RequestMarshaller
  834. href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_RequestMarshaller
  835. commentId: P:Grpc.Core.CallInvocationDetails`2.RequestMarshaller
  836. fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.RequestMarshaller
  837. fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).RequestMarshaller
  838. nameWithType: CallInvocationDetails<TRequest, TResponse>.RequestMarshaller
  839. nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).RequestMarshaller
  840. - uid: Grpc.Core.CallInvocationDetails`2.RequestMarshaller*
  841. name: RequestMarshaller
  842. href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_RequestMarshaller_
  843. commentId: Overload:Grpc.Core.CallInvocationDetails`2.RequestMarshaller
  844. fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.RequestMarshaller
  845. fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).RequestMarshaller
  846. nameWithType: CallInvocationDetails<TRequest, TResponse>.RequestMarshaller
  847. nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).RequestMarshaller
  848. - uid: Grpc.Core.CallInvocationDetails`2.ResponseMarshaller
  849. name: ResponseMarshaller
  850. href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_ResponseMarshaller
  851. commentId: P:Grpc.Core.CallInvocationDetails`2.ResponseMarshaller
  852. fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.ResponseMarshaller
  853. fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).ResponseMarshaller
  854. nameWithType: CallInvocationDetails<TRequest, TResponse>.ResponseMarshaller
  855. nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).ResponseMarshaller
  856. - uid: Grpc.Core.CallInvocationDetails`2.ResponseMarshaller*
  857. name: ResponseMarshaller
  858. href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_ResponseMarshaller_
  859. commentId: Overload:Grpc.Core.CallInvocationDetails`2.ResponseMarshaller
  860. fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.ResponseMarshaller
  861. fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).ResponseMarshaller
  862. nameWithType: CallInvocationDetails<TRequest, TResponse>.ResponseMarshaller
  863. nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).ResponseMarshaller
  864. - uid: Grpc.Core.CallInvocationDetails`2.WithOptions(Grpc.Core.CallOptions)
  865. name: WithOptions(CallOptions)
  866. href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_WithOptions_Grpc_Core_CallOptions_
  867. commentId: M:Grpc.Core.CallInvocationDetails`2.WithOptions(Grpc.Core.CallOptions)
  868. fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.WithOptions(Grpc.Core.CallOptions)
  869. fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).WithOptions(Grpc.Core.CallOptions)
  870. nameWithType: CallInvocationDetails<TRequest, TResponse>.WithOptions(CallOptions)
  871. nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).WithOptions(CallOptions)
  872. - uid: Grpc.Core.CallInvocationDetails`2.WithOptions*
  873. name: WithOptions
  874. href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_WithOptions_
  875. commentId: Overload:Grpc.Core.CallInvocationDetails`2.WithOptions
  876. fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.WithOptions
  877. fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).WithOptions
  878. nameWithType: CallInvocationDetails<TRequest, TResponse>.WithOptions
  879. nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).WithOptions
  880. - uid: Grpc.Core.CallInvoker
  881. name: CallInvoker
  882. href: api/Grpc.Core.CallInvoker.html
  883. commentId: T:Grpc.Core.CallInvoker
  884. fullName: Grpc.Core.CallInvoker
  885. nameWithType: CallInvoker
  886. - uid: Grpc.Core.CallInvoker.AsyncClientStreamingCall*
  887. name: AsyncClientStreamingCall
  888. href: api/Grpc.Core.CallInvoker.html#Grpc_Core_CallInvoker_AsyncClientStreamingCall_
  889. commentId: Overload:Grpc.Core.CallInvoker.AsyncClientStreamingCall
  890. fullName: Grpc.Core.CallInvoker.AsyncClientStreamingCall
  891. nameWithType: CallInvoker.AsyncClientStreamingCall
  892. - uid: Grpc.Core.CallInvoker.AsyncClientStreamingCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions)
  893. name: AsyncClientStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions)
  894. href: api/Grpc.Core.CallInvoker.html#Grpc_Core_CallInvoker_AsyncClientStreamingCall__2_Grpc_Core_Method___0___1__System_String_Grpc_Core_CallOptions_
  895. commentId: M:Grpc.Core.CallInvoker.AsyncClientStreamingCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions)
  896. name.vb: AsyncClientStreamingCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions)
  897. fullName: Grpc.Core.CallInvoker.AsyncClientStreamingCall<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, System.String, Grpc.Core.CallOptions)
  898. fullName.vb: Grpc.Core.CallInvoker.AsyncClientStreamingCall(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), System.String, Grpc.Core.CallOptions)
  899. nameWithType: CallInvoker.AsyncClientStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions)
  900. nameWithType.vb: CallInvoker.AsyncClientStreamingCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions)
  901. - uid: Grpc.Core.CallInvoker.AsyncDuplexStreamingCall*
  902. name: AsyncDuplexStreamingCall
  903. href: api/Grpc.Core.CallInvoker.html#Grpc_Core_CallInvoker_AsyncDuplexStreamingCall_
  904. commentId: Overload:Grpc.Core.CallInvoker.AsyncDuplexStreamingCall
  905. fullName: Grpc.Core.CallInvoker.AsyncDuplexStreamingCall
  906. nameWithType: CallInvoker.AsyncDuplexStreamingCall
  907. - uid: Grpc.Core.CallInvoker.AsyncDuplexStreamingCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions)
  908. name: AsyncDuplexStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions)
  909. href: api/Grpc.Core.CallInvoker.html#Grpc_Core_CallInvoker_AsyncDuplexStreamingCall__2_Grpc_Core_Method___0___1__System_String_Grpc_Core_CallOptions_
  910. commentId: M:Grpc.Core.CallInvoker.AsyncDuplexStreamingCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions)
  911. name.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions)
  912. fullName: Grpc.Core.CallInvoker.AsyncDuplexStreamingCall<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, System.String, Grpc.Core.CallOptions)
  913. fullName.vb: Grpc.Core.CallInvoker.AsyncDuplexStreamingCall(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), System.String, Grpc.Core.CallOptions)
  914. nameWithType: CallInvoker.AsyncDuplexStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions)
  915. nameWithType.vb: CallInvoker.AsyncDuplexStreamingCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions)
  916. - uid: Grpc.Core.CallInvoker.AsyncServerStreamingCall*
  917. name: AsyncServerStreamingCall
  918. href: api/Grpc.Core.CallInvoker.html#Grpc_Core_CallInvoker_AsyncServerStreamingCall_
  919. commentId: Overload:Grpc.Core.CallInvoker.AsyncServerStreamingCall
  920. fullName: Grpc.Core.CallInvoker.AsyncServerStreamingCall
  921. nameWithType: CallInvoker.AsyncServerStreamingCall
  922. - uid: Grpc.Core.CallInvoker.AsyncServerStreamingCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions,``0)
  923. name: AsyncServerStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions, TRequest)
  924. href: api/Grpc.Core.CallInvoker.html#Grpc_Core_CallInvoker_AsyncServerStreamingCall__2_Grpc_Core_Method___0___1__System_String_Grpc_Core_CallOptions___0_
  925. commentId: M:Grpc.Core.CallInvoker.AsyncServerStreamingCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions,``0)
  926. name.vb: AsyncServerStreamingCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions, TRequest)
  927. fullName: Grpc.Core.CallInvoker.AsyncServerStreamingCall<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, System.String, Grpc.Core.CallOptions, TRequest)
  928. fullName.vb: Grpc.Core.CallInvoker.AsyncServerStreamingCall(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), System.String, Grpc.Core.CallOptions, TRequest)
  929. nameWithType: CallInvoker.AsyncServerStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions, TRequest)
  930. nameWithType.vb: CallInvoker.AsyncServerStreamingCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions, TRequest)
  931. - uid: Grpc.Core.CallInvoker.AsyncUnaryCall*
  932. name: AsyncUnaryCall
  933. href: api/Grpc.Core.CallInvoker.html#Grpc_Core_CallInvoker_AsyncUnaryCall_
  934. commentId: Overload:Grpc.Core.CallInvoker.AsyncUnaryCall
  935. fullName: Grpc.Core.CallInvoker.AsyncUnaryCall
  936. nameWithType: CallInvoker.AsyncUnaryCall
  937. - uid: Grpc.Core.CallInvoker.AsyncUnaryCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions,``0)
  938. name: AsyncUnaryCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions, TRequest)
  939. href: api/Grpc.Core.CallInvoker.html#Grpc_Core_CallInvoker_AsyncUnaryCall__2_Grpc_Core_Method___0___1__System_String_Grpc_Core_CallOptions___0_
  940. commentId: M:Grpc.Core.CallInvoker.AsyncUnaryCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions,``0)
  941. name.vb: AsyncUnaryCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions, TRequest)
  942. fullName: Grpc.Core.CallInvoker.AsyncUnaryCall<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, System.String, Grpc.Core.CallOptions, TRequest)
  943. fullName.vb: Grpc.Core.CallInvoker.AsyncUnaryCall(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), System.String, Grpc.Core.CallOptions, TRequest)
  944. nameWithType: CallInvoker.AsyncUnaryCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions, TRequest)
  945. nameWithType.vb: CallInvoker.AsyncUnaryCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions, TRequest)
  946. - uid: Grpc.Core.CallInvoker.BlockingUnaryCall*
  947. name: BlockingUnaryCall
  948. href: api/Grpc.Core.CallInvoker.html#Grpc_Core_CallInvoker_BlockingUnaryCall_
  949. commentId: Overload:Grpc.Core.CallInvoker.BlockingUnaryCall
  950. fullName: Grpc.Core.CallInvoker.BlockingUnaryCall
  951. nameWithType: CallInvoker.BlockingUnaryCall
  952. - uid: Grpc.Core.CallInvoker.BlockingUnaryCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions,``0)
  953. name: BlockingUnaryCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions, TRequest)
  954. href: api/Grpc.Core.CallInvoker.html#Grpc_Core_CallInvoker_BlockingUnaryCall__2_Grpc_Core_Method___0___1__System_String_Grpc_Core_CallOptions___0_
  955. commentId: M:Grpc.Core.CallInvoker.BlockingUnaryCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions,``0)
  956. name.vb: BlockingUnaryCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions, TRequest)
  957. fullName: Grpc.Core.CallInvoker.BlockingUnaryCall<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, System.String, Grpc.Core.CallOptions, TRequest)
  958. fullName.vb: Grpc.Core.CallInvoker.BlockingUnaryCall(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), System.String, Grpc.Core.CallOptions, TRequest)
  959. nameWithType: CallInvoker.BlockingUnaryCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions, TRequest)
  960. nameWithType.vb: CallInvoker.BlockingUnaryCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions, TRequest)
  961. - uid: Grpc.Core.CallOptions
  962. name: CallOptions
  963. href: api/Grpc.Core.CallOptions.html
  964. commentId: T:Grpc.Core.CallOptions
  965. fullName: Grpc.Core.CallOptions
  966. nameWithType: CallOptions
  967. - uid: Grpc.Core.CallOptions.#ctor(Grpc.Core.Metadata,System.Nullable{System.DateTime},System.Threading.CancellationToken,Grpc.Core.WriteOptions,Grpc.Core.ContextPropagationToken,Grpc.Core.CallCredentials)
  968. name: CallOptions(Metadata, Nullable<DateTime>, CancellationToken, WriteOptions, ContextPropagationToken, CallCredentials)
  969. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions__ctor_Grpc_Core_Metadata_System_Nullable_System_DateTime__System_Threading_CancellationToken_Grpc_Core_WriteOptions_Grpc_Core_ContextPropagationToken_Grpc_Core_CallCredentials_
  970. commentId: M:Grpc.Core.CallOptions.#ctor(Grpc.Core.Metadata,System.Nullable{System.DateTime},System.Threading.CancellationToken,Grpc.Core.WriteOptions,Grpc.Core.ContextPropagationToken,Grpc.Core.CallCredentials)
  971. name.vb: CallOptions(Metadata, Nullable(Of DateTime), CancellationToken, WriteOptions, ContextPropagationToken, CallCredentials)
  972. fullName: Grpc.Core.CallOptions.CallOptions(Grpc.Core.Metadata, System.Nullable<System.DateTime>, System.Threading.CancellationToken, Grpc.Core.WriteOptions, Grpc.Core.ContextPropagationToken, Grpc.Core.CallCredentials)
  973. fullName.vb: Grpc.Core.CallOptions.CallOptions(Grpc.Core.Metadata, System.Nullable(Of System.DateTime), System.Threading.CancellationToken, Grpc.Core.WriteOptions, Grpc.Core.ContextPropagationToken, Grpc.Core.CallCredentials)
  974. nameWithType: CallOptions.CallOptions(Metadata, Nullable<DateTime>, CancellationToken, WriteOptions, ContextPropagationToken, CallCredentials)
  975. nameWithType.vb: CallOptions.CallOptions(Metadata, Nullable(Of DateTime), CancellationToken, WriteOptions, ContextPropagationToken, CallCredentials)
  976. - uid: Grpc.Core.CallOptions.#ctor*
  977. name: CallOptions
  978. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions__ctor_
  979. commentId: Overload:Grpc.Core.CallOptions.#ctor
  980. fullName: Grpc.Core.CallOptions.CallOptions
  981. nameWithType: CallOptions.CallOptions
  982. - uid: Grpc.Core.CallOptions.CancellationToken
  983. name: CancellationToken
  984. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_CancellationToken
  985. commentId: P:Grpc.Core.CallOptions.CancellationToken
  986. fullName: Grpc.Core.CallOptions.CancellationToken
  987. nameWithType: CallOptions.CancellationToken
  988. - uid: Grpc.Core.CallOptions.CancellationToken*
  989. name: CancellationToken
  990. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_CancellationToken_
  991. commentId: Overload:Grpc.Core.CallOptions.CancellationToken
  992. fullName: Grpc.Core.CallOptions.CancellationToken
  993. nameWithType: CallOptions.CancellationToken
  994. - uid: Grpc.Core.CallOptions.Credentials
  995. name: Credentials
  996. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_Credentials
  997. commentId: P:Grpc.Core.CallOptions.Credentials
  998. fullName: Grpc.Core.CallOptions.Credentials
  999. nameWithType: CallOptions.Credentials
  1000. - uid: Grpc.Core.CallOptions.Credentials*
  1001. name: Credentials
  1002. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_Credentials_
  1003. commentId: Overload:Grpc.Core.CallOptions.Credentials
  1004. fullName: Grpc.Core.CallOptions.Credentials
  1005. nameWithType: CallOptions.Credentials
  1006. - uid: Grpc.Core.CallOptions.Deadline
  1007. name: Deadline
  1008. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_Deadline
  1009. commentId: P:Grpc.Core.CallOptions.Deadline
  1010. fullName: Grpc.Core.CallOptions.Deadline
  1011. nameWithType: CallOptions.Deadline
  1012. - uid: Grpc.Core.CallOptions.Deadline*
  1013. name: Deadline
  1014. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_Deadline_
  1015. commentId: Overload:Grpc.Core.CallOptions.Deadline
  1016. fullName: Grpc.Core.CallOptions.Deadline
  1017. nameWithType: CallOptions.Deadline
  1018. - uid: Grpc.Core.CallOptions.Headers
  1019. name: Headers
  1020. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_Headers
  1021. commentId: P:Grpc.Core.CallOptions.Headers
  1022. fullName: Grpc.Core.CallOptions.Headers
  1023. nameWithType: CallOptions.Headers
  1024. - uid: Grpc.Core.CallOptions.Headers*
  1025. name: Headers
  1026. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_Headers_
  1027. commentId: Overload:Grpc.Core.CallOptions.Headers
  1028. fullName: Grpc.Core.CallOptions.Headers
  1029. nameWithType: CallOptions.Headers
  1030. - uid: Grpc.Core.CallOptions.IsWaitForReady
  1031. name: IsWaitForReady
  1032. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_IsWaitForReady
  1033. commentId: P:Grpc.Core.CallOptions.IsWaitForReady
  1034. fullName: Grpc.Core.CallOptions.IsWaitForReady
  1035. nameWithType: CallOptions.IsWaitForReady
  1036. - uid: Grpc.Core.CallOptions.IsWaitForReady*
  1037. name: IsWaitForReady
  1038. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_IsWaitForReady_
  1039. commentId: Overload:Grpc.Core.CallOptions.IsWaitForReady
  1040. fullName: Grpc.Core.CallOptions.IsWaitForReady
  1041. nameWithType: CallOptions.IsWaitForReady
  1042. - uid: Grpc.Core.CallOptions.PropagationToken
  1043. name: PropagationToken
  1044. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_PropagationToken
  1045. commentId: P:Grpc.Core.CallOptions.PropagationToken
  1046. fullName: Grpc.Core.CallOptions.PropagationToken
  1047. nameWithType: CallOptions.PropagationToken
  1048. - uid: Grpc.Core.CallOptions.PropagationToken*
  1049. name: PropagationToken
  1050. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_PropagationToken_
  1051. commentId: Overload:Grpc.Core.CallOptions.PropagationToken
  1052. fullName: Grpc.Core.CallOptions.PropagationToken
  1053. nameWithType: CallOptions.PropagationToken
  1054. - uid: Grpc.Core.CallOptions.WithCancellationToken(System.Threading.CancellationToken)
  1055. name: WithCancellationToken(CancellationToken)
  1056. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithCancellationToken_System_Threading_CancellationToken_
  1057. commentId: M:Grpc.Core.CallOptions.WithCancellationToken(System.Threading.CancellationToken)
  1058. fullName: Grpc.Core.CallOptions.WithCancellationToken(System.Threading.CancellationToken)
  1059. nameWithType: CallOptions.WithCancellationToken(CancellationToken)
  1060. - uid: Grpc.Core.CallOptions.WithCancellationToken*
  1061. name: WithCancellationToken
  1062. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithCancellationToken_
  1063. commentId: Overload:Grpc.Core.CallOptions.WithCancellationToken
  1064. fullName: Grpc.Core.CallOptions.WithCancellationToken
  1065. nameWithType: CallOptions.WithCancellationToken
  1066. - uid: Grpc.Core.CallOptions.WithCredentials(Grpc.Core.CallCredentials)
  1067. name: WithCredentials(CallCredentials)
  1068. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithCredentials_Grpc_Core_CallCredentials_
  1069. commentId: M:Grpc.Core.CallOptions.WithCredentials(Grpc.Core.CallCredentials)
  1070. fullName: Grpc.Core.CallOptions.WithCredentials(Grpc.Core.CallCredentials)
  1071. nameWithType: CallOptions.WithCredentials(CallCredentials)
  1072. - uid: Grpc.Core.CallOptions.WithCredentials*
  1073. name: WithCredentials
  1074. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithCredentials_
  1075. commentId: Overload:Grpc.Core.CallOptions.WithCredentials
  1076. fullName: Grpc.Core.CallOptions.WithCredentials
  1077. nameWithType: CallOptions.WithCredentials
  1078. - uid: Grpc.Core.CallOptions.WithDeadline(System.DateTime)
  1079. name: WithDeadline(DateTime)
  1080. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithDeadline_System_DateTime_
  1081. commentId: M:Grpc.Core.CallOptions.WithDeadline(System.DateTime)
  1082. fullName: Grpc.Core.CallOptions.WithDeadline(System.DateTime)
  1083. nameWithType: CallOptions.WithDeadline(DateTime)
  1084. - uid: Grpc.Core.CallOptions.WithDeadline*
  1085. name: WithDeadline
  1086. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithDeadline_
  1087. commentId: Overload:Grpc.Core.CallOptions.WithDeadline
  1088. fullName: Grpc.Core.CallOptions.WithDeadline
  1089. nameWithType: CallOptions.WithDeadline
  1090. - uid: Grpc.Core.CallOptions.WithHeaders(Grpc.Core.Metadata)
  1091. name: WithHeaders(Metadata)
  1092. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithHeaders_Grpc_Core_Metadata_
  1093. commentId: M:Grpc.Core.CallOptions.WithHeaders(Grpc.Core.Metadata)
  1094. fullName: Grpc.Core.CallOptions.WithHeaders(Grpc.Core.Metadata)
  1095. nameWithType: CallOptions.WithHeaders(Metadata)
  1096. - uid: Grpc.Core.CallOptions.WithHeaders*
  1097. name: WithHeaders
  1098. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithHeaders_
  1099. commentId: Overload:Grpc.Core.CallOptions.WithHeaders
  1100. fullName: Grpc.Core.CallOptions.WithHeaders
  1101. nameWithType: CallOptions.WithHeaders
  1102. - uid: Grpc.Core.CallOptions.WithPropagationToken(Grpc.Core.ContextPropagationToken)
  1103. name: WithPropagationToken(ContextPropagationToken)
  1104. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithPropagationToken_Grpc_Core_ContextPropagationToken_
  1105. commentId: M:Grpc.Core.CallOptions.WithPropagationToken(Grpc.Core.ContextPropagationToken)
  1106. fullName: Grpc.Core.CallOptions.WithPropagationToken(Grpc.Core.ContextPropagationToken)
  1107. nameWithType: CallOptions.WithPropagationToken(ContextPropagationToken)
  1108. - uid: Grpc.Core.CallOptions.WithPropagationToken*
  1109. name: WithPropagationToken
  1110. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithPropagationToken_
  1111. commentId: Overload:Grpc.Core.CallOptions.WithPropagationToken
  1112. fullName: Grpc.Core.CallOptions.WithPropagationToken
  1113. nameWithType: CallOptions.WithPropagationToken
  1114. - uid: Grpc.Core.CallOptions.WithWaitForReady(System.Boolean)
  1115. name: WithWaitForReady(Boolean)
  1116. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithWaitForReady_System_Boolean_
  1117. commentId: M:Grpc.Core.CallOptions.WithWaitForReady(System.Boolean)
  1118. fullName: Grpc.Core.CallOptions.WithWaitForReady(System.Boolean)
  1119. nameWithType: CallOptions.WithWaitForReady(Boolean)
  1120. - uid: Grpc.Core.CallOptions.WithWaitForReady*
  1121. name: WithWaitForReady
  1122. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithWaitForReady_
  1123. commentId: Overload:Grpc.Core.CallOptions.WithWaitForReady
  1124. fullName: Grpc.Core.CallOptions.WithWaitForReady
  1125. nameWithType: CallOptions.WithWaitForReady
  1126. - uid: Grpc.Core.CallOptions.WithWriteOptions(Grpc.Core.WriteOptions)
  1127. name: WithWriteOptions(WriteOptions)
  1128. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithWriteOptions_Grpc_Core_WriteOptions_
  1129. commentId: M:Grpc.Core.CallOptions.WithWriteOptions(Grpc.Core.WriteOptions)
  1130. fullName: Grpc.Core.CallOptions.WithWriteOptions(Grpc.Core.WriteOptions)
  1131. nameWithType: CallOptions.WithWriteOptions(WriteOptions)
  1132. - uid: Grpc.Core.CallOptions.WithWriteOptions*
  1133. name: WithWriteOptions
  1134. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithWriteOptions_
  1135. commentId: Overload:Grpc.Core.CallOptions.WithWriteOptions
  1136. fullName: Grpc.Core.CallOptions.WithWriteOptions
  1137. nameWithType: CallOptions.WithWriteOptions
  1138. - uid: Grpc.Core.CallOptions.WriteOptions
  1139. name: WriteOptions
  1140. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WriteOptions
  1141. commentId: P:Grpc.Core.CallOptions.WriteOptions
  1142. fullName: Grpc.Core.CallOptions.WriteOptions
  1143. nameWithType: CallOptions.WriteOptions
  1144. - uid: Grpc.Core.CallOptions.WriteOptions*
  1145. name: WriteOptions
  1146. href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WriteOptions_
  1147. commentId: Overload:Grpc.Core.CallOptions.WriteOptions
  1148. fullName: Grpc.Core.CallOptions.WriteOptions
  1149. nameWithType: CallOptions.WriteOptions
  1150. - uid: Grpc.Core.Calls
  1151. name: Calls
  1152. href: api/Grpc.Core.Calls.html
  1153. commentId: T:Grpc.Core.Calls
  1154. fullName: Grpc.Core.Calls
  1155. nameWithType: Calls
  1156. - uid: Grpc.Core.Calls.AsyncClientStreamingCall*
  1157. name: AsyncClientStreamingCall
  1158. href: api/Grpc.Core.Calls.html#Grpc_Core_Calls_AsyncClientStreamingCall_
  1159. commentId: Overload:Grpc.Core.Calls.AsyncClientStreamingCall
  1160. fullName: Grpc.Core.Calls.AsyncClientStreamingCall
  1161. nameWithType: Calls.AsyncClientStreamingCall
  1162. - uid: Grpc.Core.Calls.AsyncClientStreamingCall``2(Grpc.Core.CallInvocationDetails{``0,``1})
  1163. name: AsyncClientStreamingCall<TRequest, TResponse>(CallInvocationDetails<TRequest, TResponse>)
  1164. href: api/Grpc.Core.Calls.html#Grpc_Core_Calls_AsyncClientStreamingCall__2_Grpc_Core_CallInvocationDetails___0___1__
  1165. commentId: M:Grpc.Core.Calls.AsyncClientStreamingCall``2(Grpc.Core.CallInvocationDetails{``0,``1})
  1166. name.vb: AsyncClientStreamingCall(Of TRequest, TResponse)(CallInvocationDetails(Of TRequest, TResponse))
  1167. fullName: Grpc.Core.Calls.AsyncClientStreamingCall<TRequest, TResponse>(Grpc.Core.CallInvocationDetails<TRequest, TResponse>)
  1168. fullName.vb: Grpc.Core.Calls.AsyncClientStreamingCall(Of TRequest, TResponse)(Grpc.Core.CallInvocationDetails(Of TRequest, TResponse))
  1169. nameWithType: Calls.AsyncClientStreamingCall<TRequest, TResponse>(CallInvocationDetails<TRequest, TResponse>)
  1170. nameWithType.vb: Calls.AsyncClientStreamingCall(Of TRequest, TResponse)(CallInvocationDetails(Of TRequest, TResponse))
  1171. - uid: Grpc.Core.Calls.AsyncDuplexStreamingCall*
  1172. name: AsyncDuplexStreamingCall
  1173. href: api/Grpc.Core.Calls.html#Grpc_Core_Calls_AsyncDuplexStreamingCall_
  1174. commentId: Overload:Grpc.Core.Calls.AsyncDuplexStreamingCall
  1175. fullName: Grpc.Core.Calls.AsyncDuplexStreamingCall
  1176. nameWithType: Calls.AsyncDuplexStreamingCall
  1177. - uid: Grpc.Core.Calls.AsyncDuplexStreamingCall``2(Grpc.Core.CallInvocationDetails{``0,``1})
  1178. name: AsyncDuplexStreamingCall<TRequest, TResponse>(CallInvocationDetails<TRequest, TResponse>)
  1179. href: api/Grpc.Core.Calls.html#Grpc_Core_Calls_AsyncDuplexStreamingCall__2_Grpc_Core_CallInvocationDetails___0___1__
  1180. commentId: M:Grpc.Core.Calls.AsyncDuplexStreamingCall``2(Grpc.Core.CallInvocationDetails{``0,``1})
  1181. name.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse)(CallInvocationDetails(Of TRequest, TResponse))
  1182. fullName: Grpc.Core.Calls.AsyncDuplexStreamingCall<TRequest, TResponse>(Grpc.Core.CallInvocationDetails<TRequest, TResponse>)
  1183. fullName.vb: Grpc.Core.Calls.AsyncDuplexStreamingCall(Of TRequest, TResponse)(Grpc.Core.CallInvocationDetails(Of TRequest, TResponse))
  1184. nameWithType: Calls.AsyncDuplexStreamingCall<TRequest, TResponse>(CallInvocationDetails<TRequest, TResponse>)
  1185. nameWithType.vb: Calls.AsyncDuplexStreamingCall(Of TRequest, TResponse)(CallInvocationDetails(Of TRequest, TResponse))
  1186. - uid: Grpc.Core.Calls.AsyncServerStreamingCall*
  1187. name: AsyncServerStreamingCall
  1188. href: api/Grpc.Core.Calls.html#Grpc_Core_Calls_AsyncServerStreamingCall_
  1189. commentId: Overload:Grpc.Core.Calls.AsyncServerStreamingCall
  1190. fullName: Grpc.Core.Calls.AsyncServerStreamingCall
  1191. nameWithType: Calls.AsyncServerStreamingCall
  1192. - uid: Grpc.Core.Calls.AsyncServerStreamingCall``2(Grpc.Core.CallInvocationDetails{``0,``1},``0)
  1193. name: AsyncServerStreamingCall<TRequest, TResponse>(CallInvocationDetails<TRequest, TResponse>, TRequest)
  1194. href: api/Grpc.Core.Calls.html#Grpc_Core_Calls_AsyncServerStreamingCall__2_Grpc_Core_CallInvocationDetails___0___1____0_
  1195. commentId: M:Grpc.Core.Calls.AsyncServerStreamingCall``2(Grpc.Core.CallInvocationDetails{``0,``1},``0)
  1196. name.vb: AsyncServerStreamingCall(Of TRequest, TResponse)(CallInvocationDetails(Of TRequest, TResponse), TRequest)
  1197. fullName: Grpc.Core.Calls.AsyncServerStreamingCall<TRequest, TResponse>(Grpc.Core.CallInvocationDetails<TRequest, TResponse>, TRequest)
  1198. fullName.vb: Grpc.Core.Calls.AsyncServerStreamingCall(Of TRequest, TResponse)(Grpc.Core.CallInvocationDetails(Of TRequest, TResponse), TRequest)
  1199. nameWithType: Calls.AsyncServerStreamingCall<TRequest, TResponse>(CallInvocationDetails<TRequest, TResponse>, TRequest)
  1200. nameWithType.vb: Calls.AsyncServerStreamingCall(Of TRequest, TResponse)(CallInvocationDetails(Of TRequest, TResponse), TRequest)
  1201. - uid: Grpc.Core.Calls.AsyncUnaryCall*
  1202. name: AsyncUnaryCall
  1203. href: api/Grpc.Core.Calls.html#Grpc_Core_Calls_AsyncUnaryCall_
  1204. commentId: Overload:Grpc.Core.Calls.AsyncUnaryCall
  1205. fullName: Grpc.Core.Calls.AsyncUnaryCall
  1206. nameWithType: Calls.AsyncUnaryCall
  1207. - uid: Grpc.Core.Calls.AsyncUnaryCall``2(Grpc.Core.CallInvocationDetails{``0,``1},``0)
  1208. name: AsyncUnaryCall<TRequest, TResponse>(CallInvocationDetails<TRequest, TResponse>, TRequest)
  1209. href: api/Grpc.Core.Calls.html#Grpc_Core_Calls_AsyncUnaryCall__2_Grpc_Core_CallInvocationDetails___0___1____0_
  1210. commentId: M:Grpc.Core.Calls.AsyncUnaryCall``2(Grpc.Core.CallInvocationDetails{``0,``1},``0)
  1211. name.vb: AsyncUnaryCall(Of TRequest, TResponse)(CallInvocationDetails(Of TRequest, TResponse), TRequest)
  1212. fullName: Grpc.Core.Calls.AsyncUnaryCall<TRequest, TResponse>(Grpc.Core.CallInvocationDetails<TRequest, TResponse>, TRequest)
  1213. fullName.vb: Grpc.Core.Calls.AsyncUnaryCall(Of TRequest, TResponse)(Grpc.Core.CallInvocationDetails(Of TRequest, TResponse), TRequest)
  1214. nameWithType: Calls.AsyncUnaryCall<TRequest, TResponse>(CallInvocationDetails<TRequest, TResponse>, TRequest)
  1215. nameWithType.vb: Calls.AsyncUnaryCall(Of TRequest, TResponse)(CallInvocationDetails(Of TRequest, TResponse), TRequest)
  1216. - uid: Grpc.Core.Calls.BlockingUnaryCall*
  1217. name: BlockingUnaryCall
  1218. href: api/Grpc.Core.Calls.html#Grpc_Core_Calls_BlockingUnaryCall_
  1219. commentId: Overload:Grpc.Core.Calls.BlockingUnaryCall
  1220. fullName: Grpc.Core.Calls.BlockingUnaryCall
  1221. nameWithType: Calls.BlockingUnaryCall
  1222. - uid: Grpc.Core.Calls.BlockingUnaryCall``2(Grpc.Core.CallInvocationDetails{``0,``1},``0)
  1223. name: BlockingUnaryCall<TRequest, TResponse>(CallInvocationDetails<TRequest, TResponse>, TRequest)
  1224. href: api/Grpc.Core.Calls.html#Grpc_Core_Calls_BlockingUnaryCall__2_Grpc_Core_CallInvocationDetails___0___1____0_
  1225. commentId: M:Grpc.Core.Calls.BlockingUnaryCall``2(Grpc.Core.CallInvocationDetails{``0,``1},``0)
  1226. name.vb: BlockingUnaryCall(Of TRequest, TResponse)(CallInvocationDetails(Of TRequest, TResponse), TRequest)
  1227. fullName: Grpc.Core.Calls.BlockingUnaryCall<TRequest, TResponse>(Grpc.Core.CallInvocationDetails<TRequest, TResponse>, TRequest)
  1228. fullName.vb: Grpc.Core.Calls.BlockingUnaryCall(Of TRequest, TResponse)(Grpc.Core.CallInvocationDetails(Of TRequest, TResponse), TRequest)
  1229. nameWithType: Calls.BlockingUnaryCall<TRequest, TResponse>(CallInvocationDetails<TRequest, TResponse>, TRequest)
  1230. nameWithType.vb: Calls.BlockingUnaryCall(Of TRequest, TResponse)(CallInvocationDetails(Of TRequest, TResponse), TRequest)
  1231. - uid: Grpc.Core.Channel
  1232. name: Channel
  1233. href: api/Grpc.Core.Channel.html
  1234. commentId: T:Grpc.Core.Channel
  1235. fullName: Grpc.Core.Channel
  1236. nameWithType: Channel
  1237. - uid: Grpc.Core.Channel.#ctor(System.String,Grpc.Core.ChannelCredentials)
  1238. name: Channel(String, ChannelCredentials)
  1239. href: api/Grpc.Core.Channel.html#Grpc_Core_Channel__ctor_System_String_Grpc_Core_ChannelCredentials_
  1240. commentId: M:Grpc.Core.Channel.#ctor(System.String,Grpc.Core.ChannelCredentials)
  1241. fullName: Grpc.Core.Channel.Channel(System.String, Grpc.Core.ChannelCredentials)
  1242. nameWithType: Channel.Channel(String, ChannelCredentials)
  1243. - uid: Grpc.Core.Channel.#ctor(System.String,Grpc.Core.ChannelCredentials,System.Collections.Generic.IEnumerable{Grpc.Core.ChannelOption})
  1244. name: Channel(String, ChannelCredentials, IEnumerable<ChannelOption>)
  1245. href: api/Grpc.Core.Channel.html#Grpc_Core_Channel__ctor_System_String_Grpc_Core_ChannelCredentials_System_Collections_Generic_IEnumerable_Grpc_Core_ChannelOption__
  1246. commentId: M:Grpc.Core.Channel.#ctor(System.String,Grpc.Core.ChannelCredentials,System.Collections.Generic.IEnumerable{Grpc.Core.ChannelOption})
  1247. name.vb: Channel(String, ChannelCredentials, IEnumerable(Of ChannelOption))
  1248. fullName: Grpc.Core.Channel.Channel(System.String, Grpc.Core.ChannelCredentials, System.Collections.Generic.IEnumerable<Grpc.Core.ChannelOption>)
  1249. fullName.vb: Grpc.Core.Channel.Channel(System.String, Grpc.Core.ChannelCredentials, System.Collections.Generic.IEnumerable(Of Grpc.Core.ChannelOption))
  1250. nameWithType: Channel.Channel(String, ChannelCredentials, IEnumerable<ChannelOption>)
  1251. nameWithType.vb: Channel.Channel(String, ChannelCredentials, IEnumerable(Of ChannelOption))
  1252. - uid: Grpc.Core.Channel.#ctor(System.String,System.Int32,Grpc.Core.ChannelCredentials)
  1253. name: Channel(String, Int32, ChannelCredentials)
  1254. href: api/Grpc.Core.Channel.html#Grpc_Core_Channel__ctor_System_String_System_Int32_Grpc_Core_ChannelCredentials_
  1255. commentId: M:Grpc.Core.Channel.#ctor(System.String,System.Int32,Grpc.Core.ChannelCredentials)
  1256. fullName: Grpc.Core.Channel.Channel(System.String, System.Int32, Grpc.Core.ChannelCredentials)
  1257. nameWithType: Channel.Channel(String, Int32, ChannelCredentials)
  1258. - uid: Grpc.Core.Channel.#ctor(System.String,System.Int32,Grpc.Core.ChannelCredentials,System.Collections.Generic.IEnumerable{Grpc.Core.ChannelOption})
  1259. name: Channel(String, Int32, ChannelCredentials, IEnumerable<ChannelOption>)
  1260. href: api/Grpc.Core.Channel.html#Grpc_Core_Channel__ctor_System_String_System_Int32_Grpc_Core_ChannelCredentials_System_Collections_Generic_IEnumerable_Grpc_Core_ChannelOption__
  1261. commentId: M:Grpc.Core.Channel.#ctor(System.String,System.Int32,Grpc.Core.ChannelCredentials,System.Collections.Generic.IEnumerable{Grpc.Core.ChannelOption})
  1262. name.vb: Channel(String, Int32, ChannelCredentials, IEnumerable(Of ChannelOption))
  1263. fullName: Grpc.Core.Channel.Channel(System.String, System.Int32, Grpc.Core.ChannelCredentials, System.Collections.Generic.IEnumerable<Grpc.Core.ChannelOption>)
  1264. fullName.vb: Grpc.Core.Channel.Channel(System.String, System.Int32, Grpc.Core.ChannelCredentials, System.Collections.Generic.IEnumerable(Of Grpc.Core.ChannelOption))
  1265. nameWithType: Channel.Channel(String, Int32, ChannelCredentials, IEnumerable<ChannelOption>)
  1266. nameWithType.vb: Channel.Channel(String, Int32, ChannelCredentials, IEnumerable(Of ChannelOption))
  1267. - uid: Grpc.Core.Channel.#ctor*
  1268. name: Channel
  1269. href: api/Grpc.Core.Channel.html#Grpc_Core_Channel__ctor_
  1270. commentId: Overload:Grpc.Core.Channel.#ctor
  1271. fullName: Grpc.Core.Channel.Channel
  1272. nameWithType: Channel.Channel
  1273. - uid: Grpc.Core.Channel.ConnectAsync(System.Nullable{System.DateTime})
  1274. name: ConnectAsync(Nullable<DateTime>)
  1275. href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_ConnectAsync_System_Nullable_System_DateTime__
  1276. commentId: M:Grpc.Core.Channel.ConnectAsync(System.Nullable{System.DateTime})
  1277. name.vb: ConnectAsync(Nullable(Of DateTime))
  1278. fullName: Grpc.Core.Channel.ConnectAsync(System.Nullable<System.DateTime>)
  1279. fullName.vb: Grpc.Core.Channel.ConnectAsync(System.Nullable(Of System.DateTime))
  1280. nameWithType: Channel.ConnectAsync(Nullable<DateTime>)
  1281. nameWithType.vb: Channel.ConnectAsync(Nullable(Of DateTime))
  1282. - uid: Grpc.Core.Channel.ConnectAsync*
  1283. name: ConnectAsync
  1284. href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_ConnectAsync_
  1285. commentId: Overload:Grpc.Core.Channel.ConnectAsync
  1286. fullName: Grpc.Core.Channel.ConnectAsync
  1287. nameWithType: Channel.ConnectAsync
  1288. - uid: Grpc.Core.Channel.ResolvedTarget
  1289. name: ResolvedTarget
  1290. href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_ResolvedTarget
  1291. commentId: P:Grpc.Core.Channel.ResolvedTarget
  1292. fullName: Grpc.Core.Channel.ResolvedTarget
  1293. nameWithType: Channel.ResolvedTarget
  1294. - uid: Grpc.Core.Channel.ResolvedTarget*
  1295. name: ResolvedTarget
  1296. href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_ResolvedTarget_
  1297. commentId: Overload:Grpc.Core.Channel.ResolvedTarget
  1298. fullName: Grpc.Core.Channel.ResolvedTarget
  1299. nameWithType: Channel.ResolvedTarget
  1300. - uid: Grpc.Core.Channel.ShutdownAsync
  1301. name: ShutdownAsync()
  1302. href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_ShutdownAsync
  1303. commentId: M:Grpc.Core.Channel.ShutdownAsync
  1304. fullName: Grpc.Core.Channel.ShutdownAsync()
  1305. nameWithType: Channel.ShutdownAsync()
  1306. - uid: Grpc.Core.Channel.ShutdownAsync*
  1307. name: ShutdownAsync
  1308. href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_ShutdownAsync_
  1309. commentId: Overload:Grpc.Core.Channel.ShutdownAsync
  1310. fullName: Grpc.Core.Channel.ShutdownAsync
  1311. nameWithType: Channel.ShutdownAsync
  1312. - uid: Grpc.Core.Channel.ShutdownToken
  1313. name: ShutdownToken
  1314. href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_ShutdownToken
  1315. commentId: P:Grpc.Core.Channel.ShutdownToken
  1316. fullName: Grpc.Core.Channel.ShutdownToken
  1317. nameWithType: Channel.ShutdownToken
  1318. - uid: Grpc.Core.Channel.ShutdownToken*
  1319. name: ShutdownToken
  1320. href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_ShutdownToken_
  1321. commentId: Overload:Grpc.Core.Channel.ShutdownToken
  1322. fullName: Grpc.Core.Channel.ShutdownToken
  1323. nameWithType: Channel.ShutdownToken
  1324. - uid: Grpc.Core.Channel.State
  1325. name: State
  1326. href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_State
  1327. commentId: P:Grpc.Core.Channel.State
  1328. fullName: Grpc.Core.Channel.State
  1329. nameWithType: Channel.State
  1330. - uid: Grpc.Core.Channel.State*
  1331. name: State
  1332. href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_State_
  1333. commentId: Overload:Grpc.Core.Channel.State
  1334. fullName: Grpc.Core.Channel.State
  1335. nameWithType: Channel.State
  1336. - uid: Grpc.Core.Channel.Target
  1337. name: Target
  1338. href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_Target
  1339. commentId: P:Grpc.Core.Channel.Target
  1340. fullName: Grpc.Core.Channel.Target
  1341. nameWithType: Channel.Target
  1342. - uid: Grpc.Core.Channel.Target*
  1343. name: Target
  1344. href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_Target_
  1345. commentId: Overload:Grpc.Core.Channel.Target
  1346. fullName: Grpc.Core.Channel.Target
  1347. nameWithType: Channel.Target
  1348. - uid: Grpc.Core.Channel.WaitForStateChangedAsync(Grpc.Core.ChannelState,System.Nullable{System.DateTime})
  1349. name: WaitForStateChangedAsync(ChannelState, Nullable<DateTime>)
  1350. href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_WaitForStateChangedAsync_Grpc_Core_ChannelState_System_Nullable_System_DateTime__
  1351. commentId: M:Grpc.Core.Channel.WaitForStateChangedAsync(Grpc.Core.ChannelState,System.Nullable{System.DateTime})
  1352. name.vb: WaitForStateChangedAsync(ChannelState, Nullable(Of DateTime))
  1353. fullName: Grpc.Core.Channel.WaitForStateChangedAsync(Grpc.Core.ChannelState, System.Nullable<System.DateTime>)
  1354. fullName.vb: Grpc.Core.Channel.WaitForStateChangedAsync(Grpc.Core.ChannelState, System.Nullable(Of System.DateTime))
  1355. nameWithType: Channel.WaitForStateChangedAsync(ChannelState, Nullable<DateTime>)
  1356. nameWithType.vb: Channel.WaitForStateChangedAsync(ChannelState, Nullable(Of DateTime))
  1357. - uid: Grpc.Core.Channel.WaitForStateChangedAsync*
  1358. name: WaitForStateChangedAsync
  1359. href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_WaitForStateChangedAsync_
  1360. commentId: Overload:Grpc.Core.Channel.WaitForStateChangedAsync
  1361. fullName: Grpc.Core.Channel.WaitForStateChangedAsync
  1362. nameWithType: Channel.WaitForStateChangedAsync
  1363. - uid: Grpc.Core.ChannelCredentials
  1364. name: ChannelCredentials
  1365. href: api/Grpc.Core.ChannelCredentials.html
  1366. commentId: T:Grpc.Core.ChannelCredentials
  1367. fullName: Grpc.Core.ChannelCredentials
  1368. nameWithType: ChannelCredentials
  1369. - uid: Grpc.Core.ChannelCredentials.Create(Grpc.Core.ChannelCredentials,Grpc.Core.CallCredentials)
  1370. name: Create(ChannelCredentials, CallCredentials)
  1371. href: api/Grpc.Core.ChannelCredentials.html#Grpc_Core_ChannelCredentials_Create_Grpc_Core_ChannelCredentials_Grpc_Core_CallCredentials_
  1372. commentId: M:Grpc.Core.ChannelCredentials.Create(Grpc.Core.ChannelCredentials,Grpc.Core.CallCredentials)
  1373. fullName: Grpc.Core.ChannelCredentials.Create(Grpc.Core.ChannelCredentials, Grpc.Core.CallCredentials)
  1374. nameWithType: ChannelCredentials.Create(ChannelCredentials, CallCredentials)
  1375. - uid: Grpc.Core.ChannelCredentials.Create*
  1376. name: Create
  1377. href: api/Grpc.Core.ChannelCredentials.html#Grpc_Core_ChannelCredentials_Create_
  1378. commentId: Overload:Grpc.Core.ChannelCredentials.Create
  1379. fullName: Grpc.Core.ChannelCredentials.Create
  1380. nameWithType: ChannelCredentials.Create
  1381. - uid: Grpc.Core.ChannelCredentials.Insecure
  1382. name: Insecure
  1383. href: api/Grpc.Core.ChannelCredentials.html#Grpc_Core_ChannelCredentials_Insecure
  1384. commentId: P:Grpc.Core.ChannelCredentials.Insecure
  1385. fullName: Grpc.Core.ChannelCredentials.Insecure
  1386. nameWithType: ChannelCredentials.Insecure
  1387. - uid: Grpc.Core.ChannelCredentials.Insecure*
  1388. name: Insecure
  1389. href: api/Grpc.Core.ChannelCredentials.html#Grpc_Core_ChannelCredentials_Insecure_
  1390. commentId: Overload:Grpc.Core.ChannelCredentials.Insecure
  1391. fullName: Grpc.Core.ChannelCredentials.Insecure
  1392. nameWithType: ChannelCredentials.Insecure
  1393. - uid: Grpc.Core.ChannelOption
  1394. name: ChannelOption
  1395. href: api/Grpc.Core.ChannelOption.html
  1396. commentId: T:Grpc.Core.ChannelOption
  1397. fullName: Grpc.Core.ChannelOption
  1398. nameWithType: ChannelOption
  1399. - uid: Grpc.Core.ChannelOption.#ctor(System.String,System.Int32)
  1400. name: ChannelOption(String, Int32)
  1401. href: api/Grpc.Core.ChannelOption.html#Grpc_Core_ChannelOption__ctor_System_String_System_Int32_
  1402. commentId: M:Grpc.Core.ChannelOption.#ctor(System.String,System.Int32)
  1403. fullName: Grpc.Core.ChannelOption.ChannelOption(System.String, System.Int32)
  1404. nameWithType: ChannelOption.ChannelOption(String, Int32)
  1405. - uid: Grpc.Core.ChannelOption.#ctor(System.String,System.String)
  1406. name: ChannelOption(String, String)
  1407. href: api/Grpc.Core.ChannelOption.html#Grpc_Core_ChannelOption__ctor_System_String_System_String_
  1408. commentId: M:Grpc.Core.ChannelOption.#ctor(System.String,System.String)
  1409. fullName: Grpc.Core.ChannelOption.ChannelOption(System.String, System.String)
  1410. nameWithType: ChannelOption.ChannelOption(String, String)
  1411. - uid: Grpc.Core.ChannelOption.#ctor*
  1412. name: ChannelOption
  1413. href: api/Grpc.Core.ChannelOption.html#Grpc_Core_ChannelOption__ctor_
  1414. commentId: Overload:Grpc.Core.ChannelOption.#ctor
  1415. fullName: Grpc.Core.ChannelOption.ChannelOption
  1416. nameWithType: ChannelOption.ChannelOption
  1417. - uid: Grpc.Core.ChannelOption.IntValue
  1418. name: IntValue
  1419. href: api/Grpc.Core.ChannelOption.html#Grpc_Core_ChannelOption_IntValue
  1420. commentId: P:Grpc.Core.ChannelOption.IntValue
  1421. fullName: Grpc.Core.ChannelOption.IntValue
  1422. nameWithType: ChannelOption.IntValue
  1423. - uid: Grpc.Core.ChannelOption.IntValue*
  1424. name: IntValue
  1425. href: api/Grpc.Core.ChannelOption.html#Grpc_Core_ChannelOption_IntValue_
  1426. commentId: Overload:Grpc.Core.ChannelOption.IntValue
  1427. fullName: Grpc.Core.ChannelOption.IntValue
  1428. nameWithType: ChannelOption.IntValue
  1429. - uid: Grpc.Core.ChannelOption.Name
  1430. name: Name
  1431. href: api/Grpc.Core.ChannelOption.html#Grpc_Core_ChannelOption_Name
  1432. commentId: P:Grpc.Core.ChannelOption.Name
  1433. fullName: Grpc.Core.ChannelOption.Name
  1434. nameWithType: ChannelOption.Name
  1435. - uid: Grpc.Core.ChannelOption.Name*
  1436. name: Name
  1437. href: api/Grpc.Core.ChannelOption.html#Grpc_Core_ChannelOption_Name_
  1438. commentId: Overload:Grpc.Core.ChannelOption.Name
  1439. fullName: Grpc.Core.ChannelOption.Name
  1440. nameWithType: ChannelOption.Name
  1441. - uid: Grpc.Core.ChannelOption.OptionType
  1442. name: ChannelOption.OptionType
  1443. href: api/Grpc.Core.ChannelOption.OptionType.html
  1444. commentId: T:Grpc.Core.ChannelOption.OptionType
  1445. fullName: Grpc.Core.ChannelOption.OptionType
  1446. nameWithType: ChannelOption.OptionType
  1447. - uid: Grpc.Core.ChannelOption.OptionType.Integer
  1448. name: Integer
  1449. href: api/Grpc.Core.ChannelOption.OptionType.html#Grpc_Core_ChannelOption_OptionType_Integer
  1450. commentId: F:Grpc.Core.ChannelOption.OptionType.Integer
  1451. fullName: Grpc.Core.ChannelOption.OptionType.Integer
  1452. nameWithType: ChannelOption.OptionType.Integer
  1453. - uid: Grpc.Core.ChannelOption.OptionType.String
  1454. name: String
  1455. href: api/Grpc.Core.ChannelOption.OptionType.html#Grpc_Core_ChannelOption_OptionType_String
  1456. commentId: F:Grpc.Core.ChannelOption.OptionType.String
  1457. fullName: Grpc.Core.ChannelOption.OptionType.String
  1458. nameWithType: ChannelOption.OptionType.String
  1459. - uid: Grpc.Core.ChannelOption.StringValue
  1460. name: StringValue
  1461. href: api/Grpc.Core.ChannelOption.html#Grpc_Core_ChannelOption_StringValue
  1462. commentId: P:Grpc.Core.ChannelOption.StringValue
  1463. fullName: Grpc.Core.ChannelOption.StringValue
  1464. nameWithType: ChannelOption.StringValue
  1465. - uid: Grpc.Core.ChannelOption.StringValue*
  1466. name: StringValue
  1467. href: api/Grpc.Core.ChannelOption.html#Grpc_Core_ChannelOption_StringValue_
  1468. commentId: Overload:Grpc.Core.ChannelOption.StringValue
  1469. fullName: Grpc.Core.ChannelOption.StringValue
  1470. nameWithType: ChannelOption.StringValue
  1471. - uid: Grpc.Core.ChannelOption.Type
  1472. name: Type
  1473. href: api/Grpc.Core.ChannelOption.html#Grpc_Core_ChannelOption_Type
  1474. commentId: P:Grpc.Core.ChannelOption.Type
  1475. fullName: Grpc.Core.ChannelOption.Type
  1476. nameWithType: ChannelOption.Type
  1477. - uid: Grpc.Core.ChannelOption.Type*
  1478. name: Type
  1479. href: api/Grpc.Core.ChannelOption.html#Grpc_Core_ChannelOption_Type_
  1480. commentId: Overload:Grpc.Core.ChannelOption.Type
  1481. fullName: Grpc.Core.ChannelOption.Type
  1482. nameWithType: ChannelOption.Type
  1483. - uid: Grpc.Core.ChannelOptions
  1484. name: ChannelOptions
  1485. href: api/Grpc.Core.ChannelOptions.html
  1486. commentId: T:Grpc.Core.ChannelOptions
  1487. fullName: Grpc.Core.ChannelOptions
  1488. nameWithType: ChannelOptions
  1489. - uid: Grpc.Core.ChannelOptions.Census
  1490. name: Census
  1491. href: api/Grpc.Core.ChannelOptions.html#Grpc_Core_ChannelOptions_Census
  1492. commentId: F:Grpc.Core.ChannelOptions.Census
  1493. fullName: Grpc.Core.ChannelOptions.Census
  1494. nameWithType: ChannelOptions.Census
  1495. - uid: Grpc.Core.ChannelOptions.DefaultAuthority
  1496. name: DefaultAuthority
  1497. href: api/Grpc.Core.ChannelOptions.html#Grpc_Core_ChannelOptions_DefaultAuthority
  1498. commentId: F:Grpc.Core.ChannelOptions.DefaultAuthority
  1499. fullName: Grpc.Core.ChannelOptions.DefaultAuthority
  1500. nameWithType: ChannelOptions.DefaultAuthority
  1501. - uid: Grpc.Core.ChannelOptions.Http2InitialSequenceNumber
  1502. name: Http2InitialSequenceNumber
  1503. href: api/Grpc.Core.ChannelOptions.html#Grpc_Core_ChannelOptions_Http2InitialSequenceNumber
  1504. commentId: F:Grpc.Core.ChannelOptions.Http2InitialSequenceNumber
  1505. fullName: Grpc.Core.ChannelOptions.Http2InitialSequenceNumber
  1506. nameWithType: ChannelOptions.Http2InitialSequenceNumber
  1507. - uid: Grpc.Core.ChannelOptions.MaxConcurrentStreams
  1508. name: MaxConcurrentStreams
  1509. href: api/Grpc.Core.ChannelOptions.html#Grpc_Core_ChannelOptions_MaxConcurrentStreams
  1510. commentId: F:Grpc.Core.ChannelOptions.MaxConcurrentStreams
  1511. fullName: Grpc.Core.ChannelOptions.MaxConcurrentStreams
  1512. nameWithType: ChannelOptions.MaxConcurrentStreams
  1513. - uid: Grpc.Core.ChannelOptions.MaxMessageLength
  1514. name: MaxMessageLength
  1515. href: api/Grpc.Core.ChannelOptions.html#Grpc_Core_ChannelOptions_MaxMessageLength
  1516. commentId: F:Grpc.Core.ChannelOptions.MaxMessageLength
  1517. fullName: Grpc.Core.ChannelOptions.MaxMessageLength
  1518. nameWithType: ChannelOptions.MaxMessageLength
  1519. - uid: Grpc.Core.ChannelOptions.MaxReceiveMessageLength
  1520. name: MaxReceiveMessageLength
  1521. href: api/Grpc.Core.ChannelOptions.html#Grpc_Core_ChannelOptions_MaxReceiveMessageLength
  1522. commentId: F:Grpc.Core.ChannelOptions.MaxReceiveMessageLength
  1523. fullName: Grpc.Core.ChannelOptions.MaxReceiveMessageLength
  1524. nameWithType: ChannelOptions.MaxReceiveMessageLength
  1525. - uid: Grpc.Core.ChannelOptions.MaxSendMessageLength
  1526. name: MaxSendMessageLength
  1527. href: api/Grpc.Core.ChannelOptions.html#Grpc_Core_ChannelOptions_MaxSendMessageLength
  1528. commentId: F:Grpc.Core.ChannelOptions.MaxSendMessageLength
  1529. fullName: Grpc.Core.ChannelOptions.MaxSendMessageLength
  1530. nameWithType: ChannelOptions.MaxSendMessageLength
  1531. - uid: Grpc.Core.ChannelOptions.PrimaryUserAgentString
  1532. name: PrimaryUserAgentString
  1533. href: api/Grpc.Core.ChannelOptions.html#Grpc_Core_ChannelOptions_PrimaryUserAgentString
  1534. commentId: F:Grpc.Core.ChannelOptions.PrimaryUserAgentString
  1535. fullName: Grpc.Core.ChannelOptions.PrimaryUserAgentString
  1536. nameWithType: ChannelOptions.PrimaryUserAgentString
  1537. - uid: Grpc.Core.ChannelOptions.SecondaryUserAgentString
  1538. name: SecondaryUserAgentString
  1539. href: api/Grpc.Core.ChannelOptions.html#Grpc_Core_ChannelOptions_SecondaryUserAgentString
  1540. commentId: F:Grpc.Core.ChannelOptions.SecondaryUserAgentString
  1541. fullName: Grpc.Core.ChannelOptions.SecondaryUserAgentString
  1542. nameWithType: ChannelOptions.SecondaryUserAgentString
  1543. - uid: Grpc.Core.ChannelOptions.SoReuseport
  1544. name: SoReuseport
  1545. href: api/Grpc.Core.ChannelOptions.html#Grpc_Core_ChannelOptions_SoReuseport
  1546. commentId: F:Grpc.Core.ChannelOptions.SoReuseport
  1547. fullName: Grpc.Core.ChannelOptions.SoReuseport
  1548. nameWithType: ChannelOptions.SoReuseport
  1549. - uid: Grpc.Core.ChannelOptions.SslTargetNameOverride
  1550. name: SslTargetNameOverride
  1551. href: api/Grpc.Core.ChannelOptions.html#Grpc_Core_ChannelOptions_SslTargetNameOverride
  1552. commentId: F:Grpc.Core.ChannelOptions.SslTargetNameOverride
  1553. fullName: Grpc.Core.ChannelOptions.SslTargetNameOverride
  1554. nameWithType: ChannelOptions.SslTargetNameOverride
  1555. - uid: Grpc.Core.ChannelState
  1556. name: ChannelState
  1557. href: api/Grpc.Core.ChannelState.html
  1558. commentId: T:Grpc.Core.ChannelState
  1559. fullName: Grpc.Core.ChannelState
  1560. nameWithType: ChannelState
  1561. - uid: Grpc.Core.ChannelState.Connecting
  1562. name: Connecting
  1563. href: api/Grpc.Core.ChannelState.html#Grpc_Core_ChannelState_Connecting
  1564. commentId: F:Grpc.Core.ChannelState.Connecting
  1565. fullName: Grpc.Core.ChannelState.Connecting
  1566. nameWithType: ChannelState.Connecting
  1567. - uid: Grpc.Core.ChannelState.Idle
  1568. name: Idle
  1569. href: api/Grpc.Core.ChannelState.html#Grpc_Core_ChannelState_Idle
  1570. commentId: F:Grpc.Core.ChannelState.Idle
  1571. fullName: Grpc.Core.ChannelState.Idle
  1572. nameWithType: ChannelState.Idle
  1573. - uid: Grpc.Core.ChannelState.Ready
  1574. name: Ready
  1575. href: api/Grpc.Core.ChannelState.html#Grpc_Core_ChannelState_Ready
  1576. commentId: F:Grpc.Core.ChannelState.Ready
  1577. fullName: Grpc.Core.ChannelState.Ready
  1578. nameWithType: ChannelState.Ready
  1579. - uid: Grpc.Core.ChannelState.Shutdown
  1580. name: Shutdown
  1581. href: api/Grpc.Core.ChannelState.html#Grpc_Core_ChannelState_Shutdown
  1582. commentId: F:Grpc.Core.ChannelState.Shutdown
  1583. fullName: Grpc.Core.ChannelState.Shutdown
  1584. nameWithType: ChannelState.Shutdown
  1585. - uid: Grpc.Core.ChannelState.TransientFailure
  1586. name: TransientFailure
  1587. href: api/Grpc.Core.ChannelState.html#Grpc_Core_ChannelState_TransientFailure
  1588. commentId: F:Grpc.Core.ChannelState.TransientFailure
  1589. fullName: Grpc.Core.ChannelState.TransientFailure
  1590. nameWithType: ChannelState.TransientFailure
  1591. - uid: Grpc.Core.ClientBase
  1592. name: ClientBase
  1593. href: api/Grpc.Core.ClientBase.html
  1594. commentId: T:Grpc.Core.ClientBase
  1595. fullName: Grpc.Core.ClientBase
  1596. nameWithType: ClientBase
  1597. - uid: Grpc.Core.ClientBase.#ctor
  1598. name: ClientBase()
  1599. href: api/Grpc.Core.ClientBase.html#Grpc_Core_ClientBase__ctor
  1600. commentId: M:Grpc.Core.ClientBase.#ctor
  1601. fullName: Grpc.Core.ClientBase.ClientBase()
  1602. nameWithType: ClientBase.ClientBase()
  1603. - uid: Grpc.Core.ClientBase.#ctor(Grpc.Core.CallInvoker)
  1604. name: ClientBase(CallInvoker)
  1605. href: api/Grpc.Core.ClientBase.html#Grpc_Core_ClientBase__ctor_Grpc_Core_CallInvoker_
  1606. commentId: M:Grpc.Core.ClientBase.#ctor(Grpc.Core.CallInvoker)
  1607. fullName: Grpc.Core.ClientBase.ClientBase(Grpc.Core.CallInvoker)
  1608. nameWithType: ClientBase.ClientBase(CallInvoker)
  1609. - uid: Grpc.Core.ClientBase.#ctor(Grpc.Core.Channel)
  1610. name: ClientBase(Channel)
  1611. href: api/Grpc.Core.ClientBase.html#Grpc_Core_ClientBase__ctor_Grpc_Core_Channel_
  1612. commentId: M:Grpc.Core.ClientBase.#ctor(Grpc.Core.Channel)
  1613. fullName: Grpc.Core.ClientBase.ClientBase(Grpc.Core.Channel)
  1614. nameWithType: ClientBase.ClientBase(Channel)
  1615. - uid: Grpc.Core.ClientBase.#ctor(Grpc.Core.ClientBase.ClientBaseConfiguration)
  1616. name: ClientBase(ClientBase.ClientBaseConfiguration)
  1617. href: api/Grpc.Core.ClientBase.html#Grpc_Core_ClientBase__ctor_Grpc_Core_ClientBase_ClientBaseConfiguration_
  1618. commentId: M:Grpc.Core.ClientBase.#ctor(Grpc.Core.ClientBase.ClientBaseConfiguration)
  1619. fullName: Grpc.Core.ClientBase.ClientBase(Grpc.Core.ClientBase.ClientBaseConfiguration)
  1620. nameWithType: ClientBase.ClientBase(ClientBase.ClientBaseConfiguration)
  1621. - uid: Grpc.Core.ClientBase.#ctor*
  1622. name: ClientBase
  1623. href: api/Grpc.Core.ClientBase.html#Grpc_Core_ClientBase__ctor_
  1624. commentId: Overload:Grpc.Core.ClientBase.#ctor
  1625. fullName: Grpc.Core.ClientBase.ClientBase
  1626. nameWithType: ClientBase.ClientBase
  1627. - uid: Grpc.Core.ClientBase.CallInvoker
  1628. name: CallInvoker
  1629. href: api/Grpc.Core.ClientBase.html#Grpc_Core_ClientBase_CallInvoker
  1630. commentId: P:Grpc.Core.ClientBase.CallInvoker
  1631. fullName: Grpc.Core.ClientBase.CallInvoker
  1632. nameWithType: ClientBase.CallInvoker
  1633. - uid: Grpc.Core.ClientBase.CallInvoker*
  1634. name: CallInvoker
  1635. href: api/Grpc.Core.ClientBase.html#Grpc_Core_ClientBase_CallInvoker_
  1636. commentId: Overload:Grpc.Core.ClientBase.CallInvoker
  1637. fullName: Grpc.Core.ClientBase.CallInvoker
  1638. nameWithType: ClientBase.CallInvoker
  1639. - uid: Grpc.Core.ClientBase.ClientBaseConfiguration
  1640. name: ClientBase.ClientBaseConfiguration
  1641. href: api/Grpc.Core.ClientBase.ClientBaseConfiguration.html
  1642. commentId: T:Grpc.Core.ClientBase.ClientBaseConfiguration
  1643. fullName: Grpc.Core.ClientBase.ClientBaseConfiguration
  1644. nameWithType: ClientBase.ClientBaseConfiguration
  1645. - uid: Grpc.Core.ClientBase`1
  1646. name: ClientBase<T>
  1647. href: api/Grpc.Core.ClientBase-1.html
  1648. commentId: T:Grpc.Core.ClientBase`1
  1649. name.vb: ClientBase(Of T)
  1650. fullName: Grpc.Core.ClientBase<T>
  1651. fullName.vb: Grpc.Core.ClientBase(Of T)
  1652. nameWithType: ClientBase<T>
  1653. nameWithType.vb: ClientBase(Of T)
  1654. - uid: Grpc.Core.ClientBase`1.#ctor
  1655. name: ClientBase()
  1656. href: api/Grpc.Core.ClientBase-1.html#Grpc_Core_ClientBase_1__ctor
  1657. commentId: M:Grpc.Core.ClientBase`1.#ctor
  1658. fullName: Grpc.Core.ClientBase<T>.ClientBase()
  1659. fullName.vb: Grpc.Core.ClientBase(Of T).ClientBase()
  1660. nameWithType: ClientBase<T>.ClientBase()
  1661. nameWithType.vb: ClientBase(Of T).ClientBase()
  1662. - uid: Grpc.Core.ClientBase`1.#ctor(Grpc.Core.CallInvoker)
  1663. name: ClientBase(CallInvoker)
  1664. href: api/Grpc.Core.ClientBase-1.html#Grpc_Core_ClientBase_1__ctor_Grpc_Core_CallInvoker_
  1665. commentId: M:Grpc.Core.ClientBase`1.#ctor(Grpc.Core.CallInvoker)
  1666. fullName: Grpc.Core.ClientBase<T>.ClientBase(Grpc.Core.CallInvoker)
  1667. fullName.vb: Grpc.Core.ClientBase(Of T).ClientBase(Grpc.Core.CallInvoker)
  1668. nameWithType: ClientBase<T>.ClientBase(CallInvoker)
  1669. nameWithType.vb: ClientBase(Of T).ClientBase(CallInvoker)
  1670. - uid: Grpc.Core.ClientBase`1.#ctor(Grpc.Core.Channel)
  1671. name: ClientBase(Channel)
  1672. href: api/Grpc.Core.ClientBase-1.html#Grpc_Core_ClientBase_1__ctor_Grpc_Core_Channel_
  1673. commentId: M:Grpc.Core.ClientBase`1.#ctor(Grpc.Core.Channel)
  1674. fullName: Grpc.Core.ClientBase<T>.ClientBase(Grpc.Core.Channel)
  1675. fullName.vb: Grpc.Core.ClientBase(Of T).ClientBase(Grpc.Core.Channel)
  1676. nameWithType: ClientBase<T>.ClientBase(Channel)
  1677. nameWithType.vb: ClientBase(Of T).ClientBase(Channel)
  1678. - uid: Grpc.Core.ClientBase`1.#ctor(Grpc.Core.ClientBase.ClientBaseConfiguration)
  1679. name: ClientBase(ClientBase.ClientBaseConfiguration)
  1680. href: api/Grpc.Core.ClientBase-1.html#Grpc_Core_ClientBase_1__ctor_Grpc_Core_ClientBase_ClientBaseConfiguration_
  1681. commentId: M:Grpc.Core.ClientBase`1.#ctor(Grpc.Core.ClientBase.ClientBaseConfiguration)
  1682. fullName: Grpc.Core.ClientBase<T>.ClientBase(Grpc.Core.ClientBase.ClientBaseConfiguration)
  1683. fullName.vb: Grpc.Core.ClientBase(Of T).ClientBase(Grpc.Core.ClientBase.ClientBaseConfiguration)
  1684. nameWithType: ClientBase<T>.ClientBase(ClientBase.ClientBaseConfiguration)
  1685. nameWithType.vb: ClientBase(Of T).ClientBase(ClientBase.ClientBaseConfiguration)
  1686. - uid: Grpc.Core.ClientBase`1.#ctor*
  1687. name: ClientBase
  1688. href: api/Grpc.Core.ClientBase-1.html#Grpc_Core_ClientBase_1__ctor_
  1689. commentId: Overload:Grpc.Core.ClientBase`1.#ctor
  1690. fullName: Grpc.Core.ClientBase<T>.ClientBase
  1691. fullName.vb: Grpc.Core.ClientBase(Of T).ClientBase
  1692. nameWithType: ClientBase<T>.ClientBase
  1693. nameWithType.vb: ClientBase(Of T).ClientBase
  1694. - uid: Grpc.Core.ClientBase`1.NewInstance(Grpc.Core.ClientBase.ClientBaseConfiguration)
  1695. name: NewInstance(ClientBase.ClientBaseConfiguration)
  1696. href: api/Grpc.Core.ClientBase-1.html#Grpc_Core_ClientBase_1_NewInstance_Grpc_Core_ClientBase_ClientBaseConfiguration_
  1697. commentId: M:Grpc.Core.ClientBase`1.NewInstance(Grpc.Core.ClientBase.ClientBaseConfiguration)
  1698. fullName: Grpc.Core.ClientBase<T>.NewInstance(Grpc.Core.ClientBase.ClientBaseConfiguration)
  1699. fullName.vb: Grpc.Core.ClientBase(Of T).NewInstance(Grpc.Core.ClientBase.ClientBaseConfiguration)
  1700. nameWithType: ClientBase<T>.NewInstance(ClientBase.ClientBaseConfiguration)
  1701. nameWithType.vb: ClientBase(Of T).NewInstance(ClientBase.ClientBaseConfiguration)
  1702. - uid: Grpc.Core.ClientBase`1.NewInstance*
  1703. name: NewInstance
  1704. href: api/Grpc.Core.ClientBase-1.html#Grpc_Core_ClientBase_1_NewInstance_
  1705. commentId: Overload:Grpc.Core.ClientBase`1.NewInstance
  1706. fullName: Grpc.Core.ClientBase<T>.NewInstance
  1707. fullName.vb: Grpc.Core.ClientBase(Of T).NewInstance
  1708. nameWithType: ClientBase<T>.NewInstance
  1709. nameWithType.vb: ClientBase(Of T).NewInstance
  1710. - uid: Grpc.Core.ClientBase`1.WithHost(System.String)
  1711. name: WithHost(String)
  1712. href: api/Grpc.Core.ClientBase-1.html#Grpc_Core_ClientBase_1_WithHost_System_String_
  1713. commentId: M:Grpc.Core.ClientBase`1.WithHost(System.String)
  1714. fullName: Grpc.Core.ClientBase<T>.WithHost(System.String)
  1715. fullName.vb: Grpc.Core.ClientBase(Of T).WithHost(System.String)
  1716. nameWithType: ClientBase<T>.WithHost(String)
  1717. nameWithType.vb: ClientBase(Of T).WithHost(String)
  1718. - uid: Grpc.Core.ClientBase`1.WithHost*
  1719. name: WithHost
  1720. href: api/Grpc.Core.ClientBase-1.html#Grpc_Core_ClientBase_1_WithHost_
  1721. commentId: Overload:Grpc.Core.ClientBase`1.WithHost
  1722. fullName: Grpc.Core.ClientBase<T>.WithHost
  1723. fullName.vb: Grpc.Core.ClientBase(Of T).WithHost
  1724. nameWithType: ClientBase<T>.WithHost
  1725. nameWithType.vb: ClientBase(Of T).WithHost
  1726. - uid: Grpc.Core.ClientStreamingServerMethod`2
  1727. name: ClientStreamingServerMethod<TRequest, TResponse>
  1728. href: api/Grpc.Core.ClientStreamingServerMethod-2.html
  1729. commentId: T:Grpc.Core.ClientStreamingServerMethod`2
  1730. name.vb: ClientStreamingServerMethod(Of TRequest, TResponse)
  1731. fullName: Grpc.Core.ClientStreamingServerMethod<TRequest, TResponse>
  1732. fullName.vb: Grpc.Core.ClientStreamingServerMethod(Of TRequest, TResponse)
  1733. nameWithType: ClientStreamingServerMethod<TRequest, TResponse>
  1734. nameWithType.vb: ClientStreamingServerMethod(Of TRequest, TResponse)
  1735. - uid: Grpc.Core.CompressionLevel
  1736. name: CompressionLevel
  1737. href: api/Grpc.Core.CompressionLevel.html
  1738. commentId: T:Grpc.Core.CompressionLevel
  1739. fullName: Grpc.Core.CompressionLevel
  1740. nameWithType: CompressionLevel
  1741. - uid: Grpc.Core.CompressionLevel.High
  1742. name: High
  1743. href: api/Grpc.Core.CompressionLevel.html#Grpc_Core_CompressionLevel_High
  1744. commentId: F:Grpc.Core.CompressionLevel.High
  1745. fullName: Grpc.Core.CompressionLevel.High
  1746. nameWithType: CompressionLevel.High
  1747. - uid: Grpc.Core.CompressionLevel.Low
  1748. name: Low
  1749. href: api/Grpc.Core.CompressionLevel.html#Grpc_Core_CompressionLevel_Low
  1750. commentId: F:Grpc.Core.CompressionLevel.Low
  1751. fullName: Grpc.Core.CompressionLevel.Low
  1752. nameWithType: CompressionLevel.Low
  1753. - uid: Grpc.Core.CompressionLevel.Medium
  1754. name: Medium
  1755. href: api/Grpc.Core.CompressionLevel.html#Grpc_Core_CompressionLevel_Medium
  1756. commentId: F:Grpc.Core.CompressionLevel.Medium
  1757. fullName: Grpc.Core.CompressionLevel.Medium
  1758. nameWithType: CompressionLevel.Medium
  1759. - uid: Grpc.Core.CompressionLevel.None
  1760. name: None
  1761. href: api/Grpc.Core.CompressionLevel.html#Grpc_Core_CompressionLevel_None
  1762. commentId: F:Grpc.Core.CompressionLevel.None
  1763. fullName: Grpc.Core.CompressionLevel.None
  1764. nameWithType: CompressionLevel.None
  1765. - uid: Grpc.Core.ContextPropagationOptions
  1766. name: ContextPropagationOptions
  1767. href: api/Grpc.Core.ContextPropagationOptions.html
  1768. commentId: T:Grpc.Core.ContextPropagationOptions
  1769. fullName: Grpc.Core.ContextPropagationOptions
  1770. nameWithType: ContextPropagationOptions
  1771. - uid: Grpc.Core.ContextPropagationOptions.#ctor(System.Boolean,System.Boolean)
  1772. name: ContextPropagationOptions(Boolean, Boolean)
  1773. href: api/Grpc.Core.ContextPropagationOptions.html#Grpc_Core_ContextPropagationOptions__ctor_System_Boolean_System_Boolean_
  1774. commentId: M:Grpc.Core.ContextPropagationOptions.#ctor(System.Boolean,System.Boolean)
  1775. fullName: Grpc.Core.ContextPropagationOptions.ContextPropagationOptions(System.Boolean, System.Boolean)
  1776. nameWithType: ContextPropagationOptions.ContextPropagationOptions(Boolean, Boolean)
  1777. - uid: Grpc.Core.ContextPropagationOptions.#ctor*
  1778. name: ContextPropagationOptions
  1779. href: api/Grpc.Core.ContextPropagationOptions.html#Grpc_Core_ContextPropagationOptions__ctor_
  1780. commentId: Overload:Grpc.Core.ContextPropagationOptions.#ctor
  1781. fullName: Grpc.Core.ContextPropagationOptions.ContextPropagationOptions
  1782. nameWithType: ContextPropagationOptions.ContextPropagationOptions
  1783. - uid: Grpc.Core.ContextPropagationOptions.Default
  1784. name: Default
  1785. href: api/Grpc.Core.ContextPropagationOptions.html#Grpc_Core_ContextPropagationOptions_Default
  1786. commentId: F:Grpc.Core.ContextPropagationOptions.Default
  1787. fullName: Grpc.Core.ContextPropagationOptions.Default
  1788. nameWithType: ContextPropagationOptions.Default
  1789. - uid: Grpc.Core.ContextPropagationOptions.IsPropagateCancellation
  1790. name: IsPropagateCancellation
  1791. href: api/Grpc.Core.ContextPropagationOptions.html#Grpc_Core_ContextPropagationOptions_IsPropagateCancellation
  1792. commentId: P:Grpc.Core.ContextPropagationOptions.IsPropagateCancellation
  1793. fullName: Grpc.Core.ContextPropagationOptions.IsPropagateCancellation
  1794. nameWithType: ContextPropagationOptions.IsPropagateCancellation
  1795. - uid: Grpc.Core.ContextPropagationOptions.IsPropagateCancellation*
  1796. name: IsPropagateCancellation
  1797. href: api/Grpc.Core.ContextPropagationOptions.html#Grpc_Core_ContextPropagationOptions_IsPropagateCancellation_
  1798. commentId: Overload:Grpc.Core.ContextPropagationOptions.IsPropagateCancellation
  1799. fullName: Grpc.Core.ContextPropagationOptions.IsPropagateCancellation
  1800. nameWithType: ContextPropagationOptions.IsPropagateCancellation
  1801. - uid: Grpc.Core.ContextPropagationOptions.IsPropagateDeadline
  1802. name: IsPropagateDeadline
  1803. href: api/Grpc.Core.ContextPropagationOptions.html#Grpc_Core_ContextPropagationOptions_IsPropagateDeadline
  1804. commentId: P:Grpc.Core.ContextPropagationOptions.IsPropagateDeadline
  1805. fullName: Grpc.Core.ContextPropagationOptions.IsPropagateDeadline
  1806. nameWithType: ContextPropagationOptions.IsPropagateDeadline
  1807. - uid: Grpc.Core.ContextPropagationOptions.IsPropagateDeadline*
  1808. name: IsPropagateDeadline
  1809. href: api/Grpc.Core.ContextPropagationOptions.html#Grpc_Core_ContextPropagationOptions_IsPropagateDeadline_
  1810. commentId: Overload:Grpc.Core.ContextPropagationOptions.IsPropagateDeadline
  1811. fullName: Grpc.Core.ContextPropagationOptions.IsPropagateDeadline
  1812. nameWithType: ContextPropagationOptions.IsPropagateDeadline
  1813. - uid: Grpc.Core.ContextPropagationToken
  1814. name: ContextPropagationToken
  1815. href: api/Grpc.Core.ContextPropagationToken.html
  1816. commentId: T:Grpc.Core.ContextPropagationToken
  1817. fullName: Grpc.Core.ContextPropagationToken
  1818. nameWithType: ContextPropagationToken
  1819. - uid: Grpc.Core.DefaultCallInvoker
  1820. name: DefaultCallInvoker
  1821. href: api/Grpc.Core.DefaultCallInvoker.html
  1822. commentId: T:Grpc.Core.DefaultCallInvoker
  1823. fullName: Grpc.Core.DefaultCallInvoker
  1824. nameWithType: DefaultCallInvoker
  1825. - uid: Grpc.Core.DefaultCallInvoker.#ctor(Grpc.Core.Channel)
  1826. name: DefaultCallInvoker(Channel)
  1827. href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker__ctor_Grpc_Core_Channel_
  1828. commentId: M:Grpc.Core.DefaultCallInvoker.#ctor(Grpc.Core.Channel)
  1829. fullName: Grpc.Core.DefaultCallInvoker.DefaultCallInvoker(Grpc.Core.Channel)
  1830. nameWithType: DefaultCallInvoker.DefaultCallInvoker(Channel)
  1831. - uid: Grpc.Core.DefaultCallInvoker.#ctor*
  1832. name: DefaultCallInvoker
  1833. href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker__ctor_
  1834. commentId: Overload:Grpc.Core.DefaultCallInvoker.#ctor
  1835. fullName: Grpc.Core.DefaultCallInvoker.DefaultCallInvoker
  1836. nameWithType: DefaultCallInvoker.DefaultCallInvoker
  1837. - uid: Grpc.Core.DefaultCallInvoker.AsyncClientStreamingCall*
  1838. name: AsyncClientStreamingCall
  1839. href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker_AsyncClientStreamingCall_
  1840. commentId: Overload:Grpc.Core.DefaultCallInvoker.AsyncClientStreamingCall
  1841. fullName: Grpc.Core.DefaultCallInvoker.AsyncClientStreamingCall
  1842. nameWithType: DefaultCallInvoker.AsyncClientStreamingCall
  1843. - uid: Grpc.Core.DefaultCallInvoker.AsyncClientStreamingCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions)
  1844. name: AsyncClientStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions)
  1845. href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker_AsyncClientStreamingCall__2_Grpc_Core_Method___0___1__System_String_Grpc_Core_CallOptions_
  1846. commentId: M:Grpc.Core.DefaultCallInvoker.AsyncClientStreamingCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions)
  1847. name.vb: AsyncClientStreamingCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions)
  1848. fullName: Grpc.Core.DefaultCallInvoker.AsyncClientStreamingCall<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, System.String, Grpc.Core.CallOptions)
  1849. fullName.vb: Grpc.Core.DefaultCallInvoker.AsyncClientStreamingCall(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), System.String, Grpc.Core.CallOptions)
  1850. nameWithType: DefaultCallInvoker.AsyncClientStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions)
  1851. nameWithType.vb: DefaultCallInvoker.AsyncClientStreamingCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions)
  1852. - uid: Grpc.Core.DefaultCallInvoker.AsyncDuplexStreamingCall*
  1853. name: AsyncDuplexStreamingCall
  1854. href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker_AsyncDuplexStreamingCall_
  1855. commentId: Overload:Grpc.Core.DefaultCallInvoker.AsyncDuplexStreamingCall
  1856. fullName: Grpc.Core.DefaultCallInvoker.AsyncDuplexStreamingCall
  1857. nameWithType: DefaultCallInvoker.AsyncDuplexStreamingCall
  1858. - uid: Grpc.Core.DefaultCallInvoker.AsyncDuplexStreamingCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions)
  1859. name: AsyncDuplexStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions)
  1860. href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker_AsyncDuplexStreamingCall__2_Grpc_Core_Method___0___1__System_String_Grpc_Core_CallOptions_
  1861. commentId: M:Grpc.Core.DefaultCallInvoker.AsyncDuplexStreamingCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions)
  1862. name.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions)
  1863. fullName: Grpc.Core.DefaultCallInvoker.AsyncDuplexStreamingCall<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, System.String, Grpc.Core.CallOptions)
  1864. fullName.vb: Grpc.Core.DefaultCallInvoker.AsyncDuplexStreamingCall(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), System.String, Grpc.Core.CallOptions)
  1865. nameWithType: DefaultCallInvoker.AsyncDuplexStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions)
  1866. nameWithType.vb: DefaultCallInvoker.AsyncDuplexStreamingCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions)
  1867. - uid: Grpc.Core.DefaultCallInvoker.AsyncServerStreamingCall*
  1868. name: AsyncServerStreamingCall
  1869. href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker_AsyncServerStreamingCall_
  1870. commentId: Overload:Grpc.Core.DefaultCallInvoker.AsyncServerStreamingCall
  1871. fullName: Grpc.Core.DefaultCallInvoker.AsyncServerStreamingCall
  1872. nameWithType: DefaultCallInvoker.AsyncServerStreamingCall
  1873. - uid: Grpc.Core.DefaultCallInvoker.AsyncServerStreamingCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions,``0)
  1874. name: AsyncServerStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions, TRequest)
  1875. href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker_AsyncServerStreamingCall__2_Grpc_Core_Method___0___1__System_String_Grpc_Core_CallOptions___0_
  1876. commentId: M:Grpc.Core.DefaultCallInvoker.AsyncServerStreamingCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions,``0)
  1877. name.vb: AsyncServerStreamingCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions, TRequest)
  1878. fullName: Grpc.Core.DefaultCallInvoker.AsyncServerStreamingCall<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, System.String, Grpc.Core.CallOptions, TRequest)
  1879. fullName.vb: Grpc.Core.DefaultCallInvoker.AsyncServerStreamingCall(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), System.String, Grpc.Core.CallOptions, TRequest)
  1880. nameWithType: DefaultCallInvoker.AsyncServerStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions, TRequest)
  1881. nameWithType.vb: DefaultCallInvoker.AsyncServerStreamingCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions, TRequest)
  1882. - uid: Grpc.Core.DefaultCallInvoker.AsyncUnaryCall*
  1883. name: AsyncUnaryCall
  1884. href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker_AsyncUnaryCall_
  1885. commentId: Overload:Grpc.Core.DefaultCallInvoker.AsyncUnaryCall
  1886. fullName: Grpc.Core.DefaultCallInvoker.AsyncUnaryCall
  1887. nameWithType: DefaultCallInvoker.AsyncUnaryCall
  1888. - uid: Grpc.Core.DefaultCallInvoker.AsyncUnaryCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions,``0)
  1889. name: AsyncUnaryCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions, TRequest)
  1890. href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker_AsyncUnaryCall__2_Grpc_Core_Method___0___1__System_String_Grpc_Core_CallOptions___0_
  1891. commentId: M:Grpc.Core.DefaultCallInvoker.AsyncUnaryCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions,``0)
  1892. name.vb: AsyncUnaryCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions, TRequest)
  1893. fullName: Grpc.Core.DefaultCallInvoker.AsyncUnaryCall<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, System.String, Grpc.Core.CallOptions, TRequest)
  1894. fullName.vb: Grpc.Core.DefaultCallInvoker.AsyncUnaryCall(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), System.String, Grpc.Core.CallOptions, TRequest)
  1895. nameWithType: DefaultCallInvoker.AsyncUnaryCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions, TRequest)
  1896. nameWithType.vb: DefaultCallInvoker.AsyncUnaryCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions, TRequest)
  1897. - uid: Grpc.Core.DefaultCallInvoker.BlockingUnaryCall*
  1898. name: BlockingUnaryCall
  1899. href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker_BlockingUnaryCall_
  1900. commentId: Overload:Grpc.Core.DefaultCallInvoker.BlockingUnaryCall
  1901. fullName: Grpc.Core.DefaultCallInvoker.BlockingUnaryCall
  1902. nameWithType: DefaultCallInvoker.BlockingUnaryCall
  1903. - uid: Grpc.Core.DefaultCallInvoker.BlockingUnaryCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions,``0)
  1904. name: BlockingUnaryCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions, TRequest)
  1905. href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker_BlockingUnaryCall__2_Grpc_Core_Method___0___1__System_String_Grpc_Core_CallOptions___0_
  1906. commentId: M:Grpc.Core.DefaultCallInvoker.BlockingUnaryCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions,``0)
  1907. name.vb: BlockingUnaryCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions, TRequest)
  1908. fullName: Grpc.Core.DefaultCallInvoker.BlockingUnaryCall<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, System.String, Grpc.Core.CallOptions, TRequest)
  1909. fullName.vb: Grpc.Core.DefaultCallInvoker.BlockingUnaryCall(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), System.String, Grpc.Core.CallOptions, TRequest)
  1910. nameWithType: DefaultCallInvoker.BlockingUnaryCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions, TRequest)
  1911. nameWithType.vb: DefaultCallInvoker.BlockingUnaryCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions, TRequest)
  1912. - uid: Grpc.Core.DefaultCallInvoker.CreateCall*
  1913. name: CreateCall
  1914. href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker_CreateCall_
  1915. commentId: Overload:Grpc.Core.DefaultCallInvoker.CreateCall
  1916. fullName: Grpc.Core.DefaultCallInvoker.CreateCall
  1917. nameWithType: DefaultCallInvoker.CreateCall
  1918. - uid: Grpc.Core.DefaultCallInvoker.CreateCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions)
  1919. name: CreateCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions)
  1920. href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker_CreateCall__2_Grpc_Core_Method___0___1__System_String_Grpc_Core_CallOptions_
  1921. commentId: M:Grpc.Core.DefaultCallInvoker.CreateCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions)
  1922. name.vb: CreateCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions)
  1923. fullName: Grpc.Core.DefaultCallInvoker.CreateCall<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, System.String, Grpc.Core.CallOptions)
  1924. fullName.vb: Grpc.Core.DefaultCallInvoker.CreateCall(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), System.String, Grpc.Core.CallOptions)
  1925. nameWithType: DefaultCallInvoker.CreateCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions)
  1926. nameWithType.vb: DefaultCallInvoker.CreateCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions)
  1927. - uid: Grpc.Core.DuplexStreamingServerMethod`2
  1928. name: DuplexStreamingServerMethod<TRequest, TResponse>
  1929. href: api/Grpc.Core.DuplexStreamingServerMethod-2.html
  1930. commentId: T:Grpc.Core.DuplexStreamingServerMethod`2
  1931. name.vb: DuplexStreamingServerMethod(Of TRequest, TResponse)
  1932. fullName: Grpc.Core.DuplexStreamingServerMethod<TRequest, TResponse>
  1933. fullName.vb: Grpc.Core.DuplexStreamingServerMethod(Of TRequest, TResponse)
  1934. nameWithType: DuplexStreamingServerMethod<TRequest, TResponse>
  1935. nameWithType.vb: DuplexStreamingServerMethod(Of TRequest, TResponse)
  1936. - uid: Grpc.Core.GrpcEnvironment
  1937. name: GrpcEnvironment
  1938. href: api/Grpc.Core.GrpcEnvironment.html
  1939. commentId: T:Grpc.Core.GrpcEnvironment
  1940. fullName: Grpc.Core.GrpcEnvironment
  1941. nameWithType: GrpcEnvironment
  1942. - uid: Grpc.Core.GrpcEnvironment.KillServersAsync
  1943. name: KillServersAsync()
  1944. href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_KillServersAsync
  1945. commentId: M:Grpc.Core.GrpcEnvironment.KillServersAsync
  1946. fullName: Grpc.Core.GrpcEnvironment.KillServersAsync()
  1947. nameWithType: GrpcEnvironment.KillServersAsync()
  1948. - uid: Grpc.Core.GrpcEnvironment.KillServersAsync*
  1949. name: KillServersAsync
  1950. href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_KillServersAsync_
  1951. commentId: Overload:Grpc.Core.GrpcEnvironment.KillServersAsync
  1952. fullName: Grpc.Core.GrpcEnvironment.KillServersAsync
  1953. nameWithType: GrpcEnvironment.KillServersAsync
  1954. - uid: Grpc.Core.GrpcEnvironment.Logger
  1955. name: Logger
  1956. href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_Logger
  1957. commentId: P:Grpc.Core.GrpcEnvironment.Logger
  1958. fullName: Grpc.Core.GrpcEnvironment.Logger
  1959. nameWithType: GrpcEnvironment.Logger
  1960. - uid: Grpc.Core.GrpcEnvironment.Logger*
  1961. name: Logger
  1962. href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_Logger_
  1963. commentId: Overload:Grpc.Core.GrpcEnvironment.Logger
  1964. fullName: Grpc.Core.GrpcEnvironment.Logger
  1965. nameWithType: GrpcEnvironment.Logger
  1966. - uid: Grpc.Core.GrpcEnvironment.SetCompletionQueueCount(System.Int32)
  1967. name: SetCompletionQueueCount(Int32)
  1968. href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_SetCompletionQueueCount_System_Int32_
  1969. commentId: M:Grpc.Core.GrpcEnvironment.SetCompletionQueueCount(System.Int32)
  1970. fullName: Grpc.Core.GrpcEnvironment.SetCompletionQueueCount(System.Int32)
  1971. nameWithType: GrpcEnvironment.SetCompletionQueueCount(Int32)
  1972. - uid: Grpc.Core.GrpcEnvironment.SetCompletionQueueCount*
  1973. name: SetCompletionQueueCount
  1974. href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_SetCompletionQueueCount_
  1975. commentId: Overload:Grpc.Core.GrpcEnvironment.SetCompletionQueueCount
  1976. fullName: Grpc.Core.GrpcEnvironment.SetCompletionQueueCount
  1977. nameWithType: GrpcEnvironment.SetCompletionQueueCount
  1978. - uid: Grpc.Core.GrpcEnvironment.SetHandlerInlining(System.Boolean)
  1979. name: SetHandlerInlining(Boolean)
  1980. href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_SetHandlerInlining_System_Boolean_
  1981. commentId: M:Grpc.Core.GrpcEnvironment.SetHandlerInlining(System.Boolean)
  1982. fullName: Grpc.Core.GrpcEnvironment.SetHandlerInlining(System.Boolean)
  1983. nameWithType: GrpcEnvironment.SetHandlerInlining(Boolean)
  1984. - uid: Grpc.Core.GrpcEnvironment.SetHandlerInlining*
  1985. name: SetHandlerInlining
  1986. href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_SetHandlerInlining_
  1987. commentId: Overload:Grpc.Core.GrpcEnvironment.SetHandlerInlining
  1988. fullName: Grpc.Core.GrpcEnvironment.SetHandlerInlining
  1989. nameWithType: GrpcEnvironment.SetHandlerInlining
  1990. - uid: Grpc.Core.GrpcEnvironment.SetLogger(Grpc.Core.Logging.ILogger)
  1991. name: SetLogger(ILogger)
  1992. href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_SetLogger_Grpc_Core_Logging_ILogger_
  1993. commentId: M:Grpc.Core.GrpcEnvironment.SetLogger(Grpc.Core.Logging.ILogger)
  1994. fullName: Grpc.Core.GrpcEnvironment.SetLogger(Grpc.Core.Logging.ILogger)
  1995. nameWithType: GrpcEnvironment.SetLogger(ILogger)
  1996. - uid: Grpc.Core.GrpcEnvironment.SetLogger*
  1997. name: SetLogger
  1998. href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_SetLogger_
  1999. commentId: Overload:Grpc.Core.GrpcEnvironment.SetLogger
  2000. fullName: Grpc.Core.GrpcEnvironment.SetLogger
  2001. nameWithType: GrpcEnvironment.SetLogger
  2002. - uid: Grpc.Core.GrpcEnvironment.SetThreadPoolSize(System.Int32)
  2003. name: SetThreadPoolSize(Int32)
  2004. href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_SetThreadPoolSize_System_Int32_
  2005. commentId: M:Grpc.Core.GrpcEnvironment.SetThreadPoolSize(System.Int32)
  2006. fullName: Grpc.Core.GrpcEnvironment.SetThreadPoolSize(System.Int32)
  2007. nameWithType: GrpcEnvironment.SetThreadPoolSize(Int32)
  2008. - uid: Grpc.Core.GrpcEnvironment.SetThreadPoolSize*
  2009. name: SetThreadPoolSize
  2010. href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_SetThreadPoolSize_
  2011. commentId: Overload:Grpc.Core.GrpcEnvironment.SetThreadPoolSize
  2012. fullName: Grpc.Core.GrpcEnvironment.SetThreadPoolSize
  2013. nameWithType: GrpcEnvironment.SetThreadPoolSize
  2014. - uid: Grpc.Core.GrpcEnvironment.ShutdownChannelsAsync
  2015. name: ShutdownChannelsAsync()
  2016. href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_ShutdownChannelsAsync
  2017. commentId: M:Grpc.Core.GrpcEnvironment.ShutdownChannelsAsync
  2018. fullName: Grpc.Core.GrpcEnvironment.ShutdownChannelsAsync()
  2019. nameWithType: GrpcEnvironment.ShutdownChannelsAsync()
  2020. - uid: Grpc.Core.GrpcEnvironment.ShutdownChannelsAsync*
  2021. name: ShutdownChannelsAsync
  2022. href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_ShutdownChannelsAsync_
  2023. commentId: Overload:Grpc.Core.GrpcEnvironment.ShutdownChannelsAsync
  2024. fullName: Grpc.Core.GrpcEnvironment.ShutdownChannelsAsync
  2025. nameWithType: GrpcEnvironment.ShutdownChannelsAsync
  2026. - uid: Grpc.Core.GrpcEnvironment.ShuttingDown
  2027. name: ShuttingDown
  2028. href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_ShuttingDown
  2029. commentId: E:Grpc.Core.GrpcEnvironment.ShuttingDown
  2030. fullName: Grpc.Core.GrpcEnvironment.ShuttingDown
  2031. nameWithType: GrpcEnvironment.ShuttingDown
  2032. - uid: Grpc.Core.IAsyncStreamReader`1
  2033. name: IAsyncStreamReader<T>
  2034. href: api/Grpc.Core.IAsyncStreamReader-1.html
  2035. commentId: T:Grpc.Core.IAsyncStreamReader`1
  2036. name.vb: IAsyncStreamReader(Of T)
  2037. fullName: Grpc.Core.IAsyncStreamReader<T>
  2038. fullName.vb: Grpc.Core.IAsyncStreamReader(Of T)
  2039. nameWithType: IAsyncStreamReader<T>
  2040. nameWithType.vb: IAsyncStreamReader(Of T)
  2041. - uid: Grpc.Core.IAsyncStreamWriter`1
  2042. name: IAsyncStreamWriter<T>
  2043. href: api/Grpc.Core.IAsyncStreamWriter-1.html
  2044. commentId: T:Grpc.Core.IAsyncStreamWriter`1
  2045. name.vb: IAsyncStreamWriter(Of T)
  2046. fullName: Grpc.Core.IAsyncStreamWriter<T>
  2047. fullName.vb: Grpc.Core.IAsyncStreamWriter(Of T)
  2048. nameWithType: IAsyncStreamWriter<T>
  2049. nameWithType.vb: IAsyncStreamWriter(Of T)
  2050. - uid: Grpc.Core.IAsyncStreamWriter`1.WriteAsync(`0)
  2051. name: WriteAsync(T)
  2052. href: api/Grpc.Core.IAsyncStreamWriter-1.html#Grpc_Core_IAsyncStreamWriter_1_WriteAsync__0_
  2053. commentId: M:Grpc.Core.IAsyncStreamWriter`1.WriteAsync(`0)
  2054. fullName: Grpc.Core.IAsyncStreamWriter<T>.WriteAsync(T)
  2055. fullName.vb: Grpc.Core.IAsyncStreamWriter(Of T).WriteAsync(T)
  2056. nameWithType: IAsyncStreamWriter<T>.WriteAsync(T)
  2057. nameWithType.vb: IAsyncStreamWriter(Of T).WriteAsync(T)
  2058. - uid: Grpc.Core.IAsyncStreamWriter`1.WriteAsync*
  2059. name: WriteAsync
  2060. href: api/Grpc.Core.IAsyncStreamWriter-1.html#Grpc_Core_IAsyncStreamWriter_1_WriteAsync_
  2061. commentId: Overload:Grpc.Core.IAsyncStreamWriter`1.WriteAsync
  2062. fullName: Grpc.Core.IAsyncStreamWriter<T>.WriteAsync
  2063. fullName.vb: Grpc.Core.IAsyncStreamWriter(Of T).WriteAsync
  2064. nameWithType: IAsyncStreamWriter<T>.WriteAsync
  2065. nameWithType.vb: IAsyncStreamWriter(Of T).WriteAsync
  2066. - uid: Grpc.Core.IAsyncStreamWriter`1.WriteOptions
  2067. name: WriteOptions
  2068. href: api/Grpc.Core.IAsyncStreamWriter-1.html#Grpc_Core_IAsyncStreamWriter_1_WriteOptions
  2069. commentId: P:Grpc.Core.IAsyncStreamWriter`1.WriteOptions
  2070. fullName: Grpc.Core.IAsyncStreamWriter<T>.WriteOptions
  2071. fullName.vb: Grpc.Core.IAsyncStreamWriter(Of T).WriteOptions
  2072. nameWithType: IAsyncStreamWriter<T>.WriteOptions
  2073. nameWithType.vb: IAsyncStreamWriter(Of T).WriteOptions
  2074. - uid: Grpc.Core.IAsyncStreamWriter`1.WriteOptions*
  2075. name: WriteOptions
  2076. href: api/Grpc.Core.IAsyncStreamWriter-1.html#Grpc_Core_IAsyncStreamWriter_1_WriteOptions_
  2077. commentId: Overload:Grpc.Core.IAsyncStreamWriter`1.WriteOptions
  2078. fullName: Grpc.Core.IAsyncStreamWriter<T>.WriteOptions
  2079. fullName.vb: Grpc.Core.IAsyncStreamWriter(Of T).WriteOptions
  2080. nameWithType: IAsyncStreamWriter<T>.WriteOptions
  2081. nameWithType.vb: IAsyncStreamWriter(Of T).WriteOptions
  2082. - uid: Grpc.Core.IClientStreamWriter`1
  2083. name: IClientStreamWriter<T>
  2084. href: api/Grpc.Core.IClientStreamWriter-1.html
  2085. commentId: T:Grpc.Core.IClientStreamWriter`1
  2086. name.vb: IClientStreamWriter(Of T)
  2087. fullName: Grpc.Core.IClientStreamWriter<T>
  2088. fullName.vb: Grpc.Core.IClientStreamWriter(Of T)
  2089. nameWithType: IClientStreamWriter<T>
  2090. nameWithType.vb: IClientStreamWriter(Of T)
  2091. - uid: Grpc.Core.IClientStreamWriter`1.CompleteAsync
  2092. name: CompleteAsync()
  2093. href: api/Grpc.Core.IClientStreamWriter-1.html#Grpc_Core_IClientStreamWriter_1_CompleteAsync
  2094. commentId: M:Grpc.Core.IClientStreamWriter`1.CompleteAsync
  2095. fullName: Grpc.Core.IClientStreamWriter<T>.CompleteAsync()
  2096. fullName.vb: Grpc.Core.IClientStreamWriter(Of T).CompleteAsync()
  2097. nameWithType: IClientStreamWriter<T>.CompleteAsync()
  2098. nameWithType.vb: IClientStreamWriter(Of T).CompleteAsync()
  2099. - uid: Grpc.Core.IClientStreamWriter`1.CompleteAsync*
  2100. name: CompleteAsync
  2101. href: api/Grpc.Core.IClientStreamWriter-1.html#Grpc_Core_IClientStreamWriter_1_CompleteAsync_
  2102. commentId: Overload:Grpc.Core.IClientStreamWriter`1.CompleteAsync
  2103. fullName: Grpc.Core.IClientStreamWriter<T>.CompleteAsync
  2104. fullName.vb: Grpc.Core.IClientStreamWriter(Of T).CompleteAsync
  2105. nameWithType: IClientStreamWriter<T>.CompleteAsync
  2106. nameWithType.vb: IClientStreamWriter(Of T).CompleteAsync
  2107. - uid: Grpc.Core.IHasWriteOptions
  2108. name: IHasWriteOptions
  2109. href: api/Grpc.Core.IHasWriteOptions.html
  2110. commentId: T:Grpc.Core.IHasWriteOptions
  2111. fullName: Grpc.Core.IHasWriteOptions
  2112. nameWithType: IHasWriteOptions
  2113. - uid: Grpc.Core.IHasWriteOptions.WriteOptions
  2114. name: WriteOptions
  2115. href: api/Grpc.Core.IHasWriteOptions.html#Grpc_Core_IHasWriteOptions_WriteOptions
  2116. commentId: P:Grpc.Core.IHasWriteOptions.WriteOptions
  2117. fullName: Grpc.Core.IHasWriteOptions.WriteOptions
  2118. nameWithType: IHasWriteOptions.WriteOptions
  2119. - uid: Grpc.Core.IHasWriteOptions.WriteOptions*
  2120. name: WriteOptions
  2121. href: api/Grpc.Core.IHasWriteOptions.html#Grpc_Core_IHasWriteOptions_WriteOptions_
  2122. commentId: Overload:Grpc.Core.IHasWriteOptions.WriteOptions
  2123. fullName: Grpc.Core.IHasWriteOptions.WriteOptions
  2124. nameWithType: IHasWriteOptions.WriteOptions
  2125. - uid: Grpc.Core.IMethod
  2126. name: IMethod
  2127. href: api/Grpc.Core.IMethod.html
  2128. commentId: T:Grpc.Core.IMethod
  2129. fullName: Grpc.Core.IMethod
  2130. nameWithType: IMethod
  2131. - uid: Grpc.Core.IMethod.FullName
  2132. name: FullName
  2133. href: api/Grpc.Core.IMethod.html#Grpc_Core_IMethod_FullName
  2134. commentId: P:Grpc.Core.IMethod.FullName
  2135. fullName: Grpc.Core.IMethod.FullName
  2136. nameWithType: IMethod.FullName
  2137. - uid: Grpc.Core.IMethod.FullName*
  2138. name: FullName
  2139. href: api/Grpc.Core.IMethod.html#Grpc_Core_IMethod_FullName_
  2140. commentId: Overload:Grpc.Core.IMethod.FullName
  2141. fullName: Grpc.Core.IMethod.FullName
  2142. nameWithType: IMethod.FullName
  2143. - uid: Grpc.Core.IMethod.Name
  2144. name: Name
  2145. href: api/Grpc.Core.IMethod.html#Grpc_Core_IMethod_Name
  2146. commentId: P:Grpc.Core.IMethod.Name
  2147. fullName: Grpc.Core.IMethod.Name
  2148. nameWithType: IMethod.Name
  2149. - uid: Grpc.Core.IMethod.Name*
  2150. name: Name
  2151. href: api/Grpc.Core.IMethod.html#Grpc_Core_IMethod_Name_
  2152. commentId: Overload:Grpc.Core.IMethod.Name
  2153. fullName: Grpc.Core.IMethod.Name
  2154. nameWithType: IMethod.Name
  2155. - uid: Grpc.Core.IMethod.ServiceName
  2156. name: ServiceName
  2157. href: api/Grpc.Core.IMethod.html#Grpc_Core_IMethod_ServiceName
  2158. commentId: P:Grpc.Core.IMethod.ServiceName
  2159. fullName: Grpc.Core.IMethod.ServiceName
  2160. nameWithType: IMethod.ServiceName
  2161. - uid: Grpc.Core.IMethod.ServiceName*
  2162. name: ServiceName
  2163. href: api/Grpc.Core.IMethod.html#Grpc_Core_IMethod_ServiceName_
  2164. commentId: Overload:Grpc.Core.IMethod.ServiceName
  2165. fullName: Grpc.Core.IMethod.ServiceName
  2166. nameWithType: IMethod.ServiceName
  2167. - uid: Grpc.Core.IMethod.Type
  2168. name: Type
  2169. href: api/Grpc.Core.IMethod.html#Grpc_Core_IMethod_Type
  2170. commentId: P:Grpc.Core.IMethod.Type
  2171. fullName: Grpc.Core.IMethod.Type
  2172. nameWithType: IMethod.Type
  2173. - uid: Grpc.Core.IMethod.Type*
  2174. name: Type
  2175. href: api/Grpc.Core.IMethod.html#Grpc_Core_IMethod_Type_
  2176. commentId: Overload:Grpc.Core.IMethod.Type
  2177. fullName: Grpc.Core.IMethod.Type
  2178. nameWithType: IMethod.Type
  2179. - uid: Grpc.Core.IServerStreamWriter`1
  2180. name: IServerStreamWriter<T>
  2181. href: api/Grpc.Core.IServerStreamWriter-1.html
  2182. commentId: T:Grpc.Core.IServerStreamWriter`1
  2183. name.vb: IServerStreamWriter(Of T)
  2184. fullName: Grpc.Core.IServerStreamWriter<T>
  2185. fullName.vb: Grpc.Core.IServerStreamWriter(Of T)
  2186. nameWithType: IServerStreamWriter<T>
  2187. nameWithType.vb: IServerStreamWriter(Of T)
  2188. - uid: Grpc.Core.KeyCertificatePair
  2189. name: KeyCertificatePair
  2190. href: api/Grpc.Core.KeyCertificatePair.html
  2191. commentId: T:Grpc.Core.KeyCertificatePair
  2192. fullName: Grpc.Core.KeyCertificatePair
  2193. nameWithType: KeyCertificatePair
  2194. - uid: Grpc.Core.KeyCertificatePair.#ctor(System.String,System.String)
  2195. name: KeyCertificatePair(String, String)
  2196. href: api/Grpc.Core.KeyCertificatePair.html#Grpc_Core_KeyCertificatePair__ctor_System_String_System_String_
  2197. commentId: M:Grpc.Core.KeyCertificatePair.#ctor(System.String,System.String)
  2198. fullName: Grpc.Core.KeyCertificatePair.KeyCertificatePair(System.String, System.String)
  2199. nameWithType: KeyCertificatePair.KeyCertificatePair(String, String)
  2200. - uid: Grpc.Core.KeyCertificatePair.#ctor*
  2201. name: KeyCertificatePair
  2202. href: api/Grpc.Core.KeyCertificatePair.html#Grpc_Core_KeyCertificatePair__ctor_
  2203. commentId: Overload:Grpc.Core.KeyCertificatePair.#ctor
  2204. fullName: Grpc.Core.KeyCertificatePair.KeyCertificatePair
  2205. nameWithType: KeyCertificatePair.KeyCertificatePair
  2206. - uid: Grpc.Core.KeyCertificatePair.CertificateChain
  2207. name: CertificateChain
  2208. href: api/Grpc.Core.KeyCertificatePair.html#Grpc_Core_KeyCertificatePair_CertificateChain
  2209. commentId: P:Grpc.Core.KeyCertificatePair.CertificateChain
  2210. fullName: Grpc.Core.KeyCertificatePair.CertificateChain
  2211. nameWithType: KeyCertificatePair.CertificateChain
  2212. - uid: Grpc.Core.KeyCertificatePair.CertificateChain*
  2213. name: CertificateChain
  2214. href: api/Grpc.Core.KeyCertificatePair.html#Grpc_Core_KeyCertificatePair_CertificateChain_
  2215. commentId: Overload:Grpc.Core.KeyCertificatePair.CertificateChain
  2216. fullName: Grpc.Core.KeyCertificatePair.CertificateChain
  2217. nameWithType: KeyCertificatePair.CertificateChain
  2218. - uid: Grpc.Core.KeyCertificatePair.PrivateKey
  2219. name: PrivateKey
  2220. href: api/Grpc.Core.KeyCertificatePair.html#Grpc_Core_KeyCertificatePair_PrivateKey
  2221. commentId: P:Grpc.Core.KeyCertificatePair.PrivateKey
  2222. fullName: Grpc.Core.KeyCertificatePair.PrivateKey
  2223. nameWithType: KeyCertificatePair.PrivateKey
  2224. - uid: Grpc.Core.KeyCertificatePair.PrivateKey*
  2225. name: PrivateKey
  2226. href: api/Grpc.Core.KeyCertificatePair.html#Grpc_Core_KeyCertificatePair_PrivateKey_
  2227. commentId: Overload:Grpc.Core.KeyCertificatePair.PrivateKey
  2228. fullName: Grpc.Core.KeyCertificatePair.PrivateKey
  2229. nameWithType: KeyCertificatePair.PrivateKey
  2230. - uid: Grpc.Core.Logging
  2231. name: Grpc.Core.Logging
  2232. href: api/Grpc.Core.Logging.html
  2233. commentId: N:Grpc.Core.Logging
  2234. fullName: Grpc.Core.Logging
  2235. nameWithType: Grpc.Core.Logging
  2236. - uid: Grpc.Core.Logging.ConsoleLogger
  2237. name: ConsoleLogger
  2238. href: api/Grpc.Core.Logging.ConsoleLogger.html
  2239. commentId: T:Grpc.Core.Logging.ConsoleLogger
  2240. fullName: Grpc.Core.Logging.ConsoleLogger
  2241. nameWithType: ConsoleLogger
  2242. - uid: Grpc.Core.Logging.ConsoleLogger.#ctor
  2243. name: ConsoleLogger()
  2244. href: api/Grpc.Core.Logging.ConsoleLogger.html#Grpc_Core_Logging_ConsoleLogger__ctor
  2245. commentId: M:Grpc.Core.Logging.ConsoleLogger.#ctor
  2246. fullName: Grpc.Core.Logging.ConsoleLogger.ConsoleLogger()
  2247. nameWithType: ConsoleLogger.ConsoleLogger()
  2248. - uid: Grpc.Core.Logging.ConsoleLogger.#ctor*
  2249. name: ConsoleLogger
  2250. href: api/Grpc.Core.Logging.ConsoleLogger.html#Grpc_Core_Logging_ConsoleLogger__ctor_
  2251. commentId: Overload:Grpc.Core.Logging.ConsoleLogger.#ctor
  2252. fullName: Grpc.Core.Logging.ConsoleLogger.ConsoleLogger
  2253. nameWithType: ConsoleLogger.ConsoleLogger
  2254. - uid: Grpc.Core.Logging.ConsoleLogger.ForType*
  2255. name: ForType
  2256. href: api/Grpc.Core.Logging.ConsoleLogger.html#Grpc_Core_Logging_ConsoleLogger_ForType_
  2257. commentId: Overload:Grpc.Core.Logging.ConsoleLogger.ForType
  2258. fullName: Grpc.Core.Logging.ConsoleLogger.ForType
  2259. nameWithType: ConsoleLogger.ForType
  2260. - uid: Grpc.Core.Logging.ConsoleLogger.ForType``1
  2261. name: ForType<T>()
  2262. href: api/Grpc.Core.Logging.ConsoleLogger.html#Grpc_Core_Logging_ConsoleLogger_ForType__1
  2263. commentId: M:Grpc.Core.Logging.ConsoleLogger.ForType``1
  2264. name.vb: ForType(Of T)()
  2265. fullName: Grpc.Core.Logging.ConsoleLogger.ForType<T>()
  2266. fullName.vb: Grpc.Core.Logging.ConsoleLogger.ForType(Of T)()
  2267. nameWithType: ConsoleLogger.ForType<T>()
  2268. nameWithType.vb: ConsoleLogger.ForType(Of T)()
  2269. - uid: Grpc.Core.Logging.ILogger
  2270. name: ILogger
  2271. href: api/Grpc.Core.Logging.ILogger.html
  2272. commentId: T:Grpc.Core.Logging.ILogger
  2273. fullName: Grpc.Core.Logging.ILogger
  2274. nameWithType: ILogger
  2275. - uid: Grpc.Core.Logging.ILogger.Debug(System.String)
  2276. name: Debug(String)
  2277. href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Debug_System_String_
  2278. commentId: M:Grpc.Core.Logging.ILogger.Debug(System.String)
  2279. fullName: Grpc.Core.Logging.ILogger.Debug(System.String)
  2280. nameWithType: ILogger.Debug(String)
  2281. - uid: Grpc.Core.Logging.ILogger.Debug(System.String,System.Object[])
  2282. name: Debug(String, Object[])
  2283. href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Debug_System_String_System_Object___
  2284. commentId: M:Grpc.Core.Logging.ILogger.Debug(System.String,System.Object[])
  2285. name.vb: Debug(String, Object())
  2286. fullName: Grpc.Core.Logging.ILogger.Debug(System.String, System.Object[])
  2287. fullName.vb: Grpc.Core.Logging.ILogger.Debug(System.String, System.Object())
  2288. nameWithType: ILogger.Debug(String, Object[])
  2289. nameWithType.vb: ILogger.Debug(String, Object())
  2290. - uid: Grpc.Core.Logging.ILogger.Debug*
  2291. name: Debug
  2292. href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Debug_
  2293. commentId: Overload:Grpc.Core.Logging.ILogger.Debug
  2294. fullName: Grpc.Core.Logging.ILogger.Debug
  2295. nameWithType: ILogger.Debug
  2296. - uid: Grpc.Core.Logging.ILogger.Error(System.Exception,System.String)
  2297. name: Error(Exception, String)
  2298. href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Error_System_Exception_System_String_
  2299. commentId: M:Grpc.Core.Logging.ILogger.Error(System.Exception,System.String)
  2300. fullName: Grpc.Core.Logging.ILogger.Error(System.Exception, System.String)
  2301. nameWithType: ILogger.Error(Exception, String)
  2302. - uid: Grpc.Core.Logging.ILogger.Error(System.String)
  2303. name: Error(String)
  2304. href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Error_System_String_
  2305. commentId: M:Grpc.Core.Logging.ILogger.Error(System.String)
  2306. fullName: Grpc.Core.Logging.ILogger.Error(System.String)
  2307. nameWithType: ILogger.Error(String)
  2308. - uid: Grpc.Core.Logging.ILogger.Error(System.String,System.Object[])
  2309. name: Error(String, Object[])
  2310. href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Error_System_String_System_Object___
  2311. commentId: M:Grpc.Core.Logging.ILogger.Error(System.String,System.Object[])
  2312. name.vb: Error(String, Object())
  2313. fullName: Grpc.Core.Logging.ILogger.Error(System.String, System.Object[])
  2314. fullName.vb: Grpc.Core.Logging.ILogger.Error(System.String, System.Object())
  2315. nameWithType: ILogger.Error(String, Object[])
  2316. nameWithType.vb: ILogger.Error(String, Object())
  2317. - uid: Grpc.Core.Logging.ILogger.Error*
  2318. name: Error
  2319. href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Error_
  2320. commentId: Overload:Grpc.Core.Logging.ILogger.Error
  2321. fullName: Grpc.Core.Logging.ILogger.Error
  2322. nameWithType: ILogger.Error
  2323. - uid: Grpc.Core.Logging.ILogger.ForType*
  2324. name: ForType
  2325. href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_ForType_
  2326. commentId: Overload:Grpc.Core.Logging.ILogger.ForType
  2327. fullName: Grpc.Core.Logging.ILogger.ForType
  2328. nameWithType: ILogger.ForType
  2329. - uid: Grpc.Core.Logging.ILogger.ForType``1
  2330. name: ForType<T>()
  2331. href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_ForType__1
  2332. commentId: M:Grpc.Core.Logging.ILogger.ForType``1
  2333. name.vb: ForType(Of T)()
  2334. fullName: Grpc.Core.Logging.ILogger.ForType<T>()
  2335. fullName.vb: Grpc.Core.Logging.ILogger.ForType(Of T)()
  2336. nameWithType: ILogger.ForType<T>()
  2337. nameWithType.vb: ILogger.ForType(Of T)()
  2338. - uid: Grpc.Core.Logging.ILogger.Info(System.String)
  2339. name: Info(String)
  2340. href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Info_System_String_
  2341. commentId: M:Grpc.Core.Logging.ILogger.Info(System.String)
  2342. fullName: Grpc.Core.Logging.ILogger.Info(System.String)
  2343. nameWithType: ILogger.Info(String)
  2344. - uid: Grpc.Core.Logging.ILogger.Info(System.String,System.Object[])
  2345. name: Info(String, Object[])
  2346. href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Info_System_String_System_Object___
  2347. commentId: M:Grpc.Core.Logging.ILogger.Info(System.String,System.Object[])
  2348. name.vb: Info(String, Object())
  2349. fullName: Grpc.Core.Logging.ILogger.Info(System.String, System.Object[])
  2350. fullName.vb: Grpc.Core.Logging.ILogger.Info(System.String, System.Object())
  2351. nameWithType: ILogger.Info(String, Object[])
  2352. nameWithType.vb: ILogger.Info(String, Object())
  2353. - uid: Grpc.Core.Logging.ILogger.Info*
  2354. name: Info
  2355. href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Info_
  2356. commentId: Overload:Grpc.Core.Logging.ILogger.Info
  2357. fullName: Grpc.Core.Logging.ILogger.Info
  2358. nameWithType: ILogger.Info
  2359. - uid: Grpc.Core.Logging.ILogger.Warning(System.Exception,System.String)
  2360. name: Warning(Exception, String)
  2361. href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Warning_System_Exception_System_String_
  2362. commentId: M:Grpc.Core.Logging.ILogger.Warning(System.Exception,System.String)
  2363. fullName: Grpc.Core.Logging.ILogger.Warning(System.Exception, System.String)
  2364. nameWithType: ILogger.Warning(Exception, String)
  2365. - uid: Grpc.Core.Logging.ILogger.Warning(System.String)
  2366. name: Warning(String)
  2367. href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Warning_System_String_
  2368. commentId: M:Grpc.Core.Logging.ILogger.Warning(System.String)
  2369. fullName: Grpc.Core.Logging.ILogger.Warning(System.String)
  2370. nameWithType: ILogger.Warning(String)
  2371. - uid: Grpc.Core.Logging.ILogger.Warning(System.String,System.Object[])
  2372. name: Warning(String, Object[])
  2373. href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Warning_System_String_System_Object___
  2374. commentId: M:Grpc.Core.Logging.ILogger.Warning(System.String,System.Object[])
  2375. name.vb: Warning(String, Object())
  2376. fullName: Grpc.Core.Logging.ILogger.Warning(System.String, System.Object[])
  2377. fullName.vb: Grpc.Core.Logging.ILogger.Warning(System.String, System.Object())
  2378. nameWithType: ILogger.Warning(String, Object[])
  2379. nameWithType.vb: ILogger.Warning(String, Object())
  2380. - uid: Grpc.Core.Logging.ILogger.Warning*
  2381. name: Warning
  2382. href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Warning_
  2383. commentId: Overload:Grpc.Core.Logging.ILogger.Warning
  2384. fullName: Grpc.Core.Logging.ILogger.Warning
  2385. nameWithType: ILogger.Warning
  2386. - uid: Grpc.Core.Logging.LogLevel
  2387. name: LogLevel
  2388. href: api/Grpc.Core.Logging.LogLevel.html
  2389. commentId: T:Grpc.Core.Logging.LogLevel
  2390. fullName: Grpc.Core.Logging.LogLevel
  2391. nameWithType: LogLevel
  2392. - uid: Grpc.Core.Logging.LogLevel.Debug
  2393. name: Debug
  2394. href: api/Grpc.Core.Logging.LogLevel.html#Grpc_Core_Logging_LogLevel_Debug
  2395. commentId: F:Grpc.Core.Logging.LogLevel.Debug
  2396. fullName: Grpc.Core.Logging.LogLevel.Debug
  2397. nameWithType: LogLevel.Debug
  2398. - uid: Grpc.Core.Logging.LogLevel.Error
  2399. name: Error
  2400. href: api/Grpc.Core.Logging.LogLevel.html#Grpc_Core_Logging_LogLevel_Error
  2401. commentId: F:Grpc.Core.Logging.LogLevel.Error
  2402. fullName: Grpc.Core.Logging.LogLevel.Error
  2403. nameWithType: LogLevel.Error
  2404. - uid: Grpc.Core.Logging.LogLevel.Info
  2405. name: Info
  2406. href: api/Grpc.Core.Logging.LogLevel.html#Grpc_Core_Logging_LogLevel_Info
  2407. commentId: F:Grpc.Core.Logging.LogLevel.Info
  2408. fullName: Grpc.Core.Logging.LogLevel.Info
  2409. nameWithType: LogLevel.Info
  2410. - uid: Grpc.Core.Logging.LogLevel.Warning
  2411. name: Warning
  2412. href: api/Grpc.Core.Logging.LogLevel.html#Grpc_Core_Logging_LogLevel_Warning
  2413. commentId: F:Grpc.Core.Logging.LogLevel.Warning
  2414. fullName: Grpc.Core.Logging.LogLevel.Warning
  2415. nameWithType: LogLevel.Warning
  2416. - uid: Grpc.Core.Logging.LogLevelFilterLogger
  2417. name: LogLevelFilterLogger
  2418. href: api/Grpc.Core.Logging.LogLevelFilterLogger.html
  2419. commentId: T:Grpc.Core.Logging.LogLevelFilterLogger
  2420. fullName: Grpc.Core.Logging.LogLevelFilterLogger
  2421. nameWithType: LogLevelFilterLogger
  2422. - uid: Grpc.Core.Logging.LogLevelFilterLogger.#ctor(Grpc.Core.Logging.ILogger,Grpc.Core.Logging.LogLevel)
  2423. name: LogLevelFilterLogger(ILogger, LogLevel)
  2424. href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger__ctor_Grpc_Core_Logging_ILogger_Grpc_Core_Logging_LogLevel_
  2425. commentId: M:Grpc.Core.Logging.LogLevelFilterLogger.#ctor(Grpc.Core.Logging.ILogger,Grpc.Core.Logging.LogLevel)
  2426. fullName: Grpc.Core.Logging.LogLevelFilterLogger.LogLevelFilterLogger(Grpc.Core.Logging.ILogger, Grpc.Core.Logging.LogLevel)
  2427. nameWithType: LogLevelFilterLogger.LogLevelFilterLogger(ILogger, LogLevel)
  2428. - uid: Grpc.Core.Logging.LogLevelFilterLogger.#ctor*
  2429. name: LogLevelFilterLogger
  2430. href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger__ctor_
  2431. commentId: Overload:Grpc.Core.Logging.LogLevelFilterLogger.#ctor
  2432. fullName: Grpc.Core.Logging.LogLevelFilterLogger.LogLevelFilterLogger
  2433. nameWithType: LogLevelFilterLogger.LogLevelFilterLogger
  2434. - uid: Grpc.Core.Logging.LogLevelFilterLogger.Debug(System.String)
  2435. name: Debug(String)
  2436. href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Debug_System_String_
  2437. commentId: M:Grpc.Core.Logging.LogLevelFilterLogger.Debug(System.String)
  2438. fullName: Grpc.Core.Logging.LogLevelFilterLogger.Debug(System.String)
  2439. nameWithType: LogLevelFilterLogger.Debug(String)
  2440. - uid: Grpc.Core.Logging.LogLevelFilterLogger.Debug(System.String,System.Object[])
  2441. name: Debug(String, Object[])
  2442. href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Debug_System_String_System_Object___
  2443. commentId: M:Grpc.Core.Logging.LogLevelFilterLogger.Debug(System.String,System.Object[])
  2444. name.vb: Debug(String, Object())
  2445. fullName: Grpc.Core.Logging.LogLevelFilterLogger.Debug(System.String, System.Object[])
  2446. fullName.vb: Grpc.Core.Logging.LogLevelFilterLogger.Debug(System.String, System.Object())
  2447. nameWithType: LogLevelFilterLogger.Debug(String, Object[])
  2448. nameWithType.vb: LogLevelFilterLogger.Debug(String, Object())
  2449. - uid: Grpc.Core.Logging.LogLevelFilterLogger.Debug*
  2450. name: Debug
  2451. href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Debug_
  2452. commentId: Overload:Grpc.Core.Logging.LogLevelFilterLogger.Debug
  2453. fullName: Grpc.Core.Logging.LogLevelFilterLogger.Debug
  2454. nameWithType: LogLevelFilterLogger.Debug
  2455. - uid: Grpc.Core.Logging.LogLevelFilterLogger.Error(System.Exception,System.String)
  2456. name: Error(Exception, String)
  2457. href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Error_System_Exception_System_String_
  2458. commentId: M:Grpc.Core.Logging.LogLevelFilterLogger.Error(System.Exception,System.String)
  2459. fullName: Grpc.Core.Logging.LogLevelFilterLogger.Error(System.Exception, System.String)
  2460. nameWithType: LogLevelFilterLogger.Error(Exception, String)
  2461. - uid: Grpc.Core.Logging.LogLevelFilterLogger.Error(System.String)
  2462. name: Error(String)
  2463. href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Error_System_String_
  2464. commentId: M:Grpc.Core.Logging.LogLevelFilterLogger.Error(System.String)
  2465. fullName: Grpc.Core.Logging.LogLevelFilterLogger.Error(System.String)
  2466. nameWithType: LogLevelFilterLogger.Error(String)
  2467. - uid: Grpc.Core.Logging.LogLevelFilterLogger.Error(System.String,System.Object[])
  2468. name: Error(String, Object[])
  2469. href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Error_System_String_System_Object___
  2470. commentId: M:Grpc.Core.Logging.LogLevelFilterLogger.Error(System.String,System.Object[])
  2471. name.vb: Error(String, Object())
  2472. fullName: Grpc.Core.Logging.LogLevelFilterLogger.Error(System.String, System.Object[])
  2473. fullName.vb: Grpc.Core.Logging.LogLevelFilterLogger.Error(System.String, System.Object())
  2474. nameWithType: LogLevelFilterLogger.Error(String, Object[])
  2475. nameWithType.vb: LogLevelFilterLogger.Error(String, Object())
  2476. - uid: Grpc.Core.Logging.LogLevelFilterLogger.Error*
  2477. name: Error
  2478. href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Error_
  2479. commentId: Overload:Grpc.Core.Logging.LogLevelFilterLogger.Error
  2480. fullName: Grpc.Core.Logging.LogLevelFilterLogger.Error
  2481. nameWithType: LogLevelFilterLogger.Error
  2482. - uid: Grpc.Core.Logging.LogLevelFilterLogger.ForType*
  2483. name: ForType
  2484. href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_ForType_
  2485. commentId: Overload:Grpc.Core.Logging.LogLevelFilterLogger.ForType
  2486. fullName: Grpc.Core.Logging.LogLevelFilterLogger.ForType
  2487. nameWithType: LogLevelFilterLogger.ForType
  2488. - uid: Grpc.Core.Logging.LogLevelFilterLogger.ForType``1
  2489. name: ForType<T>()
  2490. href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_ForType__1
  2491. commentId: M:Grpc.Core.Logging.LogLevelFilterLogger.ForType``1
  2492. name.vb: ForType(Of T)()
  2493. fullName: Grpc.Core.Logging.LogLevelFilterLogger.ForType<T>()
  2494. fullName.vb: Grpc.Core.Logging.LogLevelFilterLogger.ForType(Of T)()
  2495. nameWithType: LogLevelFilterLogger.ForType<T>()
  2496. nameWithType.vb: LogLevelFilterLogger.ForType(Of T)()
  2497. - uid: Grpc.Core.Logging.LogLevelFilterLogger.Info(System.String)
  2498. name: Info(String)
  2499. href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Info_System_String_
  2500. commentId: M:Grpc.Core.Logging.LogLevelFilterLogger.Info(System.String)
  2501. fullName: Grpc.Core.Logging.LogLevelFilterLogger.Info(System.String)
  2502. nameWithType: LogLevelFilterLogger.Info(String)
  2503. - uid: Grpc.Core.Logging.LogLevelFilterLogger.Info(System.String,System.Object[])
  2504. name: Info(String, Object[])
  2505. href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Info_System_String_System_Object___
  2506. commentId: M:Grpc.Core.Logging.LogLevelFilterLogger.Info(System.String,System.Object[])
  2507. name.vb: Info(String, Object())
  2508. fullName: Grpc.Core.Logging.LogLevelFilterLogger.Info(System.String, System.Object[])
  2509. fullName.vb: Grpc.Core.Logging.LogLevelFilterLogger.Info(System.String, System.Object())
  2510. nameWithType: LogLevelFilterLogger.Info(String, Object[])
  2511. nameWithType.vb: LogLevelFilterLogger.Info(String, Object())
  2512. - uid: Grpc.Core.Logging.LogLevelFilterLogger.Info*
  2513. name: Info
  2514. href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Info_
  2515. commentId: Overload:Grpc.Core.Logging.LogLevelFilterLogger.Info
  2516. fullName: Grpc.Core.Logging.LogLevelFilterLogger.Info
  2517. nameWithType: LogLevelFilterLogger.Info
  2518. - uid: Grpc.Core.Logging.LogLevelFilterLogger.Warning(System.Exception,System.String)
  2519. name: Warning(Exception, String)
  2520. href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Warning_System_Exception_System_String_
  2521. commentId: M:Grpc.Core.Logging.LogLevelFilterLogger.Warning(System.Exception,System.String)
  2522. fullName: Grpc.Core.Logging.LogLevelFilterLogger.Warning(System.Exception, System.String)
  2523. nameWithType: LogLevelFilterLogger.Warning(Exception, String)
  2524. - uid: Grpc.Core.Logging.LogLevelFilterLogger.Warning(System.String)
  2525. name: Warning(String)
  2526. href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Warning_System_String_
  2527. commentId: M:Grpc.Core.Logging.LogLevelFilterLogger.Warning(System.String)
  2528. fullName: Grpc.Core.Logging.LogLevelFilterLogger.Warning(System.String)
  2529. nameWithType: LogLevelFilterLogger.Warning(String)
  2530. - uid: Grpc.Core.Logging.LogLevelFilterLogger.Warning(System.String,System.Object[])
  2531. name: Warning(String, Object[])
  2532. href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Warning_System_String_System_Object___
  2533. commentId: M:Grpc.Core.Logging.LogLevelFilterLogger.Warning(System.String,System.Object[])
  2534. name.vb: Warning(String, Object())
  2535. fullName: Grpc.Core.Logging.LogLevelFilterLogger.Warning(System.String, System.Object[])
  2536. fullName.vb: Grpc.Core.Logging.LogLevelFilterLogger.Warning(System.String, System.Object())
  2537. nameWithType: LogLevelFilterLogger.Warning(String, Object[])
  2538. nameWithType.vb: LogLevelFilterLogger.Warning(String, Object())
  2539. - uid: Grpc.Core.Logging.LogLevelFilterLogger.Warning*
  2540. name: Warning
  2541. href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Warning_
  2542. commentId: Overload:Grpc.Core.Logging.LogLevelFilterLogger.Warning
  2543. fullName: Grpc.Core.Logging.LogLevelFilterLogger.Warning
  2544. nameWithType: LogLevelFilterLogger.Warning
  2545. - uid: Grpc.Core.Logging.NullLogger
  2546. name: NullLogger
  2547. href: api/Grpc.Core.Logging.NullLogger.html
  2548. commentId: T:Grpc.Core.Logging.NullLogger
  2549. fullName: Grpc.Core.Logging.NullLogger
  2550. nameWithType: NullLogger
  2551. - uid: Grpc.Core.Logging.NullLogger.Debug(System.String)
  2552. name: Debug(String)
  2553. href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Debug_System_String_
  2554. commentId: M:Grpc.Core.Logging.NullLogger.Debug(System.String)
  2555. fullName: Grpc.Core.Logging.NullLogger.Debug(System.String)
  2556. nameWithType: NullLogger.Debug(String)
  2557. - uid: Grpc.Core.Logging.NullLogger.Debug(System.String,System.Object[])
  2558. name: Debug(String, Object[])
  2559. href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Debug_System_String_System_Object___
  2560. commentId: M:Grpc.Core.Logging.NullLogger.Debug(System.String,System.Object[])
  2561. name.vb: Debug(String, Object())
  2562. fullName: Grpc.Core.Logging.NullLogger.Debug(System.String, System.Object[])
  2563. fullName.vb: Grpc.Core.Logging.NullLogger.Debug(System.String, System.Object())
  2564. nameWithType: NullLogger.Debug(String, Object[])
  2565. nameWithType.vb: NullLogger.Debug(String, Object())
  2566. - uid: Grpc.Core.Logging.NullLogger.Debug*
  2567. name: Debug
  2568. href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Debug_
  2569. commentId: Overload:Grpc.Core.Logging.NullLogger.Debug
  2570. fullName: Grpc.Core.Logging.NullLogger.Debug
  2571. nameWithType: NullLogger.Debug
  2572. - uid: Grpc.Core.Logging.NullLogger.Error(System.Exception,System.String)
  2573. name: Error(Exception, String)
  2574. href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Error_System_Exception_System_String_
  2575. commentId: M:Grpc.Core.Logging.NullLogger.Error(System.Exception,System.String)
  2576. fullName: Grpc.Core.Logging.NullLogger.Error(System.Exception, System.String)
  2577. nameWithType: NullLogger.Error(Exception, String)
  2578. - uid: Grpc.Core.Logging.NullLogger.Error(System.String)
  2579. name: Error(String)
  2580. href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Error_System_String_
  2581. commentId: M:Grpc.Core.Logging.NullLogger.Error(System.String)
  2582. fullName: Grpc.Core.Logging.NullLogger.Error(System.String)
  2583. nameWithType: NullLogger.Error(String)
  2584. - uid: Grpc.Core.Logging.NullLogger.Error(System.String,System.Object[])
  2585. name: Error(String, Object[])
  2586. href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Error_System_String_System_Object___
  2587. commentId: M:Grpc.Core.Logging.NullLogger.Error(System.String,System.Object[])
  2588. name.vb: Error(String, Object())
  2589. fullName: Grpc.Core.Logging.NullLogger.Error(System.String, System.Object[])
  2590. fullName.vb: Grpc.Core.Logging.NullLogger.Error(System.String, System.Object())
  2591. nameWithType: NullLogger.Error(String, Object[])
  2592. nameWithType.vb: NullLogger.Error(String, Object())
  2593. - uid: Grpc.Core.Logging.NullLogger.Error*
  2594. name: Error
  2595. href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Error_
  2596. commentId: Overload:Grpc.Core.Logging.NullLogger.Error
  2597. fullName: Grpc.Core.Logging.NullLogger.Error
  2598. nameWithType: NullLogger.Error
  2599. - uid: Grpc.Core.Logging.NullLogger.ForType*
  2600. name: ForType
  2601. href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_ForType_
  2602. commentId: Overload:Grpc.Core.Logging.NullLogger.ForType
  2603. fullName: Grpc.Core.Logging.NullLogger.ForType
  2604. nameWithType: NullLogger.ForType
  2605. - uid: Grpc.Core.Logging.NullLogger.ForType``1
  2606. name: ForType<T>()
  2607. href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_ForType__1
  2608. commentId: M:Grpc.Core.Logging.NullLogger.ForType``1
  2609. name.vb: ForType(Of T)()
  2610. fullName: Grpc.Core.Logging.NullLogger.ForType<T>()
  2611. fullName.vb: Grpc.Core.Logging.NullLogger.ForType(Of T)()
  2612. nameWithType: NullLogger.ForType<T>()
  2613. nameWithType.vb: NullLogger.ForType(Of T)()
  2614. - uid: Grpc.Core.Logging.NullLogger.Info(System.String)
  2615. name: Info(String)
  2616. href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Info_System_String_
  2617. commentId: M:Grpc.Core.Logging.NullLogger.Info(System.String)
  2618. fullName: Grpc.Core.Logging.NullLogger.Info(System.String)
  2619. nameWithType: NullLogger.Info(String)
  2620. - uid: Grpc.Core.Logging.NullLogger.Info(System.String,System.Object[])
  2621. name: Info(String, Object[])
  2622. href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Info_System_String_System_Object___
  2623. commentId: M:Grpc.Core.Logging.NullLogger.Info(System.String,System.Object[])
  2624. name.vb: Info(String, Object())
  2625. fullName: Grpc.Core.Logging.NullLogger.Info(System.String, System.Object[])
  2626. fullName.vb: Grpc.Core.Logging.NullLogger.Info(System.String, System.Object())
  2627. nameWithType: NullLogger.Info(String, Object[])
  2628. nameWithType.vb: NullLogger.Info(String, Object())
  2629. - uid: Grpc.Core.Logging.NullLogger.Info*
  2630. name: Info
  2631. href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Info_
  2632. commentId: Overload:Grpc.Core.Logging.NullLogger.Info
  2633. fullName: Grpc.Core.Logging.NullLogger.Info
  2634. nameWithType: NullLogger.Info
  2635. - uid: Grpc.Core.Logging.NullLogger.Warning(System.Exception,System.String)
  2636. name: Warning(Exception, String)
  2637. href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Warning_System_Exception_System_String_
  2638. commentId: M:Grpc.Core.Logging.NullLogger.Warning(System.Exception,System.String)
  2639. fullName: Grpc.Core.Logging.NullLogger.Warning(System.Exception, System.String)
  2640. nameWithType: NullLogger.Warning(Exception, String)
  2641. - uid: Grpc.Core.Logging.NullLogger.Warning(System.String)
  2642. name: Warning(String)
  2643. href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Warning_System_String_
  2644. commentId: M:Grpc.Core.Logging.NullLogger.Warning(System.String)
  2645. fullName: Grpc.Core.Logging.NullLogger.Warning(System.String)
  2646. nameWithType: NullLogger.Warning(String)
  2647. - uid: Grpc.Core.Logging.NullLogger.Warning(System.String,System.Object[])
  2648. name: Warning(String, Object[])
  2649. href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Warning_System_String_System_Object___
  2650. commentId: M:Grpc.Core.Logging.NullLogger.Warning(System.String,System.Object[])
  2651. name.vb: Warning(String, Object())
  2652. fullName: Grpc.Core.Logging.NullLogger.Warning(System.String, System.Object[])
  2653. fullName.vb: Grpc.Core.Logging.NullLogger.Warning(System.String, System.Object())
  2654. nameWithType: NullLogger.Warning(String, Object[])
  2655. nameWithType.vb: NullLogger.Warning(String, Object())
  2656. - uid: Grpc.Core.Logging.NullLogger.Warning*
  2657. name: Warning
  2658. href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Warning_
  2659. commentId: Overload:Grpc.Core.Logging.NullLogger.Warning
  2660. fullName: Grpc.Core.Logging.NullLogger.Warning
  2661. nameWithType: NullLogger.Warning
  2662. - uid: Grpc.Core.Logging.TextWriterLogger
  2663. name: TextWriterLogger
  2664. href: api/Grpc.Core.Logging.TextWriterLogger.html
  2665. commentId: T:Grpc.Core.Logging.TextWriterLogger
  2666. fullName: Grpc.Core.Logging.TextWriterLogger
  2667. nameWithType: TextWriterLogger
  2668. - uid: Grpc.Core.Logging.TextWriterLogger.#ctor(System.Func{System.IO.TextWriter})
  2669. name: TextWriterLogger(Func<TextWriter>)
  2670. href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger__ctor_System_Func_System_IO_TextWriter__
  2671. commentId: M:Grpc.Core.Logging.TextWriterLogger.#ctor(System.Func{System.IO.TextWriter})
  2672. name.vb: TextWriterLogger(Func(Of TextWriter))
  2673. fullName: Grpc.Core.Logging.TextWriterLogger.TextWriterLogger(System.Func<System.IO.TextWriter>)
  2674. fullName.vb: Grpc.Core.Logging.TextWriterLogger.TextWriterLogger(System.Func(Of System.IO.TextWriter))
  2675. nameWithType: TextWriterLogger.TextWriterLogger(Func<TextWriter>)
  2676. nameWithType.vb: TextWriterLogger.TextWriterLogger(Func(Of TextWriter))
  2677. - uid: Grpc.Core.Logging.TextWriterLogger.#ctor(System.Func{System.IO.TextWriter},System.Type)
  2678. name: TextWriterLogger(Func<TextWriter>, Type)
  2679. href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger__ctor_System_Func_System_IO_TextWriter__System_Type_
  2680. commentId: M:Grpc.Core.Logging.TextWriterLogger.#ctor(System.Func{System.IO.TextWriter},System.Type)
  2681. name.vb: TextWriterLogger(Func(Of TextWriter), Type)
  2682. fullName: Grpc.Core.Logging.TextWriterLogger.TextWriterLogger(System.Func<System.IO.TextWriter>, System.Type)
  2683. fullName.vb: Grpc.Core.Logging.TextWriterLogger.TextWriterLogger(System.Func(Of System.IO.TextWriter), System.Type)
  2684. nameWithType: TextWriterLogger.TextWriterLogger(Func<TextWriter>, Type)
  2685. nameWithType.vb: TextWriterLogger.TextWriterLogger(Func(Of TextWriter), Type)
  2686. - uid: Grpc.Core.Logging.TextWriterLogger.#ctor(System.IO.TextWriter)
  2687. name: TextWriterLogger(TextWriter)
  2688. href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger__ctor_System_IO_TextWriter_
  2689. commentId: M:Grpc.Core.Logging.TextWriterLogger.#ctor(System.IO.TextWriter)
  2690. fullName: Grpc.Core.Logging.TextWriterLogger.TextWriterLogger(System.IO.TextWriter)
  2691. nameWithType: TextWriterLogger.TextWriterLogger(TextWriter)
  2692. - uid: Grpc.Core.Logging.TextWriterLogger.#ctor*
  2693. name: TextWriterLogger
  2694. href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger__ctor_
  2695. commentId: Overload:Grpc.Core.Logging.TextWriterLogger.#ctor
  2696. fullName: Grpc.Core.Logging.TextWriterLogger.TextWriterLogger
  2697. nameWithType: TextWriterLogger.TextWriterLogger
  2698. - uid: Grpc.Core.Logging.TextWriterLogger.AssociatedType
  2699. name: AssociatedType
  2700. href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_AssociatedType
  2701. commentId: P:Grpc.Core.Logging.TextWriterLogger.AssociatedType
  2702. fullName: Grpc.Core.Logging.TextWriterLogger.AssociatedType
  2703. nameWithType: TextWriterLogger.AssociatedType
  2704. - uid: Grpc.Core.Logging.TextWriterLogger.AssociatedType*
  2705. name: AssociatedType
  2706. href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_AssociatedType_
  2707. commentId: Overload:Grpc.Core.Logging.TextWriterLogger.AssociatedType
  2708. fullName: Grpc.Core.Logging.TextWriterLogger.AssociatedType
  2709. nameWithType: TextWriterLogger.AssociatedType
  2710. - uid: Grpc.Core.Logging.TextWriterLogger.Debug(System.String)
  2711. name: Debug(String)
  2712. href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Debug_System_String_
  2713. commentId: M:Grpc.Core.Logging.TextWriterLogger.Debug(System.String)
  2714. fullName: Grpc.Core.Logging.TextWriterLogger.Debug(System.String)
  2715. nameWithType: TextWriterLogger.Debug(String)
  2716. - uid: Grpc.Core.Logging.TextWriterLogger.Debug(System.String,System.Object[])
  2717. name: Debug(String, Object[])
  2718. href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Debug_System_String_System_Object___
  2719. commentId: M:Grpc.Core.Logging.TextWriterLogger.Debug(System.String,System.Object[])
  2720. name.vb: Debug(String, Object())
  2721. fullName: Grpc.Core.Logging.TextWriterLogger.Debug(System.String, System.Object[])
  2722. fullName.vb: Grpc.Core.Logging.TextWriterLogger.Debug(System.String, System.Object())
  2723. nameWithType: TextWriterLogger.Debug(String, Object[])
  2724. nameWithType.vb: TextWriterLogger.Debug(String, Object())
  2725. - uid: Grpc.Core.Logging.TextWriterLogger.Debug*
  2726. name: Debug
  2727. href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Debug_
  2728. commentId: Overload:Grpc.Core.Logging.TextWriterLogger.Debug
  2729. fullName: Grpc.Core.Logging.TextWriterLogger.Debug
  2730. nameWithType: TextWriterLogger.Debug
  2731. - uid: Grpc.Core.Logging.TextWriterLogger.Error(System.Exception,System.String)
  2732. name: Error(Exception, String)
  2733. href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Error_System_Exception_System_String_
  2734. commentId: M:Grpc.Core.Logging.TextWriterLogger.Error(System.Exception,System.String)
  2735. fullName: Grpc.Core.Logging.TextWriterLogger.Error(System.Exception, System.String)
  2736. nameWithType: TextWriterLogger.Error(Exception, String)
  2737. - uid: Grpc.Core.Logging.TextWriterLogger.Error(System.String)
  2738. name: Error(String)
  2739. href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Error_System_String_
  2740. commentId: M:Grpc.Core.Logging.TextWriterLogger.Error(System.String)
  2741. fullName: Grpc.Core.Logging.TextWriterLogger.Error(System.String)
  2742. nameWithType: TextWriterLogger.Error(String)
  2743. - uid: Grpc.Core.Logging.TextWriterLogger.Error(System.String,System.Object[])
  2744. name: Error(String, Object[])
  2745. href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Error_System_String_System_Object___
  2746. commentId: M:Grpc.Core.Logging.TextWriterLogger.Error(System.String,System.Object[])
  2747. name.vb: Error(String, Object())
  2748. fullName: Grpc.Core.Logging.TextWriterLogger.Error(System.String, System.Object[])
  2749. fullName.vb: Grpc.Core.Logging.TextWriterLogger.Error(System.String, System.Object())
  2750. nameWithType: TextWriterLogger.Error(String, Object[])
  2751. nameWithType.vb: TextWriterLogger.Error(String, Object())
  2752. - uid: Grpc.Core.Logging.TextWriterLogger.Error*
  2753. name: Error
  2754. href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Error_
  2755. commentId: Overload:Grpc.Core.Logging.TextWriterLogger.Error
  2756. fullName: Grpc.Core.Logging.TextWriterLogger.Error
  2757. nameWithType: TextWriterLogger.Error
  2758. - uid: Grpc.Core.Logging.TextWriterLogger.ForType*
  2759. name: ForType
  2760. href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_ForType_
  2761. commentId: Overload:Grpc.Core.Logging.TextWriterLogger.ForType
  2762. fullName: Grpc.Core.Logging.TextWriterLogger.ForType
  2763. nameWithType: TextWriterLogger.ForType
  2764. - uid: Grpc.Core.Logging.TextWriterLogger.ForType``1
  2765. name: ForType<T>()
  2766. href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_ForType__1
  2767. commentId: M:Grpc.Core.Logging.TextWriterLogger.ForType``1
  2768. name.vb: ForType(Of T)()
  2769. fullName: Grpc.Core.Logging.TextWriterLogger.ForType<T>()
  2770. fullName.vb: Grpc.Core.Logging.TextWriterLogger.ForType(Of T)()
  2771. nameWithType: TextWriterLogger.ForType<T>()
  2772. nameWithType.vb: TextWriterLogger.ForType(Of T)()
  2773. - uid: Grpc.Core.Logging.TextWriterLogger.Info(System.String)
  2774. name: Info(String)
  2775. href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Info_System_String_
  2776. commentId: M:Grpc.Core.Logging.TextWriterLogger.Info(System.String)
  2777. fullName: Grpc.Core.Logging.TextWriterLogger.Info(System.String)
  2778. nameWithType: TextWriterLogger.Info(String)
  2779. - uid: Grpc.Core.Logging.TextWriterLogger.Info(System.String,System.Object[])
  2780. name: Info(String, Object[])
  2781. href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Info_System_String_System_Object___
  2782. commentId: M:Grpc.Core.Logging.TextWriterLogger.Info(System.String,System.Object[])
  2783. name.vb: Info(String, Object())
  2784. fullName: Grpc.Core.Logging.TextWriterLogger.Info(System.String, System.Object[])
  2785. fullName.vb: Grpc.Core.Logging.TextWriterLogger.Info(System.String, System.Object())
  2786. nameWithType: TextWriterLogger.Info(String, Object[])
  2787. nameWithType.vb: TextWriterLogger.Info(String, Object())
  2788. - uid: Grpc.Core.Logging.TextWriterLogger.Info*
  2789. name: Info
  2790. href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Info_
  2791. commentId: Overload:Grpc.Core.Logging.TextWriterLogger.Info
  2792. fullName: Grpc.Core.Logging.TextWriterLogger.Info
  2793. nameWithType: TextWriterLogger.Info
  2794. - uid: Grpc.Core.Logging.TextWriterLogger.Warning(System.Exception,System.String)
  2795. name: Warning(Exception, String)
  2796. href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Warning_System_Exception_System_String_
  2797. commentId: M:Grpc.Core.Logging.TextWriterLogger.Warning(System.Exception,System.String)
  2798. fullName: Grpc.Core.Logging.TextWriterLogger.Warning(System.Exception, System.String)
  2799. nameWithType: TextWriterLogger.Warning(Exception, String)
  2800. - uid: Grpc.Core.Logging.TextWriterLogger.Warning(System.String)
  2801. name: Warning(String)
  2802. href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Warning_System_String_
  2803. commentId: M:Grpc.Core.Logging.TextWriterLogger.Warning(System.String)
  2804. fullName: Grpc.Core.Logging.TextWriterLogger.Warning(System.String)
  2805. nameWithType: TextWriterLogger.Warning(String)
  2806. - uid: Grpc.Core.Logging.TextWriterLogger.Warning(System.String,System.Object[])
  2807. name: Warning(String, Object[])
  2808. href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Warning_System_String_System_Object___
  2809. commentId: M:Grpc.Core.Logging.TextWriterLogger.Warning(System.String,System.Object[])
  2810. name.vb: Warning(String, Object())
  2811. fullName: Grpc.Core.Logging.TextWriterLogger.Warning(System.String, System.Object[])
  2812. fullName.vb: Grpc.Core.Logging.TextWriterLogger.Warning(System.String, System.Object())
  2813. nameWithType: TextWriterLogger.Warning(String, Object[])
  2814. nameWithType.vb: TextWriterLogger.Warning(String, Object())
  2815. - uid: Grpc.Core.Logging.TextWriterLogger.Warning*
  2816. name: Warning
  2817. href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Warning_
  2818. commentId: Overload:Grpc.Core.Logging.TextWriterLogger.Warning
  2819. fullName: Grpc.Core.Logging.TextWriterLogger.Warning
  2820. nameWithType: TextWriterLogger.Warning
  2821. - uid: Grpc.Core.Marshaller`1
  2822. name: Marshaller<T>
  2823. href: api/Grpc.Core.Marshaller-1.html
  2824. commentId: T:Grpc.Core.Marshaller`1
  2825. name.vb: Marshaller(Of T)
  2826. fullName: Grpc.Core.Marshaller<T>
  2827. fullName.vb: Grpc.Core.Marshaller(Of T)
  2828. nameWithType: Marshaller<T>
  2829. nameWithType.vb: Marshaller(Of T)
  2830. - uid: Grpc.Core.Marshaller`1.#ctor(System.Func{`0,System.Byte[]},System.Func{System.Byte[],`0})
  2831. name: Marshaller(Func<T, Byte[]>, Func<Byte[], T>)
  2832. href: api/Grpc.Core.Marshaller-1.html#Grpc_Core_Marshaller_1__ctor_System_Func__0_System_Byte____System_Func_System_Byte____0__
  2833. commentId: M:Grpc.Core.Marshaller`1.#ctor(System.Func{`0,System.Byte[]},System.Func{System.Byte[],`0})
  2834. name.vb: Marshaller(Func(Of T, Byte()), Func(Of Byte(), T))
  2835. fullName: Grpc.Core.Marshaller<T>.Marshaller(System.Func<T, System.Byte[]>, System.Func<System.Byte[], T>)
  2836. fullName.vb: Grpc.Core.Marshaller(Of T).Marshaller(System.Func(Of T, System.Byte()), System.Func(Of System.Byte(), T))
  2837. nameWithType: Marshaller<T>.Marshaller(Func<T, Byte[]>, Func<Byte[], T>)
  2838. nameWithType.vb: Marshaller(Of T).Marshaller(Func(Of T, Byte()), Func(Of Byte(), T))
  2839. - uid: Grpc.Core.Marshaller`1.#ctor*
  2840. name: Marshaller
  2841. href: api/Grpc.Core.Marshaller-1.html#Grpc_Core_Marshaller_1__ctor_
  2842. commentId: Overload:Grpc.Core.Marshaller`1.#ctor
  2843. fullName: Grpc.Core.Marshaller<T>.Marshaller
  2844. fullName.vb: Grpc.Core.Marshaller(Of T).Marshaller
  2845. nameWithType: Marshaller<T>.Marshaller
  2846. nameWithType.vb: Marshaller(Of T).Marshaller
  2847. - uid: Grpc.Core.Marshaller`1.Deserializer
  2848. name: Deserializer
  2849. href: api/Grpc.Core.Marshaller-1.html#Grpc_Core_Marshaller_1_Deserializer
  2850. commentId: P:Grpc.Core.Marshaller`1.Deserializer
  2851. fullName: Grpc.Core.Marshaller<T>.Deserializer
  2852. fullName.vb: Grpc.Core.Marshaller(Of T).Deserializer
  2853. nameWithType: Marshaller<T>.Deserializer
  2854. nameWithType.vb: Marshaller(Of T).Deserializer
  2855. - uid: Grpc.Core.Marshaller`1.Deserializer*
  2856. name: Deserializer
  2857. href: api/Grpc.Core.Marshaller-1.html#Grpc_Core_Marshaller_1_Deserializer_
  2858. commentId: Overload:Grpc.Core.Marshaller`1.Deserializer
  2859. fullName: Grpc.Core.Marshaller<T>.Deserializer
  2860. fullName.vb: Grpc.Core.Marshaller(Of T).Deserializer
  2861. nameWithType: Marshaller<T>.Deserializer
  2862. nameWithType.vb: Marshaller(Of T).Deserializer
  2863. - uid: Grpc.Core.Marshaller`1.Serializer
  2864. name: Serializer
  2865. href: api/Grpc.Core.Marshaller-1.html#Grpc_Core_Marshaller_1_Serializer
  2866. commentId: P:Grpc.Core.Marshaller`1.Serializer
  2867. fullName: Grpc.Core.Marshaller<T>.Serializer
  2868. fullName.vb: Grpc.Core.Marshaller(Of T).Serializer
  2869. nameWithType: Marshaller<T>.Serializer
  2870. nameWithType.vb: Marshaller(Of T).Serializer
  2871. - uid: Grpc.Core.Marshaller`1.Serializer*
  2872. name: Serializer
  2873. href: api/Grpc.Core.Marshaller-1.html#Grpc_Core_Marshaller_1_Serializer_
  2874. commentId: Overload:Grpc.Core.Marshaller`1.Serializer
  2875. fullName: Grpc.Core.Marshaller<T>.Serializer
  2876. fullName.vb: Grpc.Core.Marshaller(Of T).Serializer
  2877. nameWithType: Marshaller<T>.Serializer
  2878. nameWithType.vb: Marshaller(Of T).Serializer
  2879. - uid: Grpc.Core.Marshallers
  2880. name: Marshallers
  2881. href: api/Grpc.Core.Marshallers.html
  2882. commentId: T:Grpc.Core.Marshallers
  2883. fullName: Grpc.Core.Marshallers
  2884. nameWithType: Marshallers
  2885. - uid: Grpc.Core.Marshallers.Create*
  2886. name: Create
  2887. href: api/Grpc.Core.Marshallers.html#Grpc_Core_Marshallers_Create_
  2888. commentId: Overload:Grpc.Core.Marshallers.Create
  2889. fullName: Grpc.Core.Marshallers.Create
  2890. nameWithType: Marshallers.Create
  2891. - uid: Grpc.Core.Marshallers.Create``1(System.Func{``0,System.Byte[]},System.Func{System.Byte[],``0})
  2892. name: Create<T>(Func<T, Byte[]>, Func<Byte[], T>)
  2893. href: api/Grpc.Core.Marshallers.html#Grpc_Core_Marshallers_Create__1_System_Func___0_System_Byte____System_Func_System_Byte_____0__
  2894. commentId: M:Grpc.Core.Marshallers.Create``1(System.Func{``0,System.Byte[]},System.Func{System.Byte[],``0})
  2895. name.vb: Create(Of T)(Func(Of T, Byte()), Func(Of Byte(), T))
  2896. fullName: Grpc.Core.Marshallers.Create<T>(System.Func<T, System.Byte[]>, System.Func<System.Byte[], T>)
  2897. fullName.vb: Grpc.Core.Marshallers.Create(Of T)(System.Func(Of T, System.Byte()), System.Func(Of System.Byte(), T))
  2898. nameWithType: Marshallers.Create<T>(Func<T, Byte[]>, Func<Byte[], T>)
  2899. nameWithType.vb: Marshallers.Create(Of T)(Func(Of T, Byte()), Func(Of Byte(), T))
  2900. - uid: Grpc.Core.Marshallers.StringMarshaller
  2901. name: StringMarshaller
  2902. href: api/Grpc.Core.Marshallers.html#Grpc_Core_Marshallers_StringMarshaller
  2903. commentId: P:Grpc.Core.Marshallers.StringMarshaller
  2904. fullName: Grpc.Core.Marshallers.StringMarshaller
  2905. nameWithType: Marshallers.StringMarshaller
  2906. - uid: Grpc.Core.Marshallers.StringMarshaller*
  2907. name: StringMarshaller
  2908. href: api/Grpc.Core.Marshallers.html#Grpc_Core_Marshallers_StringMarshaller_
  2909. commentId: Overload:Grpc.Core.Marshallers.StringMarshaller
  2910. fullName: Grpc.Core.Marshallers.StringMarshaller
  2911. nameWithType: Marshallers.StringMarshaller
  2912. - uid: Grpc.Core.Metadata
  2913. name: Metadata
  2914. href: api/Grpc.Core.Metadata.html
  2915. commentId: T:Grpc.Core.Metadata
  2916. fullName: Grpc.Core.Metadata
  2917. nameWithType: Metadata
  2918. - uid: Grpc.Core.Metadata.#ctor
  2919. name: Metadata()
  2920. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata__ctor
  2921. commentId: M:Grpc.Core.Metadata.#ctor
  2922. fullName: Grpc.Core.Metadata.Metadata()
  2923. nameWithType: Metadata.Metadata()
  2924. - uid: Grpc.Core.Metadata.#ctor*
  2925. name: Metadata
  2926. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata__ctor_
  2927. commentId: Overload:Grpc.Core.Metadata.#ctor
  2928. fullName: Grpc.Core.Metadata.Metadata
  2929. nameWithType: Metadata.Metadata
  2930. - uid: Grpc.Core.Metadata.Add(Grpc.Core.Metadata.Entry)
  2931. name: Add(Metadata.Entry)
  2932. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Add_Grpc_Core_Metadata_Entry_
  2933. commentId: M:Grpc.Core.Metadata.Add(Grpc.Core.Metadata.Entry)
  2934. fullName: Grpc.Core.Metadata.Add(Grpc.Core.Metadata.Entry)
  2935. nameWithType: Metadata.Add(Metadata.Entry)
  2936. - uid: Grpc.Core.Metadata.Add(System.String,System.Byte[])
  2937. name: Add(String, Byte[])
  2938. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Add_System_String_System_Byte___
  2939. commentId: M:Grpc.Core.Metadata.Add(System.String,System.Byte[])
  2940. name.vb: Add(String, Byte())
  2941. fullName: Grpc.Core.Metadata.Add(System.String, System.Byte[])
  2942. fullName.vb: Grpc.Core.Metadata.Add(System.String, System.Byte())
  2943. nameWithType: Metadata.Add(String, Byte[])
  2944. nameWithType.vb: Metadata.Add(String, Byte())
  2945. - uid: Grpc.Core.Metadata.Add(System.String,System.String)
  2946. name: Add(String, String)
  2947. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Add_System_String_System_String_
  2948. commentId: M:Grpc.Core.Metadata.Add(System.String,System.String)
  2949. fullName: Grpc.Core.Metadata.Add(System.String, System.String)
  2950. nameWithType: Metadata.Add(String, String)
  2951. - uid: Grpc.Core.Metadata.Add*
  2952. name: Add
  2953. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Add_
  2954. commentId: Overload:Grpc.Core.Metadata.Add
  2955. fullName: Grpc.Core.Metadata.Add
  2956. nameWithType: Metadata.Add
  2957. - uid: Grpc.Core.Metadata.BinaryHeaderSuffix
  2958. name: BinaryHeaderSuffix
  2959. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_BinaryHeaderSuffix
  2960. commentId: F:Grpc.Core.Metadata.BinaryHeaderSuffix
  2961. fullName: Grpc.Core.Metadata.BinaryHeaderSuffix
  2962. nameWithType: Metadata.BinaryHeaderSuffix
  2963. - uid: Grpc.Core.Metadata.Clear
  2964. name: Clear()
  2965. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Clear
  2966. commentId: M:Grpc.Core.Metadata.Clear
  2967. fullName: Grpc.Core.Metadata.Clear()
  2968. nameWithType: Metadata.Clear()
  2969. - uid: Grpc.Core.Metadata.Clear*
  2970. name: Clear
  2971. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Clear_
  2972. commentId: Overload:Grpc.Core.Metadata.Clear
  2973. fullName: Grpc.Core.Metadata.Clear
  2974. nameWithType: Metadata.Clear
  2975. - uid: Grpc.Core.Metadata.Contains(Grpc.Core.Metadata.Entry)
  2976. name: Contains(Metadata.Entry)
  2977. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Contains_Grpc_Core_Metadata_Entry_
  2978. commentId: M:Grpc.Core.Metadata.Contains(Grpc.Core.Metadata.Entry)
  2979. fullName: Grpc.Core.Metadata.Contains(Grpc.Core.Metadata.Entry)
  2980. nameWithType: Metadata.Contains(Metadata.Entry)
  2981. - uid: Grpc.Core.Metadata.Contains*
  2982. name: Contains
  2983. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Contains_
  2984. commentId: Overload:Grpc.Core.Metadata.Contains
  2985. fullName: Grpc.Core.Metadata.Contains
  2986. nameWithType: Metadata.Contains
  2987. - uid: Grpc.Core.Metadata.CopyTo(Grpc.Core.Metadata.Entry[],System.Int32)
  2988. name: CopyTo(Metadata.Entry[], Int32)
  2989. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_CopyTo_Grpc_Core_Metadata_Entry___System_Int32_
  2990. commentId: M:Grpc.Core.Metadata.CopyTo(Grpc.Core.Metadata.Entry[],System.Int32)
  2991. name.vb: CopyTo(Metadata.Entry(), Int32)
  2992. fullName: Grpc.Core.Metadata.CopyTo(Grpc.Core.Metadata.Entry[], System.Int32)
  2993. fullName.vb: Grpc.Core.Metadata.CopyTo(Grpc.Core.Metadata.Entry(), System.Int32)
  2994. nameWithType: Metadata.CopyTo(Metadata.Entry[], Int32)
  2995. nameWithType.vb: Metadata.CopyTo(Metadata.Entry(), Int32)
  2996. - uid: Grpc.Core.Metadata.CopyTo*
  2997. name: CopyTo
  2998. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_CopyTo_
  2999. commentId: Overload:Grpc.Core.Metadata.CopyTo
  3000. fullName: Grpc.Core.Metadata.CopyTo
  3001. nameWithType: Metadata.CopyTo
  3002. - uid: Grpc.Core.Metadata.Count
  3003. name: Count
  3004. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Count
  3005. commentId: P:Grpc.Core.Metadata.Count
  3006. fullName: Grpc.Core.Metadata.Count
  3007. nameWithType: Metadata.Count
  3008. - uid: Grpc.Core.Metadata.Count*
  3009. name: Count
  3010. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Count_
  3011. commentId: Overload:Grpc.Core.Metadata.Count
  3012. fullName: Grpc.Core.Metadata.Count
  3013. nameWithType: Metadata.Count
  3014. - uid: Grpc.Core.Metadata.Empty
  3015. name: Empty
  3016. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Empty
  3017. commentId: F:Grpc.Core.Metadata.Empty
  3018. fullName: Grpc.Core.Metadata.Empty
  3019. nameWithType: Metadata.Empty
  3020. - uid: Grpc.Core.Metadata.Entry
  3021. name: Metadata.Entry
  3022. href: api/Grpc.Core.Metadata.Entry.html
  3023. commentId: T:Grpc.Core.Metadata.Entry
  3024. fullName: Grpc.Core.Metadata.Entry
  3025. nameWithType: Metadata.Entry
  3026. - uid: Grpc.Core.Metadata.Entry.#ctor(System.String,System.Byte[])
  3027. name: Entry(String, Byte[])
  3028. href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry__ctor_System_String_System_Byte___
  3029. commentId: M:Grpc.Core.Metadata.Entry.#ctor(System.String,System.Byte[])
  3030. name.vb: Entry(String, Byte())
  3031. fullName: Grpc.Core.Metadata.Entry.Entry(System.String, System.Byte[])
  3032. fullName.vb: Grpc.Core.Metadata.Entry.Entry(System.String, System.Byte())
  3033. nameWithType: Metadata.Entry.Entry(String, Byte[])
  3034. nameWithType.vb: Metadata.Entry.Entry(String, Byte())
  3035. - uid: Grpc.Core.Metadata.Entry.#ctor(System.String,System.String)
  3036. name: Entry(String, String)
  3037. href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry__ctor_System_String_System_String_
  3038. commentId: M:Grpc.Core.Metadata.Entry.#ctor(System.String,System.String)
  3039. fullName: Grpc.Core.Metadata.Entry.Entry(System.String, System.String)
  3040. nameWithType: Metadata.Entry.Entry(String, String)
  3041. - uid: Grpc.Core.Metadata.Entry.#ctor*
  3042. name: Entry
  3043. href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry__ctor_
  3044. commentId: Overload:Grpc.Core.Metadata.Entry.#ctor
  3045. fullName: Grpc.Core.Metadata.Entry.Entry
  3046. nameWithType: Metadata.Entry.Entry
  3047. - uid: Grpc.Core.Metadata.Entry.IsBinary
  3048. name: IsBinary
  3049. href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry_IsBinary
  3050. commentId: P:Grpc.Core.Metadata.Entry.IsBinary
  3051. fullName: Grpc.Core.Metadata.Entry.IsBinary
  3052. nameWithType: Metadata.Entry.IsBinary
  3053. - uid: Grpc.Core.Metadata.Entry.IsBinary*
  3054. name: IsBinary
  3055. href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry_IsBinary_
  3056. commentId: Overload:Grpc.Core.Metadata.Entry.IsBinary
  3057. fullName: Grpc.Core.Metadata.Entry.IsBinary
  3058. nameWithType: Metadata.Entry.IsBinary
  3059. - uid: Grpc.Core.Metadata.Entry.Key
  3060. name: Key
  3061. href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry_Key
  3062. commentId: P:Grpc.Core.Metadata.Entry.Key
  3063. fullName: Grpc.Core.Metadata.Entry.Key
  3064. nameWithType: Metadata.Entry.Key
  3065. - uid: Grpc.Core.Metadata.Entry.Key*
  3066. name: Key
  3067. href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry_Key_
  3068. commentId: Overload:Grpc.Core.Metadata.Entry.Key
  3069. fullName: Grpc.Core.Metadata.Entry.Key
  3070. nameWithType: Metadata.Entry.Key
  3071. - uid: Grpc.Core.Metadata.Entry.ToString
  3072. name: ToString()
  3073. href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry_ToString
  3074. commentId: M:Grpc.Core.Metadata.Entry.ToString
  3075. fullName: Grpc.Core.Metadata.Entry.ToString()
  3076. nameWithType: Metadata.Entry.ToString()
  3077. - uid: Grpc.Core.Metadata.Entry.ToString*
  3078. name: ToString
  3079. href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry_ToString_
  3080. commentId: Overload:Grpc.Core.Metadata.Entry.ToString
  3081. fullName: Grpc.Core.Metadata.Entry.ToString
  3082. nameWithType: Metadata.Entry.ToString
  3083. - uid: Grpc.Core.Metadata.Entry.Value
  3084. name: Value
  3085. href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry_Value
  3086. commentId: P:Grpc.Core.Metadata.Entry.Value
  3087. fullName: Grpc.Core.Metadata.Entry.Value
  3088. nameWithType: Metadata.Entry.Value
  3089. - uid: Grpc.Core.Metadata.Entry.Value*
  3090. name: Value
  3091. href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry_Value_
  3092. commentId: Overload:Grpc.Core.Metadata.Entry.Value
  3093. fullName: Grpc.Core.Metadata.Entry.Value
  3094. nameWithType: Metadata.Entry.Value
  3095. - uid: Grpc.Core.Metadata.Entry.ValueBytes
  3096. name: ValueBytes
  3097. href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry_ValueBytes
  3098. commentId: P:Grpc.Core.Metadata.Entry.ValueBytes
  3099. fullName: Grpc.Core.Metadata.Entry.ValueBytes
  3100. nameWithType: Metadata.Entry.ValueBytes
  3101. - uid: Grpc.Core.Metadata.Entry.ValueBytes*
  3102. name: ValueBytes
  3103. href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry_ValueBytes_
  3104. commentId: Overload:Grpc.Core.Metadata.Entry.ValueBytes
  3105. fullName: Grpc.Core.Metadata.Entry.ValueBytes
  3106. nameWithType: Metadata.Entry.ValueBytes
  3107. - uid: Grpc.Core.Metadata.GetEnumerator
  3108. name: GetEnumerator()
  3109. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_GetEnumerator
  3110. commentId: M:Grpc.Core.Metadata.GetEnumerator
  3111. fullName: Grpc.Core.Metadata.GetEnumerator()
  3112. nameWithType: Metadata.GetEnumerator()
  3113. - uid: Grpc.Core.Metadata.GetEnumerator*
  3114. name: GetEnumerator
  3115. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_GetEnumerator_
  3116. commentId: Overload:Grpc.Core.Metadata.GetEnumerator
  3117. fullName: Grpc.Core.Metadata.GetEnumerator
  3118. nameWithType: Metadata.GetEnumerator
  3119. - uid: Grpc.Core.Metadata.IndexOf(Grpc.Core.Metadata.Entry)
  3120. name: IndexOf(Metadata.Entry)
  3121. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_IndexOf_Grpc_Core_Metadata_Entry_
  3122. commentId: M:Grpc.Core.Metadata.IndexOf(Grpc.Core.Metadata.Entry)
  3123. fullName: Grpc.Core.Metadata.IndexOf(Grpc.Core.Metadata.Entry)
  3124. nameWithType: Metadata.IndexOf(Metadata.Entry)
  3125. - uid: Grpc.Core.Metadata.IndexOf*
  3126. name: IndexOf
  3127. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_IndexOf_
  3128. commentId: Overload:Grpc.Core.Metadata.IndexOf
  3129. fullName: Grpc.Core.Metadata.IndexOf
  3130. nameWithType: Metadata.IndexOf
  3131. - uid: Grpc.Core.Metadata.Insert(System.Int32,Grpc.Core.Metadata.Entry)
  3132. name: Insert(Int32, Metadata.Entry)
  3133. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Insert_System_Int32_Grpc_Core_Metadata_Entry_
  3134. commentId: M:Grpc.Core.Metadata.Insert(System.Int32,Grpc.Core.Metadata.Entry)
  3135. fullName: Grpc.Core.Metadata.Insert(System.Int32, Grpc.Core.Metadata.Entry)
  3136. nameWithType: Metadata.Insert(Int32, Metadata.Entry)
  3137. - uid: Grpc.Core.Metadata.Insert*
  3138. name: Insert
  3139. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Insert_
  3140. commentId: Overload:Grpc.Core.Metadata.Insert
  3141. fullName: Grpc.Core.Metadata.Insert
  3142. nameWithType: Metadata.Insert
  3143. - uid: Grpc.Core.Metadata.IsReadOnly
  3144. name: IsReadOnly
  3145. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_IsReadOnly
  3146. commentId: P:Grpc.Core.Metadata.IsReadOnly
  3147. fullName: Grpc.Core.Metadata.IsReadOnly
  3148. nameWithType: Metadata.IsReadOnly
  3149. - uid: Grpc.Core.Metadata.IsReadOnly*
  3150. name: IsReadOnly
  3151. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_IsReadOnly_
  3152. commentId: Overload:Grpc.Core.Metadata.IsReadOnly
  3153. fullName: Grpc.Core.Metadata.IsReadOnly
  3154. nameWithType: Metadata.IsReadOnly
  3155. - uid: Grpc.Core.Metadata.Item(System.Int32)
  3156. name: Item[Int32]
  3157. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Item_System_Int32_
  3158. commentId: P:Grpc.Core.Metadata.Item(System.Int32)
  3159. name.vb: Item(Int32)
  3160. fullName: Grpc.Core.Metadata.Item[System.Int32]
  3161. fullName.vb: Grpc.Core.Metadata.Item(System.Int32)
  3162. nameWithType: Metadata.Item[Int32]
  3163. nameWithType.vb: Metadata.Item(Int32)
  3164. - uid: Grpc.Core.Metadata.Item*
  3165. name: Item
  3166. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Item_
  3167. commentId: Overload:Grpc.Core.Metadata.Item
  3168. fullName: Grpc.Core.Metadata.Item
  3169. nameWithType: Metadata.Item
  3170. - uid: Grpc.Core.Metadata.Remove(Grpc.Core.Metadata.Entry)
  3171. name: Remove(Metadata.Entry)
  3172. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Remove_Grpc_Core_Metadata_Entry_
  3173. commentId: M:Grpc.Core.Metadata.Remove(Grpc.Core.Metadata.Entry)
  3174. fullName: Grpc.Core.Metadata.Remove(Grpc.Core.Metadata.Entry)
  3175. nameWithType: Metadata.Remove(Metadata.Entry)
  3176. - uid: Grpc.Core.Metadata.Remove*
  3177. name: Remove
  3178. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Remove_
  3179. commentId: Overload:Grpc.Core.Metadata.Remove
  3180. fullName: Grpc.Core.Metadata.Remove
  3181. nameWithType: Metadata.Remove
  3182. - uid: Grpc.Core.Metadata.RemoveAt(System.Int32)
  3183. name: RemoveAt(Int32)
  3184. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_RemoveAt_System_Int32_
  3185. commentId: M:Grpc.Core.Metadata.RemoveAt(System.Int32)
  3186. fullName: Grpc.Core.Metadata.RemoveAt(System.Int32)
  3187. nameWithType: Metadata.RemoveAt(Int32)
  3188. - uid: Grpc.Core.Metadata.RemoveAt*
  3189. name: RemoveAt
  3190. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_RemoveAt_
  3191. commentId: Overload:Grpc.Core.Metadata.RemoveAt
  3192. fullName: Grpc.Core.Metadata.RemoveAt
  3193. nameWithType: Metadata.RemoveAt
  3194. - uid: Grpc.Core.Metadata.System#Collections#IEnumerable#GetEnumerator
  3195. name: IEnumerable.GetEnumerator()
  3196. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_System_Collections_IEnumerable_GetEnumerator
  3197. commentId: M:Grpc.Core.Metadata.System#Collections#IEnumerable#GetEnumerator
  3198. name.vb: System.Collections.IEnumerable.GetEnumerator()
  3199. fullName: Grpc.Core.Metadata.System.Collections.IEnumerable.GetEnumerator()
  3200. nameWithType: Metadata.IEnumerable.GetEnumerator()
  3201. nameWithType.vb: Metadata.System.Collections.IEnumerable.GetEnumerator()
  3202. - uid: Grpc.Core.Metadata.System#Collections#IEnumerable#GetEnumerator*
  3203. name: IEnumerable.GetEnumerator
  3204. href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_System_Collections_IEnumerable_GetEnumerator_
  3205. commentId: Overload:Grpc.Core.Metadata.System#Collections#IEnumerable#GetEnumerator
  3206. name.vb: System.Collections.IEnumerable.GetEnumerator
  3207. fullName: Grpc.Core.Metadata.System.Collections.IEnumerable.GetEnumerator
  3208. nameWithType: Metadata.IEnumerable.GetEnumerator
  3209. nameWithType.vb: Metadata.System.Collections.IEnumerable.GetEnumerator
  3210. - uid: Grpc.Core.Method`2
  3211. name: Method<TRequest, TResponse>
  3212. href: api/Grpc.Core.Method-2.html
  3213. commentId: T:Grpc.Core.Method`2
  3214. name.vb: Method(Of TRequest, TResponse)
  3215. fullName: Grpc.Core.Method<TRequest, TResponse>
  3216. fullName.vb: Grpc.Core.Method(Of TRequest, TResponse)
  3217. nameWithType: Method<TRequest, TResponse>
  3218. nameWithType.vb: Method(Of TRequest, TResponse)
  3219. - uid: Grpc.Core.Method`2.#ctor(Grpc.Core.MethodType,System.String,System.String,Grpc.Core.Marshaller{`0},Grpc.Core.Marshaller{`1})
  3220. name: Method(MethodType, String, String, Marshaller<TRequest>, Marshaller<TResponse>)
  3221. href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2__ctor_Grpc_Core_MethodType_System_String_System_String_Grpc_Core_Marshaller__0__Grpc_Core_Marshaller__1__
  3222. commentId: M:Grpc.Core.Method`2.#ctor(Grpc.Core.MethodType,System.String,System.String,Grpc.Core.Marshaller{`0},Grpc.Core.Marshaller{`1})
  3223. name.vb: Method(MethodType, String, String, Marshaller(Of TRequest), Marshaller(Of TResponse))
  3224. fullName: Grpc.Core.Method<TRequest, TResponse>.Method(Grpc.Core.MethodType, System.String, System.String, Grpc.Core.Marshaller<TRequest>, Grpc.Core.Marshaller<TResponse>)
  3225. fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).Method(Grpc.Core.MethodType, System.String, System.String, Grpc.Core.Marshaller(Of TRequest), Grpc.Core.Marshaller(Of TResponse))
  3226. nameWithType: Method<TRequest, TResponse>.Method(MethodType, String, String, Marshaller<TRequest>, Marshaller<TResponse>)
  3227. nameWithType.vb: Method(Of TRequest, TResponse).Method(MethodType, String, String, Marshaller(Of TRequest), Marshaller(Of TResponse))
  3228. - uid: Grpc.Core.Method`2.#ctor*
  3229. name: Method
  3230. href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2__ctor_
  3231. commentId: Overload:Grpc.Core.Method`2.#ctor
  3232. fullName: Grpc.Core.Method<TRequest, TResponse>.Method
  3233. fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).Method
  3234. nameWithType: Method<TRequest, TResponse>.Method
  3235. nameWithType.vb: Method(Of TRequest, TResponse).Method
  3236. - uid: Grpc.Core.Method`2.FullName
  3237. name: FullName
  3238. href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2_FullName
  3239. commentId: P:Grpc.Core.Method`2.FullName
  3240. fullName: Grpc.Core.Method<TRequest, TResponse>.FullName
  3241. fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).FullName
  3242. nameWithType: Method<TRequest, TResponse>.FullName
  3243. nameWithType.vb: Method(Of TRequest, TResponse).FullName
  3244. - uid: Grpc.Core.Method`2.FullName*
  3245. name: FullName
  3246. href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2_FullName_
  3247. commentId: Overload:Grpc.Core.Method`2.FullName
  3248. fullName: Grpc.Core.Method<TRequest, TResponse>.FullName
  3249. fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).FullName
  3250. nameWithType: Method<TRequest, TResponse>.FullName
  3251. nameWithType.vb: Method(Of TRequest, TResponse).FullName
  3252. - uid: Grpc.Core.Method`2.Name
  3253. name: Name
  3254. href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2_Name
  3255. commentId: P:Grpc.Core.Method`2.Name
  3256. fullName: Grpc.Core.Method<TRequest, TResponse>.Name
  3257. fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).Name
  3258. nameWithType: Method<TRequest, TResponse>.Name
  3259. nameWithType.vb: Method(Of TRequest, TResponse).Name
  3260. - uid: Grpc.Core.Method`2.Name*
  3261. name: Name
  3262. href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2_Name_
  3263. commentId: Overload:Grpc.Core.Method`2.Name
  3264. fullName: Grpc.Core.Method<TRequest, TResponse>.Name
  3265. fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).Name
  3266. nameWithType: Method<TRequest, TResponse>.Name
  3267. nameWithType.vb: Method(Of TRequest, TResponse).Name
  3268. - uid: Grpc.Core.Method`2.RequestMarshaller
  3269. name: RequestMarshaller
  3270. href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2_RequestMarshaller
  3271. commentId: P:Grpc.Core.Method`2.RequestMarshaller
  3272. fullName: Grpc.Core.Method<TRequest, TResponse>.RequestMarshaller
  3273. fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).RequestMarshaller
  3274. nameWithType: Method<TRequest, TResponse>.RequestMarshaller
  3275. nameWithType.vb: Method(Of TRequest, TResponse).RequestMarshaller
  3276. - uid: Grpc.Core.Method`2.RequestMarshaller*
  3277. name: RequestMarshaller
  3278. href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2_RequestMarshaller_
  3279. commentId: Overload:Grpc.Core.Method`2.RequestMarshaller
  3280. fullName: Grpc.Core.Method<TRequest, TResponse>.RequestMarshaller
  3281. fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).RequestMarshaller
  3282. nameWithType: Method<TRequest, TResponse>.RequestMarshaller
  3283. nameWithType.vb: Method(Of TRequest, TResponse).RequestMarshaller
  3284. - uid: Grpc.Core.Method`2.ResponseMarshaller
  3285. name: ResponseMarshaller
  3286. href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2_ResponseMarshaller
  3287. commentId: P:Grpc.Core.Method`2.ResponseMarshaller
  3288. fullName: Grpc.Core.Method<TRequest, TResponse>.ResponseMarshaller
  3289. fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).ResponseMarshaller
  3290. nameWithType: Method<TRequest, TResponse>.ResponseMarshaller
  3291. nameWithType.vb: Method(Of TRequest, TResponse).ResponseMarshaller
  3292. - uid: Grpc.Core.Method`2.ResponseMarshaller*
  3293. name: ResponseMarshaller
  3294. href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2_ResponseMarshaller_
  3295. commentId: Overload:Grpc.Core.Method`2.ResponseMarshaller
  3296. fullName: Grpc.Core.Method<TRequest, TResponse>.ResponseMarshaller
  3297. fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).ResponseMarshaller
  3298. nameWithType: Method<TRequest, TResponse>.ResponseMarshaller
  3299. nameWithType.vb: Method(Of TRequest, TResponse).ResponseMarshaller
  3300. - uid: Grpc.Core.Method`2.ServiceName
  3301. name: ServiceName
  3302. href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2_ServiceName
  3303. commentId: P:Grpc.Core.Method`2.ServiceName
  3304. fullName: Grpc.Core.Method<TRequest, TResponse>.ServiceName
  3305. fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).ServiceName
  3306. nameWithType: Method<TRequest, TResponse>.ServiceName
  3307. nameWithType.vb: Method(Of TRequest, TResponse).ServiceName
  3308. - uid: Grpc.Core.Method`2.ServiceName*
  3309. name: ServiceName
  3310. href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2_ServiceName_
  3311. commentId: Overload:Grpc.Core.Method`2.ServiceName
  3312. fullName: Grpc.Core.Method<TRequest, TResponse>.ServiceName
  3313. fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).ServiceName
  3314. nameWithType: Method<TRequest, TResponse>.ServiceName
  3315. nameWithType.vb: Method(Of TRequest, TResponse).ServiceName
  3316. - uid: Grpc.Core.Method`2.Type
  3317. name: Type
  3318. href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2_Type
  3319. commentId: P:Grpc.Core.Method`2.Type
  3320. fullName: Grpc.Core.Method<TRequest, TResponse>.Type
  3321. fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).Type
  3322. nameWithType: Method<TRequest, TResponse>.Type
  3323. nameWithType.vb: Method(Of TRequest, TResponse).Type
  3324. - uid: Grpc.Core.Method`2.Type*
  3325. name: Type
  3326. href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2_Type_
  3327. commentId: Overload:Grpc.Core.Method`2.Type
  3328. fullName: Grpc.Core.Method<TRequest, TResponse>.Type
  3329. fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).Type
  3330. nameWithType: Method<TRequest, TResponse>.Type
  3331. nameWithType.vb: Method(Of TRequest, TResponse).Type
  3332. - uid: Grpc.Core.MethodType
  3333. name: MethodType
  3334. href: api/Grpc.Core.MethodType.html
  3335. commentId: T:Grpc.Core.MethodType
  3336. fullName: Grpc.Core.MethodType
  3337. nameWithType: MethodType
  3338. - uid: Grpc.Core.MethodType.ClientStreaming
  3339. name: ClientStreaming
  3340. href: api/Grpc.Core.MethodType.html#Grpc_Core_MethodType_ClientStreaming
  3341. commentId: F:Grpc.Core.MethodType.ClientStreaming
  3342. fullName: Grpc.Core.MethodType.ClientStreaming
  3343. nameWithType: MethodType.ClientStreaming
  3344. - uid: Grpc.Core.MethodType.DuplexStreaming
  3345. name: DuplexStreaming
  3346. href: api/Grpc.Core.MethodType.html#Grpc_Core_MethodType_DuplexStreaming
  3347. commentId: F:Grpc.Core.MethodType.DuplexStreaming
  3348. fullName: Grpc.Core.MethodType.DuplexStreaming
  3349. nameWithType: MethodType.DuplexStreaming
  3350. - uid: Grpc.Core.MethodType.ServerStreaming
  3351. name: ServerStreaming
  3352. href: api/Grpc.Core.MethodType.html#Grpc_Core_MethodType_ServerStreaming
  3353. commentId: F:Grpc.Core.MethodType.ServerStreaming
  3354. fullName: Grpc.Core.MethodType.ServerStreaming
  3355. nameWithType: MethodType.ServerStreaming
  3356. - uid: Grpc.Core.MethodType.Unary
  3357. name: Unary
  3358. href: api/Grpc.Core.MethodType.html#Grpc_Core_MethodType_Unary
  3359. commentId: F:Grpc.Core.MethodType.Unary
  3360. fullName: Grpc.Core.MethodType.Unary
  3361. nameWithType: MethodType.Unary
  3362. - uid: Grpc.Core.RpcException
  3363. name: RpcException
  3364. href: api/Grpc.Core.RpcException.html
  3365. commentId: T:Grpc.Core.RpcException
  3366. fullName: Grpc.Core.RpcException
  3367. nameWithType: RpcException
  3368. - uid: Grpc.Core.RpcException.#ctor(Grpc.Core.Status)
  3369. name: RpcException(Status)
  3370. href: api/Grpc.Core.RpcException.html#Grpc_Core_RpcException__ctor_Grpc_Core_Status_
  3371. commentId: M:Grpc.Core.RpcException.#ctor(Grpc.Core.Status)
  3372. fullName: Grpc.Core.RpcException.RpcException(Grpc.Core.Status)
  3373. nameWithType: RpcException.RpcException(Status)
  3374. - uid: Grpc.Core.RpcException.#ctor(Grpc.Core.Status,Grpc.Core.Metadata)
  3375. name: RpcException(Status, Metadata)
  3376. href: api/Grpc.Core.RpcException.html#Grpc_Core_RpcException__ctor_Grpc_Core_Status_Grpc_Core_Metadata_
  3377. commentId: M:Grpc.Core.RpcException.#ctor(Grpc.Core.Status,Grpc.Core.Metadata)
  3378. fullName: Grpc.Core.RpcException.RpcException(Grpc.Core.Status, Grpc.Core.Metadata)
  3379. nameWithType: RpcException.RpcException(Status, Metadata)
  3380. - uid: Grpc.Core.RpcException.#ctor(Grpc.Core.Status,System.String)
  3381. name: RpcException(Status, String)
  3382. href: api/Grpc.Core.RpcException.html#Grpc_Core_RpcException__ctor_Grpc_Core_Status_System_String_
  3383. commentId: M:Grpc.Core.RpcException.#ctor(Grpc.Core.Status,System.String)
  3384. fullName: Grpc.Core.RpcException.RpcException(Grpc.Core.Status, System.String)
  3385. nameWithType: RpcException.RpcException(Status, String)
  3386. - uid: Grpc.Core.RpcException.#ctor*
  3387. name: RpcException
  3388. href: api/Grpc.Core.RpcException.html#Grpc_Core_RpcException__ctor_
  3389. commentId: Overload:Grpc.Core.RpcException.#ctor
  3390. fullName: Grpc.Core.RpcException.RpcException
  3391. nameWithType: RpcException.RpcException
  3392. - uid: Grpc.Core.RpcException.Status
  3393. name: Status
  3394. href: api/Grpc.Core.RpcException.html#Grpc_Core_RpcException_Status
  3395. commentId: P:Grpc.Core.RpcException.Status
  3396. fullName: Grpc.Core.RpcException.Status
  3397. nameWithType: RpcException.Status
  3398. - uid: Grpc.Core.RpcException.Status*
  3399. name: Status
  3400. href: api/Grpc.Core.RpcException.html#Grpc_Core_RpcException_Status_
  3401. commentId: Overload:Grpc.Core.RpcException.Status
  3402. fullName: Grpc.Core.RpcException.Status
  3403. nameWithType: RpcException.Status
  3404. - uid: Grpc.Core.RpcException.Trailers
  3405. name: Trailers
  3406. href: api/Grpc.Core.RpcException.html#Grpc_Core_RpcException_Trailers
  3407. commentId: P:Grpc.Core.RpcException.Trailers
  3408. fullName: Grpc.Core.RpcException.Trailers
  3409. nameWithType: RpcException.Trailers
  3410. - uid: Grpc.Core.RpcException.Trailers*
  3411. name: Trailers
  3412. href: api/Grpc.Core.RpcException.html#Grpc_Core_RpcException_Trailers_
  3413. commentId: Overload:Grpc.Core.RpcException.Trailers
  3414. fullName: Grpc.Core.RpcException.Trailers
  3415. nameWithType: RpcException.Trailers
  3416. - uid: Grpc.Core.Server
  3417. name: Server
  3418. href: api/Grpc.Core.Server.html
  3419. commentId: T:Grpc.Core.Server
  3420. fullName: Grpc.Core.Server
  3421. nameWithType: Server
  3422. - uid: Grpc.Core.Server.#ctor
  3423. name: Server()
  3424. href: api/Grpc.Core.Server.html#Grpc_Core_Server__ctor
  3425. commentId: M:Grpc.Core.Server.#ctor
  3426. fullName: Grpc.Core.Server.Server()
  3427. nameWithType: Server.Server()
  3428. - uid: Grpc.Core.Server.#ctor(System.Collections.Generic.IEnumerable{Grpc.Core.ChannelOption})
  3429. name: Server(IEnumerable<ChannelOption>)
  3430. href: api/Grpc.Core.Server.html#Grpc_Core_Server__ctor_System_Collections_Generic_IEnumerable_Grpc_Core_ChannelOption__
  3431. commentId: M:Grpc.Core.Server.#ctor(System.Collections.Generic.IEnumerable{Grpc.Core.ChannelOption})
  3432. name.vb: Server(IEnumerable(Of ChannelOption))
  3433. fullName: Grpc.Core.Server.Server(System.Collections.Generic.IEnumerable<Grpc.Core.ChannelOption>)
  3434. fullName.vb: Grpc.Core.Server.Server(System.Collections.Generic.IEnumerable(Of Grpc.Core.ChannelOption))
  3435. nameWithType: Server.Server(IEnumerable<ChannelOption>)
  3436. nameWithType.vb: Server.Server(IEnumerable(Of ChannelOption))
  3437. - uid: Grpc.Core.Server.#ctor*
  3438. name: Server
  3439. href: api/Grpc.Core.Server.html#Grpc_Core_Server__ctor_
  3440. commentId: Overload:Grpc.Core.Server.#ctor
  3441. fullName: Grpc.Core.Server.Server
  3442. nameWithType: Server.Server
  3443. - uid: Grpc.Core.Server.KillAsync
  3444. name: KillAsync()
  3445. href: api/Grpc.Core.Server.html#Grpc_Core_Server_KillAsync
  3446. commentId: M:Grpc.Core.Server.KillAsync
  3447. fullName: Grpc.Core.Server.KillAsync()
  3448. nameWithType: Server.KillAsync()
  3449. - uid: Grpc.Core.Server.KillAsync*
  3450. name: KillAsync
  3451. href: api/Grpc.Core.Server.html#Grpc_Core_Server_KillAsync_
  3452. commentId: Overload:Grpc.Core.Server.KillAsync
  3453. fullName: Grpc.Core.Server.KillAsync
  3454. nameWithType: Server.KillAsync
  3455. - uid: Grpc.Core.Server.Ports
  3456. name: Ports
  3457. href: api/Grpc.Core.Server.html#Grpc_Core_Server_Ports
  3458. commentId: P:Grpc.Core.Server.Ports
  3459. fullName: Grpc.Core.Server.Ports
  3460. nameWithType: Server.Ports
  3461. - uid: Grpc.Core.Server.Ports*
  3462. name: Ports
  3463. href: api/Grpc.Core.Server.html#Grpc_Core_Server_Ports_
  3464. commentId: Overload:Grpc.Core.Server.Ports
  3465. fullName: Grpc.Core.Server.Ports
  3466. nameWithType: Server.Ports
  3467. - uid: Grpc.Core.Server.RequestCallTokensPerCompletionQueue
  3468. name: RequestCallTokensPerCompletionQueue
  3469. href: api/Grpc.Core.Server.html#Grpc_Core_Server_RequestCallTokensPerCompletionQueue
  3470. commentId: P:Grpc.Core.Server.RequestCallTokensPerCompletionQueue
  3471. fullName: Grpc.Core.Server.RequestCallTokensPerCompletionQueue
  3472. nameWithType: Server.RequestCallTokensPerCompletionQueue
  3473. - uid: Grpc.Core.Server.RequestCallTokensPerCompletionQueue*
  3474. name: RequestCallTokensPerCompletionQueue
  3475. href: api/Grpc.Core.Server.html#Grpc_Core_Server_RequestCallTokensPerCompletionQueue_
  3476. commentId: Overload:Grpc.Core.Server.RequestCallTokensPerCompletionQueue
  3477. fullName: Grpc.Core.Server.RequestCallTokensPerCompletionQueue
  3478. nameWithType: Server.RequestCallTokensPerCompletionQueue
  3479. - uid: Grpc.Core.Server.ServerPortCollection
  3480. name: Server.ServerPortCollection
  3481. href: api/Grpc.Core.Server.ServerPortCollection.html
  3482. commentId: T:Grpc.Core.Server.ServerPortCollection
  3483. fullName: Grpc.Core.Server.ServerPortCollection
  3484. nameWithType: Server.ServerPortCollection
  3485. - uid: Grpc.Core.Server.ServerPortCollection.Add(Grpc.Core.ServerPort)
  3486. name: Add(ServerPort)
  3487. href: api/Grpc.Core.Server.ServerPortCollection.html#Grpc_Core_Server_ServerPortCollection_Add_Grpc_Core_ServerPort_
  3488. commentId: M:Grpc.Core.Server.ServerPortCollection.Add(Grpc.Core.ServerPort)
  3489. fullName: Grpc.Core.Server.ServerPortCollection.Add(Grpc.Core.ServerPort)
  3490. nameWithType: Server.ServerPortCollection.Add(ServerPort)
  3491. - uid: Grpc.Core.Server.ServerPortCollection.Add(System.String,System.Int32,Grpc.Core.ServerCredentials)
  3492. name: Add(String, Int32, ServerCredentials)
  3493. href: api/Grpc.Core.Server.ServerPortCollection.html#Grpc_Core_Server_ServerPortCollection_Add_System_String_System_Int32_Grpc_Core_ServerCredentials_
  3494. commentId: M:Grpc.Core.Server.ServerPortCollection.Add(System.String,System.Int32,Grpc.Core.ServerCredentials)
  3495. fullName: Grpc.Core.Server.ServerPortCollection.Add(System.String, System.Int32, Grpc.Core.ServerCredentials)
  3496. nameWithType: Server.ServerPortCollection.Add(String, Int32, ServerCredentials)
  3497. - uid: Grpc.Core.Server.ServerPortCollection.Add*
  3498. name: Add
  3499. href: api/Grpc.Core.Server.ServerPortCollection.html#Grpc_Core_Server_ServerPortCollection_Add_
  3500. commentId: Overload:Grpc.Core.Server.ServerPortCollection.Add
  3501. fullName: Grpc.Core.Server.ServerPortCollection.Add
  3502. nameWithType: Server.ServerPortCollection.Add
  3503. - uid: Grpc.Core.Server.ServerPortCollection.GetEnumerator
  3504. name: GetEnumerator()
  3505. href: api/Grpc.Core.Server.ServerPortCollection.html#Grpc_Core_Server_ServerPortCollection_GetEnumerator
  3506. commentId: M:Grpc.Core.Server.ServerPortCollection.GetEnumerator
  3507. fullName: Grpc.Core.Server.ServerPortCollection.GetEnumerator()
  3508. nameWithType: Server.ServerPortCollection.GetEnumerator()
  3509. - uid: Grpc.Core.Server.ServerPortCollection.GetEnumerator*
  3510. name: GetEnumerator
  3511. href: api/Grpc.Core.Server.ServerPortCollection.html#Grpc_Core_Server_ServerPortCollection_GetEnumerator_
  3512. commentId: Overload:Grpc.Core.Server.ServerPortCollection.GetEnumerator
  3513. fullName: Grpc.Core.Server.ServerPortCollection.GetEnumerator
  3514. nameWithType: Server.ServerPortCollection.GetEnumerator
  3515. - uid: Grpc.Core.Server.ServerPortCollection.System#Collections#IEnumerable#GetEnumerator
  3516. name: IEnumerable.GetEnumerator()
  3517. href: api/Grpc.Core.Server.ServerPortCollection.html#Grpc_Core_Server_ServerPortCollection_System_Collections_IEnumerable_GetEnumerator
  3518. commentId: M:Grpc.Core.Server.ServerPortCollection.System#Collections#IEnumerable#GetEnumerator
  3519. name.vb: System.Collections.IEnumerable.GetEnumerator()
  3520. fullName: Grpc.Core.Server.ServerPortCollection.System.Collections.IEnumerable.GetEnumerator()
  3521. nameWithType: Server.ServerPortCollection.IEnumerable.GetEnumerator()
  3522. nameWithType.vb: Server.ServerPortCollection.System.Collections.IEnumerable.GetEnumerator()
  3523. - uid: Grpc.Core.Server.ServerPortCollection.System#Collections#IEnumerable#GetEnumerator*
  3524. name: IEnumerable.GetEnumerator
  3525. href: api/Grpc.Core.Server.ServerPortCollection.html#Grpc_Core_Server_ServerPortCollection_System_Collections_IEnumerable_GetEnumerator_
  3526. commentId: Overload:Grpc.Core.Server.ServerPortCollection.System#Collections#IEnumerable#GetEnumerator
  3527. name.vb: System.Collections.IEnumerable.GetEnumerator
  3528. fullName: Grpc.Core.Server.ServerPortCollection.System.Collections.IEnumerable.GetEnumerator
  3529. nameWithType: Server.ServerPortCollection.IEnumerable.GetEnumerator
  3530. nameWithType.vb: Server.ServerPortCollection.System.Collections.IEnumerable.GetEnumerator
  3531. - uid: Grpc.Core.Server.ServiceDefinitionCollection
  3532. name: Server.ServiceDefinitionCollection
  3533. href: api/Grpc.Core.Server.ServiceDefinitionCollection.html
  3534. commentId: T:Grpc.Core.Server.ServiceDefinitionCollection
  3535. fullName: Grpc.Core.Server.ServiceDefinitionCollection
  3536. nameWithType: Server.ServiceDefinitionCollection
  3537. - uid: Grpc.Core.Server.ServiceDefinitionCollection.Add(Grpc.Core.ServerServiceDefinition)
  3538. name: Add(ServerServiceDefinition)
  3539. href: api/Grpc.Core.Server.ServiceDefinitionCollection.html#Grpc_Core_Server_ServiceDefinitionCollection_Add_Grpc_Core_ServerServiceDefinition_
  3540. commentId: M:Grpc.Core.Server.ServiceDefinitionCollection.Add(Grpc.Core.ServerServiceDefinition)
  3541. fullName: Grpc.Core.Server.ServiceDefinitionCollection.Add(Grpc.Core.ServerServiceDefinition)
  3542. nameWithType: Server.ServiceDefinitionCollection.Add(ServerServiceDefinition)
  3543. - uid: Grpc.Core.Server.ServiceDefinitionCollection.Add*
  3544. name: Add
  3545. href: api/Grpc.Core.Server.ServiceDefinitionCollection.html#Grpc_Core_Server_ServiceDefinitionCollection_Add_
  3546. commentId: Overload:Grpc.Core.Server.ServiceDefinitionCollection.Add
  3547. fullName: Grpc.Core.Server.ServiceDefinitionCollection.Add
  3548. nameWithType: Server.ServiceDefinitionCollection.Add
  3549. - uid: Grpc.Core.Server.ServiceDefinitionCollection.GetEnumerator
  3550. name: GetEnumerator()
  3551. href: api/Grpc.Core.Server.ServiceDefinitionCollection.html#Grpc_Core_Server_ServiceDefinitionCollection_GetEnumerator
  3552. commentId: M:Grpc.Core.Server.ServiceDefinitionCollection.GetEnumerator
  3553. fullName: Grpc.Core.Server.ServiceDefinitionCollection.GetEnumerator()
  3554. nameWithType: Server.ServiceDefinitionCollection.GetEnumerator()
  3555. - uid: Grpc.Core.Server.ServiceDefinitionCollection.GetEnumerator*
  3556. name: GetEnumerator
  3557. href: api/Grpc.Core.Server.ServiceDefinitionCollection.html#Grpc_Core_Server_ServiceDefinitionCollection_GetEnumerator_
  3558. commentId: Overload:Grpc.Core.Server.ServiceDefinitionCollection.GetEnumerator
  3559. fullName: Grpc.Core.Server.ServiceDefinitionCollection.GetEnumerator
  3560. nameWithType: Server.ServiceDefinitionCollection.GetEnumerator
  3561. - uid: Grpc.Core.Server.ServiceDefinitionCollection.System#Collections#IEnumerable#GetEnumerator
  3562. name: IEnumerable.GetEnumerator()
  3563. href: api/Grpc.Core.Server.ServiceDefinitionCollection.html#Grpc_Core_Server_ServiceDefinitionCollection_System_Collections_IEnumerable_GetEnumerator
  3564. commentId: M:Grpc.Core.Server.ServiceDefinitionCollection.System#Collections#IEnumerable#GetEnumerator
  3565. name.vb: System.Collections.IEnumerable.GetEnumerator()
  3566. fullName: Grpc.Core.Server.ServiceDefinitionCollection.System.Collections.IEnumerable.GetEnumerator()
  3567. nameWithType: Server.ServiceDefinitionCollection.IEnumerable.GetEnumerator()
  3568. nameWithType.vb: Server.ServiceDefinitionCollection.System.Collections.IEnumerable.GetEnumerator()
  3569. - uid: Grpc.Core.Server.ServiceDefinitionCollection.System#Collections#IEnumerable#GetEnumerator*
  3570. name: IEnumerable.GetEnumerator
  3571. href: api/Grpc.Core.Server.ServiceDefinitionCollection.html#Grpc_Core_Server_ServiceDefinitionCollection_System_Collections_IEnumerable_GetEnumerator_
  3572. commentId: Overload:Grpc.Core.Server.ServiceDefinitionCollection.System#Collections#IEnumerable#GetEnumerator
  3573. name.vb: System.Collections.IEnumerable.GetEnumerator
  3574. fullName: Grpc.Core.Server.ServiceDefinitionCollection.System.Collections.IEnumerable.GetEnumerator
  3575. nameWithType: Server.ServiceDefinitionCollection.IEnumerable.GetEnumerator
  3576. nameWithType.vb: Server.ServiceDefinitionCollection.System.Collections.IEnumerable.GetEnumerator
  3577. - uid: Grpc.Core.Server.Services
  3578. name: Services
  3579. href: api/Grpc.Core.Server.html#Grpc_Core_Server_Services
  3580. commentId: P:Grpc.Core.Server.Services
  3581. fullName: Grpc.Core.Server.Services
  3582. nameWithType: Server.Services
  3583. - uid: Grpc.Core.Server.Services*
  3584. name: Services
  3585. href: api/Grpc.Core.Server.html#Grpc_Core_Server_Services_
  3586. commentId: Overload:Grpc.Core.Server.Services
  3587. fullName: Grpc.Core.Server.Services
  3588. nameWithType: Server.Services
  3589. - uid: Grpc.Core.Server.ShutdownAsync
  3590. name: ShutdownAsync()
  3591. href: api/Grpc.Core.Server.html#Grpc_Core_Server_ShutdownAsync
  3592. commentId: M:Grpc.Core.Server.ShutdownAsync
  3593. fullName: Grpc.Core.Server.ShutdownAsync()
  3594. nameWithType: Server.ShutdownAsync()
  3595. - uid: Grpc.Core.Server.ShutdownAsync*
  3596. name: ShutdownAsync
  3597. href: api/Grpc.Core.Server.html#Grpc_Core_Server_ShutdownAsync_
  3598. commentId: Overload:Grpc.Core.Server.ShutdownAsync
  3599. fullName: Grpc.Core.Server.ShutdownAsync
  3600. nameWithType: Server.ShutdownAsync
  3601. - uid: Grpc.Core.Server.ShutdownTask
  3602. name: ShutdownTask
  3603. href: api/Grpc.Core.Server.html#Grpc_Core_Server_ShutdownTask
  3604. commentId: P:Grpc.Core.Server.ShutdownTask
  3605. fullName: Grpc.Core.Server.ShutdownTask
  3606. nameWithType: Server.ShutdownTask
  3607. - uid: Grpc.Core.Server.ShutdownTask*
  3608. name: ShutdownTask
  3609. href: api/Grpc.Core.Server.html#Grpc_Core_Server_ShutdownTask_
  3610. commentId: Overload:Grpc.Core.Server.ShutdownTask
  3611. fullName: Grpc.Core.Server.ShutdownTask
  3612. nameWithType: Server.ShutdownTask
  3613. - uid: Grpc.Core.Server.Start
  3614. name: Start()
  3615. href: api/Grpc.Core.Server.html#Grpc_Core_Server_Start
  3616. commentId: M:Grpc.Core.Server.Start
  3617. fullName: Grpc.Core.Server.Start()
  3618. nameWithType: Server.Start()
  3619. - uid: Grpc.Core.Server.Start*
  3620. name: Start
  3621. href: api/Grpc.Core.Server.html#Grpc_Core_Server_Start_
  3622. commentId: Overload:Grpc.Core.Server.Start
  3623. fullName: Grpc.Core.Server.Start
  3624. nameWithType: Server.Start
  3625. - uid: Grpc.Core.ServerCallContext
  3626. name: ServerCallContext
  3627. href: api/Grpc.Core.ServerCallContext.html
  3628. commentId: T:Grpc.Core.ServerCallContext
  3629. fullName: Grpc.Core.ServerCallContext
  3630. nameWithType: ServerCallContext
  3631. - uid: Grpc.Core.ServerCallContext.AuthContext
  3632. name: AuthContext
  3633. href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_AuthContext
  3634. commentId: P:Grpc.Core.ServerCallContext.AuthContext
  3635. fullName: Grpc.Core.ServerCallContext.AuthContext
  3636. nameWithType: ServerCallContext.AuthContext
  3637. - uid: Grpc.Core.ServerCallContext.AuthContext*
  3638. name: AuthContext
  3639. href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_AuthContext_
  3640. commentId: Overload:Grpc.Core.ServerCallContext.AuthContext
  3641. fullName: Grpc.Core.ServerCallContext.AuthContext
  3642. nameWithType: ServerCallContext.AuthContext
  3643. - uid: Grpc.Core.ServerCallContext.CancellationToken
  3644. name: CancellationToken
  3645. href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_CancellationToken
  3646. commentId: P:Grpc.Core.ServerCallContext.CancellationToken
  3647. fullName: Grpc.Core.ServerCallContext.CancellationToken
  3648. nameWithType: ServerCallContext.CancellationToken
  3649. - uid: Grpc.Core.ServerCallContext.CancellationToken*
  3650. name: CancellationToken
  3651. href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_CancellationToken_
  3652. commentId: Overload:Grpc.Core.ServerCallContext.CancellationToken
  3653. fullName: Grpc.Core.ServerCallContext.CancellationToken
  3654. nameWithType: ServerCallContext.CancellationToken
  3655. - uid: Grpc.Core.ServerCallContext.CreatePropagationToken(Grpc.Core.ContextPropagationOptions)
  3656. name: CreatePropagationToken(ContextPropagationOptions)
  3657. href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_CreatePropagationToken_Grpc_Core_ContextPropagationOptions_
  3658. commentId: M:Grpc.Core.ServerCallContext.CreatePropagationToken(Grpc.Core.ContextPropagationOptions)
  3659. fullName: Grpc.Core.ServerCallContext.CreatePropagationToken(Grpc.Core.ContextPropagationOptions)
  3660. nameWithType: ServerCallContext.CreatePropagationToken(ContextPropagationOptions)
  3661. - uid: Grpc.Core.ServerCallContext.CreatePropagationToken*
  3662. name: CreatePropagationToken
  3663. href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_CreatePropagationToken_
  3664. commentId: Overload:Grpc.Core.ServerCallContext.CreatePropagationToken
  3665. fullName: Grpc.Core.ServerCallContext.CreatePropagationToken
  3666. nameWithType: ServerCallContext.CreatePropagationToken
  3667. - uid: Grpc.Core.ServerCallContext.Deadline
  3668. name: Deadline
  3669. href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_Deadline
  3670. commentId: P:Grpc.Core.ServerCallContext.Deadline
  3671. fullName: Grpc.Core.ServerCallContext.Deadline
  3672. nameWithType: ServerCallContext.Deadline
  3673. - uid: Grpc.Core.ServerCallContext.Deadline*
  3674. name: Deadline
  3675. href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_Deadline_
  3676. commentId: Overload:Grpc.Core.ServerCallContext.Deadline
  3677. fullName: Grpc.Core.ServerCallContext.Deadline
  3678. nameWithType: ServerCallContext.Deadline
  3679. - uid: Grpc.Core.ServerCallContext.Host
  3680. name: Host
  3681. href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_Host
  3682. commentId: P:Grpc.Core.ServerCallContext.Host
  3683. fullName: Grpc.Core.ServerCallContext.Host
  3684. nameWithType: ServerCallContext.Host
  3685. - uid: Grpc.Core.ServerCallContext.Host*
  3686. name: Host
  3687. href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_Host_
  3688. commentId: Overload:Grpc.Core.ServerCallContext.Host
  3689. fullName: Grpc.Core.ServerCallContext.Host
  3690. nameWithType: ServerCallContext.Host
  3691. - uid: Grpc.Core.ServerCallContext.Method
  3692. name: Method
  3693. href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_Method
  3694. commentId: P:Grpc.Core.ServerCallContext.Method
  3695. fullName: Grpc.Core.ServerCallContext.Method
  3696. nameWithType: ServerCallContext.Method
  3697. - uid: Grpc.Core.ServerCallContext.Method*
  3698. name: Method
  3699. href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_Method_
  3700. commentId: Overload:Grpc.Core.ServerCallContext.Method
  3701. fullName: Grpc.Core.ServerCallContext.Method
  3702. nameWithType: ServerCallContext.Method
  3703. - uid: Grpc.Core.ServerCallContext.Peer
  3704. name: Peer
  3705. href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_Peer
  3706. commentId: P:Grpc.Core.ServerCallContext.Peer
  3707. fullName: Grpc.Core.ServerCallContext.Peer
  3708. nameWithType: ServerCallContext.Peer
  3709. - uid: Grpc.Core.ServerCallContext.Peer*
  3710. name: Peer
  3711. href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_Peer_
  3712. commentId: Overload:Grpc.Core.ServerCallContext.Peer
  3713. fullName: Grpc.Core.ServerCallContext.Peer
  3714. nameWithType: ServerCallContext.Peer
  3715. - uid: Grpc.Core.ServerCallContext.RequestHeaders
  3716. name: RequestHeaders
  3717. href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_RequestHeaders
  3718. commentId: P:Grpc.Core.ServerCallContext.RequestHeaders
  3719. fullName: Grpc.Core.ServerCallContext.RequestHeaders
  3720. nameWithType: ServerCallContext.RequestHeaders
  3721. - uid: Grpc.Core.ServerCallContext.RequestHeaders*
  3722. name: RequestHeaders
  3723. href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_RequestHeaders_
  3724. commentId: Overload:Grpc.Core.ServerCallContext.RequestHeaders
  3725. fullName: Grpc.Core.ServerCallContext.RequestHeaders
  3726. nameWithType: ServerCallContext.RequestHeaders
  3727. - uid: Grpc.Core.ServerCallContext.ResponseTrailers
  3728. name: ResponseTrailers
  3729. href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_ResponseTrailers
  3730. commentId: P:Grpc.Core.ServerCallContext.ResponseTrailers
  3731. fullName: Grpc.Core.ServerCallContext.ResponseTrailers
  3732. nameWithType: ServerCallContext.ResponseTrailers
  3733. - uid: Grpc.Core.ServerCallContext.ResponseTrailers*
  3734. name: ResponseTrailers
  3735. href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_ResponseTrailers_
  3736. commentId: Overload:Grpc.Core.ServerCallContext.ResponseTrailers
  3737. fullName: Grpc.Core.ServerCallContext.ResponseTrailers
  3738. nameWithType: ServerCallContext.ResponseTrailers
  3739. - uid: Grpc.Core.ServerCallContext.Status
  3740. name: Status
  3741. href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_Status
  3742. commentId: P:Grpc.Core.ServerCallContext.Status
  3743. fullName: Grpc.Core.ServerCallContext.Status
  3744. nameWithType: ServerCallContext.Status
  3745. - uid: Grpc.Core.ServerCallContext.Status*
  3746. name: Status
  3747. href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_Status_
  3748. commentId: Overload:Grpc.Core.ServerCallContext.Status
  3749. fullName: Grpc.Core.ServerCallContext.Status
  3750. nameWithType: ServerCallContext.Status
  3751. - uid: Grpc.Core.ServerCallContext.WriteOptions
  3752. name: WriteOptions
  3753. href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_WriteOptions
  3754. commentId: P:Grpc.Core.ServerCallContext.WriteOptions
  3755. fullName: Grpc.Core.ServerCallContext.WriteOptions
  3756. nameWithType: ServerCallContext.WriteOptions
  3757. - uid: Grpc.Core.ServerCallContext.WriteOptions*
  3758. name: WriteOptions
  3759. href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_WriteOptions_
  3760. commentId: Overload:Grpc.Core.ServerCallContext.WriteOptions
  3761. fullName: Grpc.Core.ServerCallContext.WriteOptions
  3762. nameWithType: ServerCallContext.WriteOptions
  3763. - uid: Grpc.Core.ServerCallContext.WriteResponseHeadersAsync(Grpc.Core.Metadata)
  3764. name: WriteResponseHeadersAsync(Metadata)
  3765. href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_WriteResponseHeadersAsync_Grpc_Core_Metadata_
  3766. commentId: M:Grpc.Core.ServerCallContext.WriteResponseHeadersAsync(Grpc.Core.Metadata)
  3767. fullName: Grpc.Core.ServerCallContext.WriteResponseHeadersAsync(Grpc.Core.Metadata)
  3768. nameWithType: ServerCallContext.WriteResponseHeadersAsync(Metadata)
  3769. - uid: Grpc.Core.ServerCallContext.WriteResponseHeadersAsync*
  3770. name: WriteResponseHeadersAsync
  3771. href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_WriteResponseHeadersAsync_
  3772. commentId: Overload:Grpc.Core.ServerCallContext.WriteResponseHeadersAsync
  3773. fullName: Grpc.Core.ServerCallContext.WriteResponseHeadersAsync
  3774. nameWithType: ServerCallContext.WriteResponseHeadersAsync
  3775. - uid: Grpc.Core.ServerCredentials
  3776. name: ServerCredentials
  3777. href: api/Grpc.Core.ServerCredentials.html
  3778. commentId: T:Grpc.Core.ServerCredentials
  3779. fullName: Grpc.Core.ServerCredentials
  3780. nameWithType: ServerCredentials
  3781. - uid: Grpc.Core.ServerCredentials.Insecure
  3782. name: Insecure
  3783. href: api/Grpc.Core.ServerCredentials.html#Grpc_Core_ServerCredentials_Insecure
  3784. commentId: P:Grpc.Core.ServerCredentials.Insecure
  3785. fullName: Grpc.Core.ServerCredentials.Insecure
  3786. nameWithType: ServerCredentials.Insecure
  3787. - uid: Grpc.Core.ServerCredentials.Insecure*
  3788. name: Insecure
  3789. href: api/Grpc.Core.ServerCredentials.html#Grpc_Core_ServerCredentials_Insecure_
  3790. commentId: Overload:Grpc.Core.ServerCredentials.Insecure
  3791. fullName: Grpc.Core.ServerCredentials.Insecure
  3792. nameWithType: ServerCredentials.Insecure
  3793. - uid: Grpc.Core.ServerPort
  3794. name: ServerPort
  3795. href: api/Grpc.Core.ServerPort.html
  3796. commentId: T:Grpc.Core.ServerPort
  3797. fullName: Grpc.Core.ServerPort
  3798. nameWithType: ServerPort
  3799. - uid: Grpc.Core.ServerPort.#ctor(System.String,System.Int32,Grpc.Core.ServerCredentials)
  3800. name: ServerPort(String, Int32, ServerCredentials)
  3801. href: api/Grpc.Core.ServerPort.html#Grpc_Core_ServerPort__ctor_System_String_System_Int32_Grpc_Core_ServerCredentials_
  3802. commentId: M:Grpc.Core.ServerPort.#ctor(System.String,System.Int32,Grpc.Core.ServerCredentials)
  3803. fullName: Grpc.Core.ServerPort.ServerPort(System.String, System.Int32, Grpc.Core.ServerCredentials)
  3804. nameWithType: ServerPort.ServerPort(String, Int32, ServerCredentials)
  3805. - uid: Grpc.Core.ServerPort.#ctor*
  3806. name: ServerPort
  3807. href: api/Grpc.Core.ServerPort.html#Grpc_Core_ServerPort__ctor_
  3808. commentId: Overload:Grpc.Core.ServerPort.#ctor
  3809. fullName: Grpc.Core.ServerPort.ServerPort
  3810. nameWithType: ServerPort.ServerPort
  3811. - uid: Grpc.Core.ServerPort.BoundPort
  3812. name: BoundPort
  3813. href: api/Grpc.Core.ServerPort.html#Grpc_Core_ServerPort_BoundPort
  3814. commentId: P:Grpc.Core.ServerPort.BoundPort
  3815. fullName: Grpc.Core.ServerPort.BoundPort
  3816. nameWithType: ServerPort.BoundPort
  3817. - uid: Grpc.Core.ServerPort.BoundPort*
  3818. name: BoundPort
  3819. href: api/Grpc.Core.ServerPort.html#Grpc_Core_ServerPort_BoundPort_
  3820. commentId: Overload:Grpc.Core.ServerPort.BoundPort
  3821. fullName: Grpc.Core.ServerPort.BoundPort
  3822. nameWithType: ServerPort.BoundPort
  3823. - uid: Grpc.Core.ServerPort.Credentials
  3824. name: Credentials
  3825. href: api/Grpc.Core.ServerPort.html#Grpc_Core_ServerPort_Credentials
  3826. commentId: P:Grpc.Core.ServerPort.Credentials
  3827. fullName: Grpc.Core.ServerPort.Credentials
  3828. nameWithType: ServerPort.Credentials
  3829. - uid: Grpc.Core.ServerPort.Credentials*
  3830. name: Credentials
  3831. href: api/Grpc.Core.ServerPort.html#Grpc_Core_ServerPort_Credentials_
  3832. commentId: Overload:Grpc.Core.ServerPort.Credentials
  3833. fullName: Grpc.Core.ServerPort.Credentials
  3834. nameWithType: ServerPort.Credentials
  3835. - uid: Grpc.Core.ServerPort.Host
  3836. name: Host
  3837. href: api/Grpc.Core.ServerPort.html#Grpc_Core_ServerPort_Host
  3838. commentId: P:Grpc.Core.ServerPort.Host
  3839. fullName: Grpc.Core.ServerPort.Host
  3840. nameWithType: ServerPort.Host
  3841. - uid: Grpc.Core.ServerPort.Host*
  3842. name: Host
  3843. href: api/Grpc.Core.ServerPort.html#Grpc_Core_ServerPort_Host_
  3844. commentId: Overload:Grpc.Core.ServerPort.Host
  3845. fullName: Grpc.Core.ServerPort.Host
  3846. nameWithType: ServerPort.Host
  3847. - uid: Grpc.Core.ServerPort.PickUnused
  3848. name: PickUnused
  3849. href: api/Grpc.Core.ServerPort.html#Grpc_Core_ServerPort_PickUnused
  3850. commentId: F:Grpc.Core.ServerPort.PickUnused
  3851. fullName: Grpc.Core.ServerPort.PickUnused
  3852. nameWithType: ServerPort.PickUnused
  3853. - uid: Grpc.Core.ServerPort.Port
  3854. name: Port
  3855. href: api/Grpc.Core.ServerPort.html#Grpc_Core_ServerPort_Port
  3856. commentId: P:Grpc.Core.ServerPort.Port
  3857. fullName: Grpc.Core.ServerPort.Port
  3858. nameWithType: ServerPort.Port
  3859. - uid: Grpc.Core.ServerPort.Port*
  3860. name: Port
  3861. href: api/Grpc.Core.ServerPort.html#Grpc_Core_ServerPort_Port_
  3862. commentId: Overload:Grpc.Core.ServerPort.Port
  3863. fullName: Grpc.Core.ServerPort.Port
  3864. nameWithType: ServerPort.Port
  3865. - uid: Grpc.Core.ServerServiceDefinition
  3866. name: ServerServiceDefinition
  3867. href: api/Grpc.Core.ServerServiceDefinition.html
  3868. commentId: T:Grpc.Core.ServerServiceDefinition
  3869. fullName: Grpc.Core.ServerServiceDefinition
  3870. nameWithType: ServerServiceDefinition
  3871. - uid: Grpc.Core.ServerServiceDefinition.Builder
  3872. name: ServerServiceDefinition.Builder
  3873. href: api/Grpc.Core.ServerServiceDefinition.Builder.html
  3874. commentId: T:Grpc.Core.ServerServiceDefinition.Builder
  3875. fullName: Grpc.Core.ServerServiceDefinition.Builder
  3876. nameWithType: ServerServiceDefinition.Builder
  3877. - uid: Grpc.Core.ServerServiceDefinition.Builder.#ctor
  3878. name: Builder()
  3879. href: api/Grpc.Core.ServerServiceDefinition.Builder.html#Grpc_Core_ServerServiceDefinition_Builder__ctor
  3880. commentId: M:Grpc.Core.ServerServiceDefinition.Builder.#ctor
  3881. fullName: Grpc.Core.ServerServiceDefinition.Builder.Builder()
  3882. nameWithType: ServerServiceDefinition.Builder.Builder()
  3883. - uid: Grpc.Core.ServerServiceDefinition.Builder.#ctor*
  3884. name: Builder
  3885. href: api/Grpc.Core.ServerServiceDefinition.Builder.html#Grpc_Core_ServerServiceDefinition_Builder__ctor_
  3886. commentId: Overload:Grpc.Core.ServerServiceDefinition.Builder.#ctor
  3887. fullName: Grpc.Core.ServerServiceDefinition.Builder.Builder
  3888. nameWithType: ServerServiceDefinition.Builder.Builder
  3889. - uid: Grpc.Core.ServerServiceDefinition.Builder.AddMethod*
  3890. name: AddMethod
  3891. href: api/Grpc.Core.ServerServiceDefinition.Builder.html#Grpc_Core_ServerServiceDefinition_Builder_AddMethod_
  3892. commentId: Overload:Grpc.Core.ServerServiceDefinition.Builder.AddMethod
  3893. fullName: Grpc.Core.ServerServiceDefinition.Builder.AddMethod
  3894. nameWithType: ServerServiceDefinition.Builder.AddMethod
  3895. - uid: Grpc.Core.ServerServiceDefinition.Builder.AddMethod``2(Grpc.Core.Method{``0,``1},Grpc.Core.ClientStreamingServerMethod{``0,``1})
  3896. name: AddMethod<TRequest, TResponse>(Method<TRequest, TResponse>, ClientStreamingServerMethod<TRequest, TResponse>)
  3897. href: api/Grpc.Core.ServerServiceDefinition.Builder.html#Grpc_Core_ServerServiceDefinition_Builder_AddMethod__2_Grpc_Core_Method___0___1__Grpc_Core_ClientStreamingServerMethod___0___1__
  3898. commentId: M:Grpc.Core.ServerServiceDefinition.Builder.AddMethod``2(Grpc.Core.Method{``0,``1},Grpc.Core.ClientStreamingServerMethod{``0,``1})
  3899. name.vb: AddMethod(Of TRequest, TResponse)(Method(Of TRequest, TResponse), ClientStreamingServerMethod(Of TRequest, TResponse))
  3900. fullName: Grpc.Core.ServerServiceDefinition.Builder.AddMethod<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, Grpc.Core.ClientStreamingServerMethod<TRequest, TResponse>)
  3901. fullName.vb: Grpc.Core.ServerServiceDefinition.Builder.AddMethod(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), Grpc.Core.ClientStreamingServerMethod(Of TRequest, TResponse))
  3902. nameWithType: ServerServiceDefinition.Builder.AddMethod<TRequest, TResponse>(Method<TRequest, TResponse>, ClientStreamingServerMethod<TRequest, TResponse>)
  3903. nameWithType.vb: ServerServiceDefinition.Builder.AddMethod(Of TRequest, TResponse)(Method(Of TRequest, TResponse), ClientStreamingServerMethod(Of TRequest, TResponse))
  3904. - uid: Grpc.Core.ServerServiceDefinition.Builder.AddMethod``2(Grpc.Core.Method{``0,``1},Grpc.Core.DuplexStreamingServerMethod{``0,``1})
  3905. name: AddMethod<TRequest, TResponse>(Method<TRequest, TResponse>, DuplexStreamingServerMethod<TRequest, TResponse>)
  3906. href: api/Grpc.Core.ServerServiceDefinition.Builder.html#Grpc_Core_ServerServiceDefinition_Builder_AddMethod__2_Grpc_Core_Method___0___1__Grpc_Core_DuplexStreamingServerMethod___0___1__
  3907. commentId: M:Grpc.Core.ServerServiceDefinition.Builder.AddMethod``2(Grpc.Core.Method{``0,``1},Grpc.Core.DuplexStreamingServerMethod{``0,``1})
  3908. name.vb: AddMethod(Of TRequest, TResponse)(Method(Of TRequest, TResponse), DuplexStreamingServerMethod(Of TRequest, TResponse))
  3909. fullName: Grpc.Core.ServerServiceDefinition.Builder.AddMethod<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, Grpc.Core.DuplexStreamingServerMethod<TRequest, TResponse>)
  3910. fullName.vb: Grpc.Core.ServerServiceDefinition.Builder.AddMethod(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), Grpc.Core.DuplexStreamingServerMethod(Of TRequest, TResponse))
  3911. nameWithType: ServerServiceDefinition.Builder.AddMethod<TRequest, TResponse>(Method<TRequest, TResponse>, DuplexStreamingServerMethod<TRequest, TResponse>)
  3912. nameWithType.vb: ServerServiceDefinition.Builder.AddMethod(Of TRequest, TResponse)(Method(Of TRequest, TResponse), DuplexStreamingServerMethod(Of TRequest, TResponse))
  3913. - uid: Grpc.Core.ServerServiceDefinition.Builder.AddMethod``2(Grpc.Core.Method{``0,``1},Grpc.Core.ServerStreamingServerMethod{``0,``1})
  3914. name: AddMethod<TRequest, TResponse>(Method<TRequest, TResponse>, ServerStreamingServerMethod<TRequest, TResponse>)
  3915. href: api/Grpc.Core.ServerServiceDefinition.Builder.html#Grpc_Core_ServerServiceDefinition_Builder_AddMethod__2_Grpc_Core_Method___0___1__Grpc_Core_ServerStreamingServerMethod___0___1__
  3916. commentId: M:Grpc.Core.ServerServiceDefinition.Builder.AddMethod``2(Grpc.Core.Method{``0,``1},Grpc.Core.ServerStreamingServerMethod{``0,``1})
  3917. name.vb: AddMethod(Of TRequest, TResponse)(Method(Of TRequest, TResponse), ServerStreamingServerMethod(Of TRequest, TResponse))
  3918. fullName: Grpc.Core.ServerServiceDefinition.Builder.AddMethod<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, Grpc.Core.ServerStreamingServerMethod<TRequest, TResponse>)
  3919. fullName.vb: Grpc.Core.ServerServiceDefinition.Builder.AddMethod(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), Grpc.Core.ServerStreamingServerMethod(Of TRequest, TResponse))
  3920. nameWithType: ServerServiceDefinition.Builder.AddMethod<TRequest, TResponse>(Method<TRequest, TResponse>, ServerStreamingServerMethod<TRequest, TResponse>)
  3921. nameWithType.vb: ServerServiceDefinition.Builder.AddMethod(Of TRequest, TResponse)(Method(Of TRequest, TResponse), ServerStreamingServerMethod(Of TRequest, TResponse))
  3922. - uid: Grpc.Core.ServerServiceDefinition.Builder.AddMethod``2(Grpc.Core.Method{``0,``1},Grpc.Core.UnaryServerMethod{``0,``1})
  3923. name: AddMethod<TRequest, TResponse>(Method<TRequest, TResponse>, UnaryServerMethod<TRequest, TResponse>)
  3924. href: api/Grpc.Core.ServerServiceDefinition.Builder.html#Grpc_Core_ServerServiceDefinition_Builder_AddMethod__2_Grpc_Core_Method___0___1__Grpc_Core_UnaryServerMethod___0___1__
  3925. commentId: M:Grpc.Core.ServerServiceDefinition.Builder.AddMethod``2(Grpc.Core.Method{``0,``1},Grpc.Core.UnaryServerMethod{``0,``1})
  3926. name.vb: AddMethod(Of TRequest, TResponse)(Method(Of TRequest, TResponse), UnaryServerMethod(Of TRequest, TResponse))
  3927. fullName: Grpc.Core.ServerServiceDefinition.Builder.AddMethod<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, Grpc.Core.UnaryServerMethod<TRequest, TResponse>)
  3928. fullName.vb: Grpc.Core.ServerServiceDefinition.Builder.AddMethod(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), Grpc.Core.UnaryServerMethod(Of TRequest, TResponse))
  3929. nameWithType: ServerServiceDefinition.Builder.AddMethod<TRequest, TResponse>(Method<TRequest, TResponse>, UnaryServerMethod<TRequest, TResponse>)
  3930. nameWithType.vb: ServerServiceDefinition.Builder.AddMethod(Of TRequest, TResponse)(Method(Of TRequest, TResponse), UnaryServerMethod(Of TRequest, TResponse))
  3931. - uid: Grpc.Core.ServerServiceDefinition.Builder.Build
  3932. name: Build()
  3933. href: api/Grpc.Core.ServerServiceDefinition.Builder.html#Grpc_Core_ServerServiceDefinition_Builder_Build
  3934. commentId: M:Grpc.Core.ServerServiceDefinition.Builder.Build
  3935. fullName: Grpc.Core.ServerServiceDefinition.Builder.Build()
  3936. nameWithType: ServerServiceDefinition.Builder.Build()
  3937. - uid: Grpc.Core.ServerServiceDefinition.Builder.Build*
  3938. name: Build
  3939. href: api/Grpc.Core.ServerServiceDefinition.Builder.html#Grpc_Core_ServerServiceDefinition_Builder_Build_
  3940. commentId: Overload:Grpc.Core.ServerServiceDefinition.Builder.Build
  3941. fullName: Grpc.Core.ServerServiceDefinition.Builder.Build
  3942. nameWithType: ServerServiceDefinition.Builder.Build
  3943. - uid: Grpc.Core.ServerServiceDefinition.CreateBuilder
  3944. name: CreateBuilder()
  3945. href: api/Grpc.Core.ServerServiceDefinition.html#Grpc_Core_ServerServiceDefinition_CreateBuilder
  3946. commentId: M:Grpc.Core.ServerServiceDefinition.CreateBuilder
  3947. fullName: Grpc.Core.ServerServiceDefinition.CreateBuilder()
  3948. nameWithType: ServerServiceDefinition.CreateBuilder()
  3949. - uid: Grpc.Core.ServerServiceDefinition.CreateBuilder*
  3950. name: CreateBuilder
  3951. href: api/Grpc.Core.ServerServiceDefinition.html#Grpc_Core_ServerServiceDefinition_CreateBuilder_
  3952. commentId: Overload:Grpc.Core.ServerServiceDefinition.CreateBuilder
  3953. fullName: Grpc.Core.ServerServiceDefinition.CreateBuilder
  3954. nameWithType: ServerServiceDefinition.CreateBuilder
  3955. - uid: Grpc.Core.ServerStreamingServerMethod`2
  3956. name: ServerStreamingServerMethod<TRequest, TResponse>
  3957. href: api/Grpc.Core.ServerStreamingServerMethod-2.html
  3958. commentId: T:Grpc.Core.ServerStreamingServerMethod`2
  3959. name.vb: ServerStreamingServerMethod(Of TRequest, TResponse)
  3960. fullName: Grpc.Core.ServerStreamingServerMethod<TRequest, TResponse>
  3961. fullName.vb: Grpc.Core.ServerStreamingServerMethod(Of TRequest, TResponse)
  3962. nameWithType: ServerStreamingServerMethod<TRequest, TResponse>
  3963. nameWithType.vb: ServerStreamingServerMethod(Of TRequest, TResponse)
  3964. - uid: Grpc.Core.SslCredentials
  3965. name: SslCredentials
  3966. href: api/Grpc.Core.SslCredentials.html
  3967. commentId: T:Grpc.Core.SslCredentials
  3968. fullName: Grpc.Core.SslCredentials
  3969. nameWithType: SslCredentials
  3970. - uid: Grpc.Core.SslCredentials.#ctor
  3971. name: SslCredentials()
  3972. href: api/Grpc.Core.SslCredentials.html#Grpc_Core_SslCredentials__ctor
  3973. commentId: M:Grpc.Core.SslCredentials.#ctor
  3974. fullName: Grpc.Core.SslCredentials.SslCredentials()
  3975. nameWithType: SslCredentials.SslCredentials()
  3976. - uid: Grpc.Core.SslCredentials.#ctor(System.String)
  3977. name: SslCredentials(String)
  3978. href: api/Grpc.Core.SslCredentials.html#Grpc_Core_SslCredentials__ctor_System_String_
  3979. commentId: M:Grpc.Core.SslCredentials.#ctor(System.String)
  3980. fullName: Grpc.Core.SslCredentials.SslCredentials(System.String)
  3981. nameWithType: SslCredentials.SslCredentials(String)
  3982. - uid: Grpc.Core.SslCredentials.#ctor(System.String,Grpc.Core.KeyCertificatePair)
  3983. name: SslCredentials(String, KeyCertificatePair)
  3984. href: api/Grpc.Core.SslCredentials.html#Grpc_Core_SslCredentials__ctor_System_String_Grpc_Core_KeyCertificatePair_
  3985. commentId: M:Grpc.Core.SslCredentials.#ctor(System.String,Grpc.Core.KeyCertificatePair)
  3986. fullName: Grpc.Core.SslCredentials.SslCredentials(System.String, Grpc.Core.KeyCertificatePair)
  3987. nameWithType: SslCredentials.SslCredentials(String, KeyCertificatePair)
  3988. - uid: Grpc.Core.SslCredentials.#ctor*
  3989. name: SslCredentials
  3990. href: api/Grpc.Core.SslCredentials.html#Grpc_Core_SslCredentials__ctor_
  3991. commentId: Overload:Grpc.Core.SslCredentials.#ctor
  3992. fullName: Grpc.Core.SslCredentials.SslCredentials
  3993. nameWithType: SslCredentials.SslCredentials
  3994. - uid: Grpc.Core.SslCredentials.KeyCertificatePair
  3995. name: KeyCertificatePair
  3996. href: api/Grpc.Core.SslCredentials.html#Grpc_Core_SslCredentials_KeyCertificatePair
  3997. commentId: P:Grpc.Core.SslCredentials.KeyCertificatePair
  3998. fullName: Grpc.Core.SslCredentials.KeyCertificatePair
  3999. nameWithType: SslCredentials.KeyCertificatePair
  4000. - uid: Grpc.Core.SslCredentials.KeyCertificatePair*
  4001. name: KeyCertificatePair
  4002. href: api/Grpc.Core.SslCredentials.html#Grpc_Core_SslCredentials_KeyCertificatePair_
  4003. commentId: Overload:Grpc.Core.SslCredentials.KeyCertificatePair
  4004. fullName: Grpc.Core.SslCredentials.KeyCertificatePair
  4005. nameWithType: SslCredentials.KeyCertificatePair
  4006. - uid: Grpc.Core.SslCredentials.RootCertificates
  4007. name: RootCertificates
  4008. href: api/Grpc.Core.SslCredentials.html#Grpc_Core_SslCredentials_RootCertificates
  4009. commentId: P:Grpc.Core.SslCredentials.RootCertificates
  4010. fullName: Grpc.Core.SslCredentials.RootCertificates
  4011. nameWithType: SslCredentials.RootCertificates
  4012. - uid: Grpc.Core.SslCredentials.RootCertificates*
  4013. name: RootCertificates
  4014. href: api/Grpc.Core.SslCredentials.html#Grpc_Core_SslCredentials_RootCertificates_
  4015. commentId: Overload:Grpc.Core.SslCredentials.RootCertificates
  4016. fullName: Grpc.Core.SslCredentials.RootCertificates
  4017. nameWithType: SslCredentials.RootCertificates
  4018. - uid: Grpc.Core.SslServerCredentials
  4019. name: SslServerCredentials
  4020. href: api/Grpc.Core.SslServerCredentials.html
  4021. commentId: T:Grpc.Core.SslServerCredentials
  4022. fullName: Grpc.Core.SslServerCredentials
  4023. nameWithType: SslServerCredentials
  4024. - uid: Grpc.Core.SslServerCredentials.#ctor(System.Collections.Generic.IEnumerable{Grpc.Core.KeyCertificatePair})
  4025. name: SslServerCredentials(IEnumerable<KeyCertificatePair>)
  4026. href: api/Grpc.Core.SslServerCredentials.html#Grpc_Core_SslServerCredentials__ctor_System_Collections_Generic_IEnumerable_Grpc_Core_KeyCertificatePair__
  4027. commentId: M:Grpc.Core.SslServerCredentials.#ctor(System.Collections.Generic.IEnumerable{Grpc.Core.KeyCertificatePair})
  4028. name.vb: SslServerCredentials(IEnumerable(Of KeyCertificatePair))
  4029. fullName: Grpc.Core.SslServerCredentials.SslServerCredentials(System.Collections.Generic.IEnumerable<Grpc.Core.KeyCertificatePair>)
  4030. fullName.vb: Grpc.Core.SslServerCredentials.SslServerCredentials(System.Collections.Generic.IEnumerable(Of Grpc.Core.KeyCertificatePair))
  4031. nameWithType: SslServerCredentials.SslServerCredentials(IEnumerable<KeyCertificatePair>)
  4032. nameWithType.vb: SslServerCredentials.SslServerCredentials(IEnumerable(Of KeyCertificatePair))
  4033. - uid: Grpc.Core.SslServerCredentials.#ctor(System.Collections.Generic.IEnumerable{Grpc.Core.KeyCertificatePair},System.String,System.Boolean)
  4034. name: SslServerCredentials(IEnumerable<KeyCertificatePair>, String, Boolean)
  4035. href: api/Grpc.Core.SslServerCredentials.html#Grpc_Core_SslServerCredentials__ctor_System_Collections_Generic_IEnumerable_Grpc_Core_KeyCertificatePair__System_String_System_Boolean_
  4036. commentId: M:Grpc.Core.SslServerCredentials.#ctor(System.Collections.Generic.IEnumerable{Grpc.Core.KeyCertificatePair},System.String,System.Boolean)
  4037. name.vb: SslServerCredentials(IEnumerable(Of KeyCertificatePair), String, Boolean)
  4038. fullName: Grpc.Core.SslServerCredentials.SslServerCredentials(System.Collections.Generic.IEnumerable<Grpc.Core.KeyCertificatePair>, System.String, System.Boolean)
  4039. fullName.vb: Grpc.Core.SslServerCredentials.SslServerCredentials(System.Collections.Generic.IEnumerable(Of Grpc.Core.KeyCertificatePair), System.String, System.Boolean)
  4040. nameWithType: SslServerCredentials.SslServerCredentials(IEnumerable<KeyCertificatePair>, String, Boolean)
  4041. nameWithType.vb: SslServerCredentials.SslServerCredentials(IEnumerable(Of KeyCertificatePair), String, Boolean)
  4042. - uid: Grpc.Core.SslServerCredentials.#ctor*
  4043. name: SslServerCredentials
  4044. href: api/Grpc.Core.SslServerCredentials.html#Grpc_Core_SslServerCredentials__ctor_
  4045. commentId: Overload:Grpc.Core.SslServerCredentials.#ctor
  4046. fullName: Grpc.Core.SslServerCredentials.SslServerCredentials
  4047. nameWithType: SslServerCredentials.SslServerCredentials
  4048. - uid: Grpc.Core.SslServerCredentials.ForceClientAuthentication
  4049. name: ForceClientAuthentication
  4050. href: api/Grpc.Core.SslServerCredentials.html#Grpc_Core_SslServerCredentials_ForceClientAuthentication
  4051. commentId: P:Grpc.Core.SslServerCredentials.ForceClientAuthentication
  4052. fullName: Grpc.Core.SslServerCredentials.ForceClientAuthentication
  4053. nameWithType: SslServerCredentials.ForceClientAuthentication
  4054. - uid: Grpc.Core.SslServerCredentials.ForceClientAuthentication*
  4055. name: ForceClientAuthentication
  4056. href: api/Grpc.Core.SslServerCredentials.html#Grpc_Core_SslServerCredentials_ForceClientAuthentication_
  4057. commentId: Overload:Grpc.Core.SslServerCredentials.ForceClientAuthentication
  4058. fullName: Grpc.Core.SslServerCredentials.ForceClientAuthentication
  4059. nameWithType: SslServerCredentials.ForceClientAuthentication
  4060. - uid: Grpc.Core.SslServerCredentials.KeyCertificatePairs
  4061. name: KeyCertificatePairs
  4062. href: api/Grpc.Core.SslServerCredentials.html#Grpc_Core_SslServerCredentials_KeyCertificatePairs
  4063. commentId: P:Grpc.Core.SslServerCredentials.KeyCertificatePairs
  4064. fullName: Grpc.Core.SslServerCredentials.KeyCertificatePairs
  4065. nameWithType: SslServerCredentials.KeyCertificatePairs
  4066. - uid: Grpc.Core.SslServerCredentials.KeyCertificatePairs*
  4067. name: KeyCertificatePairs
  4068. href: api/Grpc.Core.SslServerCredentials.html#Grpc_Core_SslServerCredentials_KeyCertificatePairs_
  4069. commentId: Overload:Grpc.Core.SslServerCredentials.KeyCertificatePairs
  4070. fullName: Grpc.Core.SslServerCredentials.KeyCertificatePairs
  4071. nameWithType: SslServerCredentials.KeyCertificatePairs
  4072. - uid: Grpc.Core.SslServerCredentials.RootCertificates
  4073. name: RootCertificates
  4074. href: api/Grpc.Core.SslServerCredentials.html#Grpc_Core_SslServerCredentials_RootCertificates
  4075. commentId: P:Grpc.Core.SslServerCredentials.RootCertificates
  4076. fullName: Grpc.Core.SslServerCredentials.RootCertificates
  4077. nameWithType: SslServerCredentials.RootCertificates
  4078. - uid: Grpc.Core.SslServerCredentials.RootCertificates*
  4079. name: RootCertificates
  4080. href: api/Grpc.Core.SslServerCredentials.html#Grpc_Core_SslServerCredentials_RootCertificates_
  4081. commentId: Overload:Grpc.Core.SslServerCredentials.RootCertificates
  4082. fullName: Grpc.Core.SslServerCredentials.RootCertificates
  4083. nameWithType: SslServerCredentials.RootCertificates
  4084. - uid: Grpc.Core.Status
  4085. name: Status
  4086. href: api/Grpc.Core.Status.html
  4087. commentId: T:Grpc.Core.Status
  4088. fullName: Grpc.Core.Status
  4089. nameWithType: Status
  4090. - uid: Grpc.Core.Status.#ctor(Grpc.Core.StatusCode,System.String)
  4091. name: Status(StatusCode, String)
  4092. href: api/Grpc.Core.Status.html#Grpc_Core_Status__ctor_Grpc_Core_StatusCode_System_String_
  4093. commentId: M:Grpc.Core.Status.#ctor(Grpc.Core.StatusCode,System.String)
  4094. fullName: Grpc.Core.Status.Status(Grpc.Core.StatusCode, System.String)
  4095. nameWithType: Status.Status(StatusCode, String)
  4096. - uid: Grpc.Core.Status.#ctor*
  4097. name: Status
  4098. href: api/Grpc.Core.Status.html#Grpc_Core_Status__ctor_
  4099. commentId: Overload:Grpc.Core.Status.#ctor
  4100. fullName: Grpc.Core.Status.Status
  4101. nameWithType: Status.Status
  4102. - uid: Grpc.Core.Status.DefaultCancelled
  4103. name: DefaultCancelled
  4104. href: api/Grpc.Core.Status.html#Grpc_Core_Status_DefaultCancelled
  4105. commentId: F:Grpc.Core.Status.DefaultCancelled
  4106. fullName: Grpc.Core.Status.DefaultCancelled
  4107. nameWithType: Status.DefaultCancelled
  4108. - uid: Grpc.Core.Status.DefaultSuccess
  4109. name: DefaultSuccess
  4110. href: api/Grpc.Core.Status.html#Grpc_Core_Status_DefaultSuccess
  4111. commentId: F:Grpc.Core.Status.DefaultSuccess
  4112. fullName: Grpc.Core.Status.DefaultSuccess
  4113. nameWithType: Status.DefaultSuccess
  4114. - uid: Grpc.Core.Status.Detail
  4115. name: Detail
  4116. href: api/Grpc.Core.Status.html#Grpc_Core_Status_Detail
  4117. commentId: P:Grpc.Core.Status.Detail
  4118. fullName: Grpc.Core.Status.Detail
  4119. nameWithType: Status.Detail
  4120. - uid: Grpc.Core.Status.Detail*
  4121. name: Detail
  4122. href: api/Grpc.Core.Status.html#Grpc_Core_Status_Detail_
  4123. commentId: Overload:Grpc.Core.Status.Detail
  4124. fullName: Grpc.Core.Status.Detail
  4125. nameWithType: Status.Detail
  4126. - uid: Grpc.Core.Status.StatusCode
  4127. name: StatusCode
  4128. href: api/Grpc.Core.Status.html#Grpc_Core_Status_StatusCode
  4129. commentId: P:Grpc.Core.Status.StatusCode
  4130. fullName: Grpc.Core.Status.StatusCode
  4131. nameWithType: Status.StatusCode
  4132. - uid: Grpc.Core.Status.StatusCode*
  4133. name: StatusCode
  4134. href: api/Grpc.Core.Status.html#Grpc_Core_Status_StatusCode_
  4135. commentId: Overload:Grpc.Core.Status.StatusCode
  4136. fullName: Grpc.Core.Status.StatusCode
  4137. nameWithType: Status.StatusCode
  4138. - uid: Grpc.Core.Status.ToString
  4139. name: ToString()
  4140. href: api/Grpc.Core.Status.html#Grpc_Core_Status_ToString
  4141. commentId: M:Grpc.Core.Status.ToString
  4142. fullName: Grpc.Core.Status.ToString()
  4143. nameWithType: Status.ToString()
  4144. - uid: Grpc.Core.Status.ToString*
  4145. name: ToString
  4146. href: api/Grpc.Core.Status.html#Grpc_Core_Status_ToString_
  4147. commentId: Overload:Grpc.Core.Status.ToString
  4148. fullName: Grpc.Core.Status.ToString
  4149. nameWithType: Status.ToString
  4150. - uid: Grpc.Core.StatusCode
  4151. name: StatusCode
  4152. href: api/Grpc.Core.StatusCode.html
  4153. commentId: T:Grpc.Core.StatusCode
  4154. fullName: Grpc.Core.StatusCode
  4155. nameWithType: StatusCode
  4156. - uid: Grpc.Core.StatusCode.Aborted
  4157. name: Aborted
  4158. href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_Aborted
  4159. commentId: F:Grpc.Core.StatusCode.Aborted
  4160. fullName: Grpc.Core.StatusCode.Aborted
  4161. nameWithType: StatusCode.Aborted
  4162. - uid: Grpc.Core.StatusCode.AlreadyExists
  4163. name: AlreadyExists
  4164. href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_AlreadyExists
  4165. commentId: F:Grpc.Core.StatusCode.AlreadyExists
  4166. fullName: Grpc.Core.StatusCode.AlreadyExists
  4167. nameWithType: StatusCode.AlreadyExists
  4168. - uid: Grpc.Core.StatusCode.Cancelled
  4169. name: Cancelled
  4170. href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_Cancelled
  4171. commentId: F:Grpc.Core.StatusCode.Cancelled
  4172. fullName: Grpc.Core.StatusCode.Cancelled
  4173. nameWithType: StatusCode.Cancelled
  4174. - uid: Grpc.Core.StatusCode.DataLoss
  4175. name: DataLoss
  4176. href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_DataLoss
  4177. commentId: F:Grpc.Core.StatusCode.DataLoss
  4178. fullName: Grpc.Core.StatusCode.DataLoss
  4179. nameWithType: StatusCode.DataLoss
  4180. - uid: Grpc.Core.StatusCode.DeadlineExceeded
  4181. name: DeadlineExceeded
  4182. href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_DeadlineExceeded
  4183. commentId: F:Grpc.Core.StatusCode.DeadlineExceeded
  4184. fullName: Grpc.Core.StatusCode.DeadlineExceeded
  4185. nameWithType: StatusCode.DeadlineExceeded
  4186. - uid: Grpc.Core.StatusCode.FailedPrecondition
  4187. name: FailedPrecondition
  4188. href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_FailedPrecondition
  4189. commentId: F:Grpc.Core.StatusCode.FailedPrecondition
  4190. fullName: Grpc.Core.StatusCode.FailedPrecondition
  4191. nameWithType: StatusCode.FailedPrecondition
  4192. - uid: Grpc.Core.StatusCode.Internal
  4193. name: Internal
  4194. href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_Internal
  4195. commentId: F:Grpc.Core.StatusCode.Internal
  4196. fullName: Grpc.Core.StatusCode.Internal
  4197. nameWithType: StatusCode.Internal
  4198. - uid: Grpc.Core.StatusCode.InvalidArgument
  4199. name: InvalidArgument
  4200. href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_InvalidArgument
  4201. commentId: F:Grpc.Core.StatusCode.InvalidArgument
  4202. fullName: Grpc.Core.StatusCode.InvalidArgument
  4203. nameWithType: StatusCode.InvalidArgument
  4204. - uid: Grpc.Core.StatusCode.NotFound
  4205. name: NotFound
  4206. href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_NotFound
  4207. commentId: F:Grpc.Core.StatusCode.NotFound
  4208. fullName: Grpc.Core.StatusCode.NotFound
  4209. nameWithType: StatusCode.NotFound
  4210. - uid: Grpc.Core.StatusCode.OK
  4211. name: OK
  4212. href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_OK
  4213. commentId: F:Grpc.Core.StatusCode.OK
  4214. fullName: Grpc.Core.StatusCode.OK
  4215. nameWithType: StatusCode.OK
  4216. - uid: Grpc.Core.StatusCode.OutOfRange
  4217. name: OutOfRange
  4218. href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_OutOfRange
  4219. commentId: F:Grpc.Core.StatusCode.OutOfRange
  4220. fullName: Grpc.Core.StatusCode.OutOfRange
  4221. nameWithType: StatusCode.OutOfRange
  4222. - uid: Grpc.Core.StatusCode.PermissionDenied
  4223. name: PermissionDenied
  4224. href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_PermissionDenied
  4225. commentId: F:Grpc.Core.StatusCode.PermissionDenied
  4226. fullName: Grpc.Core.StatusCode.PermissionDenied
  4227. nameWithType: StatusCode.PermissionDenied
  4228. - uid: Grpc.Core.StatusCode.ResourceExhausted
  4229. name: ResourceExhausted
  4230. href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_ResourceExhausted
  4231. commentId: F:Grpc.Core.StatusCode.ResourceExhausted
  4232. fullName: Grpc.Core.StatusCode.ResourceExhausted
  4233. nameWithType: StatusCode.ResourceExhausted
  4234. - uid: Grpc.Core.StatusCode.Unauthenticated
  4235. name: Unauthenticated
  4236. href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_Unauthenticated
  4237. commentId: F:Grpc.Core.StatusCode.Unauthenticated
  4238. fullName: Grpc.Core.StatusCode.Unauthenticated
  4239. nameWithType: StatusCode.Unauthenticated
  4240. - uid: Grpc.Core.StatusCode.Unavailable
  4241. name: Unavailable
  4242. href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_Unavailable
  4243. commentId: F:Grpc.Core.StatusCode.Unavailable
  4244. fullName: Grpc.Core.StatusCode.Unavailable
  4245. nameWithType: StatusCode.Unavailable
  4246. - uid: Grpc.Core.StatusCode.Unimplemented
  4247. name: Unimplemented
  4248. href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_Unimplemented
  4249. commentId: F:Grpc.Core.StatusCode.Unimplemented
  4250. fullName: Grpc.Core.StatusCode.Unimplemented
  4251. nameWithType: StatusCode.Unimplemented
  4252. - uid: Grpc.Core.StatusCode.Unknown
  4253. name: Unknown
  4254. href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_Unknown
  4255. commentId: F:Grpc.Core.StatusCode.Unknown
  4256. fullName: Grpc.Core.StatusCode.Unknown
  4257. nameWithType: StatusCode.Unknown
  4258. - uid: Grpc.Core.Testing
  4259. name: Grpc.Core.Testing
  4260. href: api/Grpc.Core.Testing.html
  4261. commentId: N:Grpc.Core.Testing
  4262. fullName: Grpc.Core.Testing
  4263. nameWithType: Grpc.Core.Testing
  4264. - uid: Grpc.Core.Testing.TestCalls
  4265. name: TestCalls
  4266. href: api/Grpc.Core.Testing.TestCalls.html
  4267. commentId: T:Grpc.Core.Testing.TestCalls
  4268. fullName: Grpc.Core.Testing.TestCalls
  4269. nameWithType: TestCalls
  4270. - uid: Grpc.Core.Testing.TestCalls.AsyncClientStreamingCall*
  4271. name: AsyncClientStreamingCall
  4272. href: api/Grpc.Core.Testing.TestCalls.html#Grpc_Core_Testing_TestCalls_AsyncClientStreamingCall_
  4273. commentId: Overload:Grpc.Core.Testing.TestCalls.AsyncClientStreamingCall
  4274. fullName: Grpc.Core.Testing.TestCalls.AsyncClientStreamingCall
  4275. nameWithType: TestCalls.AsyncClientStreamingCall
  4276. - uid: Grpc.Core.Testing.TestCalls.AsyncClientStreamingCall``2(Grpc.Core.IClientStreamWriter{``0},System.Threading.Tasks.Task{``1},System.Threading.Tasks.Task{Grpc.Core.Metadata},System.Func{Grpc.Core.Status},System.Func{Grpc.Core.Metadata},System.Action)
  4277. name: AsyncClientStreamingCall<TRequest, TResponse>(IClientStreamWriter<TRequest>, Task<TResponse>, Task<Metadata>, Func<Status>, Func<Metadata>, Action)
  4278. href: api/Grpc.Core.Testing.TestCalls.html#Grpc_Core_Testing_TestCalls_AsyncClientStreamingCall__2_Grpc_Core_IClientStreamWriter___0__System_Threading_Tasks_Task___1__System_Threading_Tasks_Task_Grpc_Core_Metadata__System_Func_Grpc_Core_Status__System_Func_Grpc_Core_Metadata__System_Action_
  4279. commentId: M:Grpc.Core.Testing.TestCalls.AsyncClientStreamingCall``2(Grpc.Core.IClientStreamWriter{``0},System.Threading.Tasks.Task{``1},System.Threading.Tasks.Task{Grpc.Core.Metadata},System.Func{Grpc.Core.Status},System.Func{Grpc.Core.Metadata},System.Action)
  4280. name.vb: AsyncClientStreamingCall(Of TRequest, TResponse)(IClientStreamWriter(Of TRequest), Task(Of TResponse), Task(Of Metadata), Func(Of Status), Func(Of Metadata), Action)
  4281. fullName: Grpc.Core.Testing.TestCalls.AsyncClientStreamingCall<TRequest, TResponse>(Grpc.Core.IClientStreamWriter<TRequest>, System.Threading.Tasks.Task<TResponse>, System.Threading.Tasks.Task<Grpc.Core.Metadata>, System.Func<Grpc.Core.Status>, System.Func<Grpc.Core.Metadata>, System.Action)
  4282. fullName.vb: Grpc.Core.Testing.TestCalls.AsyncClientStreamingCall(Of TRequest, TResponse)(Grpc.Core.IClientStreamWriter(Of TRequest), System.Threading.Tasks.Task(Of TResponse), System.Threading.Tasks.Task(Of Grpc.Core.Metadata), System.Func(Of Grpc.Core.Status), System.Func(Of Grpc.Core.Metadata), System.Action)
  4283. nameWithType: TestCalls.AsyncClientStreamingCall<TRequest, TResponse>(IClientStreamWriter<TRequest>, Task<TResponse>, Task<Metadata>, Func<Status>, Func<Metadata>, Action)
  4284. nameWithType.vb: TestCalls.AsyncClientStreamingCall(Of TRequest, TResponse)(IClientStreamWriter(Of TRequest), Task(Of TResponse), Task(Of Metadata), Func(Of Status), Func(Of Metadata), Action)
  4285. - uid: Grpc.Core.Testing.TestCalls.AsyncDuplexStreamingCall*
  4286. name: AsyncDuplexStreamingCall
  4287. href: api/Grpc.Core.Testing.TestCalls.html#Grpc_Core_Testing_TestCalls_AsyncDuplexStreamingCall_
  4288. commentId: Overload:Grpc.Core.Testing.TestCalls.AsyncDuplexStreamingCall
  4289. fullName: Grpc.Core.Testing.TestCalls.AsyncDuplexStreamingCall
  4290. nameWithType: TestCalls.AsyncDuplexStreamingCall
  4291. - uid: Grpc.Core.Testing.TestCalls.AsyncDuplexStreamingCall``2(Grpc.Core.IClientStreamWriter{``1},Grpc.Core.IAsyncStreamReader{``0},System.Threading.Tasks.Task{Grpc.Core.Metadata},System.Func{Grpc.Core.Status},System.Func{Grpc.Core.Metadata},System.Action)
  4292. name: AsyncDuplexStreamingCall<TResponse, TRequest>(IClientStreamWriter<TRequest>, IAsyncStreamReader<TResponse>, Task<Metadata>, Func<Status>, Func<Metadata>, Action)
  4293. href: api/Grpc.Core.Testing.TestCalls.html#Grpc_Core_Testing_TestCalls_AsyncDuplexStreamingCall__2_Grpc_Core_IClientStreamWriter___1__Grpc_Core_IAsyncStreamReader___0__System_Threading_Tasks_Task_Grpc_Core_Metadata__System_Func_Grpc_Core_Status__System_Func_Grpc_Core_Metadata__System_Action_
  4294. commentId: M:Grpc.Core.Testing.TestCalls.AsyncDuplexStreamingCall``2(Grpc.Core.IClientStreamWriter{``1},Grpc.Core.IAsyncStreamReader{``0},System.Threading.Tasks.Task{Grpc.Core.Metadata},System.Func{Grpc.Core.Status},System.Func{Grpc.Core.Metadata},System.Action)
  4295. name.vb: AsyncDuplexStreamingCall(Of TResponse, TRequest)(IClientStreamWriter(Of TRequest), IAsyncStreamReader(Of TResponse), Task(Of Metadata), Func(Of Status), Func(Of Metadata), Action)
  4296. fullName: Grpc.Core.Testing.TestCalls.AsyncDuplexStreamingCall<TResponse, TRequest>(Grpc.Core.IClientStreamWriter<TRequest>, Grpc.Core.IAsyncStreamReader<TResponse>, System.Threading.Tasks.Task<Grpc.Core.Metadata>, System.Func<Grpc.Core.Status>, System.Func<Grpc.Core.Metadata>, System.Action)
  4297. fullName.vb: Grpc.Core.Testing.TestCalls.AsyncDuplexStreamingCall(Of TResponse, TRequest)(Grpc.Core.IClientStreamWriter(Of TRequest), Grpc.Core.IAsyncStreamReader(Of TResponse), System.Threading.Tasks.Task(Of Grpc.Core.Metadata), System.Func(Of Grpc.Core.Status), System.Func(Of Grpc.Core.Metadata), System.Action)
  4298. nameWithType: TestCalls.AsyncDuplexStreamingCall<TResponse, TRequest>(IClientStreamWriter<TRequest>, IAsyncStreamReader<TResponse>, Task<Metadata>, Func<Status>, Func<Metadata>, Action)
  4299. nameWithType.vb: TestCalls.AsyncDuplexStreamingCall(Of TResponse, TRequest)(IClientStreamWriter(Of TRequest), IAsyncStreamReader(Of TResponse), Task(Of Metadata), Func(Of Status), Func(Of Metadata), Action)
  4300. - uid: Grpc.Core.Testing.TestCalls.AsyncServerStreamingCall*
  4301. name: AsyncServerStreamingCall
  4302. href: api/Grpc.Core.Testing.TestCalls.html#Grpc_Core_Testing_TestCalls_AsyncServerStreamingCall_
  4303. commentId: Overload:Grpc.Core.Testing.TestCalls.AsyncServerStreamingCall
  4304. fullName: Grpc.Core.Testing.TestCalls.AsyncServerStreamingCall
  4305. nameWithType: TestCalls.AsyncServerStreamingCall
  4306. - uid: Grpc.Core.Testing.TestCalls.AsyncServerStreamingCall``1(Grpc.Core.IAsyncStreamReader{``0},System.Threading.Tasks.Task{Grpc.Core.Metadata},System.Func{Grpc.Core.Status},System.Func{Grpc.Core.Metadata},System.Action)
  4307. name: AsyncServerStreamingCall<TResponse>(IAsyncStreamReader<TResponse>, Task<Metadata>, Func<Status>, Func<Metadata>, Action)
  4308. href: api/Grpc.Core.Testing.TestCalls.html#Grpc_Core_Testing_TestCalls_AsyncServerStreamingCall__1_Grpc_Core_IAsyncStreamReader___0__System_Threading_Tasks_Task_Grpc_Core_Metadata__System_Func_Grpc_Core_Status__System_Func_Grpc_Core_Metadata__System_Action_
  4309. commentId: M:Grpc.Core.Testing.TestCalls.AsyncServerStreamingCall``1(Grpc.Core.IAsyncStreamReader{``0},System.Threading.Tasks.Task{Grpc.Core.Metadata},System.Func{Grpc.Core.Status},System.Func{Grpc.Core.Metadata},System.Action)
  4310. name.vb: AsyncServerStreamingCall(Of TResponse)(IAsyncStreamReader(Of TResponse), Task(Of Metadata), Func(Of Status), Func(Of Metadata), Action)
  4311. fullName: Grpc.Core.Testing.TestCalls.AsyncServerStreamingCall<TResponse>(Grpc.Core.IAsyncStreamReader<TResponse>, System.Threading.Tasks.Task<Grpc.Core.Metadata>, System.Func<Grpc.Core.Status>, System.Func<Grpc.Core.Metadata>, System.Action)
  4312. fullName.vb: Grpc.Core.Testing.TestCalls.AsyncServerStreamingCall(Of TResponse)(Grpc.Core.IAsyncStreamReader(Of TResponse), System.Threading.Tasks.Task(Of Grpc.Core.Metadata), System.Func(Of Grpc.Core.Status), System.Func(Of Grpc.Core.Metadata), System.Action)
  4313. nameWithType: TestCalls.AsyncServerStreamingCall<TResponse>(IAsyncStreamReader<TResponse>, Task<Metadata>, Func<Status>, Func<Metadata>, Action)
  4314. nameWithType.vb: TestCalls.AsyncServerStreamingCall(Of TResponse)(IAsyncStreamReader(Of TResponse), Task(Of Metadata), Func(Of Status), Func(Of Metadata), Action)
  4315. - uid: Grpc.Core.Testing.TestCalls.AsyncUnaryCall*
  4316. name: AsyncUnaryCall
  4317. href: api/Grpc.Core.Testing.TestCalls.html#Grpc_Core_Testing_TestCalls_AsyncUnaryCall_
  4318. commentId: Overload:Grpc.Core.Testing.TestCalls.AsyncUnaryCall
  4319. fullName: Grpc.Core.Testing.TestCalls.AsyncUnaryCall
  4320. nameWithType: TestCalls.AsyncUnaryCall
  4321. - uid: Grpc.Core.Testing.TestCalls.AsyncUnaryCall``1(System.Threading.Tasks.Task{``0},System.Threading.Tasks.Task{Grpc.Core.Metadata},System.Func{Grpc.Core.Status},System.Func{Grpc.Core.Metadata},System.Action)
  4322. name: AsyncUnaryCall<TResponse>(Task<TResponse>, Task<Metadata>, Func<Status>, Func<Metadata>, Action)
  4323. href: api/Grpc.Core.Testing.TestCalls.html#Grpc_Core_Testing_TestCalls_AsyncUnaryCall__1_System_Threading_Tasks_Task___0__System_Threading_Tasks_Task_Grpc_Core_Metadata__System_Func_Grpc_Core_Status__System_Func_Grpc_Core_Metadata__System_Action_
  4324. commentId: M:Grpc.Core.Testing.TestCalls.AsyncUnaryCall``1(System.Threading.Tasks.Task{``0},System.Threading.Tasks.Task{Grpc.Core.Metadata},System.Func{Grpc.Core.Status},System.Func{Grpc.Core.Metadata},System.Action)
  4325. name.vb: AsyncUnaryCall(Of TResponse)(Task(Of TResponse), Task(Of Metadata), Func(Of Status), Func(Of Metadata), Action)
  4326. fullName: Grpc.Core.Testing.TestCalls.AsyncUnaryCall<TResponse>(System.Threading.Tasks.Task<TResponse>, System.Threading.Tasks.Task<Grpc.Core.Metadata>, System.Func<Grpc.Core.Status>, System.Func<Grpc.Core.Metadata>, System.Action)
  4327. fullName.vb: Grpc.Core.Testing.TestCalls.AsyncUnaryCall(Of TResponse)(System.Threading.Tasks.Task(Of TResponse), System.Threading.Tasks.Task(Of Grpc.Core.Metadata), System.Func(Of Grpc.Core.Status), System.Func(Of Grpc.Core.Metadata), System.Action)
  4328. nameWithType: TestCalls.AsyncUnaryCall<TResponse>(Task<TResponse>, Task<Metadata>, Func<Status>, Func<Metadata>, Action)
  4329. nameWithType.vb: TestCalls.AsyncUnaryCall(Of TResponse)(Task(Of TResponse), Task(Of Metadata), Func(Of Status), Func(Of Metadata), Action)
  4330. - uid: Grpc.Core.UnaryServerMethod`2
  4331. name: UnaryServerMethod<TRequest, TResponse>
  4332. href: api/Grpc.Core.UnaryServerMethod-2.html
  4333. commentId: T:Grpc.Core.UnaryServerMethod`2
  4334. name.vb: UnaryServerMethod(Of TRequest, TResponse)
  4335. fullName: Grpc.Core.UnaryServerMethod<TRequest, TResponse>
  4336. fullName.vb: Grpc.Core.UnaryServerMethod(Of TRequest, TResponse)
  4337. nameWithType: UnaryServerMethod<TRequest, TResponse>
  4338. nameWithType.vb: UnaryServerMethod(Of TRequest, TResponse)
  4339. - uid: Grpc.Core.Utils
  4340. name: Grpc.Core.Utils
  4341. href: api/Grpc.Core.Utils.html
  4342. commentId: N:Grpc.Core.Utils
  4343. fullName: Grpc.Core.Utils
  4344. nameWithType: Grpc.Core.Utils
  4345. - uid: Grpc.Core.Utils.AsyncStreamExtensions
  4346. name: AsyncStreamExtensions
  4347. href: api/Grpc.Core.Utils.AsyncStreamExtensions.html
  4348. commentId: T:Grpc.Core.Utils.AsyncStreamExtensions
  4349. fullName: Grpc.Core.Utils.AsyncStreamExtensions
  4350. nameWithType: AsyncStreamExtensions
  4351. - uid: Grpc.Core.Utils.AsyncStreamExtensions.ForEachAsync*
  4352. name: ForEachAsync
  4353. href: api/Grpc.Core.Utils.AsyncStreamExtensions.html#Grpc_Core_Utils_AsyncStreamExtensions_ForEachAsync_
  4354. commentId: Overload:Grpc.Core.Utils.AsyncStreamExtensions.ForEachAsync
  4355. fullName: Grpc.Core.Utils.AsyncStreamExtensions.ForEachAsync
  4356. nameWithType: AsyncStreamExtensions.ForEachAsync
  4357. - uid: Grpc.Core.Utils.AsyncStreamExtensions.ForEachAsync``1(Grpc.Core.IAsyncStreamReader{``0},System.Func{``0,System.Threading.Tasks.Task})
  4358. name: ForEachAsync<T>(IAsyncStreamReader<T>, Func<T, Task>)
  4359. href: api/Grpc.Core.Utils.AsyncStreamExtensions.html#Grpc_Core_Utils_AsyncStreamExtensions_ForEachAsync__1_Grpc_Core_IAsyncStreamReader___0__System_Func___0_System_Threading_Tasks_Task__
  4360. commentId: M:Grpc.Core.Utils.AsyncStreamExtensions.ForEachAsync``1(Grpc.Core.IAsyncStreamReader{``0},System.Func{``0,System.Threading.Tasks.Task})
  4361. name.vb: ForEachAsync(Of T)(IAsyncStreamReader(Of T), Func(Of T, Task))
  4362. fullName: Grpc.Core.Utils.AsyncStreamExtensions.ForEachAsync<T>(Grpc.Core.IAsyncStreamReader<T>, System.Func<T, System.Threading.Tasks.Task>)
  4363. fullName.vb: Grpc.Core.Utils.AsyncStreamExtensions.ForEachAsync(Of T)(Grpc.Core.IAsyncStreamReader(Of T), System.Func(Of T, System.Threading.Tasks.Task))
  4364. nameWithType: AsyncStreamExtensions.ForEachAsync<T>(IAsyncStreamReader<T>, Func<T, Task>)
  4365. nameWithType.vb: AsyncStreamExtensions.ForEachAsync(Of T)(IAsyncStreamReader(Of T), Func(Of T, Task))
  4366. - uid: Grpc.Core.Utils.AsyncStreamExtensions.ToListAsync*
  4367. name: ToListAsync
  4368. href: api/Grpc.Core.Utils.AsyncStreamExtensions.html#Grpc_Core_Utils_AsyncStreamExtensions_ToListAsync_
  4369. commentId: Overload:Grpc.Core.Utils.AsyncStreamExtensions.ToListAsync
  4370. fullName: Grpc.Core.Utils.AsyncStreamExtensions.ToListAsync
  4371. nameWithType: AsyncStreamExtensions.ToListAsync
  4372. - uid: Grpc.Core.Utils.AsyncStreamExtensions.ToListAsync``1(Grpc.Core.IAsyncStreamReader{``0})
  4373. name: ToListAsync<T>(IAsyncStreamReader<T>)
  4374. href: api/Grpc.Core.Utils.AsyncStreamExtensions.html#Grpc_Core_Utils_AsyncStreamExtensions_ToListAsync__1_Grpc_Core_IAsyncStreamReader___0__
  4375. commentId: M:Grpc.Core.Utils.AsyncStreamExtensions.ToListAsync``1(Grpc.Core.IAsyncStreamReader{``0})
  4376. name.vb: ToListAsync(Of T)(IAsyncStreamReader(Of T))
  4377. fullName: Grpc.Core.Utils.AsyncStreamExtensions.ToListAsync<T>(Grpc.Core.IAsyncStreamReader<T>)
  4378. fullName.vb: Grpc.Core.Utils.AsyncStreamExtensions.ToListAsync(Of T)(Grpc.Core.IAsyncStreamReader(Of T))
  4379. nameWithType: AsyncStreamExtensions.ToListAsync<T>(IAsyncStreamReader<T>)
  4380. nameWithType.vb: AsyncStreamExtensions.ToListAsync(Of T)(IAsyncStreamReader(Of T))
  4381. - uid: Grpc.Core.Utils.AsyncStreamExtensions.WriteAllAsync*
  4382. name: WriteAllAsync
  4383. href: api/Grpc.Core.Utils.AsyncStreamExtensions.html#Grpc_Core_Utils_AsyncStreamExtensions_WriteAllAsync_
  4384. commentId: Overload:Grpc.Core.Utils.AsyncStreamExtensions.WriteAllAsync
  4385. fullName: Grpc.Core.Utils.AsyncStreamExtensions.WriteAllAsync
  4386. nameWithType: AsyncStreamExtensions.WriteAllAsync
  4387. - uid: Grpc.Core.Utils.AsyncStreamExtensions.WriteAllAsync``1(Grpc.Core.IClientStreamWriter{``0},System.Collections.Generic.IEnumerable{``0},System.Boolean)
  4388. name: WriteAllAsync<T>(IClientStreamWriter<T>, IEnumerable<T>, Boolean)
  4389. href: api/Grpc.Core.Utils.AsyncStreamExtensions.html#Grpc_Core_Utils_AsyncStreamExtensions_WriteAllAsync__1_Grpc_Core_IClientStreamWriter___0__System_Collections_Generic_IEnumerable___0__System_Boolean_
  4390. commentId: M:Grpc.Core.Utils.AsyncStreamExtensions.WriteAllAsync``1(Grpc.Core.IClientStreamWriter{``0},System.Collections.Generic.IEnumerable{``0},System.Boolean)
  4391. name.vb: WriteAllAsync(Of T)(IClientStreamWriter(Of T), IEnumerable(Of T), Boolean)
  4392. fullName: Grpc.Core.Utils.AsyncStreamExtensions.WriteAllAsync<T>(Grpc.Core.IClientStreamWriter<T>, System.Collections.Generic.IEnumerable<T>, System.Boolean)
  4393. fullName.vb: Grpc.Core.Utils.AsyncStreamExtensions.WriteAllAsync(Of T)(Grpc.Core.IClientStreamWriter(Of T), System.Collections.Generic.IEnumerable(Of T), System.Boolean)
  4394. nameWithType: AsyncStreamExtensions.WriteAllAsync<T>(IClientStreamWriter<T>, IEnumerable<T>, Boolean)
  4395. nameWithType.vb: AsyncStreamExtensions.WriteAllAsync(Of T)(IClientStreamWriter(Of T), IEnumerable(Of T), Boolean)
  4396. - uid: Grpc.Core.Utils.AsyncStreamExtensions.WriteAllAsync``1(Grpc.Core.IServerStreamWriter{``0},System.Collections.Generic.IEnumerable{``0})
  4397. name: WriteAllAsync<T>(IServerStreamWriter<T>, IEnumerable<T>)
  4398. href: api/Grpc.Core.Utils.AsyncStreamExtensions.html#Grpc_Core_Utils_AsyncStreamExtensions_WriteAllAsync__1_Grpc_Core_IServerStreamWriter___0__System_Collections_Generic_IEnumerable___0__
  4399. commentId: M:Grpc.Core.Utils.AsyncStreamExtensions.WriteAllAsync``1(Grpc.Core.IServerStreamWriter{``0},System.Collections.Generic.IEnumerable{``0})
  4400. name.vb: WriteAllAsync(Of T)(IServerStreamWriter(Of T), IEnumerable(Of T))
  4401. fullName: Grpc.Core.Utils.AsyncStreamExtensions.WriteAllAsync<T>(Grpc.Core.IServerStreamWriter<T>, System.Collections.Generic.IEnumerable<T>)
  4402. fullName.vb: Grpc.Core.Utils.AsyncStreamExtensions.WriteAllAsync(Of T)(Grpc.Core.IServerStreamWriter(Of T), System.Collections.Generic.IEnumerable(Of T))
  4403. nameWithType: AsyncStreamExtensions.WriteAllAsync<T>(IServerStreamWriter<T>, IEnumerable<T>)
  4404. nameWithType.vb: AsyncStreamExtensions.WriteAllAsync(Of T)(IServerStreamWriter(Of T), IEnumerable(Of T))
  4405. - uid: Grpc.Core.Utils.BenchmarkUtil
  4406. name: BenchmarkUtil
  4407. href: api/Grpc.Core.Utils.BenchmarkUtil.html
  4408. commentId: T:Grpc.Core.Utils.BenchmarkUtil
  4409. fullName: Grpc.Core.Utils.BenchmarkUtil
  4410. nameWithType: BenchmarkUtil
  4411. - uid: Grpc.Core.Utils.BenchmarkUtil.RunBenchmark(System.Int32,System.Int32,System.Action)
  4412. name: RunBenchmark(Int32, Int32, Action)
  4413. href: api/Grpc.Core.Utils.BenchmarkUtil.html#Grpc_Core_Utils_BenchmarkUtil_RunBenchmark_System_Int32_System_Int32_System_Action_
  4414. commentId: M:Grpc.Core.Utils.BenchmarkUtil.RunBenchmark(System.Int32,System.Int32,System.Action)
  4415. fullName: Grpc.Core.Utils.BenchmarkUtil.RunBenchmark(System.Int32, System.Int32, System.Action)
  4416. nameWithType: BenchmarkUtil.RunBenchmark(Int32, Int32, Action)
  4417. - uid: Grpc.Core.Utils.BenchmarkUtil.RunBenchmark*
  4418. name: RunBenchmark
  4419. href: api/Grpc.Core.Utils.BenchmarkUtil.html#Grpc_Core_Utils_BenchmarkUtil_RunBenchmark_
  4420. commentId: Overload:Grpc.Core.Utils.BenchmarkUtil.RunBenchmark
  4421. fullName: Grpc.Core.Utils.BenchmarkUtil.RunBenchmark
  4422. nameWithType: BenchmarkUtil.RunBenchmark
  4423. - uid: Grpc.Core.Utils.GrpcPreconditions
  4424. name: GrpcPreconditions
  4425. href: api/Grpc.Core.Utils.GrpcPreconditions.html
  4426. commentId: T:Grpc.Core.Utils.GrpcPreconditions
  4427. fullName: Grpc.Core.Utils.GrpcPreconditions
  4428. nameWithType: GrpcPreconditions
  4429. - uid: Grpc.Core.Utils.GrpcPreconditions.CheckArgument(System.Boolean)
  4430. name: CheckArgument(Boolean)
  4431. href: api/Grpc.Core.Utils.GrpcPreconditions.html#Grpc_Core_Utils_GrpcPreconditions_CheckArgument_System_Boolean_
  4432. commentId: M:Grpc.Core.Utils.GrpcPreconditions.CheckArgument(System.Boolean)
  4433. fullName: Grpc.Core.Utils.GrpcPreconditions.CheckArgument(System.Boolean)
  4434. nameWithType: GrpcPreconditions.CheckArgument(Boolean)
  4435. - uid: Grpc.Core.Utils.GrpcPreconditions.CheckArgument(System.Boolean,System.String)
  4436. name: CheckArgument(Boolean, String)
  4437. href: api/Grpc.Core.Utils.GrpcPreconditions.html#Grpc_Core_Utils_GrpcPreconditions_CheckArgument_System_Boolean_System_String_
  4438. commentId: M:Grpc.Core.Utils.GrpcPreconditions.CheckArgument(System.Boolean,System.String)
  4439. fullName: Grpc.Core.Utils.GrpcPreconditions.CheckArgument(System.Boolean, System.String)
  4440. nameWithType: GrpcPreconditions.CheckArgument(Boolean, String)
  4441. - uid: Grpc.Core.Utils.GrpcPreconditions.CheckArgument*
  4442. name: CheckArgument
  4443. href: api/Grpc.Core.Utils.GrpcPreconditions.html#Grpc_Core_Utils_GrpcPreconditions_CheckArgument_
  4444. commentId: Overload:Grpc.Core.Utils.GrpcPreconditions.CheckArgument
  4445. fullName: Grpc.Core.Utils.GrpcPreconditions.CheckArgument
  4446. nameWithType: GrpcPreconditions.CheckArgument
  4447. - uid: Grpc.Core.Utils.GrpcPreconditions.CheckNotNull*
  4448. name: CheckNotNull
  4449. href: api/Grpc.Core.Utils.GrpcPreconditions.html#Grpc_Core_Utils_GrpcPreconditions_CheckNotNull_
  4450. commentId: Overload:Grpc.Core.Utils.GrpcPreconditions.CheckNotNull
  4451. fullName: Grpc.Core.Utils.GrpcPreconditions.CheckNotNull
  4452. nameWithType: GrpcPreconditions.CheckNotNull
  4453. - uid: Grpc.Core.Utils.GrpcPreconditions.CheckNotNull``1(``0)
  4454. name: CheckNotNull<T>(T)
  4455. href: api/Grpc.Core.Utils.GrpcPreconditions.html#Grpc_Core_Utils_GrpcPreconditions_CheckNotNull__1___0_
  4456. commentId: M:Grpc.Core.Utils.GrpcPreconditions.CheckNotNull``1(``0)
  4457. name.vb: CheckNotNull(Of T)(T)
  4458. fullName: Grpc.Core.Utils.GrpcPreconditions.CheckNotNull<T>(T)
  4459. fullName.vb: Grpc.Core.Utils.GrpcPreconditions.CheckNotNull(Of T)(T)
  4460. nameWithType: GrpcPreconditions.CheckNotNull<T>(T)
  4461. nameWithType.vb: GrpcPreconditions.CheckNotNull(Of T)(T)
  4462. - uid: Grpc.Core.Utils.GrpcPreconditions.CheckNotNull``1(``0,System.String)
  4463. name: CheckNotNull<T>(T, String)
  4464. href: api/Grpc.Core.Utils.GrpcPreconditions.html#Grpc_Core_Utils_GrpcPreconditions_CheckNotNull__1___0_System_String_
  4465. commentId: M:Grpc.Core.Utils.GrpcPreconditions.CheckNotNull``1(``0,System.String)
  4466. name.vb: CheckNotNull(Of T)(T, String)
  4467. fullName: Grpc.Core.Utils.GrpcPreconditions.CheckNotNull<T>(T, System.String)
  4468. fullName.vb: Grpc.Core.Utils.GrpcPreconditions.CheckNotNull(Of T)(T, System.String)
  4469. nameWithType: GrpcPreconditions.CheckNotNull<T>(T, String)
  4470. nameWithType.vb: GrpcPreconditions.CheckNotNull(Of T)(T, String)
  4471. - uid: Grpc.Core.Utils.GrpcPreconditions.CheckState(System.Boolean)
  4472. name: CheckState(Boolean)
  4473. href: api/Grpc.Core.Utils.GrpcPreconditions.html#Grpc_Core_Utils_GrpcPreconditions_CheckState_System_Boolean_
  4474. commentId: M:Grpc.Core.Utils.GrpcPreconditions.CheckState(System.Boolean)
  4475. fullName: Grpc.Core.Utils.GrpcPreconditions.CheckState(System.Boolean)
  4476. nameWithType: GrpcPreconditions.CheckState(Boolean)
  4477. - uid: Grpc.Core.Utils.GrpcPreconditions.CheckState(System.Boolean,System.String)
  4478. name: CheckState(Boolean, String)
  4479. href: api/Grpc.Core.Utils.GrpcPreconditions.html#Grpc_Core_Utils_GrpcPreconditions_CheckState_System_Boolean_System_String_
  4480. commentId: M:Grpc.Core.Utils.GrpcPreconditions.CheckState(System.Boolean,System.String)
  4481. fullName: Grpc.Core.Utils.GrpcPreconditions.CheckState(System.Boolean, System.String)
  4482. nameWithType: GrpcPreconditions.CheckState(Boolean, String)
  4483. - uid: Grpc.Core.Utils.GrpcPreconditions.CheckState*
  4484. name: CheckState
  4485. href: api/Grpc.Core.Utils.GrpcPreconditions.html#Grpc_Core_Utils_GrpcPreconditions_CheckState_
  4486. commentId: Overload:Grpc.Core.Utils.GrpcPreconditions.CheckState
  4487. fullName: Grpc.Core.Utils.GrpcPreconditions.CheckState
  4488. nameWithType: GrpcPreconditions.CheckState
  4489. - uid: Grpc.Core.Utils.TaskUtils
  4490. name: TaskUtils
  4491. href: api/Grpc.Core.Utils.TaskUtils.html
  4492. commentId: T:Grpc.Core.Utils.TaskUtils
  4493. fullName: Grpc.Core.Utils.TaskUtils
  4494. nameWithType: TaskUtils
  4495. - uid: Grpc.Core.Utils.TaskUtils.CompletedTask
  4496. name: CompletedTask
  4497. href: api/Grpc.Core.Utils.TaskUtils.html#Grpc_Core_Utils_TaskUtils_CompletedTask
  4498. commentId: P:Grpc.Core.Utils.TaskUtils.CompletedTask
  4499. fullName: Grpc.Core.Utils.TaskUtils.CompletedTask
  4500. nameWithType: TaskUtils.CompletedTask
  4501. - uid: Grpc.Core.Utils.TaskUtils.CompletedTask*
  4502. name: CompletedTask
  4503. href: api/Grpc.Core.Utils.TaskUtils.html#Grpc_Core_Utils_TaskUtils_CompletedTask_
  4504. commentId: Overload:Grpc.Core.Utils.TaskUtils.CompletedTask
  4505. fullName: Grpc.Core.Utils.TaskUtils.CompletedTask
  4506. nameWithType: TaskUtils.CompletedTask
  4507. - uid: Grpc.Core.VersionInfo
  4508. name: VersionInfo
  4509. href: api/Grpc.Core.VersionInfo.html
  4510. commentId: T:Grpc.Core.VersionInfo
  4511. fullName: Grpc.Core.VersionInfo
  4512. nameWithType: VersionInfo
  4513. - uid: Grpc.Core.VersionInfo.CurrentAssemblyFileVersion
  4514. name: CurrentAssemblyFileVersion
  4515. href: api/Grpc.Core.VersionInfo.html#Grpc_Core_VersionInfo_CurrentAssemblyFileVersion
  4516. commentId: F:Grpc.Core.VersionInfo.CurrentAssemblyFileVersion
  4517. fullName: Grpc.Core.VersionInfo.CurrentAssemblyFileVersion
  4518. nameWithType: VersionInfo.CurrentAssemblyFileVersion
  4519. - uid: Grpc.Core.VersionInfo.CurrentAssemblyVersion
  4520. name: CurrentAssemblyVersion
  4521. href: api/Grpc.Core.VersionInfo.html#Grpc_Core_VersionInfo_CurrentAssemblyVersion
  4522. commentId: F:Grpc.Core.VersionInfo.CurrentAssemblyVersion
  4523. fullName: Grpc.Core.VersionInfo.CurrentAssemblyVersion
  4524. nameWithType: VersionInfo.CurrentAssemblyVersion
  4525. - uid: Grpc.Core.VersionInfo.CurrentVersion
  4526. name: CurrentVersion
  4527. href: api/Grpc.Core.VersionInfo.html#Grpc_Core_VersionInfo_CurrentVersion
  4528. commentId: F:Grpc.Core.VersionInfo.CurrentVersion
  4529. fullName: Grpc.Core.VersionInfo.CurrentVersion
  4530. nameWithType: VersionInfo.CurrentVersion
  4531. - uid: Grpc.Core.WriteFlags
  4532. name: WriteFlags
  4533. href: api/Grpc.Core.WriteFlags.html
  4534. commentId: T:Grpc.Core.WriteFlags
  4535. fullName: Grpc.Core.WriteFlags
  4536. nameWithType: WriteFlags
  4537. - uid: Grpc.Core.WriteFlags.BufferHint
  4538. name: BufferHint
  4539. href: api/Grpc.Core.WriteFlags.html#Grpc_Core_WriteFlags_BufferHint
  4540. commentId: F:Grpc.Core.WriteFlags.BufferHint
  4541. fullName: Grpc.Core.WriteFlags.BufferHint
  4542. nameWithType: WriteFlags.BufferHint
  4543. - uid: Grpc.Core.WriteFlags.NoCompress
  4544. name: NoCompress
  4545. href: api/Grpc.Core.WriteFlags.html#Grpc_Core_WriteFlags_NoCompress
  4546. commentId: F:Grpc.Core.WriteFlags.NoCompress
  4547. fullName: Grpc.Core.WriteFlags.NoCompress
  4548. nameWithType: WriteFlags.NoCompress
  4549. - uid: Grpc.Core.WriteOptions
  4550. name: WriteOptions
  4551. href: api/Grpc.Core.WriteOptions.html
  4552. commentId: T:Grpc.Core.WriteOptions
  4553. fullName: Grpc.Core.WriteOptions
  4554. nameWithType: WriteOptions
  4555. - uid: Grpc.Core.WriteOptions.#ctor(Grpc.Core.WriteFlags)
  4556. name: WriteOptions(WriteFlags)
  4557. href: api/Grpc.Core.WriteOptions.html#Grpc_Core_WriteOptions__ctor_Grpc_Core_WriteFlags_
  4558. commentId: M:Grpc.Core.WriteOptions.#ctor(Grpc.Core.WriteFlags)
  4559. fullName: Grpc.Core.WriteOptions.WriteOptions(Grpc.Core.WriteFlags)
  4560. nameWithType: WriteOptions.WriteOptions(WriteFlags)
  4561. - uid: Grpc.Core.WriteOptions.#ctor*
  4562. name: WriteOptions
  4563. href: api/Grpc.Core.WriteOptions.html#Grpc_Core_WriteOptions__ctor_
  4564. commentId: Overload:Grpc.Core.WriteOptions.#ctor
  4565. fullName: Grpc.Core.WriteOptions.WriteOptions
  4566. nameWithType: WriteOptions.WriteOptions
  4567. - uid: Grpc.Core.WriteOptions.Default
  4568. name: Default
  4569. href: api/Grpc.Core.WriteOptions.html#Grpc_Core_WriteOptions_Default
  4570. commentId: F:Grpc.Core.WriteOptions.Default
  4571. fullName: Grpc.Core.WriteOptions.Default
  4572. nameWithType: WriteOptions.Default
  4573. - uid: Grpc.Core.WriteOptions.Flags
  4574. name: Flags
  4575. href: api/Grpc.Core.WriteOptions.html#Grpc_Core_WriteOptions_Flags
  4576. commentId: P:Grpc.Core.WriteOptions.Flags
  4577. fullName: Grpc.Core.WriteOptions.Flags
  4578. nameWithType: WriteOptions.Flags
  4579. - uid: Grpc.Core.WriteOptions.Flags*
  4580. name: Flags
  4581. href: api/Grpc.Core.WriteOptions.html#Grpc_Core_WriteOptions_Flags_
  4582. commentId: Overload:Grpc.Core.WriteOptions.Flags
  4583. fullName: Grpc.Core.WriteOptions.Flags
  4584. nameWithType: WriteOptions.Flags
  4585. - uid: Grpc.Health.V1
  4586. name: Grpc.Health.V1
  4587. href: api/Grpc.Health.V1.html
  4588. commentId: N:Grpc.Health.V1
  4589. fullName: Grpc.Health.V1
  4590. nameWithType: Grpc.Health.V1
  4591. - uid: Grpc.Health.V1.Health
  4592. name: Health
  4593. href: api/Grpc.Health.V1.Health.html
  4594. commentId: T:Grpc.Health.V1.Health
  4595. fullName: Grpc.Health.V1.Health
  4596. nameWithType: Health
  4597. - uid: Grpc.Health.V1.Health.BindService(Grpc.Health.V1.Health.HealthBase)
  4598. name: BindService(Health.HealthBase)
  4599. href: api/Grpc.Health.V1.Health.html#Grpc_Health_V1_Health_BindService_Grpc_Health_V1_Health_HealthBase_
  4600. commentId: M:Grpc.Health.V1.Health.BindService(Grpc.Health.V1.Health.HealthBase)
  4601. fullName: Grpc.Health.V1.Health.BindService(Grpc.Health.V1.Health.HealthBase)
  4602. nameWithType: Health.BindService(Health.HealthBase)
  4603. - uid: Grpc.Health.V1.Health.BindService*
  4604. name: BindService
  4605. href: api/Grpc.Health.V1.Health.html#Grpc_Health_V1_Health_BindService_
  4606. commentId: Overload:Grpc.Health.V1.Health.BindService
  4607. fullName: Grpc.Health.V1.Health.BindService
  4608. nameWithType: Health.BindService
  4609. - uid: Grpc.Health.V1.Health.Descriptor
  4610. name: Descriptor
  4611. href: api/Grpc.Health.V1.Health.html#Grpc_Health_V1_Health_Descriptor
  4612. commentId: P:Grpc.Health.V1.Health.Descriptor
  4613. fullName: Grpc.Health.V1.Health.Descriptor
  4614. nameWithType: Health.Descriptor
  4615. - uid: Grpc.Health.V1.Health.Descriptor*
  4616. name: Descriptor
  4617. href: api/Grpc.Health.V1.Health.html#Grpc_Health_V1_Health_Descriptor_
  4618. commentId: Overload:Grpc.Health.V1.Health.Descriptor
  4619. fullName: Grpc.Health.V1.Health.Descriptor
  4620. nameWithType: Health.Descriptor
  4621. - uid: Grpc.Health.V1.Health.HealthBase
  4622. name: Health.HealthBase
  4623. href: api/Grpc.Health.V1.Health.HealthBase.html
  4624. commentId: T:Grpc.Health.V1.Health.HealthBase
  4625. fullName: Grpc.Health.V1.Health.HealthBase
  4626. nameWithType: Health.HealthBase
  4627. - uid: Grpc.Health.V1.Health.HealthBase.Check(Grpc.Health.V1.HealthCheckRequest,Grpc.Core.ServerCallContext)
  4628. name: Check(HealthCheckRequest, ServerCallContext)
  4629. href: api/Grpc.Health.V1.Health.HealthBase.html#Grpc_Health_V1_Health_HealthBase_Check_Grpc_Health_V1_HealthCheckRequest_Grpc_Core_ServerCallContext_
  4630. commentId: M:Grpc.Health.V1.Health.HealthBase.Check(Grpc.Health.V1.HealthCheckRequest,Grpc.Core.ServerCallContext)
  4631. fullName: Grpc.Health.V1.Health.HealthBase.Check(Grpc.Health.V1.HealthCheckRequest, Grpc.Core.ServerCallContext)
  4632. nameWithType: Health.HealthBase.Check(HealthCheckRequest, ServerCallContext)
  4633. - uid: Grpc.Health.V1.Health.HealthBase.Check*
  4634. name: Check
  4635. href: api/Grpc.Health.V1.Health.HealthBase.html#Grpc_Health_V1_Health_HealthBase_Check_
  4636. commentId: Overload:Grpc.Health.V1.Health.HealthBase.Check
  4637. fullName: Grpc.Health.V1.Health.HealthBase.Check
  4638. nameWithType: Health.HealthBase.Check
  4639. - uid: Grpc.Health.V1.Health.HealthClient
  4640. name: Health.HealthClient
  4641. href: api/Grpc.Health.V1.Health.HealthClient.html
  4642. commentId: T:Grpc.Health.V1.Health.HealthClient
  4643. fullName: Grpc.Health.V1.Health.HealthClient
  4644. nameWithType: Health.HealthClient
  4645. - uid: Grpc.Health.V1.Health.HealthClient.#ctor
  4646. name: HealthClient()
  4647. href: api/Grpc.Health.V1.Health.HealthClient.html#Grpc_Health_V1_Health_HealthClient__ctor
  4648. commentId: M:Grpc.Health.V1.Health.HealthClient.#ctor
  4649. fullName: Grpc.Health.V1.Health.HealthClient.HealthClient()
  4650. nameWithType: Health.HealthClient.HealthClient()
  4651. - uid: Grpc.Health.V1.Health.HealthClient.#ctor(Grpc.Core.CallInvoker)
  4652. name: HealthClient(CallInvoker)
  4653. href: api/Grpc.Health.V1.Health.HealthClient.html#Grpc_Health_V1_Health_HealthClient__ctor_Grpc_Core_CallInvoker_
  4654. commentId: M:Grpc.Health.V1.Health.HealthClient.#ctor(Grpc.Core.CallInvoker)
  4655. fullName: Grpc.Health.V1.Health.HealthClient.HealthClient(Grpc.Core.CallInvoker)
  4656. nameWithType: Health.HealthClient.HealthClient(CallInvoker)
  4657. - uid: Grpc.Health.V1.Health.HealthClient.#ctor(Grpc.Core.Channel)
  4658. name: HealthClient(Channel)
  4659. href: api/Grpc.Health.V1.Health.HealthClient.html#Grpc_Health_V1_Health_HealthClient__ctor_Grpc_Core_Channel_
  4660. commentId: M:Grpc.Health.V1.Health.HealthClient.#ctor(Grpc.Core.Channel)
  4661. fullName: Grpc.Health.V1.Health.HealthClient.HealthClient(Grpc.Core.Channel)
  4662. nameWithType: Health.HealthClient.HealthClient(Channel)
  4663. - uid: Grpc.Health.V1.Health.HealthClient.#ctor(Grpc.Core.ClientBase.ClientBaseConfiguration)
  4664. name: HealthClient(ClientBase.ClientBaseConfiguration)
  4665. href: api/Grpc.Health.V1.Health.HealthClient.html#Grpc_Health_V1_Health_HealthClient__ctor_Grpc_Core_ClientBase_ClientBaseConfiguration_
  4666. commentId: M:Grpc.Health.V1.Health.HealthClient.#ctor(Grpc.Core.ClientBase.ClientBaseConfiguration)
  4667. fullName: Grpc.Health.V1.Health.HealthClient.HealthClient(Grpc.Core.ClientBase.ClientBaseConfiguration)
  4668. nameWithType: Health.HealthClient.HealthClient(ClientBase.ClientBaseConfiguration)
  4669. - uid: Grpc.Health.V1.Health.HealthClient.#ctor*
  4670. name: HealthClient
  4671. href: api/Grpc.Health.V1.Health.HealthClient.html#Grpc_Health_V1_Health_HealthClient__ctor_
  4672. commentId: Overload:Grpc.Health.V1.Health.HealthClient.#ctor
  4673. fullName: Grpc.Health.V1.Health.HealthClient.HealthClient
  4674. nameWithType: Health.HealthClient.HealthClient
  4675. - uid: Grpc.Health.V1.Health.HealthClient.Check(Grpc.Health.V1.HealthCheckRequest,Grpc.Core.CallOptions)
  4676. name: Check(HealthCheckRequest, CallOptions)
  4677. href: api/Grpc.Health.V1.Health.HealthClient.html#Grpc_Health_V1_Health_HealthClient_Check_Grpc_Health_V1_HealthCheckRequest_Grpc_Core_CallOptions_
  4678. commentId: M:Grpc.Health.V1.Health.HealthClient.Check(Grpc.Health.V1.HealthCheckRequest,Grpc.Core.CallOptions)
  4679. fullName: Grpc.Health.V1.Health.HealthClient.Check(Grpc.Health.V1.HealthCheckRequest, Grpc.Core.CallOptions)
  4680. nameWithType: Health.HealthClient.Check(HealthCheckRequest, CallOptions)
  4681. - uid: Grpc.Health.V1.Health.HealthClient.Check(Grpc.Health.V1.HealthCheckRequest,Grpc.Core.Metadata,System.Nullable{System.DateTime},System.Threading.CancellationToken)
  4682. name: Check(HealthCheckRequest, Metadata, Nullable<DateTime>, CancellationToken)
  4683. href: api/Grpc.Health.V1.Health.HealthClient.html#Grpc_Health_V1_Health_HealthClient_Check_Grpc_Health_V1_HealthCheckRequest_Grpc_Core_Metadata_System_Nullable_System_DateTime__System_Threading_CancellationToken_
  4684. commentId: M:Grpc.Health.V1.Health.HealthClient.Check(Grpc.Health.V1.HealthCheckRequest,Grpc.Core.Metadata,System.Nullable{System.DateTime},System.Threading.CancellationToken)
  4685. name.vb: Check(HealthCheckRequest, Metadata, Nullable(Of DateTime), CancellationToken)
  4686. fullName: Grpc.Health.V1.Health.HealthClient.Check(Grpc.Health.V1.HealthCheckRequest, Grpc.Core.Metadata, System.Nullable<System.DateTime>, System.Threading.CancellationToken)
  4687. fullName.vb: Grpc.Health.V1.Health.HealthClient.Check(Grpc.Health.V1.HealthCheckRequest, Grpc.Core.Metadata, System.Nullable(Of System.DateTime), System.Threading.CancellationToken)
  4688. nameWithType: Health.HealthClient.Check(HealthCheckRequest, Metadata, Nullable<DateTime>, CancellationToken)
  4689. nameWithType.vb: Health.HealthClient.Check(HealthCheckRequest, Metadata, Nullable(Of DateTime), CancellationToken)
  4690. - uid: Grpc.Health.V1.Health.HealthClient.Check*
  4691. name: Check
  4692. href: api/Grpc.Health.V1.Health.HealthClient.html#Grpc_Health_V1_Health_HealthClient_Check_
  4693. commentId: Overload:Grpc.Health.V1.Health.HealthClient.Check
  4694. fullName: Grpc.Health.V1.Health.HealthClient.Check
  4695. nameWithType: Health.HealthClient.Check
  4696. - uid: Grpc.Health.V1.Health.HealthClient.CheckAsync(Grpc.Health.V1.HealthCheckRequest,Grpc.Core.CallOptions)
  4697. name: CheckAsync(HealthCheckRequest, CallOptions)
  4698. href: api/Grpc.Health.V1.Health.HealthClient.html#Grpc_Health_V1_Health_HealthClient_CheckAsync_Grpc_Health_V1_HealthCheckRequest_Grpc_Core_CallOptions_
  4699. commentId: M:Grpc.Health.V1.Health.HealthClient.CheckAsync(Grpc.Health.V1.HealthCheckRequest,Grpc.Core.CallOptions)
  4700. fullName: Grpc.Health.V1.Health.HealthClient.CheckAsync(Grpc.Health.V1.HealthCheckRequest, Grpc.Core.CallOptions)
  4701. nameWithType: Health.HealthClient.CheckAsync(HealthCheckRequest, CallOptions)
  4702. - uid: Grpc.Health.V1.Health.HealthClient.CheckAsync(Grpc.Health.V1.HealthCheckRequest,Grpc.Core.Metadata,System.Nullable{System.DateTime},System.Threading.CancellationToken)
  4703. name: CheckAsync(HealthCheckRequest, Metadata, Nullable<DateTime>, CancellationToken)
  4704. href: api/Grpc.Health.V1.Health.HealthClient.html#Grpc_Health_V1_Health_HealthClient_CheckAsync_Grpc_Health_V1_HealthCheckRequest_Grpc_Core_Metadata_System_Nullable_System_DateTime__System_Threading_CancellationToken_
  4705. commentId: M:Grpc.Health.V1.Health.HealthClient.CheckAsync(Grpc.Health.V1.HealthCheckRequest,Grpc.Core.Metadata,System.Nullable{System.DateTime},System.Threading.CancellationToken)
  4706. name.vb: CheckAsync(HealthCheckRequest, Metadata, Nullable(Of DateTime), CancellationToken)
  4707. fullName: Grpc.Health.V1.Health.HealthClient.CheckAsync(Grpc.Health.V1.HealthCheckRequest, Grpc.Core.Metadata, System.Nullable<System.DateTime>, System.Threading.CancellationToken)
  4708. fullName.vb: Grpc.Health.V1.Health.HealthClient.CheckAsync(Grpc.Health.V1.HealthCheckRequest, Grpc.Core.Metadata, System.Nullable(Of System.DateTime), System.Threading.CancellationToken)
  4709. nameWithType: Health.HealthClient.CheckAsync(HealthCheckRequest, Metadata, Nullable<DateTime>, CancellationToken)
  4710. nameWithType.vb: Health.HealthClient.CheckAsync(HealthCheckRequest, Metadata, Nullable(Of DateTime), CancellationToken)
  4711. - uid: Grpc.Health.V1.Health.HealthClient.CheckAsync*
  4712. name: CheckAsync
  4713. href: api/Grpc.Health.V1.Health.HealthClient.html#Grpc_Health_V1_Health_HealthClient_CheckAsync_
  4714. commentId: Overload:Grpc.Health.V1.Health.HealthClient.CheckAsync
  4715. fullName: Grpc.Health.V1.Health.HealthClient.CheckAsync
  4716. nameWithType: Health.HealthClient.CheckAsync
  4717. - uid: Grpc.Health.V1.Health.HealthClient.NewInstance(Grpc.Core.ClientBase.ClientBaseConfiguration)
  4718. name: NewInstance(ClientBase.ClientBaseConfiguration)
  4719. href: api/Grpc.Health.V1.Health.HealthClient.html#Grpc_Health_V1_Health_HealthClient_NewInstance_Grpc_Core_ClientBase_ClientBaseConfiguration_
  4720. commentId: M:Grpc.Health.V1.Health.HealthClient.NewInstance(Grpc.Core.ClientBase.ClientBaseConfiguration)
  4721. fullName: Grpc.Health.V1.Health.HealthClient.NewInstance(Grpc.Core.ClientBase.ClientBaseConfiguration)
  4722. nameWithType: Health.HealthClient.NewInstance(ClientBase.ClientBaseConfiguration)
  4723. - uid: Grpc.Health.V1.Health.HealthClient.NewInstance*
  4724. name: NewInstance
  4725. href: api/Grpc.Health.V1.Health.HealthClient.html#Grpc_Health_V1_Health_HealthClient_NewInstance_
  4726. commentId: Overload:Grpc.Health.V1.Health.HealthClient.NewInstance
  4727. fullName: Grpc.Health.V1.Health.HealthClient.NewInstance
  4728. nameWithType: Health.HealthClient.NewInstance
  4729. - uid: Grpc.Health.V1.HealthCheckRequest
  4730. name: HealthCheckRequest
  4731. href: api/Grpc.Health.V1.HealthCheckRequest.html
  4732. commentId: T:Grpc.Health.V1.HealthCheckRequest
  4733. fullName: Grpc.Health.V1.HealthCheckRequest
  4734. nameWithType: HealthCheckRequest
  4735. - uid: Grpc.Health.V1.HealthCheckRequest.#ctor
  4736. name: HealthCheckRequest()
  4737. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest__ctor
  4738. commentId: M:Grpc.Health.V1.HealthCheckRequest.#ctor
  4739. fullName: Grpc.Health.V1.HealthCheckRequest.HealthCheckRequest()
  4740. nameWithType: HealthCheckRequest.HealthCheckRequest()
  4741. - uid: Grpc.Health.V1.HealthCheckRequest.#ctor(Grpc.Health.V1.HealthCheckRequest)
  4742. name: HealthCheckRequest(HealthCheckRequest)
  4743. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest__ctor_Grpc_Health_V1_HealthCheckRequest_
  4744. commentId: M:Grpc.Health.V1.HealthCheckRequest.#ctor(Grpc.Health.V1.HealthCheckRequest)
  4745. fullName: Grpc.Health.V1.HealthCheckRequest.HealthCheckRequest(Grpc.Health.V1.HealthCheckRequest)
  4746. nameWithType: HealthCheckRequest.HealthCheckRequest(HealthCheckRequest)
  4747. - uid: Grpc.Health.V1.HealthCheckRequest.#ctor*
  4748. name: HealthCheckRequest
  4749. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest__ctor_
  4750. commentId: Overload:Grpc.Health.V1.HealthCheckRequest.#ctor
  4751. fullName: Grpc.Health.V1.HealthCheckRequest.HealthCheckRequest
  4752. nameWithType: HealthCheckRequest.HealthCheckRequest
  4753. - uid: Grpc.Health.V1.HealthCheckRequest.CalculateSize
  4754. name: CalculateSize()
  4755. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_CalculateSize
  4756. commentId: M:Grpc.Health.V1.HealthCheckRequest.CalculateSize
  4757. fullName: Grpc.Health.V1.HealthCheckRequest.CalculateSize()
  4758. nameWithType: HealthCheckRequest.CalculateSize()
  4759. - uid: Grpc.Health.V1.HealthCheckRequest.CalculateSize*
  4760. name: CalculateSize
  4761. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_CalculateSize_
  4762. commentId: Overload:Grpc.Health.V1.HealthCheckRequest.CalculateSize
  4763. fullName: Grpc.Health.V1.HealthCheckRequest.CalculateSize
  4764. nameWithType: HealthCheckRequest.CalculateSize
  4765. - uid: Grpc.Health.V1.HealthCheckRequest.Clone
  4766. name: Clone()
  4767. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Clone
  4768. commentId: M:Grpc.Health.V1.HealthCheckRequest.Clone
  4769. fullName: Grpc.Health.V1.HealthCheckRequest.Clone()
  4770. nameWithType: HealthCheckRequest.Clone()
  4771. - uid: Grpc.Health.V1.HealthCheckRequest.Clone*
  4772. name: Clone
  4773. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Clone_
  4774. commentId: Overload:Grpc.Health.V1.HealthCheckRequest.Clone
  4775. fullName: Grpc.Health.V1.HealthCheckRequest.Clone
  4776. nameWithType: HealthCheckRequest.Clone
  4777. - uid: Grpc.Health.V1.HealthCheckRequest.Descriptor
  4778. name: Descriptor
  4779. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Descriptor
  4780. commentId: P:Grpc.Health.V1.HealthCheckRequest.Descriptor
  4781. fullName: Grpc.Health.V1.HealthCheckRequest.Descriptor
  4782. nameWithType: HealthCheckRequest.Descriptor
  4783. - uid: Grpc.Health.V1.HealthCheckRequest.Descriptor*
  4784. name: Descriptor
  4785. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Descriptor_
  4786. commentId: Overload:Grpc.Health.V1.HealthCheckRequest.Descriptor
  4787. fullName: Grpc.Health.V1.HealthCheckRequest.Descriptor
  4788. nameWithType: HealthCheckRequest.Descriptor
  4789. - uid: Grpc.Health.V1.HealthCheckRequest.Equals(Grpc.Health.V1.HealthCheckRequest)
  4790. name: Equals(HealthCheckRequest)
  4791. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Equals_Grpc_Health_V1_HealthCheckRequest_
  4792. commentId: M:Grpc.Health.V1.HealthCheckRequest.Equals(Grpc.Health.V1.HealthCheckRequest)
  4793. fullName: Grpc.Health.V1.HealthCheckRequest.Equals(Grpc.Health.V1.HealthCheckRequest)
  4794. nameWithType: HealthCheckRequest.Equals(HealthCheckRequest)
  4795. - uid: Grpc.Health.V1.HealthCheckRequest.Equals(System.Object)
  4796. name: Equals(Object)
  4797. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Equals_System_Object_
  4798. commentId: M:Grpc.Health.V1.HealthCheckRequest.Equals(System.Object)
  4799. fullName: Grpc.Health.V1.HealthCheckRequest.Equals(System.Object)
  4800. nameWithType: HealthCheckRequest.Equals(Object)
  4801. - uid: Grpc.Health.V1.HealthCheckRequest.Equals*
  4802. name: Equals
  4803. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Equals_
  4804. commentId: Overload:Grpc.Health.V1.HealthCheckRequest.Equals
  4805. fullName: Grpc.Health.V1.HealthCheckRequest.Equals
  4806. nameWithType: HealthCheckRequest.Equals
  4807. - uid: Grpc.Health.V1.HealthCheckRequest.GetHashCode
  4808. name: GetHashCode()
  4809. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_GetHashCode
  4810. commentId: M:Grpc.Health.V1.HealthCheckRequest.GetHashCode
  4811. fullName: Grpc.Health.V1.HealthCheckRequest.GetHashCode()
  4812. nameWithType: HealthCheckRequest.GetHashCode()
  4813. - uid: Grpc.Health.V1.HealthCheckRequest.GetHashCode*
  4814. name: GetHashCode
  4815. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_GetHashCode_
  4816. commentId: Overload:Grpc.Health.V1.HealthCheckRequest.GetHashCode
  4817. fullName: Grpc.Health.V1.HealthCheckRequest.GetHashCode
  4818. nameWithType: HealthCheckRequest.GetHashCode
  4819. - uid: Grpc.Health.V1.HealthCheckRequest.Google#Protobuf#IMessage#Descriptor
  4820. name: IMessage.Descriptor
  4821. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Google_Protobuf_IMessage_Descriptor
  4822. commentId: P:Grpc.Health.V1.HealthCheckRequest.Google#Protobuf#IMessage#Descriptor
  4823. name.vb: pb::Google.Protobuf.IMessage.Descriptor
  4824. fullName: Grpc.Health.V1.HealthCheckRequest.Google.Protobuf.IMessage.Descriptor
  4825. fullName.vb: Grpc.Health.V1.HealthCheckRequest.pb::Google.Protobuf.IMessage.Descriptor
  4826. nameWithType: HealthCheckRequest.IMessage.Descriptor
  4827. nameWithType.vb: HealthCheckRequest.pb::Google.Protobuf.IMessage.Descriptor
  4828. - uid: Grpc.Health.V1.HealthCheckRequest.Google#Protobuf#IMessage#Descriptor*
  4829. name: IMessage.Descriptor
  4830. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Google_Protobuf_IMessage_Descriptor_
  4831. commentId: Overload:Grpc.Health.V1.HealthCheckRequest.Google#Protobuf#IMessage#Descriptor
  4832. name.vb: pb::Google.Protobuf.IMessage.Descriptor
  4833. fullName: Grpc.Health.V1.HealthCheckRequest.Google.Protobuf.IMessage.Descriptor
  4834. fullName.vb: Grpc.Health.V1.HealthCheckRequest.pb::Google.Protobuf.IMessage.Descriptor
  4835. nameWithType: HealthCheckRequest.IMessage.Descriptor
  4836. nameWithType.vb: HealthCheckRequest.pb::Google.Protobuf.IMessage.Descriptor
  4837. - uid: Grpc.Health.V1.HealthCheckRequest.MergeFrom(Google.Protobuf.CodedInputStream)
  4838. name: MergeFrom(CodedInputStream)
  4839. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_MergeFrom_Google_Protobuf_CodedInputStream_
  4840. commentId: M:Grpc.Health.V1.HealthCheckRequest.MergeFrom(Google.Protobuf.CodedInputStream)
  4841. fullName: Grpc.Health.V1.HealthCheckRequest.MergeFrom(Google.Protobuf.CodedInputStream)
  4842. nameWithType: HealthCheckRequest.MergeFrom(CodedInputStream)
  4843. - uid: Grpc.Health.V1.HealthCheckRequest.MergeFrom(Grpc.Health.V1.HealthCheckRequest)
  4844. name: MergeFrom(HealthCheckRequest)
  4845. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_MergeFrom_Grpc_Health_V1_HealthCheckRequest_
  4846. commentId: M:Grpc.Health.V1.HealthCheckRequest.MergeFrom(Grpc.Health.V1.HealthCheckRequest)
  4847. fullName: Grpc.Health.V1.HealthCheckRequest.MergeFrom(Grpc.Health.V1.HealthCheckRequest)
  4848. nameWithType: HealthCheckRequest.MergeFrom(HealthCheckRequest)
  4849. - uid: Grpc.Health.V1.HealthCheckRequest.MergeFrom*
  4850. name: MergeFrom
  4851. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_MergeFrom_
  4852. commentId: Overload:Grpc.Health.V1.HealthCheckRequest.MergeFrom
  4853. fullName: Grpc.Health.V1.HealthCheckRequest.MergeFrom
  4854. nameWithType: HealthCheckRequest.MergeFrom
  4855. - uid: Grpc.Health.V1.HealthCheckRequest.Parser
  4856. name: Parser
  4857. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Parser
  4858. commentId: P:Grpc.Health.V1.HealthCheckRequest.Parser
  4859. fullName: Grpc.Health.V1.HealthCheckRequest.Parser
  4860. nameWithType: HealthCheckRequest.Parser
  4861. - uid: Grpc.Health.V1.HealthCheckRequest.Parser*
  4862. name: Parser
  4863. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Parser_
  4864. commentId: Overload:Grpc.Health.V1.HealthCheckRequest.Parser
  4865. fullName: Grpc.Health.V1.HealthCheckRequest.Parser
  4866. nameWithType: HealthCheckRequest.Parser
  4867. - uid: Grpc.Health.V1.HealthCheckRequest.Service
  4868. name: Service
  4869. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Service
  4870. commentId: P:Grpc.Health.V1.HealthCheckRequest.Service
  4871. fullName: Grpc.Health.V1.HealthCheckRequest.Service
  4872. nameWithType: HealthCheckRequest.Service
  4873. - uid: Grpc.Health.V1.HealthCheckRequest.Service*
  4874. name: Service
  4875. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Service_
  4876. commentId: Overload:Grpc.Health.V1.HealthCheckRequest.Service
  4877. fullName: Grpc.Health.V1.HealthCheckRequest.Service
  4878. nameWithType: HealthCheckRequest.Service
  4879. - uid: Grpc.Health.V1.HealthCheckRequest.ServiceFieldNumber
  4880. name: ServiceFieldNumber
  4881. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_ServiceFieldNumber
  4882. commentId: F:Grpc.Health.V1.HealthCheckRequest.ServiceFieldNumber
  4883. fullName: Grpc.Health.V1.HealthCheckRequest.ServiceFieldNumber
  4884. nameWithType: HealthCheckRequest.ServiceFieldNumber
  4885. - uid: Grpc.Health.V1.HealthCheckRequest.ToString
  4886. name: ToString()
  4887. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_ToString
  4888. commentId: M:Grpc.Health.V1.HealthCheckRequest.ToString
  4889. fullName: Grpc.Health.V1.HealthCheckRequest.ToString()
  4890. nameWithType: HealthCheckRequest.ToString()
  4891. - uid: Grpc.Health.V1.HealthCheckRequest.ToString*
  4892. name: ToString
  4893. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_ToString_
  4894. commentId: Overload:Grpc.Health.V1.HealthCheckRequest.ToString
  4895. fullName: Grpc.Health.V1.HealthCheckRequest.ToString
  4896. nameWithType: HealthCheckRequest.ToString
  4897. - uid: Grpc.Health.V1.HealthCheckRequest.WriteTo(Google.Protobuf.CodedOutputStream)
  4898. name: WriteTo(CodedOutputStream)
  4899. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_WriteTo_Google_Protobuf_CodedOutputStream_
  4900. commentId: M:Grpc.Health.V1.HealthCheckRequest.WriteTo(Google.Protobuf.CodedOutputStream)
  4901. fullName: Grpc.Health.V1.HealthCheckRequest.WriteTo(Google.Protobuf.CodedOutputStream)
  4902. nameWithType: HealthCheckRequest.WriteTo(CodedOutputStream)
  4903. - uid: Grpc.Health.V1.HealthCheckRequest.WriteTo*
  4904. name: WriteTo
  4905. href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_WriteTo_
  4906. commentId: Overload:Grpc.Health.V1.HealthCheckRequest.WriteTo
  4907. fullName: Grpc.Health.V1.HealthCheckRequest.WriteTo
  4908. nameWithType: HealthCheckRequest.WriteTo
  4909. - uid: Grpc.Health.V1.HealthCheckResponse
  4910. name: HealthCheckResponse
  4911. href: api/Grpc.Health.V1.HealthCheckResponse.html
  4912. commentId: T:Grpc.Health.V1.HealthCheckResponse
  4913. fullName: Grpc.Health.V1.HealthCheckResponse
  4914. nameWithType: HealthCheckResponse
  4915. - uid: Grpc.Health.V1.HealthCheckResponse.#ctor
  4916. name: HealthCheckResponse()
  4917. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse__ctor
  4918. commentId: M:Grpc.Health.V1.HealthCheckResponse.#ctor
  4919. fullName: Grpc.Health.V1.HealthCheckResponse.HealthCheckResponse()
  4920. nameWithType: HealthCheckResponse.HealthCheckResponse()
  4921. - uid: Grpc.Health.V1.HealthCheckResponse.#ctor(Grpc.Health.V1.HealthCheckResponse)
  4922. name: HealthCheckResponse(HealthCheckResponse)
  4923. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse__ctor_Grpc_Health_V1_HealthCheckResponse_
  4924. commentId: M:Grpc.Health.V1.HealthCheckResponse.#ctor(Grpc.Health.V1.HealthCheckResponse)
  4925. fullName: Grpc.Health.V1.HealthCheckResponse.HealthCheckResponse(Grpc.Health.V1.HealthCheckResponse)
  4926. nameWithType: HealthCheckResponse.HealthCheckResponse(HealthCheckResponse)
  4927. - uid: Grpc.Health.V1.HealthCheckResponse.#ctor*
  4928. name: HealthCheckResponse
  4929. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse__ctor_
  4930. commentId: Overload:Grpc.Health.V1.HealthCheckResponse.#ctor
  4931. fullName: Grpc.Health.V1.HealthCheckResponse.HealthCheckResponse
  4932. nameWithType: HealthCheckResponse.HealthCheckResponse
  4933. - uid: Grpc.Health.V1.HealthCheckResponse.CalculateSize
  4934. name: CalculateSize()
  4935. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_CalculateSize
  4936. commentId: M:Grpc.Health.V1.HealthCheckResponse.CalculateSize
  4937. fullName: Grpc.Health.V1.HealthCheckResponse.CalculateSize()
  4938. nameWithType: HealthCheckResponse.CalculateSize()
  4939. - uid: Grpc.Health.V1.HealthCheckResponse.CalculateSize*
  4940. name: CalculateSize
  4941. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_CalculateSize_
  4942. commentId: Overload:Grpc.Health.V1.HealthCheckResponse.CalculateSize
  4943. fullName: Grpc.Health.V1.HealthCheckResponse.CalculateSize
  4944. nameWithType: HealthCheckResponse.CalculateSize
  4945. - uid: Grpc.Health.V1.HealthCheckResponse.Clone
  4946. name: Clone()
  4947. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Clone
  4948. commentId: M:Grpc.Health.V1.HealthCheckResponse.Clone
  4949. fullName: Grpc.Health.V1.HealthCheckResponse.Clone()
  4950. nameWithType: HealthCheckResponse.Clone()
  4951. - uid: Grpc.Health.V1.HealthCheckResponse.Clone*
  4952. name: Clone
  4953. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Clone_
  4954. commentId: Overload:Grpc.Health.V1.HealthCheckResponse.Clone
  4955. fullName: Grpc.Health.V1.HealthCheckResponse.Clone
  4956. nameWithType: HealthCheckResponse.Clone
  4957. - uid: Grpc.Health.V1.HealthCheckResponse.Descriptor
  4958. name: Descriptor
  4959. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Descriptor
  4960. commentId: P:Grpc.Health.V1.HealthCheckResponse.Descriptor
  4961. fullName: Grpc.Health.V1.HealthCheckResponse.Descriptor
  4962. nameWithType: HealthCheckResponse.Descriptor
  4963. - uid: Grpc.Health.V1.HealthCheckResponse.Descriptor*
  4964. name: Descriptor
  4965. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Descriptor_
  4966. commentId: Overload:Grpc.Health.V1.HealthCheckResponse.Descriptor
  4967. fullName: Grpc.Health.V1.HealthCheckResponse.Descriptor
  4968. nameWithType: HealthCheckResponse.Descriptor
  4969. - uid: Grpc.Health.V1.HealthCheckResponse.Equals(Grpc.Health.V1.HealthCheckResponse)
  4970. name: Equals(HealthCheckResponse)
  4971. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Equals_Grpc_Health_V1_HealthCheckResponse_
  4972. commentId: M:Grpc.Health.V1.HealthCheckResponse.Equals(Grpc.Health.V1.HealthCheckResponse)
  4973. fullName: Grpc.Health.V1.HealthCheckResponse.Equals(Grpc.Health.V1.HealthCheckResponse)
  4974. nameWithType: HealthCheckResponse.Equals(HealthCheckResponse)
  4975. - uid: Grpc.Health.V1.HealthCheckResponse.Equals(System.Object)
  4976. name: Equals(Object)
  4977. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Equals_System_Object_
  4978. commentId: M:Grpc.Health.V1.HealthCheckResponse.Equals(System.Object)
  4979. fullName: Grpc.Health.V1.HealthCheckResponse.Equals(System.Object)
  4980. nameWithType: HealthCheckResponse.Equals(Object)
  4981. - uid: Grpc.Health.V1.HealthCheckResponse.Equals*
  4982. name: Equals
  4983. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Equals_
  4984. commentId: Overload:Grpc.Health.V1.HealthCheckResponse.Equals
  4985. fullName: Grpc.Health.V1.HealthCheckResponse.Equals
  4986. nameWithType: HealthCheckResponse.Equals
  4987. - uid: Grpc.Health.V1.HealthCheckResponse.GetHashCode
  4988. name: GetHashCode()
  4989. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_GetHashCode
  4990. commentId: M:Grpc.Health.V1.HealthCheckResponse.GetHashCode
  4991. fullName: Grpc.Health.V1.HealthCheckResponse.GetHashCode()
  4992. nameWithType: HealthCheckResponse.GetHashCode()
  4993. - uid: Grpc.Health.V1.HealthCheckResponse.GetHashCode*
  4994. name: GetHashCode
  4995. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_GetHashCode_
  4996. commentId: Overload:Grpc.Health.V1.HealthCheckResponse.GetHashCode
  4997. fullName: Grpc.Health.V1.HealthCheckResponse.GetHashCode
  4998. nameWithType: HealthCheckResponse.GetHashCode
  4999. - uid: Grpc.Health.V1.HealthCheckResponse.Google#Protobuf#IMessage#Descriptor
  5000. name: IMessage.Descriptor
  5001. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Google_Protobuf_IMessage_Descriptor
  5002. commentId: P:Grpc.Health.V1.HealthCheckResponse.Google#Protobuf#IMessage#Descriptor
  5003. name.vb: pb::Google.Protobuf.IMessage.Descriptor
  5004. fullName: Grpc.Health.V1.HealthCheckResponse.Google.Protobuf.IMessage.Descriptor
  5005. fullName.vb: Grpc.Health.V1.HealthCheckResponse.pb::Google.Protobuf.IMessage.Descriptor
  5006. nameWithType: HealthCheckResponse.IMessage.Descriptor
  5007. nameWithType.vb: HealthCheckResponse.pb::Google.Protobuf.IMessage.Descriptor
  5008. - uid: Grpc.Health.V1.HealthCheckResponse.Google#Protobuf#IMessage#Descriptor*
  5009. name: IMessage.Descriptor
  5010. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Google_Protobuf_IMessage_Descriptor_
  5011. commentId: Overload:Grpc.Health.V1.HealthCheckResponse.Google#Protobuf#IMessage#Descriptor
  5012. name.vb: pb::Google.Protobuf.IMessage.Descriptor
  5013. fullName: Grpc.Health.V1.HealthCheckResponse.Google.Protobuf.IMessage.Descriptor
  5014. fullName.vb: Grpc.Health.V1.HealthCheckResponse.pb::Google.Protobuf.IMessage.Descriptor
  5015. nameWithType: HealthCheckResponse.IMessage.Descriptor
  5016. nameWithType.vb: HealthCheckResponse.pb::Google.Protobuf.IMessage.Descriptor
  5017. - uid: Grpc.Health.V1.HealthCheckResponse.MergeFrom(Google.Protobuf.CodedInputStream)
  5018. name: MergeFrom(CodedInputStream)
  5019. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_MergeFrom_Google_Protobuf_CodedInputStream_
  5020. commentId: M:Grpc.Health.V1.HealthCheckResponse.MergeFrom(Google.Protobuf.CodedInputStream)
  5021. fullName: Grpc.Health.V1.HealthCheckResponse.MergeFrom(Google.Protobuf.CodedInputStream)
  5022. nameWithType: HealthCheckResponse.MergeFrom(CodedInputStream)
  5023. - uid: Grpc.Health.V1.HealthCheckResponse.MergeFrom(Grpc.Health.V1.HealthCheckResponse)
  5024. name: MergeFrom(HealthCheckResponse)
  5025. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_MergeFrom_Grpc_Health_V1_HealthCheckResponse_
  5026. commentId: M:Grpc.Health.V1.HealthCheckResponse.MergeFrom(Grpc.Health.V1.HealthCheckResponse)
  5027. fullName: Grpc.Health.V1.HealthCheckResponse.MergeFrom(Grpc.Health.V1.HealthCheckResponse)
  5028. nameWithType: HealthCheckResponse.MergeFrom(HealthCheckResponse)
  5029. - uid: Grpc.Health.V1.HealthCheckResponse.MergeFrom*
  5030. name: MergeFrom
  5031. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_MergeFrom_
  5032. commentId: Overload:Grpc.Health.V1.HealthCheckResponse.MergeFrom
  5033. fullName: Grpc.Health.V1.HealthCheckResponse.MergeFrom
  5034. nameWithType: HealthCheckResponse.MergeFrom
  5035. - uid: Grpc.Health.V1.HealthCheckResponse.Parser
  5036. name: Parser
  5037. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Parser
  5038. commentId: P:Grpc.Health.V1.HealthCheckResponse.Parser
  5039. fullName: Grpc.Health.V1.HealthCheckResponse.Parser
  5040. nameWithType: HealthCheckResponse.Parser
  5041. - uid: Grpc.Health.V1.HealthCheckResponse.Parser*
  5042. name: Parser
  5043. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Parser_
  5044. commentId: Overload:Grpc.Health.V1.HealthCheckResponse.Parser
  5045. fullName: Grpc.Health.V1.HealthCheckResponse.Parser
  5046. nameWithType: HealthCheckResponse.Parser
  5047. - uid: Grpc.Health.V1.HealthCheckResponse.Status
  5048. name: Status
  5049. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Status
  5050. commentId: P:Grpc.Health.V1.HealthCheckResponse.Status
  5051. fullName: Grpc.Health.V1.HealthCheckResponse.Status
  5052. nameWithType: HealthCheckResponse.Status
  5053. - uid: Grpc.Health.V1.HealthCheckResponse.Status*
  5054. name: Status
  5055. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Status_
  5056. commentId: Overload:Grpc.Health.V1.HealthCheckResponse.Status
  5057. fullName: Grpc.Health.V1.HealthCheckResponse.Status
  5058. nameWithType: HealthCheckResponse.Status
  5059. - uid: Grpc.Health.V1.HealthCheckResponse.StatusFieldNumber
  5060. name: StatusFieldNumber
  5061. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_StatusFieldNumber
  5062. commentId: F:Grpc.Health.V1.HealthCheckResponse.StatusFieldNumber
  5063. fullName: Grpc.Health.V1.HealthCheckResponse.StatusFieldNumber
  5064. nameWithType: HealthCheckResponse.StatusFieldNumber
  5065. - uid: Grpc.Health.V1.HealthCheckResponse.ToString
  5066. name: ToString()
  5067. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_ToString
  5068. commentId: M:Grpc.Health.V1.HealthCheckResponse.ToString
  5069. fullName: Grpc.Health.V1.HealthCheckResponse.ToString()
  5070. nameWithType: HealthCheckResponse.ToString()
  5071. - uid: Grpc.Health.V1.HealthCheckResponse.ToString*
  5072. name: ToString
  5073. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_ToString_
  5074. commentId: Overload:Grpc.Health.V1.HealthCheckResponse.ToString
  5075. fullName: Grpc.Health.V1.HealthCheckResponse.ToString
  5076. nameWithType: HealthCheckResponse.ToString
  5077. - uid: Grpc.Health.V1.HealthCheckResponse.Types
  5078. name: HealthCheckResponse.Types
  5079. href: api/Grpc.Health.V1.HealthCheckResponse.Types.html
  5080. commentId: T:Grpc.Health.V1.HealthCheckResponse.Types
  5081. fullName: Grpc.Health.V1.HealthCheckResponse.Types
  5082. nameWithType: HealthCheckResponse.Types
  5083. - uid: Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus
  5084. name: HealthCheckResponse.Types.ServingStatus
  5085. href: api/Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.html
  5086. commentId: T:Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus
  5087. fullName: Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus
  5088. nameWithType: HealthCheckResponse.Types.ServingStatus
  5089. - uid: Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.NotServing
  5090. name: NotServing
  5091. href: api/Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.html#Grpc_Health_V1_HealthCheckResponse_Types_ServingStatus_NotServing
  5092. commentId: F:Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.NotServing
  5093. fullName: Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.NotServing
  5094. nameWithType: HealthCheckResponse.Types.ServingStatus.NotServing
  5095. - uid: Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.Serving
  5096. name: Serving
  5097. href: api/Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.html#Grpc_Health_V1_HealthCheckResponse_Types_ServingStatus_Serving
  5098. commentId: F:Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.Serving
  5099. fullName: Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.Serving
  5100. nameWithType: HealthCheckResponse.Types.ServingStatus.Serving
  5101. - uid: Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.Unknown
  5102. name: Unknown
  5103. href: api/Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.html#Grpc_Health_V1_HealthCheckResponse_Types_ServingStatus_Unknown
  5104. commentId: F:Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.Unknown
  5105. fullName: Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.Unknown
  5106. nameWithType: HealthCheckResponse.Types.ServingStatus.Unknown
  5107. - uid: Grpc.Health.V1.HealthCheckResponse.WriteTo(Google.Protobuf.CodedOutputStream)
  5108. name: WriteTo(CodedOutputStream)
  5109. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_WriteTo_Google_Protobuf_CodedOutputStream_
  5110. commentId: M:Grpc.Health.V1.HealthCheckResponse.WriteTo(Google.Protobuf.CodedOutputStream)
  5111. fullName: Grpc.Health.V1.HealthCheckResponse.WriteTo(Google.Protobuf.CodedOutputStream)
  5112. nameWithType: HealthCheckResponse.WriteTo(CodedOutputStream)
  5113. - uid: Grpc.Health.V1.HealthCheckResponse.WriteTo*
  5114. name: WriteTo
  5115. href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_WriteTo_
  5116. commentId: Overload:Grpc.Health.V1.HealthCheckResponse.WriteTo
  5117. fullName: Grpc.Health.V1.HealthCheckResponse.WriteTo
  5118. nameWithType: HealthCheckResponse.WriteTo
  5119. - uid: Grpc.Health.V1.HealthReflection
  5120. name: HealthReflection
  5121. href: api/Grpc.Health.V1.HealthReflection.html
  5122. commentId: T:Grpc.Health.V1.HealthReflection
  5123. fullName: Grpc.Health.V1.HealthReflection
  5124. nameWithType: HealthReflection
  5125. - uid: Grpc.Health.V1.HealthReflection.Descriptor
  5126. name: Descriptor
  5127. href: api/Grpc.Health.V1.HealthReflection.html#Grpc_Health_V1_HealthReflection_Descriptor
  5128. commentId: P:Grpc.Health.V1.HealthReflection.Descriptor
  5129. fullName: Grpc.Health.V1.HealthReflection.Descriptor
  5130. nameWithType: HealthReflection.Descriptor
  5131. - uid: Grpc.Health.V1.HealthReflection.Descriptor*
  5132. name: Descriptor
  5133. href: api/Grpc.Health.V1.HealthReflection.html#Grpc_Health_V1_HealthReflection_Descriptor_
  5134. commentId: Overload:Grpc.Health.V1.HealthReflection.Descriptor
  5135. fullName: Grpc.Health.V1.HealthReflection.Descriptor
  5136. nameWithType: HealthReflection.Descriptor
  5137. - uid: Grpc.HealthCheck
  5138. name: Grpc.HealthCheck
  5139. href: api/Grpc.HealthCheck.html
  5140. commentId: N:Grpc.HealthCheck
  5141. fullName: Grpc.HealthCheck
  5142. nameWithType: Grpc.HealthCheck
  5143. - uid: Grpc.HealthCheck.HealthServiceImpl
  5144. name: HealthServiceImpl
  5145. href: api/Grpc.HealthCheck.HealthServiceImpl.html
  5146. commentId: T:Grpc.HealthCheck.HealthServiceImpl
  5147. fullName: Grpc.HealthCheck.HealthServiceImpl
  5148. nameWithType: HealthServiceImpl
  5149. - uid: Grpc.HealthCheck.HealthServiceImpl.Check(Grpc.Health.V1.HealthCheckRequest,Grpc.Core.ServerCallContext)
  5150. name: Check(HealthCheckRequest, ServerCallContext)
  5151. href: api/Grpc.HealthCheck.HealthServiceImpl.html#Grpc_HealthCheck_HealthServiceImpl_Check_Grpc_Health_V1_HealthCheckRequest_Grpc_Core_ServerCallContext_
  5152. commentId: M:Grpc.HealthCheck.HealthServiceImpl.Check(Grpc.Health.V1.HealthCheckRequest,Grpc.Core.ServerCallContext)
  5153. fullName: Grpc.HealthCheck.HealthServiceImpl.Check(Grpc.Health.V1.HealthCheckRequest, Grpc.Core.ServerCallContext)
  5154. nameWithType: HealthServiceImpl.Check(HealthCheckRequest, ServerCallContext)
  5155. - uid: Grpc.HealthCheck.HealthServiceImpl.Check*
  5156. name: Check
  5157. href: api/Grpc.HealthCheck.HealthServiceImpl.html#Grpc_HealthCheck_HealthServiceImpl_Check_
  5158. commentId: Overload:Grpc.HealthCheck.HealthServiceImpl.Check
  5159. fullName: Grpc.HealthCheck.HealthServiceImpl.Check
  5160. nameWithType: HealthServiceImpl.Check
  5161. - uid: Grpc.HealthCheck.HealthServiceImpl.ClearAll
  5162. name: ClearAll()
  5163. href: api/Grpc.HealthCheck.HealthServiceImpl.html#Grpc_HealthCheck_HealthServiceImpl_ClearAll
  5164. commentId: M:Grpc.HealthCheck.HealthServiceImpl.ClearAll
  5165. fullName: Grpc.HealthCheck.HealthServiceImpl.ClearAll()
  5166. nameWithType: HealthServiceImpl.ClearAll()
  5167. - uid: Grpc.HealthCheck.HealthServiceImpl.ClearAll*
  5168. name: ClearAll
  5169. href: api/Grpc.HealthCheck.HealthServiceImpl.html#Grpc_HealthCheck_HealthServiceImpl_ClearAll_
  5170. commentId: Overload:Grpc.HealthCheck.HealthServiceImpl.ClearAll
  5171. fullName: Grpc.HealthCheck.HealthServiceImpl.ClearAll
  5172. nameWithType: HealthServiceImpl.ClearAll
  5173. - uid: Grpc.HealthCheck.HealthServiceImpl.ClearStatus(System.String)
  5174. name: ClearStatus(String)
  5175. href: api/Grpc.HealthCheck.HealthServiceImpl.html#Grpc_HealthCheck_HealthServiceImpl_ClearStatus_System_String_
  5176. commentId: M:Grpc.HealthCheck.HealthServiceImpl.ClearStatus(System.String)
  5177. fullName: Grpc.HealthCheck.HealthServiceImpl.ClearStatus(System.String)
  5178. nameWithType: HealthServiceImpl.ClearStatus(String)
  5179. - uid: Grpc.HealthCheck.HealthServiceImpl.ClearStatus*
  5180. name: ClearStatus
  5181. href: api/Grpc.HealthCheck.HealthServiceImpl.html#Grpc_HealthCheck_HealthServiceImpl_ClearStatus_
  5182. commentId: Overload:Grpc.HealthCheck.HealthServiceImpl.ClearStatus
  5183. fullName: Grpc.HealthCheck.HealthServiceImpl.ClearStatus
  5184. nameWithType: HealthServiceImpl.ClearStatus
  5185. - uid: Grpc.HealthCheck.HealthServiceImpl.SetStatus(System.String,Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus)
  5186. name: SetStatus(String, HealthCheckResponse.Types.ServingStatus)
  5187. href: api/Grpc.HealthCheck.HealthServiceImpl.html#Grpc_HealthCheck_HealthServiceImpl_SetStatus_System_String_Grpc_Health_V1_HealthCheckResponse_Types_ServingStatus_
  5188. commentId: M:Grpc.HealthCheck.HealthServiceImpl.SetStatus(System.String,Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus)
  5189. fullName: Grpc.HealthCheck.HealthServiceImpl.SetStatus(System.String, Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus)
  5190. nameWithType: HealthServiceImpl.SetStatus(String, HealthCheckResponse.Types.ServingStatus)
  5191. - uid: Grpc.HealthCheck.HealthServiceImpl.SetStatus*
  5192. name: SetStatus
  5193. href: api/Grpc.HealthCheck.HealthServiceImpl.html#Grpc_HealthCheck_HealthServiceImpl_SetStatus_
  5194. commentId: Overload:Grpc.HealthCheck.HealthServiceImpl.SetStatus
  5195. fullName: Grpc.HealthCheck.HealthServiceImpl.SetStatus
  5196. nameWithType: HealthServiceImpl.SetStatus