| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196 |
- ### YamlMime:XRefMap
- sorted: true
- references:
- - uid: Grpc.Auth
- name: Grpc.Auth
- href: api/Grpc.Auth.html
- commentId: N:Grpc.Auth
- fullName: Grpc.Auth
- nameWithType: Grpc.Auth
- - uid: Grpc.Auth.GoogleAuthInterceptors
- name: GoogleAuthInterceptors
- href: api/Grpc.Auth.GoogleAuthInterceptors.html
- commentId: T:Grpc.Auth.GoogleAuthInterceptors
- fullName: Grpc.Auth.GoogleAuthInterceptors
- nameWithType: GoogleAuthInterceptors
- - uid: Grpc.Auth.GoogleAuthInterceptors.FromAccessToken(System.String)
- name: FromAccessToken(String)
- href: api/Grpc.Auth.GoogleAuthInterceptors.html#Grpc_Auth_GoogleAuthInterceptors_FromAccessToken_System_String_
- commentId: M:Grpc.Auth.GoogleAuthInterceptors.FromAccessToken(System.String)
- fullName: Grpc.Auth.GoogleAuthInterceptors.FromAccessToken(System.String)
- nameWithType: GoogleAuthInterceptors.FromAccessToken(String)
- - uid: Grpc.Auth.GoogleAuthInterceptors.FromAccessToken*
- name: FromAccessToken
- href: api/Grpc.Auth.GoogleAuthInterceptors.html#Grpc_Auth_GoogleAuthInterceptors_FromAccessToken_
- commentId: Overload:Grpc.Auth.GoogleAuthInterceptors.FromAccessToken
- fullName: Grpc.Auth.GoogleAuthInterceptors.FromAccessToken
- nameWithType: GoogleAuthInterceptors.FromAccessToken
- - uid: Grpc.Auth.GoogleAuthInterceptors.FromCredential(Google.Apis.Auth.OAuth2.ITokenAccess)
- name: FromCredential(ITokenAccess)
- href: api/Grpc.Auth.GoogleAuthInterceptors.html#Grpc_Auth_GoogleAuthInterceptors_FromCredential_Google_Apis_Auth_OAuth2_ITokenAccess_
- commentId: M:Grpc.Auth.GoogleAuthInterceptors.FromCredential(Google.Apis.Auth.OAuth2.ITokenAccess)
- fullName: Grpc.Auth.GoogleAuthInterceptors.FromCredential(Google.Apis.Auth.OAuth2.ITokenAccess)
- nameWithType: GoogleAuthInterceptors.FromCredential(ITokenAccess)
- - uid: Grpc.Auth.GoogleAuthInterceptors.FromCredential*
- name: FromCredential
- href: api/Grpc.Auth.GoogleAuthInterceptors.html#Grpc_Auth_GoogleAuthInterceptors_FromCredential_
- commentId: Overload:Grpc.Auth.GoogleAuthInterceptors.FromCredential
- fullName: Grpc.Auth.GoogleAuthInterceptors.FromCredential
- nameWithType: GoogleAuthInterceptors.FromCredential
- - uid: Grpc.Auth.GoogleGrpcCredentials
- name: GoogleGrpcCredentials
- href: api/Grpc.Auth.GoogleGrpcCredentials.html
- commentId: T:Grpc.Auth.GoogleGrpcCredentials
- fullName: Grpc.Auth.GoogleGrpcCredentials
- nameWithType: GoogleGrpcCredentials
- - uid: Grpc.Auth.GoogleGrpcCredentials.FromAccessToken(System.String)
- name: FromAccessToken(String)
- href: api/Grpc.Auth.GoogleGrpcCredentials.html#Grpc_Auth_GoogleGrpcCredentials_FromAccessToken_System_String_
- commentId: M:Grpc.Auth.GoogleGrpcCredentials.FromAccessToken(System.String)
- fullName: Grpc.Auth.GoogleGrpcCredentials.FromAccessToken(System.String)
- nameWithType: GoogleGrpcCredentials.FromAccessToken(String)
- - uid: Grpc.Auth.GoogleGrpcCredentials.FromAccessToken*
- name: FromAccessToken
- href: api/Grpc.Auth.GoogleGrpcCredentials.html#Grpc_Auth_GoogleGrpcCredentials_FromAccessToken_
- commentId: Overload:Grpc.Auth.GoogleGrpcCredentials.FromAccessToken
- fullName: Grpc.Auth.GoogleGrpcCredentials.FromAccessToken
- nameWithType: GoogleGrpcCredentials.FromAccessToken
- - uid: Grpc.Auth.GoogleGrpcCredentials.GetApplicationDefaultAsync
- name: GetApplicationDefaultAsync()
- href: api/Grpc.Auth.GoogleGrpcCredentials.html#Grpc_Auth_GoogleGrpcCredentials_GetApplicationDefaultAsync
- commentId: M:Grpc.Auth.GoogleGrpcCredentials.GetApplicationDefaultAsync
- fullName: Grpc.Auth.GoogleGrpcCredentials.GetApplicationDefaultAsync()
- nameWithType: GoogleGrpcCredentials.GetApplicationDefaultAsync()
- - uid: Grpc.Auth.GoogleGrpcCredentials.GetApplicationDefaultAsync*
- name: GetApplicationDefaultAsync
- href: api/Grpc.Auth.GoogleGrpcCredentials.html#Grpc_Auth_GoogleGrpcCredentials_GetApplicationDefaultAsync_
- commentId: Overload:Grpc.Auth.GoogleGrpcCredentials.GetApplicationDefaultAsync
- fullName: Grpc.Auth.GoogleGrpcCredentials.GetApplicationDefaultAsync
- nameWithType: GoogleGrpcCredentials.GetApplicationDefaultAsync
- - uid: Grpc.Auth.GoogleGrpcCredentials.ToCallCredentials(Google.Apis.Auth.OAuth2.ITokenAccess)
- name: ToCallCredentials(ITokenAccess)
- href: api/Grpc.Auth.GoogleGrpcCredentials.html#Grpc_Auth_GoogleGrpcCredentials_ToCallCredentials_Google_Apis_Auth_OAuth2_ITokenAccess_
- commentId: M:Grpc.Auth.GoogleGrpcCredentials.ToCallCredentials(Google.Apis.Auth.OAuth2.ITokenAccess)
- fullName: Grpc.Auth.GoogleGrpcCredentials.ToCallCredentials(Google.Apis.Auth.OAuth2.ITokenAccess)
- nameWithType: GoogleGrpcCredentials.ToCallCredentials(ITokenAccess)
- - uid: Grpc.Auth.GoogleGrpcCredentials.ToCallCredentials*
- name: ToCallCredentials
- href: api/Grpc.Auth.GoogleGrpcCredentials.html#Grpc_Auth_GoogleGrpcCredentials_ToCallCredentials_
- commentId: Overload:Grpc.Auth.GoogleGrpcCredentials.ToCallCredentials
- fullName: Grpc.Auth.GoogleGrpcCredentials.ToCallCredentials
- nameWithType: GoogleGrpcCredentials.ToCallCredentials
- - uid: Grpc.Auth.GoogleGrpcCredentials.ToChannelCredentials(Google.Apis.Auth.OAuth2.ITokenAccess)
- name: ToChannelCredentials(ITokenAccess)
- href: api/Grpc.Auth.GoogleGrpcCredentials.html#Grpc_Auth_GoogleGrpcCredentials_ToChannelCredentials_Google_Apis_Auth_OAuth2_ITokenAccess_
- commentId: M:Grpc.Auth.GoogleGrpcCredentials.ToChannelCredentials(Google.Apis.Auth.OAuth2.ITokenAccess)
- fullName: Grpc.Auth.GoogleGrpcCredentials.ToChannelCredentials(Google.Apis.Auth.OAuth2.ITokenAccess)
- nameWithType: GoogleGrpcCredentials.ToChannelCredentials(ITokenAccess)
- - uid: Grpc.Auth.GoogleGrpcCredentials.ToChannelCredentials*
- name: ToChannelCredentials
- href: api/Grpc.Auth.GoogleGrpcCredentials.html#Grpc_Auth_GoogleGrpcCredentials_ToChannelCredentials_
- commentId: Overload:Grpc.Auth.GoogleGrpcCredentials.ToChannelCredentials
- fullName: Grpc.Auth.GoogleGrpcCredentials.ToChannelCredentials
- nameWithType: GoogleGrpcCredentials.ToChannelCredentials
- - uid: Grpc.Core
- name: Grpc.Core
- href: api/Grpc.Core.html
- commentId: N:Grpc.Core
- fullName: Grpc.Core
- nameWithType: Grpc.Core
- - uid: Grpc.Core.AsyncAuthInterceptor
- name: AsyncAuthInterceptor
- href: api/Grpc.Core.AsyncAuthInterceptor.html
- commentId: T:Grpc.Core.AsyncAuthInterceptor
- fullName: Grpc.Core.AsyncAuthInterceptor
- nameWithType: AsyncAuthInterceptor
- - uid: Grpc.Core.AsyncClientStreamingCall`2
- name: AsyncClientStreamingCall<TRequest, TResponse>
- href: api/Grpc.Core.AsyncClientStreamingCall-2.html
- commentId: T:Grpc.Core.AsyncClientStreamingCall`2
- name.vb: AsyncClientStreamingCall(Of TRequest, TResponse)
- fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>
- fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse)
- nameWithType: AsyncClientStreamingCall<TRequest, TResponse>
- nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse)
- - uid: Grpc.Core.AsyncClientStreamingCall`2.Dispose
- name: Dispose()
- href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_Dispose
- commentId: M:Grpc.Core.AsyncClientStreamingCall`2.Dispose
- fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.Dispose()
- fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).Dispose()
- nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.Dispose()
- nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).Dispose()
- - uid: Grpc.Core.AsyncClientStreamingCall`2.Dispose*
- name: Dispose
- href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_Dispose_
- commentId: Overload:Grpc.Core.AsyncClientStreamingCall`2.Dispose
- fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.Dispose
- fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).Dispose
- nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.Dispose
- nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).Dispose
- - uid: Grpc.Core.AsyncClientStreamingCall`2.GetAwaiter
- name: GetAwaiter()
- href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_GetAwaiter
- commentId: M:Grpc.Core.AsyncClientStreamingCall`2.GetAwaiter
- fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.GetAwaiter()
- fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).GetAwaiter()
- nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.GetAwaiter()
- nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).GetAwaiter()
- - uid: Grpc.Core.AsyncClientStreamingCall`2.GetAwaiter*
- name: GetAwaiter
- href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_GetAwaiter_
- commentId: Overload:Grpc.Core.AsyncClientStreamingCall`2.GetAwaiter
- fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.GetAwaiter
- fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).GetAwaiter
- nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.GetAwaiter
- nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).GetAwaiter
- - uid: Grpc.Core.AsyncClientStreamingCall`2.GetStatus
- name: GetStatus()
- href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_GetStatus
- commentId: M:Grpc.Core.AsyncClientStreamingCall`2.GetStatus
- fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.GetStatus()
- fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).GetStatus()
- nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.GetStatus()
- nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).GetStatus()
- - uid: Grpc.Core.AsyncClientStreamingCall`2.GetStatus*
- name: GetStatus
- href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_GetStatus_
- commentId: Overload:Grpc.Core.AsyncClientStreamingCall`2.GetStatus
- fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.GetStatus
- fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).GetStatus
- nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.GetStatus
- nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).GetStatus
- - uid: Grpc.Core.AsyncClientStreamingCall`2.GetTrailers
- name: GetTrailers()
- href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_GetTrailers
- commentId: M:Grpc.Core.AsyncClientStreamingCall`2.GetTrailers
- fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.GetTrailers()
- fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).GetTrailers()
- nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.GetTrailers()
- nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).GetTrailers()
- - uid: Grpc.Core.AsyncClientStreamingCall`2.GetTrailers*
- name: GetTrailers
- href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_GetTrailers_
- commentId: Overload:Grpc.Core.AsyncClientStreamingCall`2.GetTrailers
- fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.GetTrailers
- fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).GetTrailers
- nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.GetTrailers
- nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).GetTrailers
- - uid: Grpc.Core.AsyncClientStreamingCall`2.RequestStream
- name: RequestStream
- href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_RequestStream
- commentId: P:Grpc.Core.AsyncClientStreamingCall`2.RequestStream
- fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.RequestStream
- fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).RequestStream
- nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.RequestStream
- nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).RequestStream
- - uid: Grpc.Core.AsyncClientStreamingCall`2.RequestStream*
- name: RequestStream
- href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_RequestStream_
- commentId: Overload:Grpc.Core.AsyncClientStreamingCall`2.RequestStream
- fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.RequestStream
- fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).RequestStream
- nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.RequestStream
- nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).RequestStream
- - uid: Grpc.Core.AsyncClientStreamingCall`2.ResponseAsync
- name: ResponseAsync
- href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_ResponseAsync
- commentId: P:Grpc.Core.AsyncClientStreamingCall`2.ResponseAsync
- fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.ResponseAsync
- fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).ResponseAsync
- nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.ResponseAsync
- nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).ResponseAsync
- - uid: Grpc.Core.AsyncClientStreamingCall`2.ResponseAsync*
- name: ResponseAsync
- href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_ResponseAsync_
- commentId: Overload:Grpc.Core.AsyncClientStreamingCall`2.ResponseAsync
- fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.ResponseAsync
- fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).ResponseAsync
- nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.ResponseAsync
- nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).ResponseAsync
- - uid: Grpc.Core.AsyncClientStreamingCall`2.ResponseHeadersAsync
- name: ResponseHeadersAsync
- href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_ResponseHeadersAsync
- commentId: P:Grpc.Core.AsyncClientStreamingCall`2.ResponseHeadersAsync
- fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.ResponseHeadersAsync
- fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).ResponseHeadersAsync
- nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.ResponseHeadersAsync
- nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).ResponseHeadersAsync
- - uid: Grpc.Core.AsyncClientStreamingCall`2.ResponseHeadersAsync*
- name: ResponseHeadersAsync
- href: api/Grpc.Core.AsyncClientStreamingCall-2.html#Grpc_Core_AsyncClientStreamingCall_2_ResponseHeadersAsync_
- commentId: Overload:Grpc.Core.AsyncClientStreamingCall`2.ResponseHeadersAsync
- fullName: Grpc.Core.AsyncClientStreamingCall<TRequest, TResponse>.ResponseHeadersAsync
- fullName.vb: Grpc.Core.AsyncClientStreamingCall(Of TRequest, TResponse).ResponseHeadersAsync
- nameWithType: AsyncClientStreamingCall<TRequest, TResponse>.ResponseHeadersAsync
- nameWithType.vb: AsyncClientStreamingCall(Of TRequest, TResponse).ResponseHeadersAsync
- - uid: Grpc.Core.AsyncDuplexStreamingCall`2
- name: AsyncDuplexStreamingCall<TRequest, TResponse>
- href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html
- commentId: T:Grpc.Core.AsyncDuplexStreamingCall`2
- name.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse)
- fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>
- fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse)
- nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>
- nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse)
- - uid: Grpc.Core.AsyncDuplexStreamingCall`2.Dispose
- name: Dispose()
- href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html#Grpc_Core_AsyncDuplexStreamingCall_2_Dispose
- commentId: M:Grpc.Core.AsyncDuplexStreamingCall`2.Dispose
- fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>.Dispose()
- fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse).Dispose()
- nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>.Dispose()
- nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse).Dispose()
- - uid: Grpc.Core.AsyncDuplexStreamingCall`2.Dispose*
- name: Dispose
- href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html#Grpc_Core_AsyncDuplexStreamingCall_2_Dispose_
- commentId: Overload:Grpc.Core.AsyncDuplexStreamingCall`2.Dispose
- fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>.Dispose
- fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse).Dispose
- nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>.Dispose
- nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse).Dispose
- - uid: Grpc.Core.AsyncDuplexStreamingCall`2.GetStatus
- name: GetStatus()
- href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html#Grpc_Core_AsyncDuplexStreamingCall_2_GetStatus
- commentId: M:Grpc.Core.AsyncDuplexStreamingCall`2.GetStatus
- fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>.GetStatus()
- fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse).GetStatus()
- nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>.GetStatus()
- nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse).GetStatus()
- - uid: Grpc.Core.AsyncDuplexStreamingCall`2.GetStatus*
- name: GetStatus
- href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html#Grpc_Core_AsyncDuplexStreamingCall_2_GetStatus_
- commentId: Overload:Grpc.Core.AsyncDuplexStreamingCall`2.GetStatus
- fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>.GetStatus
- fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse).GetStatus
- nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>.GetStatus
- nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse).GetStatus
- - uid: Grpc.Core.AsyncDuplexStreamingCall`2.GetTrailers
- name: GetTrailers()
- href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html#Grpc_Core_AsyncDuplexStreamingCall_2_GetTrailers
- commentId: M:Grpc.Core.AsyncDuplexStreamingCall`2.GetTrailers
- fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>.GetTrailers()
- fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse).GetTrailers()
- nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>.GetTrailers()
- nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse).GetTrailers()
- - uid: Grpc.Core.AsyncDuplexStreamingCall`2.GetTrailers*
- name: GetTrailers
- href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html#Grpc_Core_AsyncDuplexStreamingCall_2_GetTrailers_
- commentId: Overload:Grpc.Core.AsyncDuplexStreamingCall`2.GetTrailers
- fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>.GetTrailers
- fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse).GetTrailers
- nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>.GetTrailers
- nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse).GetTrailers
- - uid: Grpc.Core.AsyncDuplexStreamingCall`2.RequestStream
- name: RequestStream
- href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html#Grpc_Core_AsyncDuplexStreamingCall_2_RequestStream
- commentId: P:Grpc.Core.AsyncDuplexStreamingCall`2.RequestStream
- fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>.RequestStream
- fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse).RequestStream
- nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>.RequestStream
- nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse).RequestStream
- - uid: Grpc.Core.AsyncDuplexStreamingCall`2.RequestStream*
- name: RequestStream
- href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html#Grpc_Core_AsyncDuplexStreamingCall_2_RequestStream_
- commentId: Overload:Grpc.Core.AsyncDuplexStreamingCall`2.RequestStream
- fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>.RequestStream
- fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse).RequestStream
- nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>.RequestStream
- nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse).RequestStream
- - uid: Grpc.Core.AsyncDuplexStreamingCall`2.ResponseHeadersAsync
- name: ResponseHeadersAsync
- href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html#Grpc_Core_AsyncDuplexStreamingCall_2_ResponseHeadersAsync
- commentId: P:Grpc.Core.AsyncDuplexStreamingCall`2.ResponseHeadersAsync
- fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>.ResponseHeadersAsync
- fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse).ResponseHeadersAsync
- nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>.ResponseHeadersAsync
- nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse).ResponseHeadersAsync
- - uid: Grpc.Core.AsyncDuplexStreamingCall`2.ResponseHeadersAsync*
- name: ResponseHeadersAsync
- href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html#Grpc_Core_AsyncDuplexStreamingCall_2_ResponseHeadersAsync_
- commentId: Overload:Grpc.Core.AsyncDuplexStreamingCall`2.ResponseHeadersAsync
- fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>.ResponseHeadersAsync
- fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse).ResponseHeadersAsync
- nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>.ResponseHeadersAsync
- nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse).ResponseHeadersAsync
- - uid: Grpc.Core.AsyncDuplexStreamingCall`2.ResponseStream
- name: ResponseStream
- href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html#Grpc_Core_AsyncDuplexStreamingCall_2_ResponseStream
- commentId: P:Grpc.Core.AsyncDuplexStreamingCall`2.ResponseStream
- fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>.ResponseStream
- fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse).ResponseStream
- nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>.ResponseStream
- nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse).ResponseStream
- - uid: Grpc.Core.AsyncDuplexStreamingCall`2.ResponseStream*
- name: ResponseStream
- href: api/Grpc.Core.AsyncDuplexStreamingCall-2.html#Grpc_Core_AsyncDuplexStreamingCall_2_ResponseStream_
- commentId: Overload:Grpc.Core.AsyncDuplexStreamingCall`2.ResponseStream
- fullName: Grpc.Core.AsyncDuplexStreamingCall<TRequest, TResponse>.ResponseStream
- fullName.vb: Grpc.Core.AsyncDuplexStreamingCall(Of TRequest, TResponse).ResponseStream
- nameWithType: AsyncDuplexStreamingCall<TRequest, TResponse>.ResponseStream
- nameWithType.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse).ResponseStream
- - uid: Grpc.Core.AsyncServerStreamingCall`1
- name: AsyncServerStreamingCall<TResponse>
- href: api/Grpc.Core.AsyncServerStreamingCall-1.html
- commentId: T:Grpc.Core.AsyncServerStreamingCall`1
- name.vb: AsyncServerStreamingCall(Of TResponse)
- fullName: Grpc.Core.AsyncServerStreamingCall<TResponse>
- fullName.vb: Grpc.Core.AsyncServerStreamingCall(Of TResponse)
- nameWithType: AsyncServerStreamingCall<TResponse>
- nameWithType.vb: AsyncServerStreamingCall(Of TResponse)
- - uid: Grpc.Core.AsyncServerStreamingCall`1.Dispose
- name: Dispose()
- href: api/Grpc.Core.AsyncServerStreamingCall-1.html#Grpc_Core_AsyncServerStreamingCall_1_Dispose
- commentId: M:Grpc.Core.AsyncServerStreamingCall`1.Dispose
- fullName: Grpc.Core.AsyncServerStreamingCall<TResponse>.Dispose()
- fullName.vb: Grpc.Core.AsyncServerStreamingCall(Of TResponse).Dispose()
- nameWithType: AsyncServerStreamingCall<TResponse>.Dispose()
- nameWithType.vb: AsyncServerStreamingCall(Of TResponse).Dispose()
- - uid: Grpc.Core.AsyncServerStreamingCall`1.Dispose*
- name: Dispose
- href: api/Grpc.Core.AsyncServerStreamingCall-1.html#Grpc_Core_AsyncServerStreamingCall_1_Dispose_
- commentId: Overload:Grpc.Core.AsyncServerStreamingCall`1.Dispose
- fullName: Grpc.Core.AsyncServerStreamingCall<TResponse>.Dispose
- fullName.vb: Grpc.Core.AsyncServerStreamingCall(Of TResponse).Dispose
- nameWithType: AsyncServerStreamingCall<TResponse>.Dispose
- nameWithType.vb: AsyncServerStreamingCall(Of TResponse).Dispose
- - uid: Grpc.Core.AsyncServerStreamingCall`1.GetStatus
- name: GetStatus()
- href: api/Grpc.Core.AsyncServerStreamingCall-1.html#Grpc_Core_AsyncServerStreamingCall_1_GetStatus
- commentId: M:Grpc.Core.AsyncServerStreamingCall`1.GetStatus
- fullName: Grpc.Core.AsyncServerStreamingCall<TResponse>.GetStatus()
- fullName.vb: Grpc.Core.AsyncServerStreamingCall(Of TResponse).GetStatus()
- nameWithType: AsyncServerStreamingCall<TResponse>.GetStatus()
- nameWithType.vb: AsyncServerStreamingCall(Of TResponse).GetStatus()
- - uid: Grpc.Core.AsyncServerStreamingCall`1.GetStatus*
- name: GetStatus
- href: api/Grpc.Core.AsyncServerStreamingCall-1.html#Grpc_Core_AsyncServerStreamingCall_1_GetStatus_
- commentId: Overload:Grpc.Core.AsyncServerStreamingCall`1.GetStatus
- fullName: Grpc.Core.AsyncServerStreamingCall<TResponse>.GetStatus
- fullName.vb: Grpc.Core.AsyncServerStreamingCall(Of TResponse).GetStatus
- nameWithType: AsyncServerStreamingCall<TResponse>.GetStatus
- nameWithType.vb: AsyncServerStreamingCall(Of TResponse).GetStatus
- - uid: Grpc.Core.AsyncServerStreamingCall`1.GetTrailers
- name: GetTrailers()
- href: api/Grpc.Core.AsyncServerStreamingCall-1.html#Grpc_Core_AsyncServerStreamingCall_1_GetTrailers
- commentId: M:Grpc.Core.AsyncServerStreamingCall`1.GetTrailers
- fullName: Grpc.Core.AsyncServerStreamingCall<TResponse>.GetTrailers()
- fullName.vb: Grpc.Core.AsyncServerStreamingCall(Of TResponse).GetTrailers()
- nameWithType: AsyncServerStreamingCall<TResponse>.GetTrailers()
- nameWithType.vb: AsyncServerStreamingCall(Of TResponse).GetTrailers()
- - uid: Grpc.Core.AsyncServerStreamingCall`1.GetTrailers*
- name: GetTrailers
- href: api/Grpc.Core.AsyncServerStreamingCall-1.html#Grpc_Core_AsyncServerStreamingCall_1_GetTrailers_
- commentId: Overload:Grpc.Core.AsyncServerStreamingCall`1.GetTrailers
- fullName: Grpc.Core.AsyncServerStreamingCall<TResponse>.GetTrailers
- fullName.vb: Grpc.Core.AsyncServerStreamingCall(Of TResponse).GetTrailers
- nameWithType: AsyncServerStreamingCall<TResponse>.GetTrailers
- nameWithType.vb: AsyncServerStreamingCall(Of TResponse).GetTrailers
- - uid: Grpc.Core.AsyncServerStreamingCall`1.ResponseHeadersAsync
- name: ResponseHeadersAsync
- href: api/Grpc.Core.AsyncServerStreamingCall-1.html#Grpc_Core_AsyncServerStreamingCall_1_ResponseHeadersAsync
- commentId: P:Grpc.Core.AsyncServerStreamingCall`1.ResponseHeadersAsync
- fullName: Grpc.Core.AsyncServerStreamingCall<TResponse>.ResponseHeadersAsync
- fullName.vb: Grpc.Core.AsyncServerStreamingCall(Of TResponse).ResponseHeadersAsync
- nameWithType: AsyncServerStreamingCall<TResponse>.ResponseHeadersAsync
- nameWithType.vb: AsyncServerStreamingCall(Of TResponse).ResponseHeadersAsync
- - uid: Grpc.Core.AsyncServerStreamingCall`1.ResponseHeadersAsync*
- name: ResponseHeadersAsync
- href: api/Grpc.Core.AsyncServerStreamingCall-1.html#Grpc_Core_AsyncServerStreamingCall_1_ResponseHeadersAsync_
- commentId: Overload:Grpc.Core.AsyncServerStreamingCall`1.ResponseHeadersAsync
- fullName: Grpc.Core.AsyncServerStreamingCall<TResponse>.ResponseHeadersAsync
- fullName.vb: Grpc.Core.AsyncServerStreamingCall(Of TResponse).ResponseHeadersAsync
- nameWithType: AsyncServerStreamingCall<TResponse>.ResponseHeadersAsync
- nameWithType.vb: AsyncServerStreamingCall(Of TResponse).ResponseHeadersAsync
- - uid: Grpc.Core.AsyncServerStreamingCall`1.ResponseStream
- name: ResponseStream
- href: api/Grpc.Core.AsyncServerStreamingCall-1.html#Grpc_Core_AsyncServerStreamingCall_1_ResponseStream
- commentId: P:Grpc.Core.AsyncServerStreamingCall`1.ResponseStream
- fullName: Grpc.Core.AsyncServerStreamingCall<TResponse>.ResponseStream
- fullName.vb: Grpc.Core.AsyncServerStreamingCall(Of TResponse).ResponseStream
- nameWithType: AsyncServerStreamingCall<TResponse>.ResponseStream
- nameWithType.vb: AsyncServerStreamingCall(Of TResponse).ResponseStream
- - uid: Grpc.Core.AsyncServerStreamingCall`1.ResponseStream*
- name: ResponseStream
- href: api/Grpc.Core.AsyncServerStreamingCall-1.html#Grpc_Core_AsyncServerStreamingCall_1_ResponseStream_
- commentId: Overload:Grpc.Core.AsyncServerStreamingCall`1.ResponseStream
- fullName: Grpc.Core.AsyncServerStreamingCall<TResponse>.ResponseStream
- fullName.vb: Grpc.Core.AsyncServerStreamingCall(Of TResponse).ResponseStream
- nameWithType: AsyncServerStreamingCall<TResponse>.ResponseStream
- nameWithType.vb: AsyncServerStreamingCall(Of TResponse).ResponseStream
- - uid: Grpc.Core.AsyncUnaryCall`1
- name: AsyncUnaryCall<TResponse>
- href: api/Grpc.Core.AsyncUnaryCall-1.html
- commentId: T:Grpc.Core.AsyncUnaryCall`1
- name.vb: AsyncUnaryCall(Of TResponse)
- fullName: Grpc.Core.AsyncUnaryCall<TResponse>
- fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse)
- nameWithType: AsyncUnaryCall<TResponse>
- nameWithType.vb: AsyncUnaryCall(Of TResponse)
- - uid: Grpc.Core.AsyncUnaryCall`1.Dispose
- name: Dispose()
- href: api/Grpc.Core.AsyncUnaryCall-1.html#Grpc_Core_AsyncUnaryCall_1_Dispose
- commentId: M:Grpc.Core.AsyncUnaryCall`1.Dispose
- fullName: Grpc.Core.AsyncUnaryCall<TResponse>.Dispose()
- fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse).Dispose()
- nameWithType: AsyncUnaryCall<TResponse>.Dispose()
- nameWithType.vb: AsyncUnaryCall(Of TResponse).Dispose()
- - uid: Grpc.Core.AsyncUnaryCall`1.Dispose*
- name: Dispose
- href: api/Grpc.Core.AsyncUnaryCall-1.html#Grpc_Core_AsyncUnaryCall_1_Dispose_
- commentId: Overload:Grpc.Core.AsyncUnaryCall`1.Dispose
- fullName: Grpc.Core.AsyncUnaryCall<TResponse>.Dispose
- fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse).Dispose
- nameWithType: AsyncUnaryCall<TResponse>.Dispose
- nameWithType.vb: AsyncUnaryCall(Of TResponse).Dispose
- - uid: Grpc.Core.AsyncUnaryCall`1.GetAwaiter
- name: GetAwaiter()
- href: api/Grpc.Core.AsyncUnaryCall-1.html#Grpc_Core_AsyncUnaryCall_1_GetAwaiter
- commentId: M:Grpc.Core.AsyncUnaryCall`1.GetAwaiter
- fullName: Grpc.Core.AsyncUnaryCall<TResponse>.GetAwaiter()
- fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse).GetAwaiter()
- nameWithType: AsyncUnaryCall<TResponse>.GetAwaiter()
- nameWithType.vb: AsyncUnaryCall(Of TResponse).GetAwaiter()
- - uid: Grpc.Core.AsyncUnaryCall`1.GetAwaiter*
- name: GetAwaiter
- href: api/Grpc.Core.AsyncUnaryCall-1.html#Grpc_Core_AsyncUnaryCall_1_GetAwaiter_
- commentId: Overload:Grpc.Core.AsyncUnaryCall`1.GetAwaiter
- fullName: Grpc.Core.AsyncUnaryCall<TResponse>.GetAwaiter
- fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse).GetAwaiter
- nameWithType: AsyncUnaryCall<TResponse>.GetAwaiter
- nameWithType.vb: AsyncUnaryCall(Of TResponse).GetAwaiter
- - uid: Grpc.Core.AsyncUnaryCall`1.GetStatus
- name: GetStatus()
- href: api/Grpc.Core.AsyncUnaryCall-1.html#Grpc_Core_AsyncUnaryCall_1_GetStatus
- commentId: M:Grpc.Core.AsyncUnaryCall`1.GetStatus
- fullName: Grpc.Core.AsyncUnaryCall<TResponse>.GetStatus()
- fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse).GetStatus()
- nameWithType: AsyncUnaryCall<TResponse>.GetStatus()
- nameWithType.vb: AsyncUnaryCall(Of TResponse).GetStatus()
- - uid: Grpc.Core.AsyncUnaryCall`1.GetStatus*
- name: GetStatus
- href: api/Grpc.Core.AsyncUnaryCall-1.html#Grpc_Core_AsyncUnaryCall_1_GetStatus_
- commentId: Overload:Grpc.Core.AsyncUnaryCall`1.GetStatus
- fullName: Grpc.Core.AsyncUnaryCall<TResponse>.GetStatus
- fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse).GetStatus
- nameWithType: AsyncUnaryCall<TResponse>.GetStatus
- nameWithType.vb: AsyncUnaryCall(Of TResponse).GetStatus
- - uid: Grpc.Core.AsyncUnaryCall`1.GetTrailers
- name: GetTrailers()
- href: api/Grpc.Core.AsyncUnaryCall-1.html#Grpc_Core_AsyncUnaryCall_1_GetTrailers
- commentId: M:Grpc.Core.AsyncUnaryCall`1.GetTrailers
- fullName: Grpc.Core.AsyncUnaryCall<TResponse>.GetTrailers()
- fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse).GetTrailers()
- nameWithType: AsyncUnaryCall<TResponse>.GetTrailers()
- nameWithType.vb: AsyncUnaryCall(Of TResponse).GetTrailers()
- - uid: Grpc.Core.AsyncUnaryCall`1.GetTrailers*
- name: GetTrailers
- href: api/Grpc.Core.AsyncUnaryCall-1.html#Grpc_Core_AsyncUnaryCall_1_GetTrailers_
- commentId: Overload:Grpc.Core.AsyncUnaryCall`1.GetTrailers
- fullName: Grpc.Core.AsyncUnaryCall<TResponse>.GetTrailers
- fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse).GetTrailers
- nameWithType: AsyncUnaryCall<TResponse>.GetTrailers
- nameWithType.vb: AsyncUnaryCall(Of TResponse).GetTrailers
- - uid: Grpc.Core.AsyncUnaryCall`1.ResponseAsync
- name: ResponseAsync
- href: api/Grpc.Core.AsyncUnaryCall-1.html#Grpc_Core_AsyncUnaryCall_1_ResponseAsync
- commentId: P:Grpc.Core.AsyncUnaryCall`1.ResponseAsync
- fullName: Grpc.Core.AsyncUnaryCall<TResponse>.ResponseAsync
- fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse).ResponseAsync
- nameWithType: AsyncUnaryCall<TResponse>.ResponseAsync
- nameWithType.vb: AsyncUnaryCall(Of TResponse).ResponseAsync
- - uid: Grpc.Core.AsyncUnaryCall`1.ResponseAsync*
- name: ResponseAsync
- href: api/Grpc.Core.AsyncUnaryCall-1.html#Grpc_Core_AsyncUnaryCall_1_ResponseAsync_
- commentId: Overload:Grpc.Core.AsyncUnaryCall`1.ResponseAsync
- fullName: Grpc.Core.AsyncUnaryCall<TResponse>.ResponseAsync
- fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse).ResponseAsync
- nameWithType: AsyncUnaryCall<TResponse>.ResponseAsync
- nameWithType.vb: AsyncUnaryCall(Of TResponse).ResponseAsync
- - uid: Grpc.Core.AsyncUnaryCall`1.ResponseHeadersAsync
- name: ResponseHeadersAsync
- href: api/Grpc.Core.AsyncUnaryCall-1.html#Grpc_Core_AsyncUnaryCall_1_ResponseHeadersAsync
- commentId: P:Grpc.Core.AsyncUnaryCall`1.ResponseHeadersAsync
- fullName: Grpc.Core.AsyncUnaryCall<TResponse>.ResponseHeadersAsync
- fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse).ResponseHeadersAsync
- nameWithType: AsyncUnaryCall<TResponse>.ResponseHeadersAsync
- nameWithType.vb: AsyncUnaryCall(Of TResponse).ResponseHeadersAsync
- - uid: Grpc.Core.AsyncUnaryCall`1.ResponseHeadersAsync*
- name: ResponseHeadersAsync
- href: api/Grpc.Core.AsyncUnaryCall-1.html#Grpc_Core_AsyncUnaryCall_1_ResponseHeadersAsync_
- commentId: Overload:Grpc.Core.AsyncUnaryCall`1.ResponseHeadersAsync
- fullName: Grpc.Core.AsyncUnaryCall<TResponse>.ResponseHeadersAsync
- fullName.vb: Grpc.Core.AsyncUnaryCall(Of TResponse).ResponseHeadersAsync
- nameWithType: AsyncUnaryCall<TResponse>.ResponseHeadersAsync
- nameWithType.vb: AsyncUnaryCall(Of TResponse).ResponseHeadersAsync
- - uid: Grpc.Core.AuthContext
- name: AuthContext
- href: api/Grpc.Core.AuthContext.html
- commentId: T:Grpc.Core.AuthContext
- fullName: Grpc.Core.AuthContext
- nameWithType: AuthContext
- - uid: Grpc.Core.AuthContext.FindPropertiesByName(System.String)
- name: FindPropertiesByName(String)
- href: api/Grpc.Core.AuthContext.html#Grpc_Core_AuthContext_FindPropertiesByName_System_String_
- commentId: M:Grpc.Core.AuthContext.FindPropertiesByName(System.String)
- fullName: Grpc.Core.AuthContext.FindPropertiesByName(System.String)
- nameWithType: AuthContext.FindPropertiesByName(String)
- - uid: Grpc.Core.AuthContext.FindPropertiesByName*
- name: FindPropertiesByName
- href: api/Grpc.Core.AuthContext.html#Grpc_Core_AuthContext_FindPropertiesByName_
- commentId: Overload:Grpc.Core.AuthContext.FindPropertiesByName
- fullName: Grpc.Core.AuthContext.FindPropertiesByName
- nameWithType: AuthContext.FindPropertiesByName
- - uid: Grpc.Core.AuthContext.IsPeerAuthenticated
- name: IsPeerAuthenticated
- href: api/Grpc.Core.AuthContext.html#Grpc_Core_AuthContext_IsPeerAuthenticated
- commentId: P:Grpc.Core.AuthContext.IsPeerAuthenticated
- fullName: Grpc.Core.AuthContext.IsPeerAuthenticated
- nameWithType: AuthContext.IsPeerAuthenticated
- - uid: Grpc.Core.AuthContext.IsPeerAuthenticated*
- name: IsPeerAuthenticated
- href: api/Grpc.Core.AuthContext.html#Grpc_Core_AuthContext_IsPeerAuthenticated_
- commentId: Overload:Grpc.Core.AuthContext.IsPeerAuthenticated
- fullName: Grpc.Core.AuthContext.IsPeerAuthenticated
- nameWithType: AuthContext.IsPeerAuthenticated
- - uid: Grpc.Core.AuthContext.PeerIdentity
- name: PeerIdentity
- href: api/Grpc.Core.AuthContext.html#Grpc_Core_AuthContext_PeerIdentity
- commentId: P:Grpc.Core.AuthContext.PeerIdentity
- fullName: Grpc.Core.AuthContext.PeerIdentity
- nameWithType: AuthContext.PeerIdentity
- - uid: Grpc.Core.AuthContext.PeerIdentity*
- name: PeerIdentity
- href: api/Grpc.Core.AuthContext.html#Grpc_Core_AuthContext_PeerIdentity_
- commentId: Overload:Grpc.Core.AuthContext.PeerIdentity
- fullName: Grpc.Core.AuthContext.PeerIdentity
- nameWithType: AuthContext.PeerIdentity
- - uid: Grpc.Core.AuthContext.PeerIdentityPropertyName
- name: PeerIdentityPropertyName
- href: api/Grpc.Core.AuthContext.html#Grpc_Core_AuthContext_PeerIdentityPropertyName
- commentId: P:Grpc.Core.AuthContext.PeerIdentityPropertyName
- fullName: Grpc.Core.AuthContext.PeerIdentityPropertyName
- nameWithType: AuthContext.PeerIdentityPropertyName
- - uid: Grpc.Core.AuthContext.PeerIdentityPropertyName*
- name: PeerIdentityPropertyName
- href: api/Grpc.Core.AuthContext.html#Grpc_Core_AuthContext_PeerIdentityPropertyName_
- commentId: Overload:Grpc.Core.AuthContext.PeerIdentityPropertyName
- fullName: Grpc.Core.AuthContext.PeerIdentityPropertyName
- nameWithType: AuthContext.PeerIdentityPropertyName
- - uid: Grpc.Core.AuthContext.Properties
- name: Properties
- href: api/Grpc.Core.AuthContext.html#Grpc_Core_AuthContext_Properties
- commentId: P:Grpc.Core.AuthContext.Properties
- fullName: Grpc.Core.AuthContext.Properties
- nameWithType: AuthContext.Properties
- - uid: Grpc.Core.AuthContext.Properties*
- name: Properties
- href: api/Grpc.Core.AuthContext.html#Grpc_Core_AuthContext_Properties_
- commentId: Overload:Grpc.Core.AuthContext.Properties
- fullName: Grpc.Core.AuthContext.Properties
- nameWithType: AuthContext.Properties
- - uid: Grpc.Core.AuthInterceptorContext
- name: AuthInterceptorContext
- href: api/Grpc.Core.AuthInterceptorContext.html
- commentId: T:Grpc.Core.AuthInterceptorContext
- fullName: Grpc.Core.AuthInterceptorContext
- nameWithType: AuthInterceptorContext
- - uid: Grpc.Core.AuthInterceptorContext.#ctor(System.String,System.String)
- name: AuthInterceptorContext(String, String)
- href: api/Grpc.Core.AuthInterceptorContext.html#Grpc_Core_AuthInterceptorContext__ctor_System_String_System_String_
- commentId: M:Grpc.Core.AuthInterceptorContext.#ctor(System.String,System.String)
- fullName: Grpc.Core.AuthInterceptorContext.AuthInterceptorContext(System.String, System.String)
- nameWithType: AuthInterceptorContext.AuthInterceptorContext(String, String)
- - uid: Grpc.Core.AuthInterceptorContext.#ctor*
- name: AuthInterceptorContext
- href: api/Grpc.Core.AuthInterceptorContext.html#Grpc_Core_AuthInterceptorContext__ctor_
- commentId: Overload:Grpc.Core.AuthInterceptorContext.#ctor
- fullName: Grpc.Core.AuthInterceptorContext.AuthInterceptorContext
- nameWithType: AuthInterceptorContext.AuthInterceptorContext
- - uid: Grpc.Core.AuthInterceptorContext.MethodName
- name: MethodName
- href: api/Grpc.Core.AuthInterceptorContext.html#Grpc_Core_AuthInterceptorContext_MethodName
- commentId: P:Grpc.Core.AuthInterceptorContext.MethodName
- fullName: Grpc.Core.AuthInterceptorContext.MethodName
- nameWithType: AuthInterceptorContext.MethodName
- - uid: Grpc.Core.AuthInterceptorContext.MethodName*
- name: MethodName
- href: api/Grpc.Core.AuthInterceptorContext.html#Grpc_Core_AuthInterceptorContext_MethodName_
- commentId: Overload:Grpc.Core.AuthInterceptorContext.MethodName
- fullName: Grpc.Core.AuthInterceptorContext.MethodName
- nameWithType: AuthInterceptorContext.MethodName
- - uid: Grpc.Core.AuthInterceptorContext.ServiceUrl
- name: ServiceUrl
- href: api/Grpc.Core.AuthInterceptorContext.html#Grpc_Core_AuthInterceptorContext_ServiceUrl
- commentId: P:Grpc.Core.AuthInterceptorContext.ServiceUrl
- fullName: Grpc.Core.AuthInterceptorContext.ServiceUrl
- nameWithType: AuthInterceptorContext.ServiceUrl
- - uid: Grpc.Core.AuthInterceptorContext.ServiceUrl*
- name: ServiceUrl
- href: api/Grpc.Core.AuthInterceptorContext.html#Grpc_Core_AuthInterceptorContext_ServiceUrl_
- commentId: Overload:Grpc.Core.AuthInterceptorContext.ServiceUrl
- fullName: Grpc.Core.AuthInterceptorContext.ServiceUrl
- nameWithType: AuthInterceptorContext.ServiceUrl
- - uid: Grpc.Core.AuthProperty
- name: AuthProperty
- href: api/Grpc.Core.AuthProperty.html
- commentId: T:Grpc.Core.AuthProperty
- fullName: Grpc.Core.AuthProperty
- nameWithType: AuthProperty
- - uid: Grpc.Core.AuthProperty.Create(System.String,System.Byte[])
- name: Create(String, Byte[])
- href: api/Grpc.Core.AuthProperty.html#Grpc_Core_AuthProperty_Create_System_String_System_Byte___
- commentId: M:Grpc.Core.AuthProperty.Create(System.String,System.Byte[])
- name.vb: Create(String, Byte())
- fullName: Grpc.Core.AuthProperty.Create(System.String, System.Byte[])
- fullName.vb: Grpc.Core.AuthProperty.Create(System.String, System.Byte())
- nameWithType: AuthProperty.Create(String, Byte[])
- nameWithType.vb: AuthProperty.Create(String, Byte())
- - uid: Grpc.Core.AuthProperty.Create*
- name: Create
- href: api/Grpc.Core.AuthProperty.html#Grpc_Core_AuthProperty_Create_
- commentId: Overload:Grpc.Core.AuthProperty.Create
- fullName: Grpc.Core.AuthProperty.Create
- nameWithType: AuthProperty.Create
- - uid: Grpc.Core.AuthProperty.Name
- name: Name
- href: api/Grpc.Core.AuthProperty.html#Grpc_Core_AuthProperty_Name
- commentId: P:Grpc.Core.AuthProperty.Name
- fullName: Grpc.Core.AuthProperty.Name
- nameWithType: AuthProperty.Name
- - uid: Grpc.Core.AuthProperty.Name*
- name: Name
- href: api/Grpc.Core.AuthProperty.html#Grpc_Core_AuthProperty_Name_
- commentId: Overload:Grpc.Core.AuthProperty.Name
- fullName: Grpc.Core.AuthProperty.Name
- nameWithType: AuthProperty.Name
- - uid: Grpc.Core.AuthProperty.Value
- name: Value
- href: api/Grpc.Core.AuthProperty.html#Grpc_Core_AuthProperty_Value
- commentId: P:Grpc.Core.AuthProperty.Value
- fullName: Grpc.Core.AuthProperty.Value
- nameWithType: AuthProperty.Value
- - uid: Grpc.Core.AuthProperty.Value*
- name: Value
- href: api/Grpc.Core.AuthProperty.html#Grpc_Core_AuthProperty_Value_
- commentId: Overload:Grpc.Core.AuthProperty.Value
- fullName: Grpc.Core.AuthProperty.Value
- nameWithType: AuthProperty.Value
- - uid: Grpc.Core.AuthProperty.ValueBytes
- name: ValueBytes
- href: api/Grpc.Core.AuthProperty.html#Grpc_Core_AuthProperty_ValueBytes
- commentId: P:Grpc.Core.AuthProperty.ValueBytes
- fullName: Grpc.Core.AuthProperty.ValueBytes
- nameWithType: AuthProperty.ValueBytes
- - uid: Grpc.Core.AuthProperty.ValueBytes*
- name: ValueBytes
- href: api/Grpc.Core.AuthProperty.html#Grpc_Core_AuthProperty_ValueBytes_
- commentId: Overload:Grpc.Core.AuthProperty.ValueBytes
- fullName: Grpc.Core.AuthProperty.ValueBytes
- nameWithType: AuthProperty.ValueBytes
- - uid: Grpc.Core.CallCredentials
- name: CallCredentials
- href: api/Grpc.Core.CallCredentials.html
- commentId: T:Grpc.Core.CallCredentials
- fullName: Grpc.Core.CallCredentials
- nameWithType: CallCredentials
- - uid: Grpc.Core.CallCredentials.Compose(Grpc.Core.CallCredentials[])
- name: Compose(CallCredentials[])
- href: api/Grpc.Core.CallCredentials.html#Grpc_Core_CallCredentials_Compose_Grpc_Core_CallCredentials___
- commentId: M:Grpc.Core.CallCredentials.Compose(Grpc.Core.CallCredentials[])
- name.vb: Compose(CallCredentials())
- fullName: Grpc.Core.CallCredentials.Compose(Grpc.Core.CallCredentials[])
- fullName.vb: Grpc.Core.CallCredentials.Compose(Grpc.Core.CallCredentials())
- nameWithType: CallCredentials.Compose(CallCredentials[])
- nameWithType.vb: CallCredentials.Compose(CallCredentials())
- - uid: Grpc.Core.CallCredentials.Compose*
- name: Compose
- href: api/Grpc.Core.CallCredentials.html#Grpc_Core_CallCredentials_Compose_
- commentId: Overload:Grpc.Core.CallCredentials.Compose
- fullName: Grpc.Core.CallCredentials.Compose
- nameWithType: CallCredentials.Compose
- - uid: Grpc.Core.CallCredentials.FromInterceptor(Grpc.Core.AsyncAuthInterceptor)
- name: FromInterceptor(AsyncAuthInterceptor)
- href: api/Grpc.Core.CallCredentials.html#Grpc_Core_CallCredentials_FromInterceptor_Grpc_Core_AsyncAuthInterceptor_
- commentId: M:Grpc.Core.CallCredentials.FromInterceptor(Grpc.Core.AsyncAuthInterceptor)
- fullName: Grpc.Core.CallCredentials.FromInterceptor(Grpc.Core.AsyncAuthInterceptor)
- nameWithType: CallCredentials.FromInterceptor(AsyncAuthInterceptor)
- - uid: Grpc.Core.CallCredentials.FromInterceptor*
- name: FromInterceptor
- href: api/Grpc.Core.CallCredentials.html#Grpc_Core_CallCredentials_FromInterceptor_
- commentId: Overload:Grpc.Core.CallCredentials.FromInterceptor
- fullName: Grpc.Core.CallCredentials.FromInterceptor
- nameWithType: CallCredentials.FromInterceptor
- - uid: Grpc.Core.CallInvocationDetails`2
- name: CallInvocationDetails<TRequest, TResponse>
- href: api/Grpc.Core.CallInvocationDetails-2.html
- commentId: T:Grpc.Core.CallInvocationDetails`2
- name.vb: CallInvocationDetails(Of TRequest, TResponse)
- fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>
- fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse)
- nameWithType: CallInvocationDetails<TRequest, TResponse>
- nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse)
- - uid: Grpc.Core.CallInvocationDetails`2.#ctor(Grpc.Core.Channel,Grpc.Core.Method{`0,`1},Grpc.Core.CallOptions)
- name: CallInvocationDetails(Channel, Method<TRequest, TResponse>, CallOptions)
- href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2__ctor_Grpc_Core_Channel_Grpc_Core_Method__0__1__Grpc_Core_CallOptions_
- commentId: M:Grpc.Core.CallInvocationDetails`2.#ctor(Grpc.Core.Channel,Grpc.Core.Method{`0,`1},Grpc.Core.CallOptions)
- name.vb: CallInvocationDetails(Channel, Method(Of TRequest, TResponse), CallOptions)
- fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.CallInvocationDetails(Grpc.Core.Channel, Grpc.Core.Method<TRequest, TResponse>, Grpc.Core.CallOptions)
- fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).CallInvocationDetails(Grpc.Core.Channel, Grpc.Core.Method(Of TRequest, TResponse), Grpc.Core.CallOptions)
- nameWithType: CallInvocationDetails<TRequest, TResponse>.CallInvocationDetails(Channel, Method<TRequest, TResponse>, CallOptions)
- nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).CallInvocationDetails(Channel, Method(Of TRequest, TResponse), CallOptions)
- - uid: Grpc.Core.CallInvocationDetails`2.#ctor(Grpc.Core.Channel,Grpc.Core.Method{`0,`1},System.String,Grpc.Core.CallOptions)
- name: CallInvocationDetails(Channel, Method<TRequest, TResponse>, String, CallOptions)
- 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_
- commentId: M:Grpc.Core.CallInvocationDetails`2.#ctor(Grpc.Core.Channel,Grpc.Core.Method{`0,`1},System.String,Grpc.Core.CallOptions)
- name.vb: CallInvocationDetails(Channel, Method(Of TRequest, TResponse), String, CallOptions)
- fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.CallInvocationDetails(Grpc.Core.Channel, Grpc.Core.Method<TRequest, TResponse>, System.String, Grpc.Core.CallOptions)
- fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).CallInvocationDetails(Grpc.Core.Channel, Grpc.Core.Method(Of TRequest, TResponse), System.String, Grpc.Core.CallOptions)
- nameWithType: CallInvocationDetails<TRequest, TResponse>.CallInvocationDetails(Channel, Method<TRequest, TResponse>, String, CallOptions)
- nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).CallInvocationDetails(Channel, Method(Of TRequest, TResponse), String, CallOptions)
- - uid: Grpc.Core.CallInvocationDetails`2.#ctor(Grpc.Core.Channel,System.String,System.String,Grpc.Core.Marshaller{`0},Grpc.Core.Marshaller{`1},Grpc.Core.CallOptions)
- name: CallInvocationDetails(Channel, String, String, Marshaller<TRequest>, Marshaller<TResponse>, CallOptions)
- 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_
- 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)
- name.vb: CallInvocationDetails(Channel, String, String, Marshaller(Of TRequest), Marshaller(Of TResponse), CallOptions)
- 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)
- 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)
- nameWithType: CallInvocationDetails<TRequest, TResponse>.CallInvocationDetails(Channel, String, String, Marshaller<TRequest>, Marshaller<TResponse>, CallOptions)
- nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).CallInvocationDetails(Channel, String, String, Marshaller(Of TRequest), Marshaller(Of TResponse), CallOptions)
- - uid: Grpc.Core.CallInvocationDetails`2.#ctor*
- name: CallInvocationDetails
- href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2__ctor_
- commentId: Overload:Grpc.Core.CallInvocationDetails`2.#ctor
- fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.CallInvocationDetails
- fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).CallInvocationDetails
- nameWithType: CallInvocationDetails<TRequest, TResponse>.CallInvocationDetails
- nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).CallInvocationDetails
- - uid: Grpc.Core.CallInvocationDetails`2.Channel
- name: Channel
- href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_Channel
- commentId: P:Grpc.Core.CallInvocationDetails`2.Channel
- fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.Channel
- fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).Channel
- nameWithType: CallInvocationDetails<TRequest, TResponse>.Channel
- nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).Channel
- - uid: Grpc.Core.CallInvocationDetails`2.Channel*
- name: Channel
- href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_Channel_
- commentId: Overload:Grpc.Core.CallInvocationDetails`2.Channel
- fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.Channel
- fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).Channel
- nameWithType: CallInvocationDetails<TRequest, TResponse>.Channel
- nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).Channel
- - uid: Grpc.Core.CallInvocationDetails`2.Host
- name: Host
- href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_Host
- commentId: P:Grpc.Core.CallInvocationDetails`2.Host
- fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.Host
- fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).Host
- nameWithType: CallInvocationDetails<TRequest, TResponse>.Host
- nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).Host
- - uid: Grpc.Core.CallInvocationDetails`2.Host*
- name: Host
- href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_Host_
- commentId: Overload:Grpc.Core.CallInvocationDetails`2.Host
- fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.Host
- fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).Host
- nameWithType: CallInvocationDetails<TRequest, TResponse>.Host
- nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).Host
- - uid: Grpc.Core.CallInvocationDetails`2.Method
- name: Method
- href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_Method
- commentId: P:Grpc.Core.CallInvocationDetails`2.Method
- fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.Method
- fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).Method
- nameWithType: CallInvocationDetails<TRequest, TResponse>.Method
- nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).Method
- - uid: Grpc.Core.CallInvocationDetails`2.Method*
- name: Method
- href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_Method_
- commentId: Overload:Grpc.Core.CallInvocationDetails`2.Method
- fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.Method
- fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).Method
- nameWithType: CallInvocationDetails<TRequest, TResponse>.Method
- nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).Method
- - uid: Grpc.Core.CallInvocationDetails`2.Options
- name: Options
- href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_Options
- commentId: P:Grpc.Core.CallInvocationDetails`2.Options
- fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.Options
- fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).Options
- nameWithType: CallInvocationDetails<TRequest, TResponse>.Options
- nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).Options
- - uid: Grpc.Core.CallInvocationDetails`2.Options*
- name: Options
- href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_Options_
- commentId: Overload:Grpc.Core.CallInvocationDetails`2.Options
- fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.Options
- fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).Options
- nameWithType: CallInvocationDetails<TRequest, TResponse>.Options
- nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).Options
- - uid: Grpc.Core.CallInvocationDetails`2.RequestMarshaller
- name: RequestMarshaller
- href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_RequestMarshaller
- commentId: P:Grpc.Core.CallInvocationDetails`2.RequestMarshaller
- fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.RequestMarshaller
- fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).RequestMarshaller
- nameWithType: CallInvocationDetails<TRequest, TResponse>.RequestMarshaller
- nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).RequestMarshaller
- - uid: Grpc.Core.CallInvocationDetails`2.RequestMarshaller*
- name: RequestMarshaller
- href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_RequestMarshaller_
- commentId: Overload:Grpc.Core.CallInvocationDetails`2.RequestMarshaller
- fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.RequestMarshaller
- fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).RequestMarshaller
- nameWithType: CallInvocationDetails<TRequest, TResponse>.RequestMarshaller
- nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).RequestMarshaller
- - uid: Grpc.Core.CallInvocationDetails`2.ResponseMarshaller
- name: ResponseMarshaller
- href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_ResponseMarshaller
- commentId: P:Grpc.Core.CallInvocationDetails`2.ResponseMarshaller
- fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.ResponseMarshaller
- fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).ResponseMarshaller
- nameWithType: CallInvocationDetails<TRequest, TResponse>.ResponseMarshaller
- nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).ResponseMarshaller
- - uid: Grpc.Core.CallInvocationDetails`2.ResponseMarshaller*
- name: ResponseMarshaller
- href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_ResponseMarshaller_
- commentId: Overload:Grpc.Core.CallInvocationDetails`2.ResponseMarshaller
- fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.ResponseMarshaller
- fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).ResponseMarshaller
- nameWithType: CallInvocationDetails<TRequest, TResponse>.ResponseMarshaller
- nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).ResponseMarshaller
- - uid: Grpc.Core.CallInvocationDetails`2.WithOptions(Grpc.Core.CallOptions)
- name: WithOptions(CallOptions)
- href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_WithOptions_Grpc_Core_CallOptions_
- commentId: M:Grpc.Core.CallInvocationDetails`2.WithOptions(Grpc.Core.CallOptions)
- fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.WithOptions(Grpc.Core.CallOptions)
- fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).WithOptions(Grpc.Core.CallOptions)
- nameWithType: CallInvocationDetails<TRequest, TResponse>.WithOptions(CallOptions)
- nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).WithOptions(CallOptions)
- - uid: Grpc.Core.CallInvocationDetails`2.WithOptions*
- name: WithOptions
- href: api/Grpc.Core.CallInvocationDetails-2.html#Grpc_Core_CallInvocationDetails_2_WithOptions_
- commentId: Overload:Grpc.Core.CallInvocationDetails`2.WithOptions
- fullName: Grpc.Core.CallInvocationDetails<TRequest, TResponse>.WithOptions
- fullName.vb: Grpc.Core.CallInvocationDetails(Of TRequest, TResponse).WithOptions
- nameWithType: CallInvocationDetails<TRequest, TResponse>.WithOptions
- nameWithType.vb: CallInvocationDetails(Of TRequest, TResponse).WithOptions
- - uid: Grpc.Core.CallInvoker
- name: CallInvoker
- href: api/Grpc.Core.CallInvoker.html
- commentId: T:Grpc.Core.CallInvoker
- fullName: Grpc.Core.CallInvoker
- nameWithType: CallInvoker
- - uid: Grpc.Core.CallInvoker.AsyncClientStreamingCall*
- name: AsyncClientStreamingCall
- href: api/Grpc.Core.CallInvoker.html#Grpc_Core_CallInvoker_AsyncClientStreamingCall_
- commentId: Overload:Grpc.Core.CallInvoker.AsyncClientStreamingCall
- fullName: Grpc.Core.CallInvoker.AsyncClientStreamingCall
- nameWithType: CallInvoker.AsyncClientStreamingCall
- - uid: Grpc.Core.CallInvoker.AsyncClientStreamingCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions)
- name: AsyncClientStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions)
- href: api/Grpc.Core.CallInvoker.html#Grpc_Core_CallInvoker_AsyncClientStreamingCall__2_Grpc_Core_Method___0___1__System_String_Grpc_Core_CallOptions_
- commentId: M:Grpc.Core.CallInvoker.AsyncClientStreamingCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions)
- name.vb: AsyncClientStreamingCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions)
- fullName: Grpc.Core.CallInvoker.AsyncClientStreamingCall<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, System.String, Grpc.Core.CallOptions)
- fullName.vb: Grpc.Core.CallInvoker.AsyncClientStreamingCall(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), System.String, Grpc.Core.CallOptions)
- nameWithType: CallInvoker.AsyncClientStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions)
- nameWithType.vb: CallInvoker.AsyncClientStreamingCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions)
- - uid: Grpc.Core.CallInvoker.AsyncDuplexStreamingCall*
- name: AsyncDuplexStreamingCall
- href: api/Grpc.Core.CallInvoker.html#Grpc_Core_CallInvoker_AsyncDuplexStreamingCall_
- commentId: Overload:Grpc.Core.CallInvoker.AsyncDuplexStreamingCall
- fullName: Grpc.Core.CallInvoker.AsyncDuplexStreamingCall
- nameWithType: CallInvoker.AsyncDuplexStreamingCall
- - uid: Grpc.Core.CallInvoker.AsyncDuplexStreamingCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions)
- name: AsyncDuplexStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions)
- href: api/Grpc.Core.CallInvoker.html#Grpc_Core_CallInvoker_AsyncDuplexStreamingCall__2_Grpc_Core_Method___0___1__System_String_Grpc_Core_CallOptions_
- commentId: M:Grpc.Core.CallInvoker.AsyncDuplexStreamingCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions)
- name.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions)
- fullName: Grpc.Core.CallInvoker.AsyncDuplexStreamingCall<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, System.String, Grpc.Core.CallOptions)
- fullName.vb: Grpc.Core.CallInvoker.AsyncDuplexStreamingCall(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), System.String, Grpc.Core.CallOptions)
- nameWithType: CallInvoker.AsyncDuplexStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions)
- nameWithType.vb: CallInvoker.AsyncDuplexStreamingCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions)
- - uid: Grpc.Core.CallInvoker.AsyncServerStreamingCall*
- name: AsyncServerStreamingCall
- href: api/Grpc.Core.CallInvoker.html#Grpc_Core_CallInvoker_AsyncServerStreamingCall_
- commentId: Overload:Grpc.Core.CallInvoker.AsyncServerStreamingCall
- fullName: Grpc.Core.CallInvoker.AsyncServerStreamingCall
- nameWithType: CallInvoker.AsyncServerStreamingCall
- - uid: Grpc.Core.CallInvoker.AsyncServerStreamingCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions,``0)
- name: AsyncServerStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions, TRequest)
- href: api/Grpc.Core.CallInvoker.html#Grpc_Core_CallInvoker_AsyncServerStreamingCall__2_Grpc_Core_Method___0___1__System_String_Grpc_Core_CallOptions___0_
- commentId: M:Grpc.Core.CallInvoker.AsyncServerStreamingCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions,``0)
- name.vb: AsyncServerStreamingCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions, TRequest)
- fullName: Grpc.Core.CallInvoker.AsyncServerStreamingCall<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, System.String, Grpc.Core.CallOptions, TRequest)
- fullName.vb: Grpc.Core.CallInvoker.AsyncServerStreamingCall(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), System.String, Grpc.Core.CallOptions, TRequest)
- nameWithType: CallInvoker.AsyncServerStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions, TRequest)
- nameWithType.vb: CallInvoker.AsyncServerStreamingCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions, TRequest)
- - uid: Grpc.Core.CallInvoker.AsyncUnaryCall*
- name: AsyncUnaryCall
- href: api/Grpc.Core.CallInvoker.html#Grpc_Core_CallInvoker_AsyncUnaryCall_
- commentId: Overload:Grpc.Core.CallInvoker.AsyncUnaryCall
- fullName: Grpc.Core.CallInvoker.AsyncUnaryCall
- nameWithType: CallInvoker.AsyncUnaryCall
- - uid: Grpc.Core.CallInvoker.AsyncUnaryCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions,``0)
- name: AsyncUnaryCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions, TRequest)
- href: api/Grpc.Core.CallInvoker.html#Grpc_Core_CallInvoker_AsyncUnaryCall__2_Grpc_Core_Method___0___1__System_String_Grpc_Core_CallOptions___0_
- commentId: M:Grpc.Core.CallInvoker.AsyncUnaryCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions,``0)
- name.vb: AsyncUnaryCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions, TRequest)
- fullName: Grpc.Core.CallInvoker.AsyncUnaryCall<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, System.String, Grpc.Core.CallOptions, TRequest)
- fullName.vb: Grpc.Core.CallInvoker.AsyncUnaryCall(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), System.String, Grpc.Core.CallOptions, TRequest)
- nameWithType: CallInvoker.AsyncUnaryCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions, TRequest)
- nameWithType.vb: CallInvoker.AsyncUnaryCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions, TRequest)
- - uid: Grpc.Core.CallInvoker.BlockingUnaryCall*
- name: BlockingUnaryCall
- href: api/Grpc.Core.CallInvoker.html#Grpc_Core_CallInvoker_BlockingUnaryCall_
- commentId: Overload:Grpc.Core.CallInvoker.BlockingUnaryCall
- fullName: Grpc.Core.CallInvoker.BlockingUnaryCall
- nameWithType: CallInvoker.BlockingUnaryCall
- - uid: Grpc.Core.CallInvoker.BlockingUnaryCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions,``0)
- name: BlockingUnaryCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions, TRequest)
- href: api/Grpc.Core.CallInvoker.html#Grpc_Core_CallInvoker_BlockingUnaryCall__2_Grpc_Core_Method___0___1__System_String_Grpc_Core_CallOptions___0_
- commentId: M:Grpc.Core.CallInvoker.BlockingUnaryCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions,``0)
- name.vb: BlockingUnaryCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions, TRequest)
- fullName: Grpc.Core.CallInvoker.BlockingUnaryCall<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, System.String, Grpc.Core.CallOptions, TRequest)
- fullName.vb: Grpc.Core.CallInvoker.BlockingUnaryCall(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), System.String, Grpc.Core.CallOptions, TRequest)
- nameWithType: CallInvoker.BlockingUnaryCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions, TRequest)
- nameWithType.vb: CallInvoker.BlockingUnaryCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions, TRequest)
- - uid: Grpc.Core.CallOptions
- name: CallOptions
- href: api/Grpc.Core.CallOptions.html
- commentId: T:Grpc.Core.CallOptions
- fullName: Grpc.Core.CallOptions
- nameWithType: CallOptions
- - uid: Grpc.Core.CallOptions.#ctor(Grpc.Core.Metadata,System.Nullable{System.DateTime},System.Threading.CancellationToken,Grpc.Core.WriteOptions,Grpc.Core.ContextPropagationToken,Grpc.Core.CallCredentials)
- name: CallOptions(Metadata, Nullable<DateTime>, CancellationToken, WriteOptions, ContextPropagationToken, CallCredentials)
- 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_
- 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)
- name.vb: CallOptions(Metadata, Nullable(Of DateTime), CancellationToken, WriteOptions, ContextPropagationToken, CallCredentials)
- fullName: Grpc.Core.CallOptions.CallOptions(Grpc.Core.Metadata, System.Nullable<System.DateTime>, System.Threading.CancellationToken, Grpc.Core.WriteOptions, Grpc.Core.ContextPropagationToken, Grpc.Core.CallCredentials)
- 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)
- nameWithType: CallOptions.CallOptions(Metadata, Nullable<DateTime>, CancellationToken, WriteOptions, ContextPropagationToken, CallCredentials)
- nameWithType.vb: CallOptions.CallOptions(Metadata, Nullable(Of DateTime), CancellationToken, WriteOptions, ContextPropagationToken, CallCredentials)
- - uid: Grpc.Core.CallOptions.#ctor*
- name: CallOptions
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions__ctor_
- commentId: Overload:Grpc.Core.CallOptions.#ctor
- fullName: Grpc.Core.CallOptions.CallOptions
- nameWithType: CallOptions.CallOptions
- - uid: Grpc.Core.CallOptions.CancellationToken
- name: CancellationToken
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_CancellationToken
- commentId: P:Grpc.Core.CallOptions.CancellationToken
- fullName: Grpc.Core.CallOptions.CancellationToken
- nameWithType: CallOptions.CancellationToken
- - uid: Grpc.Core.CallOptions.CancellationToken*
- name: CancellationToken
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_CancellationToken_
- commentId: Overload:Grpc.Core.CallOptions.CancellationToken
- fullName: Grpc.Core.CallOptions.CancellationToken
- nameWithType: CallOptions.CancellationToken
- - uid: Grpc.Core.CallOptions.Credentials
- name: Credentials
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_Credentials
- commentId: P:Grpc.Core.CallOptions.Credentials
- fullName: Grpc.Core.CallOptions.Credentials
- nameWithType: CallOptions.Credentials
- - uid: Grpc.Core.CallOptions.Credentials*
- name: Credentials
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_Credentials_
- commentId: Overload:Grpc.Core.CallOptions.Credentials
- fullName: Grpc.Core.CallOptions.Credentials
- nameWithType: CallOptions.Credentials
- - uid: Grpc.Core.CallOptions.Deadline
- name: Deadline
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_Deadline
- commentId: P:Grpc.Core.CallOptions.Deadline
- fullName: Grpc.Core.CallOptions.Deadline
- nameWithType: CallOptions.Deadline
- - uid: Grpc.Core.CallOptions.Deadline*
- name: Deadline
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_Deadline_
- commentId: Overload:Grpc.Core.CallOptions.Deadline
- fullName: Grpc.Core.CallOptions.Deadline
- nameWithType: CallOptions.Deadline
- - uid: Grpc.Core.CallOptions.Headers
- name: Headers
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_Headers
- commentId: P:Grpc.Core.CallOptions.Headers
- fullName: Grpc.Core.CallOptions.Headers
- nameWithType: CallOptions.Headers
- - uid: Grpc.Core.CallOptions.Headers*
- name: Headers
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_Headers_
- commentId: Overload:Grpc.Core.CallOptions.Headers
- fullName: Grpc.Core.CallOptions.Headers
- nameWithType: CallOptions.Headers
- - uid: Grpc.Core.CallOptions.IsWaitForReady
- name: IsWaitForReady
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_IsWaitForReady
- commentId: P:Grpc.Core.CallOptions.IsWaitForReady
- fullName: Grpc.Core.CallOptions.IsWaitForReady
- nameWithType: CallOptions.IsWaitForReady
- - uid: Grpc.Core.CallOptions.IsWaitForReady*
- name: IsWaitForReady
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_IsWaitForReady_
- commentId: Overload:Grpc.Core.CallOptions.IsWaitForReady
- fullName: Grpc.Core.CallOptions.IsWaitForReady
- nameWithType: CallOptions.IsWaitForReady
- - uid: Grpc.Core.CallOptions.PropagationToken
- name: PropagationToken
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_PropagationToken
- commentId: P:Grpc.Core.CallOptions.PropagationToken
- fullName: Grpc.Core.CallOptions.PropagationToken
- nameWithType: CallOptions.PropagationToken
- - uid: Grpc.Core.CallOptions.PropagationToken*
- name: PropagationToken
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_PropagationToken_
- commentId: Overload:Grpc.Core.CallOptions.PropagationToken
- fullName: Grpc.Core.CallOptions.PropagationToken
- nameWithType: CallOptions.PropagationToken
- - uid: Grpc.Core.CallOptions.WithCancellationToken(System.Threading.CancellationToken)
- name: WithCancellationToken(CancellationToken)
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithCancellationToken_System_Threading_CancellationToken_
- commentId: M:Grpc.Core.CallOptions.WithCancellationToken(System.Threading.CancellationToken)
- fullName: Grpc.Core.CallOptions.WithCancellationToken(System.Threading.CancellationToken)
- nameWithType: CallOptions.WithCancellationToken(CancellationToken)
- - uid: Grpc.Core.CallOptions.WithCancellationToken*
- name: WithCancellationToken
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithCancellationToken_
- commentId: Overload:Grpc.Core.CallOptions.WithCancellationToken
- fullName: Grpc.Core.CallOptions.WithCancellationToken
- nameWithType: CallOptions.WithCancellationToken
- - uid: Grpc.Core.CallOptions.WithCredentials(Grpc.Core.CallCredentials)
- name: WithCredentials(CallCredentials)
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithCredentials_Grpc_Core_CallCredentials_
- commentId: M:Grpc.Core.CallOptions.WithCredentials(Grpc.Core.CallCredentials)
- fullName: Grpc.Core.CallOptions.WithCredentials(Grpc.Core.CallCredentials)
- nameWithType: CallOptions.WithCredentials(CallCredentials)
- - uid: Grpc.Core.CallOptions.WithCredentials*
- name: WithCredentials
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithCredentials_
- commentId: Overload:Grpc.Core.CallOptions.WithCredentials
- fullName: Grpc.Core.CallOptions.WithCredentials
- nameWithType: CallOptions.WithCredentials
- - uid: Grpc.Core.CallOptions.WithDeadline(System.DateTime)
- name: WithDeadline(DateTime)
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithDeadline_System_DateTime_
- commentId: M:Grpc.Core.CallOptions.WithDeadline(System.DateTime)
- fullName: Grpc.Core.CallOptions.WithDeadline(System.DateTime)
- nameWithType: CallOptions.WithDeadline(DateTime)
- - uid: Grpc.Core.CallOptions.WithDeadline*
- name: WithDeadline
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithDeadline_
- commentId: Overload:Grpc.Core.CallOptions.WithDeadline
- fullName: Grpc.Core.CallOptions.WithDeadline
- nameWithType: CallOptions.WithDeadline
- - uid: Grpc.Core.CallOptions.WithHeaders(Grpc.Core.Metadata)
- name: WithHeaders(Metadata)
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithHeaders_Grpc_Core_Metadata_
- commentId: M:Grpc.Core.CallOptions.WithHeaders(Grpc.Core.Metadata)
- fullName: Grpc.Core.CallOptions.WithHeaders(Grpc.Core.Metadata)
- nameWithType: CallOptions.WithHeaders(Metadata)
- - uid: Grpc.Core.CallOptions.WithHeaders*
- name: WithHeaders
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithHeaders_
- commentId: Overload:Grpc.Core.CallOptions.WithHeaders
- fullName: Grpc.Core.CallOptions.WithHeaders
- nameWithType: CallOptions.WithHeaders
- - uid: Grpc.Core.CallOptions.WithPropagationToken(Grpc.Core.ContextPropagationToken)
- name: WithPropagationToken(ContextPropagationToken)
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithPropagationToken_Grpc_Core_ContextPropagationToken_
- commentId: M:Grpc.Core.CallOptions.WithPropagationToken(Grpc.Core.ContextPropagationToken)
- fullName: Grpc.Core.CallOptions.WithPropagationToken(Grpc.Core.ContextPropagationToken)
- nameWithType: CallOptions.WithPropagationToken(ContextPropagationToken)
- - uid: Grpc.Core.CallOptions.WithPropagationToken*
- name: WithPropagationToken
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithPropagationToken_
- commentId: Overload:Grpc.Core.CallOptions.WithPropagationToken
- fullName: Grpc.Core.CallOptions.WithPropagationToken
- nameWithType: CallOptions.WithPropagationToken
- - uid: Grpc.Core.CallOptions.WithWaitForReady(System.Boolean)
- name: WithWaitForReady(Boolean)
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithWaitForReady_System_Boolean_
- commentId: M:Grpc.Core.CallOptions.WithWaitForReady(System.Boolean)
- fullName: Grpc.Core.CallOptions.WithWaitForReady(System.Boolean)
- nameWithType: CallOptions.WithWaitForReady(Boolean)
- - uid: Grpc.Core.CallOptions.WithWaitForReady*
- name: WithWaitForReady
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithWaitForReady_
- commentId: Overload:Grpc.Core.CallOptions.WithWaitForReady
- fullName: Grpc.Core.CallOptions.WithWaitForReady
- nameWithType: CallOptions.WithWaitForReady
- - uid: Grpc.Core.CallOptions.WithWriteOptions(Grpc.Core.WriteOptions)
- name: WithWriteOptions(WriteOptions)
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithWriteOptions_Grpc_Core_WriteOptions_
- commentId: M:Grpc.Core.CallOptions.WithWriteOptions(Grpc.Core.WriteOptions)
- fullName: Grpc.Core.CallOptions.WithWriteOptions(Grpc.Core.WriteOptions)
- nameWithType: CallOptions.WithWriteOptions(WriteOptions)
- - uid: Grpc.Core.CallOptions.WithWriteOptions*
- name: WithWriteOptions
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WithWriteOptions_
- commentId: Overload:Grpc.Core.CallOptions.WithWriteOptions
- fullName: Grpc.Core.CallOptions.WithWriteOptions
- nameWithType: CallOptions.WithWriteOptions
- - uid: Grpc.Core.CallOptions.WriteOptions
- name: WriteOptions
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WriteOptions
- commentId: P:Grpc.Core.CallOptions.WriteOptions
- fullName: Grpc.Core.CallOptions.WriteOptions
- nameWithType: CallOptions.WriteOptions
- - uid: Grpc.Core.CallOptions.WriteOptions*
- name: WriteOptions
- href: api/Grpc.Core.CallOptions.html#Grpc_Core_CallOptions_WriteOptions_
- commentId: Overload:Grpc.Core.CallOptions.WriteOptions
- fullName: Grpc.Core.CallOptions.WriteOptions
- nameWithType: CallOptions.WriteOptions
- - uid: Grpc.Core.Calls
- name: Calls
- href: api/Grpc.Core.Calls.html
- commentId: T:Grpc.Core.Calls
- fullName: Grpc.Core.Calls
- nameWithType: Calls
- - uid: Grpc.Core.Calls.AsyncClientStreamingCall*
- name: AsyncClientStreamingCall
- href: api/Grpc.Core.Calls.html#Grpc_Core_Calls_AsyncClientStreamingCall_
- commentId: Overload:Grpc.Core.Calls.AsyncClientStreamingCall
- fullName: Grpc.Core.Calls.AsyncClientStreamingCall
- nameWithType: Calls.AsyncClientStreamingCall
- - uid: Grpc.Core.Calls.AsyncClientStreamingCall``2(Grpc.Core.CallInvocationDetails{``0,``1})
- name: AsyncClientStreamingCall<TRequest, TResponse>(CallInvocationDetails<TRequest, TResponse>)
- href: api/Grpc.Core.Calls.html#Grpc_Core_Calls_AsyncClientStreamingCall__2_Grpc_Core_CallInvocationDetails___0___1__
- commentId: M:Grpc.Core.Calls.AsyncClientStreamingCall``2(Grpc.Core.CallInvocationDetails{``0,``1})
- name.vb: AsyncClientStreamingCall(Of TRequest, TResponse)(CallInvocationDetails(Of TRequest, TResponse))
- fullName: Grpc.Core.Calls.AsyncClientStreamingCall<TRequest, TResponse>(Grpc.Core.CallInvocationDetails<TRequest, TResponse>)
- fullName.vb: Grpc.Core.Calls.AsyncClientStreamingCall(Of TRequest, TResponse)(Grpc.Core.CallInvocationDetails(Of TRequest, TResponse))
- nameWithType: Calls.AsyncClientStreamingCall<TRequest, TResponse>(CallInvocationDetails<TRequest, TResponse>)
- nameWithType.vb: Calls.AsyncClientStreamingCall(Of TRequest, TResponse)(CallInvocationDetails(Of TRequest, TResponse))
- - uid: Grpc.Core.Calls.AsyncDuplexStreamingCall*
- name: AsyncDuplexStreamingCall
- href: api/Grpc.Core.Calls.html#Grpc_Core_Calls_AsyncDuplexStreamingCall_
- commentId: Overload:Grpc.Core.Calls.AsyncDuplexStreamingCall
- fullName: Grpc.Core.Calls.AsyncDuplexStreamingCall
- nameWithType: Calls.AsyncDuplexStreamingCall
- - uid: Grpc.Core.Calls.AsyncDuplexStreamingCall``2(Grpc.Core.CallInvocationDetails{``0,``1})
- name: AsyncDuplexStreamingCall<TRequest, TResponse>(CallInvocationDetails<TRequest, TResponse>)
- href: api/Grpc.Core.Calls.html#Grpc_Core_Calls_AsyncDuplexStreamingCall__2_Grpc_Core_CallInvocationDetails___0___1__
- commentId: M:Grpc.Core.Calls.AsyncDuplexStreamingCall``2(Grpc.Core.CallInvocationDetails{``0,``1})
- name.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse)(CallInvocationDetails(Of TRequest, TResponse))
- fullName: Grpc.Core.Calls.AsyncDuplexStreamingCall<TRequest, TResponse>(Grpc.Core.CallInvocationDetails<TRequest, TResponse>)
- fullName.vb: Grpc.Core.Calls.AsyncDuplexStreamingCall(Of TRequest, TResponse)(Grpc.Core.CallInvocationDetails(Of TRequest, TResponse))
- nameWithType: Calls.AsyncDuplexStreamingCall<TRequest, TResponse>(CallInvocationDetails<TRequest, TResponse>)
- nameWithType.vb: Calls.AsyncDuplexStreamingCall(Of TRequest, TResponse)(CallInvocationDetails(Of TRequest, TResponse))
- - uid: Grpc.Core.Calls.AsyncServerStreamingCall*
- name: AsyncServerStreamingCall
- href: api/Grpc.Core.Calls.html#Grpc_Core_Calls_AsyncServerStreamingCall_
- commentId: Overload:Grpc.Core.Calls.AsyncServerStreamingCall
- fullName: Grpc.Core.Calls.AsyncServerStreamingCall
- nameWithType: Calls.AsyncServerStreamingCall
- - uid: Grpc.Core.Calls.AsyncServerStreamingCall``2(Grpc.Core.CallInvocationDetails{``0,``1},``0)
- name: AsyncServerStreamingCall<TRequest, TResponse>(CallInvocationDetails<TRequest, TResponse>, TRequest)
- href: api/Grpc.Core.Calls.html#Grpc_Core_Calls_AsyncServerStreamingCall__2_Grpc_Core_CallInvocationDetails___0___1____0_
- commentId: M:Grpc.Core.Calls.AsyncServerStreamingCall``2(Grpc.Core.CallInvocationDetails{``0,``1},``0)
- name.vb: AsyncServerStreamingCall(Of TRequest, TResponse)(CallInvocationDetails(Of TRequest, TResponse), TRequest)
- fullName: Grpc.Core.Calls.AsyncServerStreamingCall<TRequest, TResponse>(Grpc.Core.CallInvocationDetails<TRequest, TResponse>, TRequest)
- fullName.vb: Grpc.Core.Calls.AsyncServerStreamingCall(Of TRequest, TResponse)(Grpc.Core.CallInvocationDetails(Of TRequest, TResponse), TRequest)
- nameWithType: Calls.AsyncServerStreamingCall<TRequest, TResponse>(CallInvocationDetails<TRequest, TResponse>, TRequest)
- nameWithType.vb: Calls.AsyncServerStreamingCall(Of TRequest, TResponse)(CallInvocationDetails(Of TRequest, TResponse), TRequest)
- - uid: Grpc.Core.Calls.AsyncUnaryCall*
- name: AsyncUnaryCall
- href: api/Grpc.Core.Calls.html#Grpc_Core_Calls_AsyncUnaryCall_
- commentId: Overload:Grpc.Core.Calls.AsyncUnaryCall
- fullName: Grpc.Core.Calls.AsyncUnaryCall
- nameWithType: Calls.AsyncUnaryCall
- - uid: Grpc.Core.Calls.AsyncUnaryCall``2(Grpc.Core.CallInvocationDetails{``0,``1},``0)
- name: AsyncUnaryCall<TRequest, TResponse>(CallInvocationDetails<TRequest, TResponse>, TRequest)
- href: api/Grpc.Core.Calls.html#Grpc_Core_Calls_AsyncUnaryCall__2_Grpc_Core_CallInvocationDetails___0___1____0_
- commentId: M:Grpc.Core.Calls.AsyncUnaryCall``2(Grpc.Core.CallInvocationDetails{``0,``1},``0)
- name.vb: AsyncUnaryCall(Of TRequest, TResponse)(CallInvocationDetails(Of TRequest, TResponse), TRequest)
- fullName: Grpc.Core.Calls.AsyncUnaryCall<TRequest, TResponse>(Grpc.Core.CallInvocationDetails<TRequest, TResponse>, TRequest)
- fullName.vb: Grpc.Core.Calls.AsyncUnaryCall(Of TRequest, TResponse)(Grpc.Core.CallInvocationDetails(Of TRequest, TResponse), TRequest)
- nameWithType: Calls.AsyncUnaryCall<TRequest, TResponse>(CallInvocationDetails<TRequest, TResponse>, TRequest)
- nameWithType.vb: Calls.AsyncUnaryCall(Of TRequest, TResponse)(CallInvocationDetails(Of TRequest, TResponse), TRequest)
- - uid: Grpc.Core.Calls.BlockingUnaryCall*
- name: BlockingUnaryCall
- href: api/Grpc.Core.Calls.html#Grpc_Core_Calls_BlockingUnaryCall_
- commentId: Overload:Grpc.Core.Calls.BlockingUnaryCall
- fullName: Grpc.Core.Calls.BlockingUnaryCall
- nameWithType: Calls.BlockingUnaryCall
- - uid: Grpc.Core.Calls.BlockingUnaryCall``2(Grpc.Core.CallInvocationDetails{``0,``1},``0)
- name: BlockingUnaryCall<TRequest, TResponse>(CallInvocationDetails<TRequest, TResponse>, TRequest)
- href: api/Grpc.Core.Calls.html#Grpc_Core_Calls_BlockingUnaryCall__2_Grpc_Core_CallInvocationDetails___0___1____0_
- commentId: M:Grpc.Core.Calls.BlockingUnaryCall``2(Grpc.Core.CallInvocationDetails{``0,``1},``0)
- name.vb: BlockingUnaryCall(Of TRequest, TResponse)(CallInvocationDetails(Of TRequest, TResponse), TRequest)
- fullName: Grpc.Core.Calls.BlockingUnaryCall<TRequest, TResponse>(Grpc.Core.CallInvocationDetails<TRequest, TResponse>, TRequest)
- fullName.vb: Grpc.Core.Calls.BlockingUnaryCall(Of TRequest, TResponse)(Grpc.Core.CallInvocationDetails(Of TRequest, TResponse), TRequest)
- nameWithType: Calls.BlockingUnaryCall<TRequest, TResponse>(CallInvocationDetails<TRequest, TResponse>, TRequest)
- nameWithType.vb: Calls.BlockingUnaryCall(Of TRequest, TResponse)(CallInvocationDetails(Of TRequest, TResponse), TRequest)
- - uid: Grpc.Core.Channel
- name: Channel
- href: api/Grpc.Core.Channel.html
- commentId: T:Grpc.Core.Channel
- fullName: Grpc.Core.Channel
- nameWithType: Channel
- - uid: Grpc.Core.Channel.#ctor(System.String,Grpc.Core.ChannelCredentials)
- name: Channel(String, ChannelCredentials)
- href: api/Grpc.Core.Channel.html#Grpc_Core_Channel__ctor_System_String_Grpc_Core_ChannelCredentials_
- commentId: M:Grpc.Core.Channel.#ctor(System.String,Grpc.Core.ChannelCredentials)
- fullName: Grpc.Core.Channel.Channel(System.String, Grpc.Core.ChannelCredentials)
- nameWithType: Channel.Channel(String, ChannelCredentials)
- - uid: Grpc.Core.Channel.#ctor(System.String,Grpc.Core.ChannelCredentials,System.Collections.Generic.IEnumerable{Grpc.Core.ChannelOption})
- name: Channel(String, ChannelCredentials, IEnumerable<ChannelOption>)
- href: api/Grpc.Core.Channel.html#Grpc_Core_Channel__ctor_System_String_Grpc_Core_ChannelCredentials_System_Collections_Generic_IEnumerable_Grpc_Core_ChannelOption__
- commentId: M:Grpc.Core.Channel.#ctor(System.String,Grpc.Core.ChannelCredentials,System.Collections.Generic.IEnumerable{Grpc.Core.ChannelOption})
- name.vb: Channel(String, ChannelCredentials, IEnumerable(Of ChannelOption))
- fullName: Grpc.Core.Channel.Channel(System.String, Grpc.Core.ChannelCredentials, System.Collections.Generic.IEnumerable<Grpc.Core.ChannelOption>)
- fullName.vb: Grpc.Core.Channel.Channel(System.String, Grpc.Core.ChannelCredentials, System.Collections.Generic.IEnumerable(Of Grpc.Core.ChannelOption))
- nameWithType: Channel.Channel(String, ChannelCredentials, IEnumerable<ChannelOption>)
- nameWithType.vb: Channel.Channel(String, ChannelCredentials, IEnumerable(Of ChannelOption))
- - uid: Grpc.Core.Channel.#ctor(System.String,System.Int32,Grpc.Core.ChannelCredentials)
- name: Channel(String, Int32, ChannelCredentials)
- href: api/Grpc.Core.Channel.html#Grpc_Core_Channel__ctor_System_String_System_Int32_Grpc_Core_ChannelCredentials_
- commentId: M:Grpc.Core.Channel.#ctor(System.String,System.Int32,Grpc.Core.ChannelCredentials)
- fullName: Grpc.Core.Channel.Channel(System.String, System.Int32, Grpc.Core.ChannelCredentials)
- nameWithType: Channel.Channel(String, Int32, ChannelCredentials)
- - uid: Grpc.Core.Channel.#ctor(System.String,System.Int32,Grpc.Core.ChannelCredentials,System.Collections.Generic.IEnumerable{Grpc.Core.ChannelOption})
- name: Channel(String, Int32, ChannelCredentials, IEnumerable<ChannelOption>)
- href: api/Grpc.Core.Channel.html#Grpc_Core_Channel__ctor_System_String_System_Int32_Grpc_Core_ChannelCredentials_System_Collections_Generic_IEnumerable_Grpc_Core_ChannelOption__
- commentId: M:Grpc.Core.Channel.#ctor(System.String,System.Int32,Grpc.Core.ChannelCredentials,System.Collections.Generic.IEnumerable{Grpc.Core.ChannelOption})
- name.vb: Channel(String, Int32, ChannelCredentials, IEnumerable(Of ChannelOption))
- fullName: Grpc.Core.Channel.Channel(System.String, System.Int32, Grpc.Core.ChannelCredentials, System.Collections.Generic.IEnumerable<Grpc.Core.ChannelOption>)
- fullName.vb: Grpc.Core.Channel.Channel(System.String, System.Int32, Grpc.Core.ChannelCredentials, System.Collections.Generic.IEnumerable(Of Grpc.Core.ChannelOption))
- nameWithType: Channel.Channel(String, Int32, ChannelCredentials, IEnumerable<ChannelOption>)
- nameWithType.vb: Channel.Channel(String, Int32, ChannelCredentials, IEnumerable(Of ChannelOption))
- - uid: Grpc.Core.Channel.#ctor*
- name: Channel
- href: api/Grpc.Core.Channel.html#Grpc_Core_Channel__ctor_
- commentId: Overload:Grpc.Core.Channel.#ctor
- fullName: Grpc.Core.Channel.Channel
- nameWithType: Channel.Channel
- - uid: Grpc.Core.Channel.ConnectAsync(System.Nullable{System.DateTime})
- name: ConnectAsync(Nullable<DateTime>)
- href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_ConnectAsync_System_Nullable_System_DateTime__
- commentId: M:Grpc.Core.Channel.ConnectAsync(System.Nullable{System.DateTime})
- name.vb: ConnectAsync(Nullable(Of DateTime))
- fullName: Grpc.Core.Channel.ConnectAsync(System.Nullable<System.DateTime>)
- fullName.vb: Grpc.Core.Channel.ConnectAsync(System.Nullable(Of System.DateTime))
- nameWithType: Channel.ConnectAsync(Nullable<DateTime>)
- nameWithType.vb: Channel.ConnectAsync(Nullable(Of DateTime))
- - uid: Grpc.Core.Channel.ConnectAsync*
- name: ConnectAsync
- href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_ConnectAsync_
- commentId: Overload:Grpc.Core.Channel.ConnectAsync
- fullName: Grpc.Core.Channel.ConnectAsync
- nameWithType: Channel.ConnectAsync
- - uid: Grpc.Core.Channel.ResolvedTarget
- name: ResolvedTarget
- href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_ResolvedTarget
- commentId: P:Grpc.Core.Channel.ResolvedTarget
- fullName: Grpc.Core.Channel.ResolvedTarget
- nameWithType: Channel.ResolvedTarget
- - uid: Grpc.Core.Channel.ResolvedTarget*
- name: ResolvedTarget
- href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_ResolvedTarget_
- commentId: Overload:Grpc.Core.Channel.ResolvedTarget
- fullName: Grpc.Core.Channel.ResolvedTarget
- nameWithType: Channel.ResolvedTarget
- - uid: Grpc.Core.Channel.ShutdownAsync
- name: ShutdownAsync()
- href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_ShutdownAsync
- commentId: M:Grpc.Core.Channel.ShutdownAsync
- fullName: Grpc.Core.Channel.ShutdownAsync()
- nameWithType: Channel.ShutdownAsync()
- - uid: Grpc.Core.Channel.ShutdownAsync*
- name: ShutdownAsync
- href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_ShutdownAsync_
- commentId: Overload:Grpc.Core.Channel.ShutdownAsync
- fullName: Grpc.Core.Channel.ShutdownAsync
- nameWithType: Channel.ShutdownAsync
- - uid: Grpc.Core.Channel.ShutdownToken
- name: ShutdownToken
- href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_ShutdownToken
- commentId: P:Grpc.Core.Channel.ShutdownToken
- fullName: Grpc.Core.Channel.ShutdownToken
- nameWithType: Channel.ShutdownToken
- - uid: Grpc.Core.Channel.ShutdownToken*
- name: ShutdownToken
- href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_ShutdownToken_
- commentId: Overload:Grpc.Core.Channel.ShutdownToken
- fullName: Grpc.Core.Channel.ShutdownToken
- nameWithType: Channel.ShutdownToken
- - uid: Grpc.Core.Channel.State
- name: State
- href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_State
- commentId: P:Grpc.Core.Channel.State
- fullName: Grpc.Core.Channel.State
- nameWithType: Channel.State
- - uid: Grpc.Core.Channel.State*
- name: State
- href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_State_
- commentId: Overload:Grpc.Core.Channel.State
- fullName: Grpc.Core.Channel.State
- nameWithType: Channel.State
- - uid: Grpc.Core.Channel.Target
- name: Target
- href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_Target
- commentId: P:Grpc.Core.Channel.Target
- fullName: Grpc.Core.Channel.Target
- nameWithType: Channel.Target
- - uid: Grpc.Core.Channel.Target*
- name: Target
- href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_Target_
- commentId: Overload:Grpc.Core.Channel.Target
- fullName: Grpc.Core.Channel.Target
- nameWithType: Channel.Target
- - uid: Grpc.Core.Channel.WaitForStateChangedAsync(Grpc.Core.ChannelState,System.Nullable{System.DateTime})
- name: WaitForStateChangedAsync(ChannelState, Nullable<DateTime>)
- href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_WaitForStateChangedAsync_Grpc_Core_ChannelState_System_Nullable_System_DateTime__
- commentId: M:Grpc.Core.Channel.WaitForStateChangedAsync(Grpc.Core.ChannelState,System.Nullable{System.DateTime})
- name.vb: WaitForStateChangedAsync(ChannelState, Nullable(Of DateTime))
- fullName: Grpc.Core.Channel.WaitForStateChangedAsync(Grpc.Core.ChannelState, System.Nullable<System.DateTime>)
- fullName.vb: Grpc.Core.Channel.WaitForStateChangedAsync(Grpc.Core.ChannelState, System.Nullable(Of System.DateTime))
- nameWithType: Channel.WaitForStateChangedAsync(ChannelState, Nullable<DateTime>)
- nameWithType.vb: Channel.WaitForStateChangedAsync(ChannelState, Nullable(Of DateTime))
- - uid: Grpc.Core.Channel.WaitForStateChangedAsync*
- name: WaitForStateChangedAsync
- href: api/Grpc.Core.Channel.html#Grpc_Core_Channel_WaitForStateChangedAsync_
- commentId: Overload:Grpc.Core.Channel.WaitForStateChangedAsync
- fullName: Grpc.Core.Channel.WaitForStateChangedAsync
- nameWithType: Channel.WaitForStateChangedAsync
- - uid: Grpc.Core.ChannelCredentials
- name: ChannelCredentials
- href: api/Grpc.Core.ChannelCredentials.html
- commentId: T:Grpc.Core.ChannelCredentials
- fullName: Grpc.Core.ChannelCredentials
- nameWithType: ChannelCredentials
- - uid: Grpc.Core.ChannelCredentials.Create(Grpc.Core.ChannelCredentials,Grpc.Core.CallCredentials)
- name: Create(ChannelCredentials, CallCredentials)
- href: api/Grpc.Core.ChannelCredentials.html#Grpc_Core_ChannelCredentials_Create_Grpc_Core_ChannelCredentials_Grpc_Core_CallCredentials_
- commentId: M:Grpc.Core.ChannelCredentials.Create(Grpc.Core.ChannelCredentials,Grpc.Core.CallCredentials)
- fullName: Grpc.Core.ChannelCredentials.Create(Grpc.Core.ChannelCredentials, Grpc.Core.CallCredentials)
- nameWithType: ChannelCredentials.Create(ChannelCredentials, CallCredentials)
- - uid: Grpc.Core.ChannelCredentials.Create*
- name: Create
- href: api/Grpc.Core.ChannelCredentials.html#Grpc_Core_ChannelCredentials_Create_
- commentId: Overload:Grpc.Core.ChannelCredentials.Create
- fullName: Grpc.Core.ChannelCredentials.Create
- nameWithType: ChannelCredentials.Create
- - uid: Grpc.Core.ChannelCredentials.Insecure
- name: Insecure
- href: api/Grpc.Core.ChannelCredentials.html#Grpc_Core_ChannelCredentials_Insecure
- commentId: P:Grpc.Core.ChannelCredentials.Insecure
- fullName: Grpc.Core.ChannelCredentials.Insecure
- nameWithType: ChannelCredentials.Insecure
- - uid: Grpc.Core.ChannelCredentials.Insecure*
- name: Insecure
- href: api/Grpc.Core.ChannelCredentials.html#Grpc_Core_ChannelCredentials_Insecure_
- commentId: Overload:Grpc.Core.ChannelCredentials.Insecure
- fullName: Grpc.Core.ChannelCredentials.Insecure
- nameWithType: ChannelCredentials.Insecure
- - uid: Grpc.Core.ChannelOption
- name: ChannelOption
- href: api/Grpc.Core.ChannelOption.html
- commentId: T:Grpc.Core.ChannelOption
- fullName: Grpc.Core.ChannelOption
- nameWithType: ChannelOption
- - uid: Grpc.Core.ChannelOption.#ctor(System.String,System.Int32)
- name: ChannelOption(String, Int32)
- href: api/Grpc.Core.ChannelOption.html#Grpc_Core_ChannelOption__ctor_System_String_System_Int32_
- commentId: M:Grpc.Core.ChannelOption.#ctor(System.String,System.Int32)
- fullName: Grpc.Core.ChannelOption.ChannelOption(System.String, System.Int32)
- nameWithType: ChannelOption.ChannelOption(String, Int32)
- - uid: Grpc.Core.ChannelOption.#ctor(System.String,System.String)
- name: ChannelOption(String, String)
- href: api/Grpc.Core.ChannelOption.html#Grpc_Core_ChannelOption__ctor_System_String_System_String_
- commentId: M:Grpc.Core.ChannelOption.#ctor(System.String,System.String)
- fullName: Grpc.Core.ChannelOption.ChannelOption(System.String, System.String)
- nameWithType: ChannelOption.ChannelOption(String, String)
- - uid: Grpc.Core.ChannelOption.#ctor*
- name: ChannelOption
- href: api/Grpc.Core.ChannelOption.html#Grpc_Core_ChannelOption__ctor_
- commentId: Overload:Grpc.Core.ChannelOption.#ctor
- fullName: Grpc.Core.ChannelOption.ChannelOption
- nameWithType: ChannelOption.ChannelOption
- - uid: Grpc.Core.ChannelOption.IntValue
- name: IntValue
- href: api/Grpc.Core.ChannelOption.html#Grpc_Core_ChannelOption_IntValue
- commentId: P:Grpc.Core.ChannelOption.IntValue
- fullName: Grpc.Core.ChannelOption.IntValue
- nameWithType: ChannelOption.IntValue
- - uid: Grpc.Core.ChannelOption.IntValue*
- name: IntValue
- href: api/Grpc.Core.ChannelOption.html#Grpc_Core_ChannelOption_IntValue_
- commentId: Overload:Grpc.Core.ChannelOption.IntValue
- fullName: Grpc.Core.ChannelOption.IntValue
- nameWithType: ChannelOption.IntValue
- - uid: Grpc.Core.ChannelOption.Name
- name: Name
- href: api/Grpc.Core.ChannelOption.html#Grpc_Core_ChannelOption_Name
- commentId: P:Grpc.Core.ChannelOption.Name
- fullName: Grpc.Core.ChannelOption.Name
- nameWithType: ChannelOption.Name
- - uid: Grpc.Core.ChannelOption.Name*
- name: Name
- href: api/Grpc.Core.ChannelOption.html#Grpc_Core_ChannelOption_Name_
- commentId: Overload:Grpc.Core.ChannelOption.Name
- fullName: Grpc.Core.ChannelOption.Name
- nameWithType: ChannelOption.Name
- - uid: Grpc.Core.ChannelOption.OptionType
- name: ChannelOption.OptionType
- href: api/Grpc.Core.ChannelOption.OptionType.html
- commentId: T:Grpc.Core.ChannelOption.OptionType
- fullName: Grpc.Core.ChannelOption.OptionType
- nameWithType: ChannelOption.OptionType
- - uid: Grpc.Core.ChannelOption.OptionType.Integer
- name: Integer
- href: api/Grpc.Core.ChannelOption.OptionType.html#Grpc_Core_ChannelOption_OptionType_Integer
- commentId: F:Grpc.Core.ChannelOption.OptionType.Integer
- fullName: Grpc.Core.ChannelOption.OptionType.Integer
- nameWithType: ChannelOption.OptionType.Integer
- - uid: Grpc.Core.ChannelOption.OptionType.String
- name: String
- href: api/Grpc.Core.ChannelOption.OptionType.html#Grpc_Core_ChannelOption_OptionType_String
- commentId: F:Grpc.Core.ChannelOption.OptionType.String
- fullName: Grpc.Core.ChannelOption.OptionType.String
- nameWithType: ChannelOption.OptionType.String
- - uid: Grpc.Core.ChannelOption.StringValue
- name: StringValue
- href: api/Grpc.Core.ChannelOption.html#Grpc_Core_ChannelOption_StringValue
- commentId: P:Grpc.Core.ChannelOption.StringValue
- fullName: Grpc.Core.ChannelOption.StringValue
- nameWithType: ChannelOption.StringValue
- - uid: Grpc.Core.ChannelOption.StringValue*
- name: StringValue
- href: api/Grpc.Core.ChannelOption.html#Grpc_Core_ChannelOption_StringValue_
- commentId: Overload:Grpc.Core.ChannelOption.StringValue
- fullName: Grpc.Core.ChannelOption.StringValue
- nameWithType: ChannelOption.StringValue
- - uid: Grpc.Core.ChannelOption.Type
- name: Type
- href: api/Grpc.Core.ChannelOption.html#Grpc_Core_ChannelOption_Type
- commentId: P:Grpc.Core.ChannelOption.Type
- fullName: Grpc.Core.ChannelOption.Type
- nameWithType: ChannelOption.Type
- - uid: Grpc.Core.ChannelOption.Type*
- name: Type
- href: api/Grpc.Core.ChannelOption.html#Grpc_Core_ChannelOption_Type_
- commentId: Overload:Grpc.Core.ChannelOption.Type
- fullName: Grpc.Core.ChannelOption.Type
- nameWithType: ChannelOption.Type
- - uid: Grpc.Core.ChannelOptions
- name: ChannelOptions
- href: api/Grpc.Core.ChannelOptions.html
- commentId: T:Grpc.Core.ChannelOptions
- fullName: Grpc.Core.ChannelOptions
- nameWithType: ChannelOptions
- - uid: Grpc.Core.ChannelOptions.Census
- name: Census
- href: api/Grpc.Core.ChannelOptions.html#Grpc_Core_ChannelOptions_Census
- commentId: F:Grpc.Core.ChannelOptions.Census
- fullName: Grpc.Core.ChannelOptions.Census
- nameWithType: ChannelOptions.Census
- - uid: Grpc.Core.ChannelOptions.DefaultAuthority
- name: DefaultAuthority
- href: api/Grpc.Core.ChannelOptions.html#Grpc_Core_ChannelOptions_DefaultAuthority
- commentId: F:Grpc.Core.ChannelOptions.DefaultAuthority
- fullName: Grpc.Core.ChannelOptions.DefaultAuthority
- nameWithType: ChannelOptions.DefaultAuthority
- - uid: Grpc.Core.ChannelOptions.Http2InitialSequenceNumber
- name: Http2InitialSequenceNumber
- href: api/Grpc.Core.ChannelOptions.html#Grpc_Core_ChannelOptions_Http2InitialSequenceNumber
- commentId: F:Grpc.Core.ChannelOptions.Http2InitialSequenceNumber
- fullName: Grpc.Core.ChannelOptions.Http2InitialSequenceNumber
- nameWithType: ChannelOptions.Http2InitialSequenceNumber
- - uid: Grpc.Core.ChannelOptions.MaxConcurrentStreams
- name: MaxConcurrentStreams
- href: api/Grpc.Core.ChannelOptions.html#Grpc_Core_ChannelOptions_MaxConcurrentStreams
- commentId: F:Grpc.Core.ChannelOptions.MaxConcurrentStreams
- fullName: Grpc.Core.ChannelOptions.MaxConcurrentStreams
- nameWithType: ChannelOptions.MaxConcurrentStreams
- - uid: Grpc.Core.ChannelOptions.MaxMessageLength
- name: MaxMessageLength
- href: api/Grpc.Core.ChannelOptions.html#Grpc_Core_ChannelOptions_MaxMessageLength
- commentId: F:Grpc.Core.ChannelOptions.MaxMessageLength
- fullName: Grpc.Core.ChannelOptions.MaxMessageLength
- nameWithType: ChannelOptions.MaxMessageLength
- - uid: Grpc.Core.ChannelOptions.MaxReceiveMessageLength
- name: MaxReceiveMessageLength
- href: api/Grpc.Core.ChannelOptions.html#Grpc_Core_ChannelOptions_MaxReceiveMessageLength
- commentId: F:Grpc.Core.ChannelOptions.MaxReceiveMessageLength
- fullName: Grpc.Core.ChannelOptions.MaxReceiveMessageLength
- nameWithType: ChannelOptions.MaxReceiveMessageLength
- - uid: Grpc.Core.ChannelOptions.MaxSendMessageLength
- name: MaxSendMessageLength
- href: api/Grpc.Core.ChannelOptions.html#Grpc_Core_ChannelOptions_MaxSendMessageLength
- commentId: F:Grpc.Core.ChannelOptions.MaxSendMessageLength
- fullName: Grpc.Core.ChannelOptions.MaxSendMessageLength
- nameWithType: ChannelOptions.MaxSendMessageLength
- - uid: Grpc.Core.ChannelOptions.PrimaryUserAgentString
- name: PrimaryUserAgentString
- href: api/Grpc.Core.ChannelOptions.html#Grpc_Core_ChannelOptions_PrimaryUserAgentString
- commentId: F:Grpc.Core.ChannelOptions.PrimaryUserAgentString
- fullName: Grpc.Core.ChannelOptions.PrimaryUserAgentString
- nameWithType: ChannelOptions.PrimaryUserAgentString
- - uid: Grpc.Core.ChannelOptions.SecondaryUserAgentString
- name: SecondaryUserAgentString
- href: api/Grpc.Core.ChannelOptions.html#Grpc_Core_ChannelOptions_SecondaryUserAgentString
- commentId: F:Grpc.Core.ChannelOptions.SecondaryUserAgentString
- fullName: Grpc.Core.ChannelOptions.SecondaryUserAgentString
- nameWithType: ChannelOptions.SecondaryUserAgentString
- - uid: Grpc.Core.ChannelOptions.SoReuseport
- name: SoReuseport
- href: api/Grpc.Core.ChannelOptions.html#Grpc_Core_ChannelOptions_SoReuseport
- commentId: F:Grpc.Core.ChannelOptions.SoReuseport
- fullName: Grpc.Core.ChannelOptions.SoReuseport
- nameWithType: ChannelOptions.SoReuseport
- - uid: Grpc.Core.ChannelOptions.SslTargetNameOverride
- name: SslTargetNameOverride
- href: api/Grpc.Core.ChannelOptions.html#Grpc_Core_ChannelOptions_SslTargetNameOverride
- commentId: F:Grpc.Core.ChannelOptions.SslTargetNameOverride
- fullName: Grpc.Core.ChannelOptions.SslTargetNameOverride
- nameWithType: ChannelOptions.SslTargetNameOverride
- - uid: Grpc.Core.ChannelState
- name: ChannelState
- href: api/Grpc.Core.ChannelState.html
- commentId: T:Grpc.Core.ChannelState
- fullName: Grpc.Core.ChannelState
- nameWithType: ChannelState
- - uid: Grpc.Core.ChannelState.Connecting
- name: Connecting
- href: api/Grpc.Core.ChannelState.html#Grpc_Core_ChannelState_Connecting
- commentId: F:Grpc.Core.ChannelState.Connecting
- fullName: Grpc.Core.ChannelState.Connecting
- nameWithType: ChannelState.Connecting
- - uid: Grpc.Core.ChannelState.Idle
- name: Idle
- href: api/Grpc.Core.ChannelState.html#Grpc_Core_ChannelState_Idle
- commentId: F:Grpc.Core.ChannelState.Idle
- fullName: Grpc.Core.ChannelState.Idle
- nameWithType: ChannelState.Idle
- - uid: Grpc.Core.ChannelState.Ready
- name: Ready
- href: api/Grpc.Core.ChannelState.html#Grpc_Core_ChannelState_Ready
- commentId: F:Grpc.Core.ChannelState.Ready
- fullName: Grpc.Core.ChannelState.Ready
- nameWithType: ChannelState.Ready
- - uid: Grpc.Core.ChannelState.Shutdown
- name: Shutdown
- href: api/Grpc.Core.ChannelState.html#Grpc_Core_ChannelState_Shutdown
- commentId: F:Grpc.Core.ChannelState.Shutdown
- fullName: Grpc.Core.ChannelState.Shutdown
- nameWithType: ChannelState.Shutdown
- - uid: Grpc.Core.ChannelState.TransientFailure
- name: TransientFailure
- href: api/Grpc.Core.ChannelState.html#Grpc_Core_ChannelState_TransientFailure
- commentId: F:Grpc.Core.ChannelState.TransientFailure
- fullName: Grpc.Core.ChannelState.TransientFailure
- nameWithType: ChannelState.TransientFailure
- - uid: Grpc.Core.ClientBase
- name: ClientBase
- href: api/Grpc.Core.ClientBase.html
- commentId: T:Grpc.Core.ClientBase
- fullName: Grpc.Core.ClientBase
- nameWithType: ClientBase
- - uid: Grpc.Core.ClientBase.#ctor
- name: ClientBase()
- href: api/Grpc.Core.ClientBase.html#Grpc_Core_ClientBase__ctor
- commentId: M:Grpc.Core.ClientBase.#ctor
- fullName: Grpc.Core.ClientBase.ClientBase()
- nameWithType: ClientBase.ClientBase()
- - uid: Grpc.Core.ClientBase.#ctor(Grpc.Core.CallInvoker)
- name: ClientBase(CallInvoker)
- href: api/Grpc.Core.ClientBase.html#Grpc_Core_ClientBase__ctor_Grpc_Core_CallInvoker_
- commentId: M:Grpc.Core.ClientBase.#ctor(Grpc.Core.CallInvoker)
- fullName: Grpc.Core.ClientBase.ClientBase(Grpc.Core.CallInvoker)
- nameWithType: ClientBase.ClientBase(CallInvoker)
- - uid: Grpc.Core.ClientBase.#ctor(Grpc.Core.Channel)
- name: ClientBase(Channel)
- href: api/Grpc.Core.ClientBase.html#Grpc_Core_ClientBase__ctor_Grpc_Core_Channel_
- commentId: M:Grpc.Core.ClientBase.#ctor(Grpc.Core.Channel)
- fullName: Grpc.Core.ClientBase.ClientBase(Grpc.Core.Channel)
- nameWithType: ClientBase.ClientBase(Channel)
- - uid: Grpc.Core.ClientBase.#ctor(Grpc.Core.ClientBase.ClientBaseConfiguration)
- name: ClientBase(ClientBase.ClientBaseConfiguration)
- href: api/Grpc.Core.ClientBase.html#Grpc_Core_ClientBase__ctor_Grpc_Core_ClientBase_ClientBaseConfiguration_
- commentId: M:Grpc.Core.ClientBase.#ctor(Grpc.Core.ClientBase.ClientBaseConfiguration)
- fullName: Grpc.Core.ClientBase.ClientBase(Grpc.Core.ClientBase.ClientBaseConfiguration)
- nameWithType: ClientBase.ClientBase(ClientBase.ClientBaseConfiguration)
- - uid: Grpc.Core.ClientBase.#ctor*
- name: ClientBase
- href: api/Grpc.Core.ClientBase.html#Grpc_Core_ClientBase__ctor_
- commentId: Overload:Grpc.Core.ClientBase.#ctor
- fullName: Grpc.Core.ClientBase.ClientBase
- nameWithType: ClientBase.ClientBase
- - uid: Grpc.Core.ClientBase.CallInvoker
- name: CallInvoker
- href: api/Grpc.Core.ClientBase.html#Grpc_Core_ClientBase_CallInvoker
- commentId: P:Grpc.Core.ClientBase.CallInvoker
- fullName: Grpc.Core.ClientBase.CallInvoker
- nameWithType: ClientBase.CallInvoker
- - uid: Grpc.Core.ClientBase.CallInvoker*
- name: CallInvoker
- href: api/Grpc.Core.ClientBase.html#Grpc_Core_ClientBase_CallInvoker_
- commentId: Overload:Grpc.Core.ClientBase.CallInvoker
- fullName: Grpc.Core.ClientBase.CallInvoker
- nameWithType: ClientBase.CallInvoker
- - uid: Grpc.Core.ClientBase.ClientBaseConfiguration
- name: ClientBase.ClientBaseConfiguration
- href: api/Grpc.Core.ClientBase.ClientBaseConfiguration.html
- commentId: T:Grpc.Core.ClientBase.ClientBaseConfiguration
- fullName: Grpc.Core.ClientBase.ClientBaseConfiguration
- nameWithType: ClientBase.ClientBaseConfiguration
- - uid: Grpc.Core.ClientBase`1
- name: ClientBase<T>
- href: api/Grpc.Core.ClientBase-1.html
- commentId: T:Grpc.Core.ClientBase`1
- name.vb: ClientBase(Of T)
- fullName: Grpc.Core.ClientBase<T>
- fullName.vb: Grpc.Core.ClientBase(Of T)
- nameWithType: ClientBase<T>
- nameWithType.vb: ClientBase(Of T)
- - uid: Grpc.Core.ClientBase`1.#ctor
- name: ClientBase()
- href: api/Grpc.Core.ClientBase-1.html#Grpc_Core_ClientBase_1__ctor
- commentId: M:Grpc.Core.ClientBase`1.#ctor
- fullName: Grpc.Core.ClientBase<T>.ClientBase()
- fullName.vb: Grpc.Core.ClientBase(Of T).ClientBase()
- nameWithType: ClientBase<T>.ClientBase()
- nameWithType.vb: ClientBase(Of T).ClientBase()
- - uid: Grpc.Core.ClientBase`1.#ctor(Grpc.Core.CallInvoker)
- name: ClientBase(CallInvoker)
- href: api/Grpc.Core.ClientBase-1.html#Grpc_Core_ClientBase_1__ctor_Grpc_Core_CallInvoker_
- commentId: M:Grpc.Core.ClientBase`1.#ctor(Grpc.Core.CallInvoker)
- fullName: Grpc.Core.ClientBase<T>.ClientBase(Grpc.Core.CallInvoker)
- fullName.vb: Grpc.Core.ClientBase(Of T).ClientBase(Grpc.Core.CallInvoker)
- nameWithType: ClientBase<T>.ClientBase(CallInvoker)
- nameWithType.vb: ClientBase(Of T).ClientBase(CallInvoker)
- - uid: Grpc.Core.ClientBase`1.#ctor(Grpc.Core.Channel)
- name: ClientBase(Channel)
- href: api/Grpc.Core.ClientBase-1.html#Grpc_Core_ClientBase_1__ctor_Grpc_Core_Channel_
- commentId: M:Grpc.Core.ClientBase`1.#ctor(Grpc.Core.Channel)
- fullName: Grpc.Core.ClientBase<T>.ClientBase(Grpc.Core.Channel)
- fullName.vb: Grpc.Core.ClientBase(Of T).ClientBase(Grpc.Core.Channel)
- nameWithType: ClientBase<T>.ClientBase(Channel)
- nameWithType.vb: ClientBase(Of T).ClientBase(Channel)
- - uid: Grpc.Core.ClientBase`1.#ctor(Grpc.Core.ClientBase.ClientBaseConfiguration)
- name: ClientBase(ClientBase.ClientBaseConfiguration)
- href: api/Grpc.Core.ClientBase-1.html#Grpc_Core_ClientBase_1__ctor_Grpc_Core_ClientBase_ClientBaseConfiguration_
- commentId: M:Grpc.Core.ClientBase`1.#ctor(Grpc.Core.ClientBase.ClientBaseConfiguration)
- fullName: Grpc.Core.ClientBase<T>.ClientBase(Grpc.Core.ClientBase.ClientBaseConfiguration)
- fullName.vb: Grpc.Core.ClientBase(Of T).ClientBase(Grpc.Core.ClientBase.ClientBaseConfiguration)
- nameWithType: ClientBase<T>.ClientBase(ClientBase.ClientBaseConfiguration)
- nameWithType.vb: ClientBase(Of T).ClientBase(ClientBase.ClientBaseConfiguration)
- - uid: Grpc.Core.ClientBase`1.#ctor*
- name: ClientBase
- href: api/Grpc.Core.ClientBase-1.html#Grpc_Core_ClientBase_1__ctor_
- commentId: Overload:Grpc.Core.ClientBase`1.#ctor
- fullName: Grpc.Core.ClientBase<T>.ClientBase
- fullName.vb: Grpc.Core.ClientBase(Of T).ClientBase
- nameWithType: ClientBase<T>.ClientBase
- nameWithType.vb: ClientBase(Of T).ClientBase
- - uid: Grpc.Core.ClientBase`1.NewInstance(Grpc.Core.ClientBase.ClientBaseConfiguration)
- name: NewInstance(ClientBase.ClientBaseConfiguration)
- href: api/Grpc.Core.ClientBase-1.html#Grpc_Core_ClientBase_1_NewInstance_Grpc_Core_ClientBase_ClientBaseConfiguration_
- commentId: M:Grpc.Core.ClientBase`1.NewInstance(Grpc.Core.ClientBase.ClientBaseConfiguration)
- fullName: Grpc.Core.ClientBase<T>.NewInstance(Grpc.Core.ClientBase.ClientBaseConfiguration)
- fullName.vb: Grpc.Core.ClientBase(Of T).NewInstance(Grpc.Core.ClientBase.ClientBaseConfiguration)
- nameWithType: ClientBase<T>.NewInstance(ClientBase.ClientBaseConfiguration)
- nameWithType.vb: ClientBase(Of T).NewInstance(ClientBase.ClientBaseConfiguration)
- - uid: Grpc.Core.ClientBase`1.NewInstance*
- name: NewInstance
- href: api/Grpc.Core.ClientBase-1.html#Grpc_Core_ClientBase_1_NewInstance_
- commentId: Overload:Grpc.Core.ClientBase`1.NewInstance
- fullName: Grpc.Core.ClientBase<T>.NewInstance
- fullName.vb: Grpc.Core.ClientBase(Of T).NewInstance
- nameWithType: ClientBase<T>.NewInstance
- nameWithType.vb: ClientBase(Of T).NewInstance
- - uid: Grpc.Core.ClientBase`1.WithHost(System.String)
- name: WithHost(String)
- href: api/Grpc.Core.ClientBase-1.html#Grpc_Core_ClientBase_1_WithHost_System_String_
- commentId: M:Grpc.Core.ClientBase`1.WithHost(System.String)
- fullName: Grpc.Core.ClientBase<T>.WithHost(System.String)
- fullName.vb: Grpc.Core.ClientBase(Of T).WithHost(System.String)
- nameWithType: ClientBase<T>.WithHost(String)
- nameWithType.vb: ClientBase(Of T).WithHost(String)
- - uid: Grpc.Core.ClientBase`1.WithHost*
- name: WithHost
- href: api/Grpc.Core.ClientBase-1.html#Grpc_Core_ClientBase_1_WithHost_
- commentId: Overload:Grpc.Core.ClientBase`1.WithHost
- fullName: Grpc.Core.ClientBase<T>.WithHost
- fullName.vb: Grpc.Core.ClientBase(Of T).WithHost
- nameWithType: ClientBase<T>.WithHost
- nameWithType.vb: ClientBase(Of T).WithHost
- - uid: Grpc.Core.ClientStreamingServerMethod`2
- name: ClientStreamingServerMethod<TRequest, TResponse>
- href: api/Grpc.Core.ClientStreamingServerMethod-2.html
- commentId: T:Grpc.Core.ClientStreamingServerMethod`2
- name.vb: ClientStreamingServerMethod(Of TRequest, TResponse)
- fullName: Grpc.Core.ClientStreamingServerMethod<TRequest, TResponse>
- fullName.vb: Grpc.Core.ClientStreamingServerMethod(Of TRequest, TResponse)
- nameWithType: ClientStreamingServerMethod<TRequest, TResponse>
- nameWithType.vb: ClientStreamingServerMethod(Of TRequest, TResponse)
- - uid: Grpc.Core.CompressionLevel
- name: CompressionLevel
- href: api/Grpc.Core.CompressionLevel.html
- commentId: T:Grpc.Core.CompressionLevel
- fullName: Grpc.Core.CompressionLevel
- nameWithType: CompressionLevel
- - uid: Grpc.Core.CompressionLevel.High
- name: High
- href: api/Grpc.Core.CompressionLevel.html#Grpc_Core_CompressionLevel_High
- commentId: F:Grpc.Core.CompressionLevel.High
- fullName: Grpc.Core.CompressionLevel.High
- nameWithType: CompressionLevel.High
- - uid: Grpc.Core.CompressionLevel.Low
- name: Low
- href: api/Grpc.Core.CompressionLevel.html#Grpc_Core_CompressionLevel_Low
- commentId: F:Grpc.Core.CompressionLevel.Low
- fullName: Grpc.Core.CompressionLevel.Low
- nameWithType: CompressionLevel.Low
- - uid: Grpc.Core.CompressionLevel.Medium
- name: Medium
- href: api/Grpc.Core.CompressionLevel.html#Grpc_Core_CompressionLevel_Medium
- commentId: F:Grpc.Core.CompressionLevel.Medium
- fullName: Grpc.Core.CompressionLevel.Medium
- nameWithType: CompressionLevel.Medium
- - uid: Grpc.Core.CompressionLevel.None
- name: None
- href: api/Grpc.Core.CompressionLevel.html#Grpc_Core_CompressionLevel_None
- commentId: F:Grpc.Core.CompressionLevel.None
- fullName: Grpc.Core.CompressionLevel.None
- nameWithType: CompressionLevel.None
- - uid: Grpc.Core.ContextPropagationOptions
- name: ContextPropagationOptions
- href: api/Grpc.Core.ContextPropagationOptions.html
- commentId: T:Grpc.Core.ContextPropagationOptions
- fullName: Grpc.Core.ContextPropagationOptions
- nameWithType: ContextPropagationOptions
- - uid: Grpc.Core.ContextPropagationOptions.#ctor(System.Boolean,System.Boolean)
- name: ContextPropagationOptions(Boolean, Boolean)
- href: api/Grpc.Core.ContextPropagationOptions.html#Grpc_Core_ContextPropagationOptions__ctor_System_Boolean_System_Boolean_
- commentId: M:Grpc.Core.ContextPropagationOptions.#ctor(System.Boolean,System.Boolean)
- fullName: Grpc.Core.ContextPropagationOptions.ContextPropagationOptions(System.Boolean, System.Boolean)
- nameWithType: ContextPropagationOptions.ContextPropagationOptions(Boolean, Boolean)
- - uid: Grpc.Core.ContextPropagationOptions.#ctor*
- name: ContextPropagationOptions
- href: api/Grpc.Core.ContextPropagationOptions.html#Grpc_Core_ContextPropagationOptions__ctor_
- commentId: Overload:Grpc.Core.ContextPropagationOptions.#ctor
- fullName: Grpc.Core.ContextPropagationOptions.ContextPropagationOptions
- nameWithType: ContextPropagationOptions.ContextPropagationOptions
- - uid: Grpc.Core.ContextPropagationOptions.Default
- name: Default
- href: api/Grpc.Core.ContextPropagationOptions.html#Grpc_Core_ContextPropagationOptions_Default
- commentId: F:Grpc.Core.ContextPropagationOptions.Default
- fullName: Grpc.Core.ContextPropagationOptions.Default
- nameWithType: ContextPropagationOptions.Default
- - uid: Grpc.Core.ContextPropagationOptions.IsPropagateCancellation
- name: IsPropagateCancellation
- href: api/Grpc.Core.ContextPropagationOptions.html#Grpc_Core_ContextPropagationOptions_IsPropagateCancellation
- commentId: P:Grpc.Core.ContextPropagationOptions.IsPropagateCancellation
- fullName: Grpc.Core.ContextPropagationOptions.IsPropagateCancellation
- nameWithType: ContextPropagationOptions.IsPropagateCancellation
- - uid: Grpc.Core.ContextPropagationOptions.IsPropagateCancellation*
- name: IsPropagateCancellation
- href: api/Grpc.Core.ContextPropagationOptions.html#Grpc_Core_ContextPropagationOptions_IsPropagateCancellation_
- commentId: Overload:Grpc.Core.ContextPropagationOptions.IsPropagateCancellation
- fullName: Grpc.Core.ContextPropagationOptions.IsPropagateCancellation
- nameWithType: ContextPropagationOptions.IsPropagateCancellation
- - uid: Grpc.Core.ContextPropagationOptions.IsPropagateDeadline
- name: IsPropagateDeadline
- href: api/Grpc.Core.ContextPropagationOptions.html#Grpc_Core_ContextPropagationOptions_IsPropagateDeadline
- commentId: P:Grpc.Core.ContextPropagationOptions.IsPropagateDeadline
- fullName: Grpc.Core.ContextPropagationOptions.IsPropagateDeadline
- nameWithType: ContextPropagationOptions.IsPropagateDeadline
- - uid: Grpc.Core.ContextPropagationOptions.IsPropagateDeadline*
- name: IsPropagateDeadline
- href: api/Grpc.Core.ContextPropagationOptions.html#Grpc_Core_ContextPropagationOptions_IsPropagateDeadline_
- commentId: Overload:Grpc.Core.ContextPropagationOptions.IsPropagateDeadline
- fullName: Grpc.Core.ContextPropagationOptions.IsPropagateDeadline
- nameWithType: ContextPropagationOptions.IsPropagateDeadline
- - uid: Grpc.Core.ContextPropagationToken
- name: ContextPropagationToken
- href: api/Grpc.Core.ContextPropagationToken.html
- commentId: T:Grpc.Core.ContextPropagationToken
- fullName: Grpc.Core.ContextPropagationToken
- nameWithType: ContextPropagationToken
- - uid: Grpc.Core.DefaultCallInvoker
- name: DefaultCallInvoker
- href: api/Grpc.Core.DefaultCallInvoker.html
- commentId: T:Grpc.Core.DefaultCallInvoker
- fullName: Grpc.Core.DefaultCallInvoker
- nameWithType: DefaultCallInvoker
- - uid: Grpc.Core.DefaultCallInvoker.#ctor(Grpc.Core.Channel)
- name: DefaultCallInvoker(Channel)
- href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker__ctor_Grpc_Core_Channel_
- commentId: M:Grpc.Core.DefaultCallInvoker.#ctor(Grpc.Core.Channel)
- fullName: Grpc.Core.DefaultCallInvoker.DefaultCallInvoker(Grpc.Core.Channel)
- nameWithType: DefaultCallInvoker.DefaultCallInvoker(Channel)
- - uid: Grpc.Core.DefaultCallInvoker.#ctor*
- name: DefaultCallInvoker
- href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker__ctor_
- commentId: Overload:Grpc.Core.DefaultCallInvoker.#ctor
- fullName: Grpc.Core.DefaultCallInvoker.DefaultCallInvoker
- nameWithType: DefaultCallInvoker.DefaultCallInvoker
- - uid: Grpc.Core.DefaultCallInvoker.AsyncClientStreamingCall*
- name: AsyncClientStreamingCall
- href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker_AsyncClientStreamingCall_
- commentId: Overload:Grpc.Core.DefaultCallInvoker.AsyncClientStreamingCall
- fullName: Grpc.Core.DefaultCallInvoker.AsyncClientStreamingCall
- nameWithType: DefaultCallInvoker.AsyncClientStreamingCall
- - uid: Grpc.Core.DefaultCallInvoker.AsyncClientStreamingCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions)
- name: AsyncClientStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions)
- href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker_AsyncClientStreamingCall__2_Grpc_Core_Method___0___1__System_String_Grpc_Core_CallOptions_
- commentId: M:Grpc.Core.DefaultCallInvoker.AsyncClientStreamingCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions)
- name.vb: AsyncClientStreamingCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions)
- fullName: Grpc.Core.DefaultCallInvoker.AsyncClientStreamingCall<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, System.String, Grpc.Core.CallOptions)
- fullName.vb: Grpc.Core.DefaultCallInvoker.AsyncClientStreamingCall(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), System.String, Grpc.Core.CallOptions)
- nameWithType: DefaultCallInvoker.AsyncClientStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions)
- nameWithType.vb: DefaultCallInvoker.AsyncClientStreamingCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions)
- - uid: Grpc.Core.DefaultCallInvoker.AsyncDuplexStreamingCall*
- name: AsyncDuplexStreamingCall
- href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker_AsyncDuplexStreamingCall_
- commentId: Overload:Grpc.Core.DefaultCallInvoker.AsyncDuplexStreamingCall
- fullName: Grpc.Core.DefaultCallInvoker.AsyncDuplexStreamingCall
- nameWithType: DefaultCallInvoker.AsyncDuplexStreamingCall
- - uid: Grpc.Core.DefaultCallInvoker.AsyncDuplexStreamingCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions)
- name: AsyncDuplexStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions)
- href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker_AsyncDuplexStreamingCall__2_Grpc_Core_Method___0___1__System_String_Grpc_Core_CallOptions_
- commentId: M:Grpc.Core.DefaultCallInvoker.AsyncDuplexStreamingCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions)
- name.vb: AsyncDuplexStreamingCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions)
- fullName: Grpc.Core.DefaultCallInvoker.AsyncDuplexStreamingCall<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, System.String, Grpc.Core.CallOptions)
- fullName.vb: Grpc.Core.DefaultCallInvoker.AsyncDuplexStreamingCall(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), System.String, Grpc.Core.CallOptions)
- nameWithType: DefaultCallInvoker.AsyncDuplexStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions)
- nameWithType.vb: DefaultCallInvoker.AsyncDuplexStreamingCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions)
- - uid: Grpc.Core.DefaultCallInvoker.AsyncServerStreamingCall*
- name: AsyncServerStreamingCall
- href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker_AsyncServerStreamingCall_
- commentId: Overload:Grpc.Core.DefaultCallInvoker.AsyncServerStreamingCall
- fullName: Grpc.Core.DefaultCallInvoker.AsyncServerStreamingCall
- nameWithType: DefaultCallInvoker.AsyncServerStreamingCall
- - uid: Grpc.Core.DefaultCallInvoker.AsyncServerStreamingCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions,``0)
- name: AsyncServerStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions, TRequest)
- href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker_AsyncServerStreamingCall__2_Grpc_Core_Method___0___1__System_String_Grpc_Core_CallOptions___0_
- commentId: M:Grpc.Core.DefaultCallInvoker.AsyncServerStreamingCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions,``0)
- name.vb: AsyncServerStreamingCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions, TRequest)
- fullName: Grpc.Core.DefaultCallInvoker.AsyncServerStreamingCall<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, System.String, Grpc.Core.CallOptions, TRequest)
- fullName.vb: Grpc.Core.DefaultCallInvoker.AsyncServerStreamingCall(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), System.String, Grpc.Core.CallOptions, TRequest)
- nameWithType: DefaultCallInvoker.AsyncServerStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions, TRequest)
- nameWithType.vb: DefaultCallInvoker.AsyncServerStreamingCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions, TRequest)
- - uid: Grpc.Core.DefaultCallInvoker.AsyncUnaryCall*
- name: AsyncUnaryCall
- href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker_AsyncUnaryCall_
- commentId: Overload:Grpc.Core.DefaultCallInvoker.AsyncUnaryCall
- fullName: Grpc.Core.DefaultCallInvoker.AsyncUnaryCall
- nameWithType: DefaultCallInvoker.AsyncUnaryCall
- - uid: Grpc.Core.DefaultCallInvoker.AsyncUnaryCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions,``0)
- name: AsyncUnaryCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions, TRequest)
- href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker_AsyncUnaryCall__2_Grpc_Core_Method___0___1__System_String_Grpc_Core_CallOptions___0_
- commentId: M:Grpc.Core.DefaultCallInvoker.AsyncUnaryCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions,``0)
- name.vb: AsyncUnaryCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions, TRequest)
- fullName: Grpc.Core.DefaultCallInvoker.AsyncUnaryCall<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, System.String, Grpc.Core.CallOptions, TRequest)
- fullName.vb: Grpc.Core.DefaultCallInvoker.AsyncUnaryCall(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), System.String, Grpc.Core.CallOptions, TRequest)
- nameWithType: DefaultCallInvoker.AsyncUnaryCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions, TRequest)
- nameWithType.vb: DefaultCallInvoker.AsyncUnaryCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions, TRequest)
- - uid: Grpc.Core.DefaultCallInvoker.BlockingUnaryCall*
- name: BlockingUnaryCall
- href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker_BlockingUnaryCall_
- commentId: Overload:Grpc.Core.DefaultCallInvoker.BlockingUnaryCall
- fullName: Grpc.Core.DefaultCallInvoker.BlockingUnaryCall
- nameWithType: DefaultCallInvoker.BlockingUnaryCall
- - uid: Grpc.Core.DefaultCallInvoker.BlockingUnaryCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions,``0)
- name: BlockingUnaryCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions, TRequest)
- href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker_BlockingUnaryCall__2_Grpc_Core_Method___0___1__System_String_Grpc_Core_CallOptions___0_
- commentId: M:Grpc.Core.DefaultCallInvoker.BlockingUnaryCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions,``0)
- name.vb: BlockingUnaryCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions, TRequest)
- fullName: Grpc.Core.DefaultCallInvoker.BlockingUnaryCall<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, System.String, Grpc.Core.CallOptions, TRequest)
- fullName.vb: Grpc.Core.DefaultCallInvoker.BlockingUnaryCall(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), System.String, Grpc.Core.CallOptions, TRequest)
- nameWithType: DefaultCallInvoker.BlockingUnaryCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions, TRequest)
- nameWithType.vb: DefaultCallInvoker.BlockingUnaryCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions, TRequest)
- - uid: Grpc.Core.DefaultCallInvoker.CreateCall*
- name: CreateCall
- href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker_CreateCall_
- commentId: Overload:Grpc.Core.DefaultCallInvoker.CreateCall
- fullName: Grpc.Core.DefaultCallInvoker.CreateCall
- nameWithType: DefaultCallInvoker.CreateCall
- - uid: Grpc.Core.DefaultCallInvoker.CreateCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions)
- name: CreateCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions)
- href: api/Grpc.Core.DefaultCallInvoker.html#Grpc_Core_DefaultCallInvoker_CreateCall__2_Grpc_Core_Method___0___1__System_String_Grpc_Core_CallOptions_
- commentId: M:Grpc.Core.DefaultCallInvoker.CreateCall``2(Grpc.Core.Method{``0,``1},System.String,Grpc.Core.CallOptions)
- name.vb: CreateCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions)
- fullName: Grpc.Core.DefaultCallInvoker.CreateCall<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, System.String, Grpc.Core.CallOptions)
- fullName.vb: Grpc.Core.DefaultCallInvoker.CreateCall(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), System.String, Grpc.Core.CallOptions)
- nameWithType: DefaultCallInvoker.CreateCall<TRequest, TResponse>(Method<TRequest, TResponse>, String, CallOptions)
- nameWithType.vb: DefaultCallInvoker.CreateCall(Of TRequest, TResponse)(Method(Of TRequest, TResponse), String, CallOptions)
- - uid: Grpc.Core.DuplexStreamingServerMethod`2
- name: DuplexStreamingServerMethod<TRequest, TResponse>
- href: api/Grpc.Core.DuplexStreamingServerMethod-2.html
- commentId: T:Grpc.Core.DuplexStreamingServerMethod`2
- name.vb: DuplexStreamingServerMethod(Of TRequest, TResponse)
- fullName: Grpc.Core.DuplexStreamingServerMethod<TRequest, TResponse>
- fullName.vb: Grpc.Core.DuplexStreamingServerMethod(Of TRequest, TResponse)
- nameWithType: DuplexStreamingServerMethod<TRequest, TResponse>
- nameWithType.vb: DuplexStreamingServerMethod(Of TRequest, TResponse)
- - uid: Grpc.Core.GrpcEnvironment
- name: GrpcEnvironment
- href: api/Grpc.Core.GrpcEnvironment.html
- commentId: T:Grpc.Core.GrpcEnvironment
- fullName: Grpc.Core.GrpcEnvironment
- nameWithType: GrpcEnvironment
- - uid: Grpc.Core.GrpcEnvironment.KillServersAsync
- name: KillServersAsync()
- href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_KillServersAsync
- commentId: M:Grpc.Core.GrpcEnvironment.KillServersAsync
- fullName: Grpc.Core.GrpcEnvironment.KillServersAsync()
- nameWithType: GrpcEnvironment.KillServersAsync()
- - uid: Grpc.Core.GrpcEnvironment.KillServersAsync*
- name: KillServersAsync
- href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_KillServersAsync_
- commentId: Overload:Grpc.Core.GrpcEnvironment.KillServersAsync
- fullName: Grpc.Core.GrpcEnvironment.KillServersAsync
- nameWithType: GrpcEnvironment.KillServersAsync
- - uid: Grpc.Core.GrpcEnvironment.Logger
- name: Logger
- href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_Logger
- commentId: P:Grpc.Core.GrpcEnvironment.Logger
- fullName: Grpc.Core.GrpcEnvironment.Logger
- nameWithType: GrpcEnvironment.Logger
- - uid: Grpc.Core.GrpcEnvironment.Logger*
- name: Logger
- href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_Logger_
- commentId: Overload:Grpc.Core.GrpcEnvironment.Logger
- fullName: Grpc.Core.GrpcEnvironment.Logger
- nameWithType: GrpcEnvironment.Logger
- - uid: Grpc.Core.GrpcEnvironment.SetCompletionQueueCount(System.Int32)
- name: SetCompletionQueueCount(Int32)
- href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_SetCompletionQueueCount_System_Int32_
- commentId: M:Grpc.Core.GrpcEnvironment.SetCompletionQueueCount(System.Int32)
- fullName: Grpc.Core.GrpcEnvironment.SetCompletionQueueCount(System.Int32)
- nameWithType: GrpcEnvironment.SetCompletionQueueCount(Int32)
- - uid: Grpc.Core.GrpcEnvironment.SetCompletionQueueCount*
- name: SetCompletionQueueCount
- href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_SetCompletionQueueCount_
- commentId: Overload:Grpc.Core.GrpcEnvironment.SetCompletionQueueCount
- fullName: Grpc.Core.GrpcEnvironment.SetCompletionQueueCount
- nameWithType: GrpcEnvironment.SetCompletionQueueCount
- - uid: Grpc.Core.GrpcEnvironment.SetHandlerInlining(System.Boolean)
- name: SetHandlerInlining(Boolean)
- href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_SetHandlerInlining_System_Boolean_
- commentId: M:Grpc.Core.GrpcEnvironment.SetHandlerInlining(System.Boolean)
- fullName: Grpc.Core.GrpcEnvironment.SetHandlerInlining(System.Boolean)
- nameWithType: GrpcEnvironment.SetHandlerInlining(Boolean)
- - uid: Grpc.Core.GrpcEnvironment.SetHandlerInlining*
- name: SetHandlerInlining
- href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_SetHandlerInlining_
- commentId: Overload:Grpc.Core.GrpcEnvironment.SetHandlerInlining
- fullName: Grpc.Core.GrpcEnvironment.SetHandlerInlining
- nameWithType: GrpcEnvironment.SetHandlerInlining
- - uid: Grpc.Core.GrpcEnvironment.SetLogger(Grpc.Core.Logging.ILogger)
- name: SetLogger(ILogger)
- href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_SetLogger_Grpc_Core_Logging_ILogger_
- commentId: M:Grpc.Core.GrpcEnvironment.SetLogger(Grpc.Core.Logging.ILogger)
- fullName: Grpc.Core.GrpcEnvironment.SetLogger(Grpc.Core.Logging.ILogger)
- nameWithType: GrpcEnvironment.SetLogger(ILogger)
- - uid: Grpc.Core.GrpcEnvironment.SetLogger*
- name: SetLogger
- href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_SetLogger_
- commentId: Overload:Grpc.Core.GrpcEnvironment.SetLogger
- fullName: Grpc.Core.GrpcEnvironment.SetLogger
- nameWithType: GrpcEnvironment.SetLogger
- - uid: Grpc.Core.GrpcEnvironment.SetThreadPoolSize(System.Int32)
- name: SetThreadPoolSize(Int32)
- href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_SetThreadPoolSize_System_Int32_
- commentId: M:Grpc.Core.GrpcEnvironment.SetThreadPoolSize(System.Int32)
- fullName: Grpc.Core.GrpcEnvironment.SetThreadPoolSize(System.Int32)
- nameWithType: GrpcEnvironment.SetThreadPoolSize(Int32)
- - uid: Grpc.Core.GrpcEnvironment.SetThreadPoolSize*
- name: SetThreadPoolSize
- href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_SetThreadPoolSize_
- commentId: Overload:Grpc.Core.GrpcEnvironment.SetThreadPoolSize
- fullName: Grpc.Core.GrpcEnvironment.SetThreadPoolSize
- nameWithType: GrpcEnvironment.SetThreadPoolSize
- - uid: Grpc.Core.GrpcEnvironment.ShutdownChannelsAsync
- name: ShutdownChannelsAsync()
- href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_ShutdownChannelsAsync
- commentId: M:Grpc.Core.GrpcEnvironment.ShutdownChannelsAsync
- fullName: Grpc.Core.GrpcEnvironment.ShutdownChannelsAsync()
- nameWithType: GrpcEnvironment.ShutdownChannelsAsync()
- - uid: Grpc.Core.GrpcEnvironment.ShutdownChannelsAsync*
- name: ShutdownChannelsAsync
- href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_ShutdownChannelsAsync_
- commentId: Overload:Grpc.Core.GrpcEnvironment.ShutdownChannelsAsync
- fullName: Grpc.Core.GrpcEnvironment.ShutdownChannelsAsync
- nameWithType: GrpcEnvironment.ShutdownChannelsAsync
- - uid: Grpc.Core.GrpcEnvironment.ShuttingDown
- name: ShuttingDown
- href: api/Grpc.Core.GrpcEnvironment.html#Grpc_Core_GrpcEnvironment_ShuttingDown
- commentId: E:Grpc.Core.GrpcEnvironment.ShuttingDown
- fullName: Grpc.Core.GrpcEnvironment.ShuttingDown
- nameWithType: GrpcEnvironment.ShuttingDown
- - uid: Grpc.Core.IAsyncStreamReader`1
- name: IAsyncStreamReader<T>
- href: api/Grpc.Core.IAsyncStreamReader-1.html
- commentId: T:Grpc.Core.IAsyncStreamReader`1
- name.vb: IAsyncStreamReader(Of T)
- fullName: Grpc.Core.IAsyncStreamReader<T>
- fullName.vb: Grpc.Core.IAsyncStreamReader(Of T)
- nameWithType: IAsyncStreamReader<T>
- nameWithType.vb: IAsyncStreamReader(Of T)
- - uid: Grpc.Core.IAsyncStreamWriter`1
- name: IAsyncStreamWriter<T>
- href: api/Grpc.Core.IAsyncStreamWriter-1.html
- commentId: T:Grpc.Core.IAsyncStreamWriter`1
- name.vb: IAsyncStreamWriter(Of T)
- fullName: Grpc.Core.IAsyncStreamWriter<T>
- fullName.vb: Grpc.Core.IAsyncStreamWriter(Of T)
- nameWithType: IAsyncStreamWriter<T>
- nameWithType.vb: IAsyncStreamWriter(Of T)
- - uid: Grpc.Core.IAsyncStreamWriter`1.WriteAsync(`0)
- name: WriteAsync(T)
- href: api/Grpc.Core.IAsyncStreamWriter-1.html#Grpc_Core_IAsyncStreamWriter_1_WriteAsync__0_
- commentId: M:Grpc.Core.IAsyncStreamWriter`1.WriteAsync(`0)
- fullName: Grpc.Core.IAsyncStreamWriter<T>.WriteAsync(T)
- fullName.vb: Grpc.Core.IAsyncStreamWriter(Of T).WriteAsync(T)
- nameWithType: IAsyncStreamWriter<T>.WriteAsync(T)
- nameWithType.vb: IAsyncStreamWriter(Of T).WriteAsync(T)
- - uid: Grpc.Core.IAsyncStreamWriter`1.WriteAsync*
- name: WriteAsync
- href: api/Grpc.Core.IAsyncStreamWriter-1.html#Grpc_Core_IAsyncStreamWriter_1_WriteAsync_
- commentId: Overload:Grpc.Core.IAsyncStreamWriter`1.WriteAsync
- fullName: Grpc.Core.IAsyncStreamWriter<T>.WriteAsync
- fullName.vb: Grpc.Core.IAsyncStreamWriter(Of T).WriteAsync
- nameWithType: IAsyncStreamWriter<T>.WriteAsync
- nameWithType.vb: IAsyncStreamWriter(Of T).WriteAsync
- - uid: Grpc.Core.IAsyncStreamWriter`1.WriteOptions
- name: WriteOptions
- href: api/Grpc.Core.IAsyncStreamWriter-1.html#Grpc_Core_IAsyncStreamWriter_1_WriteOptions
- commentId: P:Grpc.Core.IAsyncStreamWriter`1.WriteOptions
- fullName: Grpc.Core.IAsyncStreamWriter<T>.WriteOptions
- fullName.vb: Grpc.Core.IAsyncStreamWriter(Of T).WriteOptions
- nameWithType: IAsyncStreamWriter<T>.WriteOptions
- nameWithType.vb: IAsyncStreamWriter(Of T).WriteOptions
- - uid: Grpc.Core.IAsyncStreamWriter`1.WriteOptions*
- name: WriteOptions
- href: api/Grpc.Core.IAsyncStreamWriter-1.html#Grpc_Core_IAsyncStreamWriter_1_WriteOptions_
- commentId: Overload:Grpc.Core.IAsyncStreamWriter`1.WriteOptions
- fullName: Grpc.Core.IAsyncStreamWriter<T>.WriteOptions
- fullName.vb: Grpc.Core.IAsyncStreamWriter(Of T).WriteOptions
- nameWithType: IAsyncStreamWriter<T>.WriteOptions
- nameWithType.vb: IAsyncStreamWriter(Of T).WriteOptions
- - uid: Grpc.Core.IClientStreamWriter`1
- name: IClientStreamWriter<T>
- href: api/Grpc.Core.IClientStreamWriter-1.html
- commentId: T:Grpc.Core.IClientStreamWriter`1
- name.vb: IClientStreamWriter(Of T)
- fullName: Grpc.Core.IClientStreamWriter<T>
- fullName.vb: Grpc.Core.IClientStreamWriter(Of T)
- nameWithType: IClientStreamWriter<T>
- nameWithType.vb: IClientStreamWriter(Of T)
- - uid: Grpc.Core.IClientStreamWriter`1.CompleteAsync
- name: CompleteAsync()
- href: api/Grpc.Core.IClientStreamWriter-1.html#Grpc_Core_IClientStreamWriter_1_CompleteAsync
- commentId: M:Grpc.Core.IClientStreamWriter`1.CompleteAsync
- fullName: Grpc.Core.IClientStreamWriter<T>.CompleteAsync()
- fullName.vb: Grpc.Core.IClientStreamWriter(Of T).CompleteAsync()
- nameWithType: IClientStreamWriter<T>.CompleteAsync()
- nameWithType.vb: IClientStreamWriter(Of T).CompleteAsync()
- - uid: Grpc.Core.IClientStreamWriter`1.CompleteAsync*
- name: CompleteAsync
- href: api/Grpc.Core.IClientStreamWriter-1.html#Grpc_Core_IClientStreamWriter_1_CompleteAsync_
- commentId: Overload:Grpc.Core.IClientStreamWriter`1.CompleteAsync
- fullName: Grpc.Core.IClientStreamWriter<T>.CompleteAsync
- fullName.vb: Grpc.Core.IClientStreamWriter(Of T).CompleteAsync
- nameWithType: IClientStreamWriter<T>.CompleteAsync
- nameWithType.vb: IClientStreamWriter(Of T).CompleteAsync
- - uid: Grpc.Core.IHasWriteOptions
- name: IHasWriteOptions
- href: api/Grpc.Core.IHasWriteOptions.html
- commentId: T:Grpc.Core.IHasWriteOptions
- fullName: Grpc.Core.IHasWriteOptions
- nameWithType: IHasWriteOptions
- - uid: Grpc.Core.IHasWriteOptions.WriteOptions
- name: WriteOptions
- href: api/Grpc.Core.IHasWriteOptions.html#Grpc_Core_IHasWriteOptions_WriteOptions
- commentId: P:Grpc.Core.IHasWriteOptions.WriteOptions
- fullName: Grpc.Core.IHasWriteOptions.WriteOptions
- nameWithType: IHasWriteOptions.WriteOptions
- - uid: Grpc.Core.IHasWriteOptions.WriteOptions*
- name: WriteOptions
- href: api/Grpc.Core.IHasWriteOptions.html#Grpc_Core_IHasWriteOptions_WriteOptions_
- commentId: Overload:Grpc.Core.IHasWriteOptions.WriteOptions
- fullName: Grpc.Core.IHasWriteOptions.WriteOptions
- nameWithType: IHasWriteOptions.WriteOptions
- - uid: Grpc.Core.IMethod
- name: IMethod
- href: api/Grpc.Core.IMethod.html
- commentId: T:Grpc.Core.IMethod
- fullName: Grpc.Core.IMethod
- nameWithType: IMethod
- - uid: Grpc.Core.IMethod.FullName
- name: FullName
- href: api/Grpc.Core.IMethod.html#Grpc_Core_IMethod_FullName
- commentId: P:Grpc.Core.IMethod.FullName
- fullName: Grpc.Core.IMethod.FullName
- nameWithType: IMethod.FullName
- - uid: Grpc.Core.IMethod.FullName*
- name: FullName
- href: api/Grpc.Core.IMethod.html#Grpc_Core_IMethod_FullName_
- commentId: Overload:Grpc.Core.IMethod.FullName
- fullName: Grpc.Core.IMethod.FullName
- nameWithType: IMethod.FullName
- - uid: Grpc.Core.IMethod.Name
- name: Name
- href: api/Grpc.Core.IMethod.html#Grpc_Core_IMethod_Name
- commentId: P:Grpc.Core.IMethod.Name
- fullName: Grpc.Core.IMethod.Name
- nameWithType: IMethod.Name
- - uid: Grpc.Core.IMethod.Name*
- name: Name
- href: api/Grpc.Core.IMethod.html#Grpc_Core_IMethod_Name_
- commentId: Overload:Grpc.Core.IMethod.Name
- fullName: Grpc.Core.IMethod.Name
- nameWithType: IMethod.Name
- - uid: Grpc.Core.IMethod.ServiceName
- name: ServiceName
- href: api/Grpc.Core.IMethod.html#Grpc_Core_IMethod_ServiceName
- commentId: P:Grpc.Core.IMethod.ServiceName
- fullName: Grpc.Core.IMethod.ServiceName
- nameWithType: IMethod.ServiceName
- - uid: Grpc.Core.IMethod.ServiceName*
- name: ServiceName
- href: api/Grpc.Core.IMethod.html#Grpc_Core_IMethod_ServiceName_
- commentId: Overload:Grpc.Core.IMethod.ServiceName
- fullName: Grpc.Core.IMethod.ServiceName
- nameWithType: IMethod.ServiceName
- - uid: Grpc.Core.IMethod.Type
- name: Type
- href: api/Grpc.Core.IMethod.html#Grpc_Core_IMethod_Type
- commentId: P:Grpc.Core.IMethod.Type
- fullName: Grpc.Core.IMethod.Type
- nameWithType: IMethod.Type
- - uid: Grpc.Core.IMethod.Type*
- name: Type
- href: api/Grpc.Core.IMethod.html#Grpc_Core_IMethod_Type_
- commentId: Overload:Grpc.Core.IMethod.Type
- fullName: Grpc.Core.IMethod.Type
- nameWithType: IMethod.Type
- - uid: Grpc.Core.IServerStreamWriter`1
- name: IServerStreamWriter<T>
- href: api/Grpc.Core.IServerStreamWriter-1.html
- commentId: T:Grpc.Core.IServerStreamWriter`1
- name.vb: IServerStreamWriter(Of T)
- fullName: Grpc.Core.IServerStreamWriter<T>
- fullName.vb: Grpc.Core.IServerStreamWriter(Of T)
- nameWithType: IServerStreamWriter<T>
- nameWithType.vb: IServerStreamWriter(Of T)
- - uid: Grpc.Core.KeyCertificatePair
- name: KeyCertificatePair
- href: api/Grpc.Core.KeyCertificatePair.html
- commentId: T:Grpc.Core.KeyCertificatePair
- fullName: Grpc.Core.KeyCertificatePair
- nameWithType: KeyCertificatePair
- - uid: Grpc.Core.KeyCertificatePair.#ctor(System.String,System.String)
- name: KeyCertificatePair(String, String)
- href: api/Grpc.Core.KeyCertificatePair.html#Grpc_Core_KeyCertificatePair__ctor_System_String_System_String_
- commentId: M:Grpc.Core.KeyCertificatePair.#ctor(System.String,System.String)
- fullName: Grpc.Core.KeyCertificatePair.KeyCertificatePair(System.String, System.String)
- nameWithType: KeyCertificatePair.KeyCertificatePair(String, String)
- - uid: Grpc.Core.KeyCertificatePair.#ctor*
- name: KeyCertificatePair
- href: api/Grpc.Core.KeyCertificatePair.html#Grpc_Core_KeyCertificatePair__ctor_
- commentId: Overload:Grpc.Core.KeyCertificatePair.#ctor
- fullName: Grpc.Core.KeyCertificatePair.KeyCertificatePair
- nameWithType: KeyCertificatePair.KeyCertificatePair
- - uid: Grpc.Core.KeyCertificatePair.CertificateChain
- name: CertificateChain
- href: api/Grpc.Core.KeyCertificatePair.html#Grpc_Core_KeyCertificatePair_CertificateChain
- commentId: P:Grpc.Core.KeyCertificatePair.CertificateChain
- fullName: Grpc.Core.KeyCertificatePair.CertificateChain
- nameWithType: KeyCertificatePair.CertificateChain
- - uid: Grpc.Core.KeyCertificatePair.CertificateChain*
- name: CertificateChain
- href: api/Grpc.Core.KeyCertificatePair.html#Grpc_Core_KeyCertificatePair_CertificateChain_
- commentId: Overload:Grpc.Core.KeyCertificatePair.CertificateChain
- fullName: Grpc.Core.KeyCertificatePair.CertificateChain
- nameWithType: KeyCertificatePair.CertificateChain
- - uid: Grpc.Core.KeyCertificatePair.PrivateKey
- name: PrivateKey
- href: api/Grpc.Core.KeyCertificatePair.html#Grpc_Core_KeyCertificatePair_PrivateKey
- commentId: P:Grpc.Core.KeyCertificatePair.PrivateKey
- fullName: Grpc.Core.KeyCertificatePair.PrivateKey
- nameWithType: KeyCertificatePair.PrivateKey
- - uid: Grpc.Core.KeyCertificatePair.PrivateKey*
- name: PrivateKey
- href: api/Grpc.Core.KeyCertificatePair.html#Grpc_Core_KeyCertificatePair_PrivateKey_
- commentId: Overload:Grpc.Core.KeyCertificatePair.PrivateKey
- fullName: Grpc.Core.KeyCertificatePair.PrivateKey
- nameWithType: KeyCertificatePair.PrivateKey
- - uid: Grpc.Core.Logging
- name: Grpc.Core.Logging
- href: api/Grpc.Core.Logging.html
- commentId: N:Grpc.Core.Logging
- fullName: Grpc.Core.Logging
- nameWithType: Grpc.Core.Logging
- - uid: Grpc.Core.Logging.ConsoleLogger
- name: ConsoleLogger
- href: api/Grpc.Core.Logging.ConsoleLogger.html
- commentId: T:Grpc.Core.Logging.ConsoleLogger
- fullName: Grpc.Core.Logging.ConsoleLogger
- nameWithType: ConsoleLogger
- - uid: Grpc.Core.Logging.ConsoleLogger.#ctor
- name: ConsoleLogger()
- href: api/Grpc.Core.Logging.ConsoleLogger.html#Grpc_Core_Logging_ConsoleLogger__ctor
- commentId: M:Grpc.Core.Logging.ConsoleLogger.#ctor
- fullName: Grpc.Core.Logging.ConsoleLogger.ConsoleLogger()
- nameWithType: ConsoleLogger.ConsoleLogger()
- - uid: Grpc.Core.Logging.ConsoleLogger.#ctor*
- name: ConsoleLogger
- href: api/Grpc.Core.Logging.ConsoleLogger.html#Grpc_Core_Logging_ConsoleLogger__ctor_
- commentId: Overload:Grpc.Core.Logging.ConsoleLogger.#ctor
- fullName: Grpc.Core.Logging.ConsoleLogger.ConsoleLogger
- nameWithType: ConsoleLogger.ConsoleLogger
- - uid: Grpc.Core.Logging.ConsoleLogger.ForType*
- name: ForType
- href: api/Grpc.Core.Logging.ConsoleLogger.html#Grpc_Core_Logging_ConsoleLogger_ForType_
- commentId: Overload:Grpc.Core.Logging.ConsoleLogger.ForType
- fullName: Grpc.Core.Logging.ConsoleLogger.ForType
- nameWithType: ConsoleLogger.ForType
- - uid: Grpc.Core.Logging.ConsoleLogger.ForType``1
- name: ForType<T>()
- href: api/Grpc.Core.Logging.ConsoleLogger.html#Grpc_Core_Logging_ConsoleLogger_ForType__1
- commentId: M:Grpc.Core.Logging.ConsoleLogger.ForType``1
- name.vb: ForType(Of T)()
- fullName: Grpc.Core.Logging.ConsoleLogger.ForType<T>()
- fullName.vb: Grpc.Core.Logging.ConsoleLogger.ForType(Of T)()
- nameWithType: ConsoleLogger.ForType<T>()
- nameWithType.vb: ConsoleLogger.ForType(Of T)()
- - uid: Grpc.Core.Logging.ILogger
- name: ILogger
- href: api/Grpc.Core.Logging.ILogger.html
- commentId: T:Grpc.Core.Logging.ILogger
- fullName: Grpc.Core.Logging.ILogger
- nameWithType: ILogger
- - uid: Grpc.Core.Logging.ILogger.Debug(System.String)
- name: Debug(String)
- href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Debug_System_String_
- commentId: M:Grpc.Core.Logging.ILogger.Debug(System.String)
- fullName: Grpc.Core.Logging.ILogger.Debug(System.String)
- nameWithType: ILogger.Debug(String)
- - uid: Grpc.Core.Logging.ILogger.Debug(System.String,System.Object[])
- name: Debug(String, Object[])
- href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Debug_System_String_System_Object___
- commentId: M:Grpc.Core.Logging.ILogger.Debug(System.String,System.Object[])
- name.vb: Debug(String, Object())
- fullName: Grpc.Core.Logging.ILogger.Debug(System.String, System.Object[])
- fullName.vb: Grpc.Core.Logging.ILogger.Debug(System.String, System.Object())
- nameWithType: ILogger.Debug(String, Object[])
- nameWithType.vb: ILogger.Debug(String, Object())
- - uid: Grpc.Core.Logging.ILogger.Debug*
- name: Debug
- href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Debug_
- commentId: Overload:Grpc.Core.Logging.ILogger.Debug
- fullName: Grpc.Core.Logging.ILogger.Debug
- nameWithType: ILogger.Debug
- - uid: Grpc.Core.Logging.ILogger.Error(System.Exception,System.String)
- name: Error(Exception, String)
- href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Error_System_Exception_System_String_
- commentId: M:Grpc.Core.Logging.ILogger.Error(System.Exception,System.String)
- fullName: Grpc.Core.Logging.ILogger.Error(System.Exception, System.String)
- nameWithType: ILogger.Error(Exception, String)
- - uid: Grpc.Core.Logging.ILogger.Error(System.String)
- name: Error(String)
- href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Error_System_String_
- commentId: M:Grpc.Core.Logging.ILogger.Error(System.String)
- fullName: Grpc.Core.Logging.ILogger.Error(System.String)
- nameWithType: ILogger.Error(String)
- - uid: Grpc.Core.Logging.ILogger.Error(System.String,System.Object[])
- name: Error(String, Object[])
- href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Error_System_String_System_Object___
- commentId: M:Grpc.Core.Logging.ILogger.Error(System.String,System.Object[])
- name.vb: Error(String, Object())
- fullName: Grpc.Core.Logging.ILogger.Error(System.String, System.Object[])
- fullName.vb: Grpc.Core.Logging.ILogger.Error(System.String, System.Object())
- nameWithType: ILogger.Error(String, Object[])
- nameWithType.vb: ILogger.Error(String, Object())
- - uid: Grpc.Core.Logging.ILogger.Error*
- name: Error
- href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Error_
- commentId: Overload:Grpc.Core.Logging.ILogger.Error
- fullName: Grpc.Core.Logging.ILogger.Error
- nameWithType: ILogger.Error
- - uid: Grpc.Core.Logging.ILogger.ForType*
- name: ForType
- href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_ForType_
- commentId: Overload:Grpc.Core.Logging.ILogger.ForType
- fullName: Grpc.Core.Logging.ILogger.ForType
- nameWithType: ILogger.ForType
- - uid: Grpc.Core.Logging.ILogger.ForType``1
- name: ForType<T>()
- href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_ForType__1
- commentId: M:Grpc.Core.Logging.ILogger.ForType``1
- name.vb: ForType(Of T)()
- fullName: Grpc.Core.Logging.ILogger.ForType<T>()
- fullName.vb: Grpc.Core.Logging.ILogger.ForType(Of T)()
- nameWithType: ILogger.ForType<T>()
- nameWithType.vb: ILogger.ForType(Of T)()
- - uid: Grpc.Core.Logging.ILogger.Info(System.String)
- name: Info(String)
- href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Info_System_String_
- commentId: M:Grpc.Core.Logging.ILogger.Info(System.String)
- fullName: Grpc.Core.Logging.ILogger.Info(System.String)
- nameWithType: ILogger.Info(String)
- - uid: Grpc.Core.Logging.ILogger.Info(System.String,System.Object[])
- name: Info(String, Object[])
- href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Info_System_String_System_Object___
- commentId: M:Grpc.Core.Logging.ILogger.Info(System.String,System.Object[])
- name.vb: Info(String, Object())
- fullName: Grpc.Core.Logging.ILogger.Info(System.String, System.Object[])
- fullName.vb: Grpc.Core.Logging.ILogger.Info(System.String, System.Object())
- nameWithType: ILogger.Info(String, Object[])
- nameWithType.vb: ILogger.Info(String, Object())
- - uid: Grpc.Core.Logging.ILogger.Info*
- name: Info
- href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Info_
- commentId: Overload:Grpc.Core.Logging.ILogger.Info
- fullName: Grpc.Core.Logging.ILogger.Info
- nameWithType: ILogger.Info
- - uid: Grpc.Core.Logging.ILogger.Warning(System.Exception,System.String)
- name: Warning(Exception, String)
- href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Warning_System_Exception_System_String_
- commentId: M:Grpc.Core.Logging.ILogger.Warning(System.Exception,System.String)
- fullName: Grpc.Core.Logging.ILogger.Warning(System.Exception, System.String)
- nameWithType: ILogger.Warning(Exception, String)
- - uid: Grpc.Core.Logging.ILogger.Warning(System.String)
- name: Warning(String)
- href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Warning_System_String_
- commentId: M:Grpc.Core.Logging.ILogger.Warning(System.String)
- fullName: Grpc.Core.Logging.ILogger.Warning(System.String)
- nameWithType: ILogger.Warning(String)
- - uid: Grpc.Core.Logging.ILogger.Warning(System.String,System.Object[])
- name: Warning(String, Object[])
- href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Warning_System_String_System_Object___
- commentId: M:Grpc.Core.Logging.ILogger.Warning(System.String,System.Object[])
- name.vb: Warning(String, Object())
- fullName: Grpc.Core.Logging.ILogger.Warning(System.String, System.Object[])
- fullName.vb: Grpc.Core.Logging.ILogger.Warning(System.String, System.Object())
- nameWithType: ILogger.Warning(String, Object[])
- nameWithType.vb: ILogger.Warning(String, Object())
- - uid: Grpc.Core.Logging.ILogger.Warning*
- name: Warning
- href: api/Grpc.Core.Logging.ILogger.html#Grpc_Core_Logging_ILogger_Warning_
- commentId: Overload:Grpc.Core.Logging.ILogger.Warning
- fullName: Grpc.Core.Logging.ILogger.Warning
- nameWithType: ILogger.Warning
- - uid: Grpc.Core.Logging.LogLevel
- name: LogLevel
- href: api/Grpc.Core.Logging.LogLevel.html
- commentId: T:Grpc.Core.Logging.LogLevel
- fullName: Grpc.Core.Logging.LogLevel
- nameWithType: LogLevel
- - uid: Grpc.Core.Logging.LogLevel.Debug
- name: Debug
- href: api/Grpc.Core.Logging.LogLevel.html#Grpc_Core_Logging_LogLevel_Debug
- commentId: F:Grpc.Core.Logging.LogLevel.Debug
- fullName: Grpc.Core.Logging.LogLevel.Debug
- nameWithType: LogLevel.Debug
- - uid: Grpc.Core.Logging.LogLevel.Error
- name: Error
- href: api/Grpc.Core.Logging.LogLevel.html#Grpc_Core_Logging_LogLevel_Error
- commentId: F:Grpc.Core.Logging.LogLevel.Error
- fullName: Grpc.Core.Logging.LogLevel.Error
- nameWithType: LogLevel.Error
- - uid: Grpc.Core.Logging.LogLevel.Info
- name: Info
- href: api/Grpc.Core.Logging.LogLevel.html#Grpc_Core_Logging_LogLevel_Info
- commentId: F:Grpc.Core.Logging.LogLevel.Info
- fullName: Grpc.Core.Logging.LogLevel.Info
- nameWithType: LogLevel.Info
- - uid: Grpc.Core.Logging.LogLevel.Warning
- name: Warning
- href: api/Grpc.Core.Logging.LogLevel.html#Grpc_Core_Logging_LogLevel_Warning
- commentId: F:Grpc.Core.Logging.LogLevel.Warning
- fullName: Grpc.Core.Logging.LogLevel.Warning
- nameWithType: LogLevel.Warning
- - uid: Grpc.Core.Logging.LogLevelFilterLogger
- name: LogLevelFilterLogger
- href: api/Grpc.Core.Logging.LogLevelFilterLogger.html
- commentId: T:Grpc.Core.Logging.LogLevelFilterLogger
- fullName: Grpc.Core.Logging.LogLevelFilterLogger
- nameWithType: LogLevelFilterLogger
- - uid: Grpc.Core.Logging.LogLevelFilterLogger.#ctor(Grpc.Core.Logging.ILogger,Grpc.Core.Logging.LogLevel)
- name: LogLevelFilterLogger(ILogger, LogLevel)
- href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger__ctor_Grpc_Core_Logging_ILogger_Grpc_Core_Logging_LogLevel_
- commentId: M:Grpc.Core.Logging.LogLevelFilterLogger.#ctor(Grpc.Core.Logging.ILogger,Grpc.Core.Logging.LogLevel)
- fullName: Grpc.Core.Logging.LogLevelFilterLogger.LogLevelFilterLogger(Grpc.Core.Logging.ILogger, Grpc.Core.Logging.LogLevel)
- nameWithType: LogLevelFilterLogger.LogLevelFilterLogger(ILogger, LogLevel)
- - uid: Grpc.Core.Logging.LogLevelFilterLogger.#ctor*
- name: LogLevelFilterLogger
- href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger__ctor_
- commentId: Overload:Grpc.Core.Logging.LogLevelFilterLogger.#ctor
- fullName: Grpc.Core.Logging.LogLevelFilterLogger.LogLevelFilterLogger
- nameWithType: LogLevelFilterLogger.LogLevelFilterLogger
- - uid: Grpc.Core.Logging.LogLevelFilterLogger.Debug(System.String)
- name: Debug(String)
- href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Debug_System_String_
- commentId: M:Grpc.Core.Logging.LogLevelFilterLogger.Debug(System.String)
- fullName: Grpc.Core.Logging.LogLevelFilterLogger.Debug(System.String)
- nameWithType: LogLevelFilterLogger.Debug(String)
- - uid: Grpc.Core.Logging.LogLevelFilterLogger.Debug(System.String,System.Object[])
- name: Debug(String, Object[])
- href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Debug_System_String_System_Object___
- commentId: M:Grpc.Core.Logging.LogLevelFilterLogger.Debug(System.String,System.Object[])
- name.vb: Debug(String, Object())
- fullName: Grpc.Core.Logging.LogLevelFilterLogger.Debug(System.String, System.Object[])
- fullName.vb: Grpc.Core.Logging.LogLevelFilterLogger.Debug(System.String, System.Object())
- nameWithType: LogLevelFilterLogger.Debug(String, Object[])
- nameWithType.vb: LogLevelFilterLogger.Debug(String, Object())
- - uid: Grpc.Core.Logging.LogLevelFilterLogger.Debug*
- name: Debug
- href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Debug_
- commentId: Overload:Grpc.Core.Logging.LogLevelFilterLogger.Debug
- fullName: Grpc.Core.Logging.LogLevelFilterLogger.Debug
- nameWithType: LogLevelFilterLogger.Debug
- - uid: Grpc.Core.Logging.LogLevelFilterLogger.Error(System.Exception,System.String)
- name: Error(Exception, String)
- href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Error_System_Exception_System_String_
- commentId: M:Grpc.Core.Logging.LogLevelFilterLogger.Error(System.Exception,System.String)
- fullName: Grpc.Core.Logging.LogLevelFilterLogger.Error(System.Exception, System.String)
- nameWithType: LogLevelFilterLogger.Error(Exception, String)
- - uid: Grpc.Core.Logging.LogLevelFilterLogger.Error(System.String)
- name: Error(String)
- href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Error_System_String_
- commentId: M:Grpc.Core.Logging.LogLevelFilterLogger.Error(System.String)
- fullName: Grpc.Core.Logging.LogLevelFilterLogger.Error(System.String)
- nameWithType: LogLevelFilterLogger.Error(String)
- - uid: Grpc.Core.Logging.LogLevelFilterLogger.Error(System.String,System.Object[])
- name: Error(String, Object[])
- href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Error_System_String_System_Object___
- commentId: M:Grpc.Core.Logging.LogLevelFilterLogger.Error(System.String,System.Object[])
- name.vb: Error(String, Object())
- fullName: Grpc.Core.Logging.LogLevelFilterLogger.Error(System.String, System.Object[])
- fullName.vb: Grpc.Core.Logging.LogLevelFilterLogger.Error(System.String, System.Object())
- nameWithType: LogLevelFilterLogger.Error(String, Object[])
- nameWithType.vb: LogLevelFilterLogger.Error(String, Object())
- - uid: Grpc.Core.Logging.LogLevelFilterLogger.Error*
- name: Error
- href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Error_
- commentId: Overload:Grpc.Core.Logging.LogLevelFilterLogger.Error
- fullName: Grpc.Core.Logging.LogLevelFilterLogger.Error
- nameWithType: LogLevelFilterLogger.Error
- - uid: Grpc.Core.Logging.LogLevelFilterLogger.ForType*
- name: ForType
- href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_ForType_
- commentId: Overload:Grpc.Core.Logging.LogLevelFilterLogger.ForType
- fullName: Grpc.Core.Logging.LogLevelFilterLogger.ForType
- nameWithType: LogLevelFilterLogger.ForType
- - uid: Grpc.Core.Logging.LogLevelFilterLogger.ForType``1
- name: ForType<T>()
- href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_ForType__1
- commentId: M:Grpc.Core.Logging.LogLevelFilterLogger.ForType``1
- name.vb: ForType(Of T)()
- fullName: Grpc.Core.Logging.LogLevelFilterLogger.ForType<T>()
- fullName.vb: Grpc.Core.Logging.LogLevelFilterLogger.ForType(Of T)()
- nameWithType: LogLevelFilterLogger.ForType<T>()
- nameWithType.vb: LogLevelFilterLogger.ForType(Of T)()
- - uid: Grpc.Core.Logging.LogLevelFilterLogger.Info(System.String)
- name: Info(String)
- href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Info_System_String_
- commentId: M:Grpc.Core.Logging.LogLevelFilterLogger.Info(System.String)
- fullName: Grpc.Core.Logging.LogLevelFilterLogger.Info(System.String)
- nameWithType: LogLevelFilterLogger.Info(String)
- - uid: Grpc.Core.Logging.LogLevelFilterLogger.Info(System.String,System.Object[])
- name: Info(String, Object[])
- href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Info_System_String_System_Object___
- commentId: M:Grpc.Core.Logging.LogLevelFilterLogger.Info(System.String,System.Object[])
- name.vb: Info(String, Object())
- fullName: Grpc.Core.Logging.LogLevelFilterLogger.Info(System.String, System.Object[])
- fullName.vb: Grpc.Core.Logging.LogLevelFilterLogger.Info(System.String, System.Object())
- nameWithType: LogLevelFilterLogger.Info(String, Object[])
- nameWithType.vb: LogLevelFilterLogger.Info(String, Object())
- - uid: Grpc.Core.Logging.LogLevelFilterLogger.Info*
- name: Info
- href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Info_
- commentId: Overload:Grpc.Core.Logging.LogLevelFilterLogger.Info
- fullName: Grpc.Core.Logging.LogLevelFilterLogger.Info
- nameWithType: LogLevelFilterLogger.Info
- - uid: Grpc.Core.Logging.LogLevelFilterLogger.Warning(System.Exception,System.String)
- name: Warning(Exception, String)
- href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Warning_System_Exception_System_String_
- commentId: M:Grpc.Core.Logging.LogLevelFilterLogger.Warning(System.Exception,System.String)
- fullName: Grpc.Core.Logging.LogLevelFilterLogger.Warning(System.Exception, System.String)
- nameWithType: LogLevelFilterLogger.Warning(Exception, String)
- - uid: Grpc.Core.Logging.LogLevelFilterLogger.Warning(System.String)
- name: Warning(String)
- href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Warning_System_String_
- commentId: M:Grpc.Core.Logging.LogLevelFilterLogger.Warning(System.String)
- fullName: Grpc.Core.Logging.LogLevelFilterLogger.Warning(System.String)
- nameWithType: LogLevelFilterLogger.Warning(String)
- - uid: Grpc.Core.Logging.LogLevelFilterLogger.Warning(System.String,System.Object[])
- name: Warning(String, Object[])
- href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Warning_System_String_System_Object___
- commentId: M:Grpc.Core.Logging.LogLevelFilterLogger.Warning(System.String,System.Object[])
- name.vb: Warning(String, Object())
- fullName: Grpc.Core.Logging.LogLevelFilterLogger.Warning(System.String, System.Object[])
- fullName.vb: Grpc.Core.Logging.LogLevelFilterLogger.Warning(System.String, System.Object())
- nameWithType: LogLevelFilterLogger.Warning(String, Object[])
- nameWithType.vb: LogLevelFilterLogger.Warning(String, Object())
- - uid: Grpc.Core.Logging.LogLevelFilterLogger.Warning*
- name: Warning
- href: api/Grpc.Core.Logging.LogLevelFilterLogger.html#Grpc_Core_Logging_LogLevelFilterLogger_Warning_
- commentId: Overload:Grpc.Core.Logging.LogLevelFilterLogger.Warning
- fullName: Grpc.Core.Logging.LogLevelFilterLogger.Warning
- nameWithType: LogLevelFilterLogger.Warning
- - uid: Grpc.Core.Logging.NullLogger
- name: NullLogger
- href: api/Grpc.Core.Logging.NullLogger.html
- commentId: T:Grpc.Core.Logging.NullLogger
- fullName: Grpc.Core.Logging.NullLogger
- nameWithType: NullLogger
- - uid: Grpc.Core.Logging.NullLogger.Debug(System.String)
- name: Debug(String)
- href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Debug_System_String_
- commentId: M:Grpc.Core.Logging.NullLogger.Debug(System.String)
- fullName: Grpc.Core.Logging.NullLogger.Debug(System.String)
- nameWithType: NullLogger.Debug(String)
- - uid: Grpc.Core.Logging.NullLogger.Debug(System.String,System.Object[])
- name: Debug(String, Object[])
- href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Debug_System_String_System_Object___
- commentId: M:Grpc.Core.Logging.NullLogger.Debug(System.String,System.Object[])
- name.vb: Debug(String, Object())
- fullName: Grpc.Core.Logging.NullLogger.Debug(System.String, System.Object[])
- fullName.vb: Grpc.Core.Logging.NullLogger.Debug(System.String, System.Object())
- nameWithType: NullLogger.Debug(String, Object[])
- nameWithType.vb: NullLogger.Debug(String, Object())
- - uid: Grpc.Core.Logging.NullLogger.Debug*
- name: Debug
- href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Debug_
- commentId: Overload:Grpc.Core.Logging.NullLogger.Debug
- fullName: Grpc.Core.Logging.NullLogger.Debug
- nameWithType: NullLogger.Debug
- - uid: Grpc.Core.Logging.NullLogger.Error(System.Exception,System.String)
- name: Error(Exception, String)
- href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Error_System_Exception_System_String_
- commentId: M:Grpc.Core.Logging.NullLogger.Error(System.Exception,System.String)
- fullName: Grpc.Core.Logging.NullLogger.Error(System.Exception, System.String)
- nameWithType: NullLogger.Error(Exception, String)
- - uid: Grpc.Core.Logging.NullLogger.Error(System.String)
- name: Error(String)
- href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Error_System_String_
- commentId: M:Grpc.Core.Logging.NullLogger.Error(System.String)
- fullName: Grpc.Core.Logging.NullLogger.Error(System.String)
- nameWithType: NullLogger.Error(String)
- - uid: Grpc.Core.Logging.NullLogger.Error(System.String,System.Object[])
- name: Error(String, Object[])
- href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Error_System_String_System_Object___
- commentId: M:Grpc.Core.Logging.NullLogger.Error(System.String,System.Object[])
- name.vb: Error(String, Object())
- fullName: Grpc.Core.Logging.NullLogger.Error(System.String, System.Object[])
- fullName.vb: Grpc.Core.Logging.NullLogger.Error(System.String, System.Object())
- nameWithType: NullLogger.Error(String, Object[])
- nameWithType.vb: NullLogger.Error(String, Object())
- - uid: Grpc.Core.Logging.NullLogger.Error*
- name: Error
- href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Error_
- commentId: Overload:Grpc.Core.Logging.NullLogger.Error
- fullName: Grpc.Core.Logging.NullLogger.Error
- nameWithType: NullLogger.Error
- - uid: Grpc.Core.Logging.NullLogger.ForType*
- name: ForType
- href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_ForType_
- commentId: Overload:Grpc.Core.Logging.NullLogger.ForType
- fullName: Grpc.Core.Logging.NullLogger.ForType
- nameWithType: NullLogger.ForType
- - uid: Grpc.Core.Logging.NullLogger.ForType``1
- name: ForType<T>()
- href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_ForType__1
- commentId: M:Grpc.Core.Logging.NullLogger.ForType``1
- name.vb: ForType(Of T)()
- fullName: Grpc.Core.Logging.NullLogger.ForType<T>()
- fullName.vb: Grpc.Core.Logging.NullLogger.ForType(Of T)()
- nameWithType: NullLogger.ForType<T>()
- nameWithType.vb: NullLogger.ForType(Of T)()
- - uid: Grpc.Core.Logging.NullLogger.Info(System.String)
- name: Info(String)
- href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Info_System_String_
- commentId: M:Grpc.Core.Logging.NullLogger.Info(System.String)
- fullName: Grpc.Core.Logging.NullLogger.Info(System.String)
- nameWithType: NullLogger.Info(String)
- - uid: Grpc.Core.Logging.NullLogger.Info(System.String,System.Object[])
- name: Info(String, Object[])
- href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Info_System_String_System_Object___
- commentId: M:Grpc.Core.Logging.NullLogger.Info(System.String,System.Object[])
- name.vb: Info(String, Object())
- fullName: Grpc.Core.Logging.NullLogger.Info(System.String, System.Object[])
- fullName.vb: Grpc.Core.Logging.NullLogger.Info(System.String, System.Object())
- nameWithType: NullLogger.Info(String, Object[])
- nameWithType.vb: NullLogger.Info(String, Object())
- - uid: Grpc.Core.Logging.NullLogger.Info*
- name: Info
- href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Info_
- commentId: Overload:Grpc.Core.Logging.NullLogger.Info
- fullName: Grpc.Core.Logging.NullLogger.Info
- nameWithType: NullLogger.Info
- - uid: Grpc.Core.Logging.NullLogger.Warning(System.Exception,System.String)
- name: Warning(Exception, String)
- href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Warning_System_Exception_System_String_
- commentId: M:Grpc.Core.Logging.NullLogger.Warning(System.Exception,System.String)
- fullName: Grpc.Core.Logging.NullLogger.Warning(System.Exception, System.String)
- nameWithType: NullLogger.Warning(Exception, String)
- - uid: Grpc.Core.Logging.NullLogger.Warning(System.String)
- name: Warning(String)
- href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Warning_System_String_
- commentId: M:Grpc.Core.Logging.NullLogger.Warning(System.String)
- fullName: Grpc.Core.Logging.NullLogger.Warning(System.String)
- nameWithType: NullLogger.Warning(String)
- - uid: Grpc.Core.Logging.NullLogger.Warning(System.String,System.Object[])
- name: Warning(String, Object[])
- href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Warning_System_String_System_Object___
- commentId: M:Grpc.Core.Logging.NullLogger.Warning(System.String,System.Object[])
- name.vb: Warning(String, Object())
- fullName: Grpc.Core.Logging.NullLogger.Warning(System.String, System.Object[])
- fullName.vb: Grpc.Core.Logging.NullLogger.Warning(System.String, System.Object())
- nameWithType: NullLogger.Warning(String, Object[])
- nameWithType.vb: NullLogger.Warning(String, Object())
- - uid: Grpc.Core.Logging.NullLogger.Warning*
- name: Warning
- href: api/Grpc.Core.Logging.NullLogger.html#Grpc_Core_Logging_NullLogger_Warning_
- commentId: Overload:Grpc.Core.Logging.NullLogger.Warning
- fullName: Grpc.Core.Logging.NullLogger.Warning
- nameWithType: NullLogger.Warning
- - uid: Grpc.Core.Logging.TextWriterLogger
- name: TextWriterLogger
- href: api/Grpc.Core.Logging.TextWriterLogger.html
- commentId: T:Grpc.Core.Logging.TextWriterLogger
- fullName: Grpc.Core.Logging.TextWriterLogger
- nameWithType: TextWriterLogger
- - uid: Grpc.Core.Logging.TextWriterLogger.#ctor(System.Func{System.IO.TextWriter})
- name: TextWriterLogger(Func<TextWriter>)
- href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger__ctor_System_Func_System_IO_TextWriter__
- commentId: M:Grpc.Core.Logging.TextWriterLogger.#ctor(System.Func{System.IO.TextWriter})
- name.vb: TextWriterLogger(Func(Of TextWriter))
- fullName: Grpc.Core.Logging.TextWriterLogger.TextWriterLogger(System.Func<System.IO.TextWriter>)
- fullName.vb: Grpc.Core.Logging.TextWriterLogger.TextWriterLogger(System.Func(Of System.IO.TextWriter))
- nameWithType: TextWriterLogger.TextWriterLogger(Func<TextWriter>)
- nameWithType.vb: TextWriterLogger.TextWriterLogger(Func(Of TextWriter))
- - uid: Grpc.Core.Logging.TextWriterLogger.#ctor(System.Func{System.IO.TextWriter},System.Type)
- name: TextWriterLogger(Func<TextWriter>, Type)
- href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger__ctor_System_Func_System_IO_TextWriter__System_Type_
- commentId: M:Grpc.Core.Logging.TextWriterLogger.#ctor(System.Func{System.IO.TextWriter},System.Type)
- name.vb: TextWriterLogger(Func(Of TextWriter), Type)
- fullName: Grpc.Core.Logging.TextWriterLogger.TextWriterLogger(System.Func<System.IO.TextWriter>, System.Type)
- fullName.vb: Grpc.Core.Logging.TextWriterLogger.TextWriterLogger(System.Func(Of System.IO.TextWriter), System.Type)
- nameWithType: TextWriterLogger.TextWriterLogger(Func<TextWriter>, Type)
- nameWithType.vb: TextWriterLogger.TextWriterLogger(Func(Of TextWriter), Type)
- - uid: Grpc.Core.Logging.TextWriterLogger.#ctor(System.IO.TextWriter)
- name: TextWriterLogger(TextWriter)
- href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger__ctor_System_IO_TextWriter_
- commentId: M:Grpc.Core.Logging.TextWriterLogger.#ctor(System.IO.TextWriter)
- fullName: Grpc.Core.Logging.TextWriterLogger.TextWriterLogger(System.IO.TextWriter)
- nameWithType: TextWriterLogger.TextWriterLogger(TextWriter)
- - uid: Grpc.Core.Logging.TextWriterLogger.#ctor*
- name: TextWriterLogger
- href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger__ctor_
- commentId: Overload:Grpc.Core.Logging.TextWriterLogger.#ctor
- fullName: Grpc.Core.Logging.TextWriterLogger.TextWriterLogger
- nameWithType: TextWriterLogger.TextWriterLogger
- - uid: Grpc.Core.Logging.TextWriterLogger.AssociatedType
- name: AssociatedType
- href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_AssociatedType
- commentId: P:Grpc.Core.Logging.TextWriterLogger.AssociatedType
- fullName: Grpc.Core.Logging.TextWriterLogger.AssociatedType
- nameWithType: TextWriterLogger.AssociatedType
- - uid: Grpc.Core.Logging.TextWriterLogger.AssociatedType*
- name: AssociatedType
- href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_AssociatedType_
- commentId: Overload:Grpc.Core.Logging.TextWriterLogger.AssociatedType
- fullName: Grpc.Core.Logging.TextWriterLogger.AssociatedType
- nameWithType: TextWriterLogger.AssociatedType
- - uid: Grpc.Core.Logging.TextWriterLogger.Debug(System.String)
- name: Debug(String)
- href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Debug_System_String_
- commentId: M:Grpc.Core.Logging.TextWriterLogger.Debug(System.String)
- fullName: Grpc.Core.Logging.TextWriterLogger.Debug(System.String)
- nameWithType: TextWriterLogger.Debug(String)
- - uid: Grpc.Core.Logging.TextWriterLogger.Debug(System.String,System.Object[])
- name: Debug(String, Object[])
- href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Debug_System_String_System_Object___
- commentId: M:Grpc.Core.Logging.TextWriterLogger.Debug(System.String,System.Object[])
- name.vb: Debug(String, Object())
- fullName: Grpc.Core.Logging.TextWriterLogger.Debug(System.String, System.Object[])
- fullName.vb: Grpc.Core.Logging.TextWriterLogger.Debug(System.String, System.Object())
- nameWithType: TextWriterLogger.Debug(String, Object[])
- nameWithType.vb: TextWriterLogger.Debug(String, Object())
- - uid: Grpc.Core.Logging.TextWriterLogger.Debug*
- name: Debug
- href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Debug_
- commentId: Overload:Grpc.Core.Logging.TextWriterLogger.Debug
- fullName: Grpc.Core.Logging.TextWriterLogger.Debug
- nameWithType: TextWriterLogger.Debug
- - uid: Grpc.Core.Logging.TextWriterLogger.Error(System.Exception,System.String)
- name: Error(Exception, String)
- href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Error_System_Exception_System_String_
- commentId: M:Grpc.Core.Logging.TextWriterLogger.Error(System.Exception,System.String)
- fullName: Grpc.Core.Logging.TextWriterLogger.Error(System.Exception, System.String)
- nameWithType: TextWriterLogger.Error(Exception, String)
- - uid: Grpc.Core.Logging.TextWriterLogger.Error(System.String)
- name: Error(String)
- href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Error_System_String_
- commentId: M:Grpc.Core.Logging.TextWriterLogger.Error(System.String)
- fullName: Grpc.Core.Logging.TextWriterLogger.Error(System.String)
- nameWithType: TextWriterLogger.Error(String)
- - uid: Grpc.Core.Logging.TextWriterLogger.Error(System.String,System.Object[])
- name: Error(String, Object[])
- href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Error_System_String_System_Object___
- commentId: M:Grpc.Core.Logging.TextWriterLogger.Error(System.String,System.Object[])
- name.vb: Error(String, Object())
- fullName: Grpc.Core.Logging.TextWriterLogger.Error(System.String, System.Object[])
- fullName.vb: Grpc.Core.Logging.TextWriterLogger.Error(System.String, System.Object())
- nameWithType: TextWriterLogger.Error(String, Object[])
- nameWithType.vb: TextWriterLogger.Error(String, Object())
- - uid: Grpc.Core.Logging.TextWriterLogger.Error*
- name: Error
- href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Error_
- commentId: Overload:Grpc.Core.Logging.TextWriterLogger.Error
- fullName: Grpc.Core.Logging.TextWriterLogger.Error
- nameWithType: TextWriterLogger.Error
- - uid: Grpc.Core.Logging.TextWriterLogger.ForType*
- name: ForType
- href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_ForType_
- commentId: Overload:Grpc.Core.Logging.TextWriterLogger.ForType
- fullName: Grpc.Core.Logging.TextWriterLogger.ForType
- nameWithType: TextWriterLogger.ForType
- - uid: Grpc.Core.Logging.TextWriterLogger.ForType``1
- name: ForType<T>()
- href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_ForType__1
- commentId: M:Grpc.Core.Logging.TextWriterLogger.ForType``1
- name.vb: ForType(Of T)()
- fullName: Grpc.Core.Logging.TextWriterLogger.ForType<T>()
- fullName.vb: Grpc.Core.Logging.TextWriterLogger.ForType(Of T)()
- nameWithType: TextWriterLogger.ForType<T>()
- nameWithType.vb: TextWriterLogger.ForType(Of T)()
- - uid: Grpc.Core.Logging.TextWriterLogger.Info(System.String)
- name: Info(String)
- href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Info_System_String_
- commentId: M:Grpc.Core.Logging.TextWriterLogger.Info(System.String)
- fullName: Grpc.Core.Logging.TextWriterLogger.Info(System.String)
- nameWithType: TextWriterLogger.Info(String)
- - uid: Grpc.Core.Logging.TextWriterLogger.Info(System.String,System.Object[])
- name: Info(String, Object[])
- href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Info_System_String_System_Object___
- commentId: M:Grpc.Core.Logging.TextWriterLogger.Info(System.String,System.Object[])
- name.vb: Info(String, Object())
- fullName: Grpc.Core.Logging.TextWriterLogger.Info(System.String, System.Object[])
- fullName.vb: Grpc.Core.Logging.TextWriterLogger.Info(System.String, System.Object())
- nameWithType: TextWriterLogger.Info(String, Object[])
- nameWithType.vb: TextWriterLogger.Info(String, Object())
- - uid: Grpc.Core.Logging.TextWriterLogger.Info*
- name: Info
- href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Info_
- commentId: Overload:Grpc.Core.Logging.TextWriterLogger.Info
- fullName: Grpc.Core.Logging.TextWriterLogger.Info
- nameWithType: TextWriterLogger.Info
- - uid: Grpc.Core.Logging.TextWriterLogger.Warning(System.Exception,System.String)
- name: Warning(Exception, String)
- href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Warning_System_Exception_System_String_
- commentId: M:Grpc.Core.Logging.TextWriterLogger.Warning(System.Exception,System.String)
- fullName: Grpc.Core.Logging.TextWriterLogger.Warning(System.Exception, System.String)
- nameWithType: TextWriterLogger.Warning(Exception, String)
- - uid: Grpc.Core.Logging.TextWriterLogger.Warning(System.String)
- name: Warning(String)
- href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Warning_System_String_
- commentId: M:Grpc.Core.Logging.TextWriterLogger.Warning(System.String)
- fullName: Grpc.Core.Logging.TextWriterLogger.Warning(System.String)
- nameWithType: TextWriterLogger.Warning(String)
- - uid: Grpc.Core.Logging.TextWriterLogger.Warning(System.String,System.Object[])
- name: Warning(String, Object[])
- href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Warning_System_String_System_Object___
- commentId: M:Grpc.Core.Logging.TextWriterLogger.Warning(System.String,System.Object[])
- name.vb: Warning(String, Object())
- fullName: Grpc.Core.Logging.TextWriterLogger.Warning(System.String, System.Object[])
- fullName.vb: Grpc.Core.Logging.TextWriterLogger.Warning(System.String, System.Object())
- nameWithType: TextWriterLogger.Warning(String, Object[])
- nameWithType.vb: TextWriterLogger.Warning(String, Object())
- - uid: Grpc.Core.Logging.TextWriterLogger.Warning*
- name: Warning
- href: api/Grpc.Core.Logging.TextWriterLogger.html#Grpc_Core_Logging_TextWriterLogger_Warning_
- commentId: Overload:Grpc.Core.Logging.TextWriterLogger.Warning
- fullName: Grpc.Core.Logging.TextWriterLogger.Warning
- nameWithType: TextWriterLogger.Warning
- - uid: Grpc.Core.Marshaller`1
- name: Marshaller<T>
- href: api/Grpc.Core.Marshaller-1.html
- commentId: T:Grpc.Core.Marshaller`1
- name.vb: Marshaller(Of T)
- fullName: Grpc.Core.Marshaller<T>
- fullName.vb: Grpc.Core.Marshaller(Of T)
- nameWithType: Marshaller<T>
- nameWithType.vb: Marshaller(Of T)
- - uid: Grpc.Core.Marshaller`1.#ctor(System.Func{`0,System.Byte[]},System.Func{System.Byte[],`0})
- name: Marshaller(Func<T, Byte[]>, Func<Byte[], T>)
- href: api/Grpc.Core.Marshaller-1.html#Grpc_Core_Marshaller_1__ctor_System_Func__0_System_Byte____System_Func_System_Byte____0__
- commentId: M:Grpc.Core.Marshaller`1.#ctor(System.Func{`0,System.Byte[]},System.Func{System.Byte[],`0})
- name.vb: Marshaller(Func(Of T, Byte()), Func(Of Byte(), T))
- fullName: Grpc.Core.Marshaller<T>.Marshaller(System.Func<T, System.Byte[]>, System.Func<System.Byte[], T>)
- fullName.vb: Grpc.Core.Marshaller(Of T).Marshaller(System.Func(Of T, System.Byte()), System.Func(Of System.Byte(), T))
- nameWithType: Marshaller<T>.Marshaller(Func<T, Byte[]>, Func<Byte[], T>)
- nameWithType.vb: Marshaller(Of T).Marshaller(Func(Of T, Byte()), Func(Of Byte(), T))
- - uid: Grpc.Core.Marshaller`1.#ctor*
- name: Marshaller
- href: api/Grpc.Core.Marshaller-1.html#Grpc_Core_Marshaller_1__ctor_
- commentId: Overload:Grpc.Core.Marshaller`1.#ctor
- fullName: Grpc.Core.Marshaller<T>.Marshaller
- fullName.vb: Grpc.Core.Marshaller(Of T).Marshaller
- nameWithType: Marshaller<T>.Marshaller
- nameWithType.vb: Marshaller(Of T).Marshaller
- - uid: Grpc.Core.Marshaller`1.Deserializer
- name: Deserializer
- href: api/Grpc.Core.Marshaller-1.html#Grpc_Core_Marshaller_1_Deserializer
- commentId: P:Grpc.Core.Marshaller`1.Deserializer
- fullName: Grpc.Core.Marshaller<T>.Deserializer
- fullName.vb: Grpc.Core.Marshaller(Of T).Deserializer
- nameWithType: Marshaller<T>.Deserializer
- nameWithType.vb: Marshaller(Of T).Deserializer
- - uid: Grpc.Core.Marshaller`1.Deserializer*
- name: Deserializer
- href: api/Grpc.Core.Marshaller-1.html#Grpc_Core_Marshaller_1_Deserializer_
- commentId: Overload:Grpc.Core.Marshaller`1.Deserializer
- fullName: Grpc.Core.Marshaller<T>.Deserializer
- fullName.vb: Grpc.Core.Marshaller(Of T).Deserializer
- nameWithType: Marshaller<T>.Deserializer
- nameWithType.vb: Marshaller(Of T).Deserializer
- - uid: Grpc.Core.Marshaller`1.Serializer
- name: Serializer
- href: api/Grpc.Core.Marshaller-1.html#Grpc_Core_Marshaller_1_Serializer
- commentId: P:Grpc.Core.Marshaller`1.Serializer
- fullName: Grpc.Core.Marshaller<T>.Serializer
- fullName.vb: Grpc.Core.Marshaller(Of T).Serializer
- nameWithType: Marshaller<T>.Serializer
- nameWithType.vb: Marshaller(Of T).Serializer
- - uid: Grpc.Core.Marshaller`1.Serializer*
- name: Serializer
- href: api/Grpc.Core.Marshaller-1.html#Grpc_Core_Marshaller_1_Serializer_
- commentId: Overload:Grpc.Core.Marshaller`1.Serializer
- fullName: Grpc.Core.Marshaller<T>.Serializer
- fullName.vb: Grpc.Core.Marshaller(Of T).Serializer
- nameWithType: Marshaller<T>.Serializer
- nameWithType.vb: Marshaller(Of T).Serializer
- - uid: Grpc.Core.Marshallers
- name: Marshallers
- href: api/Grpc.Core.Marshallers.html
- commentId: T:Grpc.Core.Marshallers
- fullName: Grpc.Core.Marshallers
- nameWithType: Marshallers
- - uid: Grpc.Core.Marshallers.Create*
- name: Create
- href: api/Grpc.Core.Marshallers.html#Grpc_Core_Marshallers_Create_
- commentId: Overload:Grpc.Core.Marshallers.Create
- fullName: Grpc.Core.Marshallers.Create
- nameWithType: Marshallers.Create
- - uid: Grpc.Core.Marshallers.Create``1(System.Func{``0,System.Byte[]},System.Func{System.Byte[],``0})
- name: Create<T>(Func<T, Byte[]>, Func<Byte[], T>)
- href: api/Grpc.Core.Marshallers.html#Grpc_Core_Marshallers_Create__1_System_Func___0_System_Byte____System_Func_System_Byte_____0__
- commentId: M:Grpc.Core.Marshallers.Create``1(System.Func{``0,System.Byte[]},System.Func{System.Byte[],``0})
- name.vb: Create(Of T)(Func(Of T, Byte()), Func(Of Byte(), T))
- fullName: Grpc.Core.Marshallers.Create<T>(System.Func<T, System.Byte[]>, System.Func<System.Byte[], T>)
- fullName.vb: Grpc.Core.Marshallers.Create(Of T)(System.Func(Of T, System.Byte()), System.Func(Of System.Byte(), T))
- nameWithType: Marshallers.Create<T>(Func<T, Byte[]>, Func<Byte[], T>)
- nameWithType.vb: Marshallers.Create(Of T)(Func(Of T, Byte()), Func(Of Byte(), T))
- - uid: Grpc.Core.Marshallers.StringMarshaller
- name: StringMarshaller
- href: api/Grpc.Core.Marshallers.html#Grpc_Core_Marshallers_StringMarshaller
- commentId: P:Grpc.Core.Marshallers.StringMarshaller
- fullName: Grpc.Core.Marshallers.StringMarshaller
- nameWithType: Marshallers.StringMarshaller
- - uid: Grpc.Core.Marshallers.StringMarshaller*
- name: StringMarshaller
- href: api/Grpc.Core.Marshallers.html#Grpc_Core_Marshallers_StringMarshaller_
- commentId: Overload:Grpc.Core.Marshallers.StringMarshaller
- fullName: Grpc.Core.Marshallers.StringMarshaller
- nameWithType: Marshallers.StringMarshaller
- - uid: Grpc.Core.Metadata
- name: Metadata
- href: api/Grpc.Core.Metadata.html
- commentId: T:Grpc.Core.Metadata
- fullName: Grpc.Core.Metadata
- nameWithType: Metadata
- - uid: Grpc.Core.Metadata.#ctor
- name: Metadata()
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata__ctor
- commentId: M:Grpc.Core.Metadata.#ctor
- fullName: Grpc.Core.Metadata.Metadata()
- nameWithType: Metadata.Metadata()
- - uid: Grpc.Core.Metadata.#ctor*
- name: Metadata
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata__ctor_
- commentId: Overload:Grpc.Core.Metadata.#ctor
- fullName: Grpc.Core.Metadata.Metadata
- nameWithType: Metadata.Metadata
- - uid: Grpc.Core.Metadata.Add(Grpc.Core.Metadata.Entry)
- name: Add(Metadata.Entry)
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Add_Grpc_Core_Metadata_Entry_
- commentId: M:Grpc.Core.Metadata.Add(Grpc.Core.Metadata.Entry)
- fullName: Grpc.Core.Metadata.Add(Grpc.Core.Metadata.Entry)
- nameWithType: Metadata.Add(Metadata.Entry)
- - uid: Grpc.Core.Metadata.Add(System.String,System.Byte[])
- name: Add(String, Byte[])
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Add_System_String_System_Byte___
- commentId: M:Grpc.Core.Metadata.Add(System.String,System.Byte[])
- name.vb: Add(String, Byte())
- fullName: Grpc.Core.Metadata.Add(System.String, System.Byte[])
- fullName.vb: Grpc.Core.Metadata.Add(System.String, System.Byte())
- nameWithType: Metadata.Add(String, Byte[])
- nameWithType.vb: Metadata.Add(String, Byte())
- - uid: Grpc.Core.Metadata.Add(System.String,System.String)
- name: Add(String, String)
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Add_System_String_System_String_
- commentId: M:Grpc.Core.Metadata.Add(System.String,System.String)
- fullName: Grpc.Core.Metadata.Add(System.String, System.String)
- nameWithType: Metadata.Add(String, String)
- - uid: Grpc.Core.Metadata.Add*
- name: Add
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Add_
- commentId: Overload:Grpc.Core.Metadata.Add
- fullName: Grpc.Core.Metadata.Add
- nameWithType: Metadata.Add
- - uid: Grpc.Core.Metadata.BinaryHeaderSuffix
- name: BinaryHeaderSuffix
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_BinaryHeaderSuffix
- commentId: F:Grpc.Core.Metadata.BinaryHeaderSuffix
- fullName: Grpc.Core.Metadata.BinaryHeaderSuffix
- nameWithType: Metadata.BinaryHeaderSuffix
- - uid: Grpc.Core.Metadata.Clear
- name: Clear()
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Clear
- commentId: M:Grpc.Core.Metadata.Clear
- fullName: Grpc.Core.Metadata.Clear()
- nameWithType: Metadata.Clear()
- - uid: Grpc.Core.Metadata.Clear*
- name: Clear
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Clear_
- commentId: Overload:Grpc.Core.Metadata.Clear
- fullName: Grpc.Core.Metadata.Clear
- nameWithType: Metadata.Clear
- - uid: Grpc.Core.Metadata.Contains(Grpc.Core.Metadata.Entry)
- name: Contains(Metadata.Entry)
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Contains_Grpc_Core_Metadata_Entry_
- commentId: M:Grpc.Core.Metadata.Contains(Grpc.Core.Metadata.Entry)
- fullName: Grpc.Core.Metadata.Contains(Grpc.Core.Metadata.Entry)
- nameWithType: Metadata.Contains(Metadata.Entry)
- - uid: Grpc.Core.Metadata.Contains*
- name: Contains
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Contains_
- commentId: Overload:Grpc.Core.Metadata.Contains
- fullName: Grpc.Core.Metadata.Contains
- nameWithType: Metadata.Contains
- - uid: Grpc.Core.Metadata.CopyTo(Grpc.Core.Metadata.Entry[],System.Int32)
- name: CopyTo(Metadata.Entry[], Int32)
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_CopyTo_Grpc_Core_Metadata_Entry___System_Int32_
- commentId: M:Grpc.Core.Metadata.CopyTo(Grpc.Core.Metadata.Entry[],System.Int32)
- name.vb: CopyTo(Metadata.Entry(), Int32)
- fullName: Grpc.Core.Metadata.CopyTo(Grpc.Core.Metadata.Entry[], System.Int32)
- fullName.vb: Grpc.Core.Metadata.CopyTo(Grpc.Core.Metadata.Entry(), System.Int32)
- nameWithType: Metadata.CopyTo(Metadata.Entry[], Int32)
- nameWithType.vb: Metadata.CopyTo(Metadata.Entry(), Int32)
- - uid: Grpc.Core.Metadata.CopyTo*
- name: CopyTo
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_CopyTo_
- commentId: Overload:Grpc.Core.Metadata.CopyTo
- fullName: Grpc.Core.Metadata.CopyTo
- nameWithType: Metadata.CopyTo
- - uid: Grpc.Core.Metadata.Count
- name: Count
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Count
- commentId: P:Grpc.Core.Metadata.Count
- fullName: Grpc.Core.Metadata.Count
- nameWithType: Metadata.Count
- - uid: Grpc.Core.Metadata.Count*
- name: Count
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Count_
- commentId: Overload:Grpc.Core.Metadata.Count
- fullName: Grpc.Core.Metadata.Count
- nameWithType: Metadata.Count
- - uid: Grpc.Core.Metadata.Empty
- name: Empty
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Empty
- commentId: F:Grpc.Core.Metadata.Empty
- fullName: Grpc.Core.Metadata.Empty
- nameWithType: Metadata.Empty
- - uid: Grpc.Core.Metadata.Entry
- name: Metadata.Entry
- href: api/Grpc.Core.Metadata.Entry.html
- commentId: T:Grpc.Core.Metadata.Entry
- fullName: Grpc.Core.Metadata.Entry
- nameWithType: Metadata.Entry
- - uid: Grpc.Core.Metadata.Entry.#ctor(System.String,System.Byte[])
- name: Entry(String, Byte[])
- href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry__ctor_System_String_System_Byte___
- commentId: M:Grpc.Core.Metadata.Entry.#ctor(System.String,System.Byte[])
- name.vb: Entry(String, Byte())
- fullName: Grpc.Core.Metadata.Entry.Entry(System.String, System.Byte[])
- fullName.vb: Grpc.Core.Metadata.Entry.Entry(System.String, System.Byte())
- nameWithType: Metadata.Entry.Entry(String, Byte[])
- nameWithType.vb: Metadata.Entry.Entry(String, Byte())
- - uid: Grpc.Core.Metadata.Entry.#ctor(System.String,System.String)
- name: Entry(String, String)
- href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry__ctor_System_String_System_String_
- commentId: M:Grpc.Core.Metadata.Entry.#ctor(System.String,System.String)
- fullName: Grpc.Core.Metadata.Entry.Entry(System.String, System.String)
- nameWithType: Metadata.Entry.Entry(String, String)
- - uid: Grpc.Core.Metadata.Entry.#ctor*
- name: Entry
- href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry__ctor_
- commentId: Overload:Grpc.Core.Metadata.Entry.#ctor
- fullName: Grpc.Core.Metadata.Entry.Entry
- nameWithType: Metadata.Entry.Entry
- - uid: Grpc.Core.Metadata.Entry.IsBinary
- name: IsBinary
- href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry_IsBinary
- commentId: P:Grpc.Core.Metadata.Entry.IsBinary
- fullName: Grpc.Core.Metadata.Entry.IsBinary
- nameWithType: Metadata.Entry.IsBinary
- - uid: Grpc.Core.Metadata.Entry.IsBinary*
- name: IsBinary
- href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry_IsBinary_
- commentId: Overload:Grpc.Core.Metadata.Entry.IsBinary
- fullName: Grpc.Core.Metadata.Entry.IsBinary
- nameWithType: Metadata.Entry.IsBinary
- - uid: Grpc.Core.Metadata.Entry.Key
- name: Key
- href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry_Key
- commentId: P:Grpc.Core.Metadata.Entry.Key
- fullName: Grpc.Core.Metadata.Entry.Key
- nameWithType: Metadata.Entry.Key
- - uid: Grpc.Core.Metadata.Entry.Key*
- name: Key
- href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry_Key_
- commentId: Overload:Grpc.Core.Metadata.Entry.Key
- fullName: Grpc.Core.Metadata.Entry.Key
- nameWithType: Metadata.Entry.Key
- - uid: Grpc.Core.Metadata.Entry.ToString
- name: ToString()
- href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry_ToString
- commentId: M:Grpc.Core.Metadata.Entry.ToString
- fullName: Grpc.Core.Metadata.Entry.ToString()
- nameWithType: Metadata.Entry.ToString()
- - uid: Grpc.Core.Metadata.Entry.ToString*
- name: ToString
- href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry_ToString_
- commentId: Overload:Grpc.Core.Metadata.Entry.ToString
- fullName: Grpc.Core.Metadata.Entry.ToString
- nameWithType: Metadata.Entry.ToString
- - uid: Grpc.Core.Metadata.Entry.Value
- name: Value
- href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry_Value
- commentId: P:Grpc.Core.Metadata.Entry.Value
- fullName: Grpc.Core.Metadata.Entry.Value
- nameWithType: Metadata.Entry.Value
- - uid: Grpc.Core.Metadata.Entry.Value*
- name: Value
- href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry_Value_
- commentId: Overload:Grpc.Core.Metadata.Entry.Value
- fullName: Grpc.Core.Metadata.Entry.Value
- nameWithType: Metadata.Entry.Value
- - uid: Grpc.Core.Metadata.Entry.ValueBytes
- name: ValueBytes
- href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry_ValueBytes
- commentId: P:Grpc.Core.Metadata.Entry.ValueBytes
- fullName: Grpc.Core.Metadata.Entry.ValueBytes
- nameWithType: Metadata.Entry.ValueBytes
- - uid: Grpc.Core.Metadata.Entry.ValueBytes*
- name: ValueBytes
- href: api/Grpc.Core.Metadata.Entry.html#Grpc_Core_Metadata_Entry_ValueBytes_
- commentId: Overload:Grpc.Core.Metadata.Entry.ValueBytes
- fullName: Grpc.Core.Metadata.Entry.ValueBytes
- nameWithType: Metadata.Entry.ValueBytes
- - uid: Grpc.Core.Metadata.GetEnumerator
- name: GetEnumerator()
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_GetEnumerator
- commentId: M:Grpc.Core.Metadata.GetEnumerator
- fullName: Grpc.Core.Metadata.GetEnumerator()
- nameWithType: Metadata.GetEnumerator()
- - uid: Grpc.Core.Metadata.GetEnumerator*
- name: GetEnumerator
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_GetEnumerator_
- commentId: Overload:Grpc.Core.Metadata.GetEnumerator
- fullName: Grpc.Core.Metadata.GetEnumerator
- nameWithType: Metadata.GetEnumerator
- - uid: Grpc.Core.Metadata.IndexOf(Grpc.Core.Metadata.Entry)
- name: IndexOf(Metadata.Entry)
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_IndexOf_Grpc_Core_Metadata_Entry_
- commentId: M:Grpc.Core.Metadata.IndexOf(Grpc.Core.Metadata.Entry)
- fullName: Grpc.Core.Metadata.IndexOf(Grpc.Core.Metadata.Entry)
- nameWithType: Metadata.IndexOf(Metadata.Entry)
- - uid: Grpc.Core.Metadata.IndexOf*
- name: IndexOf
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_IndexOf_
- commentId: Overload:Grpc.Core.Metadata.IndexOf
- fullName: Grpc.Core.Metadata.IndexOf
- nameWithType: Metadata.IndexOf
- - uid: Grpc.Core.Metadata.Insert(System.Int32,Grpc.Core.Metadata.Entry)
- name: Insert(Int32, Metadata.Entry)
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Insert_System_Int32_Grpc_Core_Metadata_Entry_
- commentId: M:Grpc.Core.Metadata.Insert(System.Int32,Grpc.Core.Metadata.Entry)
- fullName: Grpc.Core.Metadata.Insert(System.Int32, Grpc.Core.Metadata.Entry)
- nameWithType: Metadata.Insert(Int32, Metadata.Entry)
- - uid: Grpc.Core.Metadata.Insert*
- name: Insert
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Insert_
- commentId: Overload:Grpc.Core.Metadata.Insert
- fullName: Grpc.Core.Metadata.Insert
- nameWithType: Metadata.Insert
- - uid: Grpc.Core.Metadata.IsReadOnly
- name: IsReadOnly
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_IsReadOnly
- commentId: P:Grpc.Core.Metadata.IsReadOnly
- fullName: Grpc.Core.Metadata.IsReadOnly
- nameWithType: Metadata.IsReadOnly
- - uid: Grpc.Core.Metadata.IsReadOnly*
- name: IsReadOnly
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_IsReadOnly_
- commentId: Overload:Grpc.Core.Metadata.IsReadOnly
- fullName: Grpc.Core.Metadata.IsReadOnly
- nameWithType: Metadata.IsReadOnly
- - uid: Grpc.Core.Metadata.Item(System.Int32)
- name: Item[Int32]
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Item_System_Int32_
- commentId: P:Grpc.Core.Metadata.Item(System.Int32)
- name.vb: Item(Int32)
- fullName: Grpc.Core.Metadata.Item[System.Int32]
- fullName.vb: Grpc.Core.Metadata.Item(System.Int32)
- nameWithType: Metadata.Item[Int32]
- nameWithType.vb: Metadata.Item(Int32)
- - uid: Grpc.Core.Metadata.Item*
- name: Item
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Item_
- commentId: Overload:Grpc.Core.Metadata.Item
- fullName: Grpc.Core.Metadata.Item
- nameWithType: Metadata.Item
- - uid: Grpc.Core.Metadata.Remove(Grpc.Core.Metadata.Entry)
- name: Remove(Metadata.Entry)
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Remove_Grpc_Core_Metadata_Entry_
- commentId: M:Grpc.Core.Metadata.Remove(Grpc.Core.Metadata.Entry)
- fullName: Grpc.Core.Metadata.Remove(Grpc.Core.Metadata.Entry)
- nameWithType: Metadata.Remove(Metadata.Entry)
- - uid: Grpc.Core.Metadata.Remove*
- name: Remove
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_Remove_
- commentId: Overload:Grpc.Core.Metadata.Remove
- fullName: Grpc.Core.Metadata.Remove
- nameWithType: Metadata.Remove
- - uid: Grpc.Core.Metadata.RemoveAt(System.Int32)
- name: RemoveAt(Int32)
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_RemoveAt_System_Int32_
- commentId: M:Grpc.Core.Metadata.RemoveAt(System.Int32)
- fullName: Grpc.Core.Metadata.RemoveAt(System.Int32)
- nameWithType: Metadata.RemoveAt(Int32)
- - uid: Grpc.Core.Metadata.RemoveAt*
- name: RemoveAt
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_RemoveAt_
- commentId: Overload:Grpc.Core.Metadata.RemoveAt
- fullName: Grpc.Core.Metadata.RemoveAt
- nameWithType: Metadata.RemoveAt
- - uid: Grpc.Core.Metadata.System#Collections#IEnumerable#GetEnumerator
- name: IEnumerable.GetEnumerator()
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_System_Collections_IEnumerable_GetEnumerator
- commentId: M:Grpc.Core.Metadata.System#Collections#IEnumerable#GetEnumerator
- name.vb: System.Collections.IEnumerable.GetEnumerator()
- fullName: Grpc.Core.Metadata.System.Collections.IEnumerable.GetEnumerator()
- nameWithType: Metadata.IEnumerable.GetEnumerator()
- nameWithType.vb: Metadata.System.Collections.IEnumerable.GetEnumerator()
- - uid: Grpc.Core.Metadata.System#Collections#IEnumerable#GetEnumerator*
- name: IEnumerable.GetEnumerator
- href: api/Grpc.Core.Metadata.html#Grpc_Core_Metadata_System_Collections_IEnumerable_GetEnumerator_
- commentId: Overload:Grpc.Core.Metadata.System#Collections#IEnumerable#GetEnumerator
- name.vb: System.Collections.IEnumerable.GetEnumerator
- fullName: Grpc.Core.Metadata.System.Collections.IEnumerable.GetEnumerator
- nameWithType: Metadata.IEnumerable.GetEnumerator
- nameWithType.vb: Metadata.System.Collections.IEnumerable.GetEnumerator
- - uid: Grpc.Core.Method`2
- name: Method<TRequest, TResponse>
- href: api/Grpc.Core.Method-2.html
- commentId: T:Grpc.Core.Method`2
- name.vb: Method(Of TRequest, TResponse)
- fullName: Grpc.Core.Method<TRequest, TResponse>
- fullName.vb: Grpc.Core.Method(Of TRequest, TResponse)
- nameWithType: Method<TRequest, TResponse>
- nameWithType.vb: Method(Of TRequest, TResponse)
- - uid: Grpc.Core.Method`2.#ctor(Grpc.Core.MethodType,System.String,System.String,Grpc.Core.Marshaller{`0},Grpc.Core.Marshaller{`1})
- name: Method(MethodType, String, String, Marshaller<TRequest>, Marshaller<TResponse>)
- 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__
- commentId: M:Grpc.Core.Method`2.#ctor(Grpc.Core.MethodType,System.String,System.String,Grpc.Core.Marshaller{`0},Grpc.Core.Marshaller{`1})
- name.vb: Method(MethodType, String, String, Marshaller(Of TRequest), Marshaller(Of TResponse))
- fullName: Grpc.Core.Method<TRequest, TResponse>.Method(Grpc.Core.MethodType, System.String, System.String, Grpc.Core.Marshaller<TRequest>, Grpc.Core.Marshaller<TResponse>)
- 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))
- nameWithType: Method<TRequest, TResponse>.Method(MethodType, String, String, Marshaller<TRequest>, Marshaller<TResponse>)
- nameWithType.vb: Method(Of TRequest, TResponse).Method(MethodType, String, String, Marshaller(Of TRequest), Marshaller(Of TResponse))
- - uid: Grpc.Core.Method`2.#ctor*
- name: Method
- href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2__ctor_
- commentId: Overload:Grpc.Core.Method`2.#ctor
- fullName: Grpc.Core.Method<TRequest, TResponse>.Method
- fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).Method
- nameWithType: Method<TRequest, TResponse>.Method
- nameWithType.vb: Method(Of TRequest, TResponse).Method
- - uid: Grpc.Core.Method`2.FullName
- name: FullName
- href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2_FullName
- commentId: P:Grpc.Core.Method`2.FullName
- fullName: Grpc.Core.Method<TRequest, TResponse>.FullName
- fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).FullName
- nameWithType: Method<TRequest, TResponse>.FullName
- nameWithType.vb: Method(Of TRequest, TResponse).FullName
- - uid: Grpc.Core.Method`2.FullName*
- name: FullName
- href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2_FullName_
- commentId: Overload:Grpc.Core.Method`2.FullName
- fullName: Grpc.Core.Method<TRequest, TResponse>.FullName
- fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).FullName
- nameWithType: Method<TRequest, TResponse>.FullName
- nameWithType.vb: Method(Of TRequest, TResponse).FullName
- - uid: Grpc.Core.Method`2.Name
- name: Name
- href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2_Name
- commentId: P:Grpc.Core.Method`2.Name
- fullName: Grpc.Core.Method<TRequest, TResponse>.Name
- fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).Name
- nameWithType: Method<TRequest, TResponse>.Name
- nameWithType.vb: Method(Of TRequest, TResponse).Name
- - uid: Grpc.Core.Method`2.Name*
- name: Name
- href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2_Name_
- commentId: Overload:Grpc.Core.Method`2.Name
- fullName: Grpc.Core.Method<TRequest, TResponse>.Name
- fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).Name
- nameWithType: Method<TRequest, TResponse>.Name
- nameWithType.vb: Method(Of TRequest, TResponse).Name
- - uid: Grpc.Core.Method`2.RequestMarshaller
- name: RequestMarshaller
- href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2_RequestMarshaller
- commentId: P:Grpc.Core.Method`2.RequestMarshaller
- fullName: Grpc.Core.Method<TRequest, TResponse>.RequestMarshaller
- fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).RequestMarshaller
- nameWithType: Method<TRequest, TResponse>.RequestMarshaller
- nameWithType.vb: Method(Of TRequest, TResponse).RequestMarshaller
- - uid: Grpc.Core.Method`2.RequestMarshaller*
- name: RequestMarshaller
- href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2_RequestMarshaller_
- commentId: Overload:Grpc.Core.Method`2.RequestMarshaller
- fullName: Grpc.Core.Method<TRequest, TResponse>.RequestMarshaller
- fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).RequestMarshaller
- nameWithType: Method<TRequest, TResponse>.RequestMarshaller
- nameWithType.vb: Method(Of TRequest, TResponse).RequestMarshaller
- - uid: Grpc.Core.Method`2.ResponseMarshaller
- name: ResponseMarshaller
- href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2_ResponseMarshaller
- commentId: P:Grpc.Core.Method`2.ResponseMarshaller
- fullName: Grpc.Core.Method<TRequest, TResponse>.ResponseMarshaller
- fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).ResponseMarshaller
- nameWithType: Method<TRequest, TResponse>.ResponseMarshaller
- nameWithType.vb: Method(Of TRequest, TResponse).ResponseMarshaller
- - uid: Grpc.Core.Method`2.ResponseMarshaller*
- name: ResponseMarshaller
- href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2_ResponseMarshaller_
- commentId: Overload:Grpc.Core.Method`2.ResponseMarshaller
- fullName: Grpc.Core.Method<TRequest, TResponse>.ResponseMarshaller
- fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).ResponseMarshaller
- nameWithType: Method<TRequest, TResponse>.ResponseMarshaller
- nameWithType.vb: Method(Of TRequest, TResponse).ResponseMarshaller
- - uid: Grpc.Core.Method`2.ServiceName
- name: ServiceName
- href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2_ServiceName
- commentId: P:Grpc.Core.Method`2.ServiceName
- fullName: Grpc.Core.Method<TRequest, TResponse>.ServiceName
- fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).ServiceName
- nameWithType: Method<TRequest, TResponse>.ServiceName
- nameWithType.vb: Method(Of TRequest, TResponse).ServiceName
- - uid: Grpc.Core.Method`2.ServiceName*
- name: ServiceName
- href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2_ServiceName_
- commentId: Overload:Grpc.Core.Method`2.ServiceName
- fullName: Grpc.Core.Method<TRequest, TResponse>.ServiceName
- fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).ServiceName
- nameWithType: Method<TRequest, TResponse>.ServiceName
- nameWithType.vb: Method(Of TRequest, TResponse).ServiceName
- - uid: Grpc.Core.Method`2.Type
- name: Type
- href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2_Type
- commentId: P:Grpc.Core.Method`2.Type
- fullName: Grpc.Core.Method<TRequest, TResponse>.Type
- fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).Type
- nameWithType: Method<TRequest, TResponse>.Type
- nameWithType.vb: Method(Of TRequest, TResponse).Type
- - uid: Grpc.Core.Method`2.Type*
- name: Type
- href: api/Grpc.Core.Method-2.html#Grpc_Core_Method_2_Type_
- commentId: Overload:Grpc.Core.Method`2.Type
- fullName: Grpc.Core.Method<TRequest, TResponse>.Type
- fullName.vb: Grpc.Core.Method(Of TRequest, TResponse).Type
- nameWithType: Method<TRequest, TResponse>.Type
- nameWithType.vb: Method(Of TRequest, TResponse).Type
- - uid: Grpc.Core.MethodType
- name: MethodType
- href: api/Grpc.Core.MethodType.html
- commentId: T:Grpc.Core.MethodType
- fullName: Grpc.Core.MethodType
- nameWithType: MethodType
- - uid: Grpc.Core.MethodType.ClientStreaming
- name: ClientStreaming
- href: api/Grpc.Core.MethodType.html#Grpc_Core_MethodType_ClientStreaming
- commentId: F:Grpc.Core.MethodType.ClientStreaming
- fullName: Grpc.Core.MethodType.ClientStreaming
- nameWithType: MethodType.ClientStreaming
- - uid: Grpc.Core.MethodType.DuplexStreaming
- name: DuplexStreaming
- href: api/Grpc.Core.MethodType.html#Grpc_Core_MethodType_DuplexStreaming
- commentId: F:Grpc.Core.MethodType.DuplexStreaming
- fullName: Grpc.Core.MethodType.DuplexStreaming
- nameWithType: MethodType.DuplexStreaming
- - uid: Grpc.Core.MethodType.ServerStreaming
- name: ServerStreaming
- href: api/Grpc.Core.MethodType.html#Grpc_Core_MethodType_ServerStreaming
- commentId: F:Grpc.Core.MethodType.ServerStreaming
- fullName: Grpc.Core.MethodType.ServerStreaming
- nameWithType: MethodType.ServerStreaming
- - uid: Grpc.Core.MethodType.Unary
- name: Unary
- href: api/Grpc.Core.MethodType.html#Grpc_Core_MethodType_Unary
- commentId: F:Grpc.Core.MethodType.Unary
- fullName: Grpc.Core.MethodType.Unary
- nameWithType: MethodType.Unary
- - uid: Grpc.Core.RpcException
- name: RpcException
- href: api/Grpc.Core.RpcException.html
- commentId: T:Grpc.Core.RpcException
- fullName: Grpc.Core.RpcException
- nameWithType: RpcException
- - uid: Grpc.Core.RpcException.#ctor(Grpc.Core.Status)
- name: RpcException(Status)
- href: api/Grpc.Core.RpcException.html#Grpc_Core_RpcException__ctor_Grpc_Core_Status_
- commentId: M:Grpc.Core.RpcException.#ctor(Grpc.Core.Status)
- fullName: Grpc.Core.RpcException.RpcException(Grpc.Core.Status)
- nameWithType: RpcException.RpcException(Status)
- - uid: Grpc.Core.RpcException.#ctor(Grpc.Core.Status,Grpc.Core.Metadata)
- name: RpcException(Status, Metadata)
- href: api/Grpc.Core.RpcException.html#Grpc_Core_RpcException__ctor_Grpc_Core_Status_Grpc_Core_Metadata_
- commentId: M:Grpc.Core.RpcException.#ctor(Grpc.Core.Status,Grpc.Core.Metadata)
- fullName: Grpc.Core.RpcException.RpcException(Grpc.Core.Status, Grpc.Core.Metadata)
- nameWithType: RpcException.RpcException(Status, Metadata)
- - uid: Grpc.Core.RpcException.#ctor(Grpc.Core.Status,System.String)
- name: RpcException(Status, String)
- href: api/Grpc.Core.RpcException.html#Grpc_Core_RpcException__ctor_Grpc_Core_Status_System_String_
- commentId: M:Grpc.Core.RpcException.#ctor(Grpc.Core.Status,System.String)
- fullName: Grpc.Core.RpcException.RpcException(Grpc.Core.Status, System.String)
- nameWithType: RpcException.RpcException(Status, String)
- - uid: Grpc.Core.RpcException.#ctor*
- name: RpcException
- href: api/Grpc.Core.RpcException.html#Grpc_Core_RpcException__ctor_
- commentId: Overload:Grpc.Core.RpcException.#ctor
- fullName: Grpc.Core.RpcException.RpcException
- nameWithType: RpcException.RpcException
- - uid: Grpc.Core.RpcException.Status
- name: Status
- href: api/Grpc.Core.RpcException.html#Grpc_Core_RpcException_Status
- commentId: P:Grpc.Core.RpcException.Status
- fullName: Grpc.Core.RpcException.Status
- nameWithType: RpcException.Status
- - uid: Grpc.Core.RpcException.Status*
- name: Status
- href: api/Grpc.Core.RpcException.html#Grpc_Core_RpcException_Status_
- commentId: Overload:Grpc.Core.RpcException.Status
- fullName: Grpc.Core.RpcException.Status
- nameWithType: RpcException.Status
- - uid: Grpc.Core.RpcException.Trailers
- name: Trailers
- href: api/Grpc.Core.RpcException.html#Grpc_Core_RpcException_Trailers
- commentId: P:Grpc.Core.RpcException.Trailers
- fullName: Grpc.Core.RpcException.Trailers
- nameWithType: RpcException.Trailers
- - uid: Grpc.Core.RpcException.Trailers*
- name: Trailers
- href: api/Grpc.Core.RpcException.html#Grpc_Core_RpcException_Trailers_
- commentId: Overload:Grpc.Core.RpcException.Trailers
- fullName: Grpc.Core.RpcException.Trailers
- nameWithType: RpcException.Trailers
- - uid: Grpc.Core.Server
- name: Server
- href: api/Grpc.Core.Server.html
- commentId: T:Grpc.Core.Server
- fullName: Grpc.Core.Server
- nameWithType: Server
- - uid: Grpc.Core.Server.#ctor
- name: Server()
- href: api/Grpc.Core.Server.html#Grpc_Core_Server__ctor
- commentId: M:Grpc.Core.Server.#ctor
- fullName: Grpc.Core.Server.Server()
- nameWithType: Server.Server()
- - uid: Grpc.Core.Server.#ctor(System.Collections.Generic.IEnumerable{Grpc.Core.ChannelOption})
- name: Server(IEnumerable<ChannelOption>)
- href: api/Grpc.Core.Server.html#Grpc_Core_Server__ctor_System_Collections_Generic_IEnumerable_Grpc_Core_ChannelOption__
- commentId: M:Grpc.Core.Server.#ctor(System.Collections.Generic.IEnumerable{Grpc.Core.ChannelOption})
- name.vb: Server(IEnumerable(Of ChannelOption))
- fullName: Grpc.Core.Server.Server(System.Collections.Generic.IEnumerable<Grpc.Core.ChannelOption>)
- fullName.vb: Grpc.Core.Server.Server(System.Collections.Generic.IEnumerable(Of Grpc.Core.ChannelOption))
- nameWithType: Server.Server(IEnumerable<ChannelOption>)
- nameWithType.vb: Server.Server(IEnumerable(Of ChannelOption))
- - uid: Grpc.Core.Server.#ctor*
- name: Server
- href: api/Grpc.Core.Server.html#Grpc_Core_Server__ctor_
- commentId: Overload:Grpc.Core.Server.#ctor
- fullName: Grpc.Core.Server.Server
- nameWithType: Server.Server
- - uid: Grpc.Core.Server.KillAsync
- name: KillAsync()
- href: api/Grpc.Core.Server.html#Grpc_Core_Server_KillAsync
- commentId: M:Grpc.Core.Server.KillAsync
- fullName: Grpc.Core.Server.KillAsync()
- nameWithType: Server.KillAsync()
- - uid: Grpc.Core.Server.KillAsync*
- name: KillAsync
- href: api/Grpc.Core.Server.html#Grpc_Core_Server_KillAsync_
- commentId: Overload:Grpc.Core.Server.KillAsync
- fullName: Grpc.Core.Server.KillAsync
- nameWithType: Server.KillAsync
- - uid: Grpc.Core.Server.Ports
- name: Ports
- href: api/Grpc.Core.Server.html#Grpc_Core_Server_Ports
- commentId: P:Grpc.Core.Server.Ports
- fullName: Grpc.Core.Server.Ports
- nameWithType: Server.Ports
- - uid: Grpc.Core.Server.Ports*
- name: Ports
- href: api/Grpc.Core.Server.html#Grpc_Core_Server_Ports_
- commentId: Overload:Grpc.Core.Server.Ports
- fullName: Grpc.Core.Server.Ports
- nameWithType: Server.Ports
- - uid: Grpc.Core.Server.RequestCallTokensPerCompletionQueue
- name: RequestCallTokensPerCompletionQueue
- href: api/Grpc.Core.Server.html#Grpc_Core_Server_RequestCallTokensPerCompletionQueue
- commentId: P:Grpc.Core.Server.RequestCallTokensPerCompletionQueue
- fullName: Grpc.Core.Server.RequestCallTokensPerCompletionQueue
- nameWithType: Server.RequestCallTokensPerCompletionQueue
- - uid: Grpc.Core.Server.RequestCallTokensPerCompletionQueue*
- name: RequestCallTokensPerCompletionQueue
- href: api/Grpc.Core.Server.html#Grpc_Core_Server_RequestCallTokensPerCompletionQueue_
- commentId: Overload:Grpc.Core.Server.RequestCallTokensPerCompletionQueue
- fullName: Grpc.Core.Server.RequestCallTokensPerCompletionQueue
- nameWithType: Server.RequestCallTokensPerCompletionQueue
- - uid: Grpc.Core.Server.ServerPortCollection
- name: Server.ServerPortCollection
- href: api/Grpc.Core.Server.ServerPortCollection.html
- commentId: T:Grpc.Core.Server.ServerPortCollection
- fullName: Grpc.Core.Server.ServerPortCollection
- nameWithType: Server.ServerPortCollection
- - uid: Grpc.Core.Server.ServerPortCollection.Add(Grpc.Core.ServerPort)
- name: Add(ServerPort)
- href: api/Grpc.Core.Server.ServerPortCollection.html#Grpc_Core_Server_ServerPortCollection_Add_Grpc_Core_ServerPort_
- commentId: M:Grpc.Core.Server.ServerPortCollection.Add(Grpc.Core.ServerPort)
- fullName: Grpc.Core.Server.ServerPortCollection.Add(Grpc.Core.ServerPort)
- nameWithType: Server.ServerPortCollection.Add(ServerPort)
- - uid: Grpc.Core.Server.ServerPortCollection.Add(System.String,System.Int32,Grpc.Core.ServerCredentials)
- name: Add(String, Int32, ServerCredentials)
- href: api/Grpc.Core.Server.ServerPortCollection.html#Grpc_Core_Server_ServerPortCollection_Add_System_String_System_Int32_Grpc_Core_ServerCredentials_
- commentId: M:Grpc.Core.Server.ServerPortCollection.Add(System.String,System.Int32,Grpc.Core.ServerCredentials)
- fullName: Grpc.Core.Server.ServerPortCollection.Add(System.String, System.Int32, Grpc.Core.ServerCredentials)
- nameWithType: Server.ServerPortCollection.Add(String, Int32, ServerCredentials)
- - uid: Grpc.Core.Server.ServerPortCollection.Add*
- name: Add
- href: api/Grpc.Core.Server.ServerPortCollection.html#Grpc_Core_Server_ServerPortCollection_Add_
- commentId: Overload:Grpc.Core.Server.ServerPortCollection.Add
- fullName: Grpc.Core.Server.ServerPortCollection.Add
- nameWithType: Server.ServerPortCollection.Add
- - uid: Grpc.Core.Server.ServerPortCollection.GetEnumerator
- name: GetEnumerator()
- href: api/Grpc.Core.Server.ServerPortCollection.html#Grpc_Core_Server_ServerPortCollection_GetEnumerator
- commentId: M:Grpc.Core.Server.ServerPortCollection.GetEnumerator
- fullName: Grpc.Core.Server.ServerPortCollection.GetEnumerator()
- nameWithType: Server.ServerPortCollection.GetEnumerator()
- - uid: Grpc.Core.Server.ServerPortCollection.GetEnumerator*
- name: GetEnumerator
- href: api/Grpc.Core.Server.ServerPortCollection.html#Grpc_Core_Server_ServerPortCollection_GetEnumerator_
- commentId: Overload:Grpc.Core.Server.ServerPortCollection.GetEnumerator
- fullName: Grpc.Core.Server.ServerPortCollection.GetEnumerator
- nameWithType: Server.ServerPortCollection.GetEnumerator
- - uid: Grpc.Core.Server.ServerPortCollection.System#Collections#IEnumerable#GetEnumerator
- name: IEnumerable.GetEnumerator()
- href: api/Grpc.Core.Server.ServerPortCollection.html#Grpc_Core_Server_ServerPortCollection_System_Collections_IEnumerable_GetEnumerator
- commentId: M:Grpc.Core.Server.ServerPortCollection.System#Collections#IEnumerable#GetEnumerator
- name.vb: System.Collections.IEnumerable.GetEnumerator()
- fullName: Grpc.Core.Server.ServerPortCollection.System.Collections.IEnumerable.GetEnumerator()
- nameWithType: Server.ServerPortCollection.IEnumerable.GetEnumerator()
- nameWithType.vb: Server.ServerPortCollection.System.Collections.IEnumerable.GetEnumerator()
- - uid: Grpc.Core.Server.ServerPortCollection.System#Collections#IEnumerable#GetEnumerator*
- name: IEnumerable.GetEnumerator
- href: api/Grpc.Core.Server.ServerPortCollection.html#Grpc_Core_Server_ServerPortCollection_System_Collections_IEnumerable_GetEnumerator_
- commentId: Overload:Grpc.Core.Server.ServerPortCollection.System#Collections#IEnumerable#GetEnumerator
- name.vb: System.Collections.IEnumerable.GetEnumerator
- fullName: Grpc.Core.Server.ServerPortCollection.System.Collections.IEnumerable.GetEnumerator
- nameWithType: Server.ServerPortCollection.IEnumerable.GetEnumerator
- nameWithType.vb: Server.ServerPortCollection.System.Collections.IEnumerable.GetEnumerator
- - uid: Grpc.Core.Server.ServiceDefinitionCollection
- name: Server.ServiceDefinitionCollection
- href: api/Grpc.Core.Server.ServiceDefinitionCollection.html
- commentId: T:Grpc.Core.Server.ServiceDefinitionCollection
- fullName: Grpc.Core.Server.ServiceDefinitionCollection
- nameWithType: Server.ServiceDefinitionCollection
- - uid: Grpc.Core.Server.ServiceDefinitionCollection.Add(Grpc.Core.ServerServiceDefinition)
- name: Add(ServerServiceDefinition)
- href: api/Grpc.Core.Server.ServiceDefinitionCollection.html#Grpc_Core_Server_ServiceDefinitionCollection_Add_Grpc_Core_ServerServiceDefinition_
- commentId: M:Grpc.Core.Server.ServiceDefinitionCollection.Add(Grpc.Core.ServerServiceDefinition)
- fullName: Grpc.Core.Server.ServiceDefinitionCollection.Add(Grpc.Core.ServerServiceDefinition)
- nameWithType: Server.ServiceDefinitionCollection.Add(ServerServiceDefinition)
- - uid: Grpc.Core.Server.ServiceDefinitionCollection.Add*
- name: Add
- href: api/Grpc.Core.Server.ServiceDefinitionCollection.html#Grpc_Core_Server_ServiceDefinitionCollection_Add_
- commentId: Overload:Grpc.Core.Server.ServiceDefinitionCollection.Add
- fullName: Grpc.Core.Server.ServiceDefinitionCollection.Add
- nameWithType: Server.ServiceDefinitionCollection.Add
- - uid: Grpc.Core.Server.ServiceDefinitionCollection.GetEnumerator
- name: GetEnumerator()
- href: api/Grpc.Core.Server.ServiceDefinitionCollection.html#Grpc_Core_Server_ServiceDefinitionCollection_GetEnumerator
- commentId: M:Grpc.Core.Server.ServiceDefinitionCollection.GetEnumerator
- fullName: Grpc.Core.Server.ServiceDefinitionCollection.GetEnumerator()
- nameWithType: Server.ServiceDefinitionCollection.GetEnumerator()
- - uid: Grpc.Core.Server.ServiceDefinitionCollection.GetEnumerator*
- name: GetEnumerator
- href: api/Grpc.Core.Server.ServiceDefinitionCollection.html#Grpc_Core_Server_ServiceDefinitionCollection_GetEnumerator_
- commentId: Overload:Grpc.Core.Server.ServiceDefinitionCollection.GetEnumerator
- fullName: Grpc.Core.Server.ServiceDefinitionCollection.GetEnumerator
- nameWithType: Server.ServiceDefinitionCollection.GetEnumerator
- - uid: Grpc.Core.Server.ServiceDefinitionCollection.System#Collections#IEnumerable#GetEnumerator
- name: IEnumerable.GetEnumerator()
- href: api/Grpc.Core.Server.ServiceDefinitionCollection.html#Grpc_Core_Server_ServiceDefinitionCollection_System_Collections_IEnumerable_GetEnumerator
- commentId: M:Grpc.Core.Server.ServiceDefinitionCollection.System#Collections#IEnumerable#GetEnumerator
- name.vb: System.Collections.IEnumerable.GetEnumerator()
- fullName: Grpc.Core.Server.ServiceDefinitionCollection.System.Collections.IEnumerable.GetEnumerator()
- nameWithType: Server.ServiceDefinitionCollection.IEnumerable.GetEnumerator()
- nameWithType.vb: Server.ServiceDefinitionCollection.System.Collections.IEnumerable.GetEnumerator()
- - uid: Grpc.Core.Server.ServiceDefinitionCollection.System#Collections#IEnumerable#GetEnumerator*
- name: IEnumerable.GetEnumerator
- href: api/Grpc.Core.Server.ServiceDefinitionCollection.html#Grpc_Core_Server_ServiceDefinitionCollection_System_Collections_IEnumerable_GetEnumerator_
- commentId: Overload:Grpc.Core.Server.ServiceDefinitionCollection.System#Collections#IEnumerable#GetEnumerator
- name.vb: System.Collections.IEnumerable.GetEnumerator
- fullName: Grpc.Core.Server.ServiceDefinitionCollection.System.Collections.IEnumerable.GetEnumerator
- nameWithType: Server.ServiceDefinitionCollection.IEnumerable.GetEnumerator
- nameWithType.vb: Server.ServiceDefinitionCollection.System.Collections.IEnumerable.GetEnumerator
- - uid: Grpc.Core.Server.Services
- name: Services
- href: api/Grpc.Core.Server.html#Grpc_Core_Server_Services
- commentId: P:Grpc.Core.Server.Services
- fullName: Grpc.Core.Server.Services
- nameWithType: Server.Services
- - uid: Grpc.Core.Server.Services*
- name: Services
- href: api/Grpc.Core.Server.html#Grpc_Core_Server_Services_
- commentId: Overload:Grpc.Core.Server.Services
- fullName: Grpc.Core.Server.Services
- nameWithType: Server.Services
- - uid: Grpc.Core.Server.ShutdownAsync
- name: ShutdownAsync()
- href: api/Grpc.Core.Server.html#Grpc_Core_Server_ShutdownAsync
- commentId: M:Grpc.Core.Server.ShutdownAsync
- fullName: Grpc.Core.Server.ShutdownAsync()
- nameWithType: Server.ShutdownAsync()
- - uid: Grpc.Core.Server.ShutdownAsync*
- name: ShutdownAsync
- href: api/Grpc.Core.Server.html#Grpc_Core_Server_ShutdownAsync_
- commentId: Overload:Grpc.Core.Server.ShutdownAsync
- fullName: Grpc.Core.Server.ShutdownAsync
- nameWithType: Server.ShutdownAsync
- - uid: Grpc.Core.Server.ShutdownTask
- name: ShutdownTask
- href: api/Grpc.Core.Server.html#Grpc_Core_Server_ShutdownTask
- commentId: P:Grpc.Core.Server.ShutdownTask
- fullName: Grpc.Core.Server.ShutdownTask
- nameWithType: Server.ShutdownTask
- - uid: Grpc.Core.Server.ShutdownTask*
- name: ShutdownTask
- href: api/Grpc.Core.Server.html#Grpc_Core_Server_ShutdownTask_
- commentId: Overload:Grpc.Core.Server.ShutdownTask
- fullName: Grpc.Core.Server.ShutdownTask
- nameWithType: Server.ShutdownTask
- - uid: Grpc.Core.Server.Start
- name: Start()
- href: api/Grpc.Core.Server.html#Grpc_Core_Server_Start
- commentId: M:Grpc.Core.Server.Start
- fullName: Grpc.Core.Server.Start()
- nameWithType: Server.Start()
- - uid: Grpc.Core.Server.Start*
- name: Start
- href: api/Grpc.Core.Server.html#Grpc_Core_Server_Start_
- commentId: Overload:Grpc.Core.Server.Start
- fullName: Grpc.Core.Server.Start
- nameWithType: Server.Start
- - uid: Grpc.Core.ServerCallContext
- name: ServerCallContext
- href: api/Grpc.Core.ServerCallContext.html
- commentId: T:Grpc.Core.ServerCallContext
- fullName: Grpc.Core.ServerCallContext
- nameWithType: ServerCallContext
- - uid: Grpc.Core.ServerCallContext.AuthContext
- name: AuthContext
- href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_AuthContext
- commentId: P:Grpc.Core.ServerCallContext.AuthContext
- fullName: Grpc.Core.ServerCallContext.AuthContext
- nameWithType: ServerCallContext.AuthContext
- - uid: Grpc.Core.ServerCallContext.AuthContext*
- name: AuthContext
- href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_AuthContext_
- commentId: Overload:Grpc.Core.ServerCallContext.AuthContext
- fullName: Grpc.Core.ServerCallContext.AuthContext
- nameWithType: ServerCallContext.AuthContext
- - uid: Grpc.Core.ServerCallContext.CancellationToken
- name: CancellationToken
- href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_CancellationToken
- commentId: P:Grpc.Core.ServerCallContext.CancellationToken
- fullName: Grpc.Core.ServerCallContext.CancellationToken
- nameWithType: ServerCallContext.CancellationToken
- - uid: Grpc.Core.ServerCallContext.CancellationToken*
- name: CancellationToken
- href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_CancellationToken_
- commentId: Overload:Grpc.Core.ServerCallContext.CancellationToken
- fullName: Grpc.Core.ServerCallContext.CancellationToken
- nameWithType: ServerCallContext.CancellationToken
- - uid: Grpc.Core.ServerCallContext.CreatePropagationToken(Grpc.Core.ContextPropagationOptions)
- name: CreatePropagationToken(ContextPropagationOptions)
- href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_CreatePropagationToken_Grpc_Core_ContextPropagationOptions_
- commentId: M:Grpc.Core.ServerCallContext.CreatePropagationToken(Grpc.Core.ContextPropagationOptions)
- fullName: Grpc.Core.ServerCallContext.CreatePropagationToken(Grpc.Core.ContextPropagationOptions)
- nameWithType: ServerCallContext.CreatePropagationToken(ContextPropagationOptions)
- - uid: Grpc.Core.ServerCallContext.CreatePropagationToken*
- name: CreatePropagationToken
- href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_CreatePropagationToken_
- commentId: Overload:Grpc.Core.ServerCallContext.CreatePropagationToken
- fullName: Grpc.Core.ServerCallContext.CreatePropagationToken
- nameWithType: ServerCallContext.CreatePropagationToken
- - uid: Grpc.Core.ServerCallContext.Deadline
- name: Deadline
- href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_Deadline
- commentId: P:Grpc.Core.ServerCallContext.Deadline
- fullName: Grpc.Core.ServerCallContext.Deadline
- nameWithType: ServerCallContext.Deadline
- - uid: Grpc.Core.ServerCallContext.Deadline*
- name: Deadline
- href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_Deadline_
- commentId: Overload:Grpc.Core.ServerCallContext.Deadline
- fullName: Grpc.Core.ServerCallContext.Deadline
- nameWithType: ServerCallContext.Deadline
- - uid: Grpc.Core.ServerCallContext.Host
- name: Host
- href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_Host
- commentId: P:Grpc.Core.ServerCallContext.Host
- fullName: Grpc.Core.ServerCallContext.Host
- nameWithType: ServerCallContext.Host
- - uid: Grpc.Core.ServerCallContext.Host*
- name: Host
- href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_Host_
- commentId: Overload:Grpc.Core.ServerCallContext.Host
- fullName: Grpc.Core.ServerCallContext.Host
- nameWithType: ServerCallContext.Host
- - uid: Grpc.Core.ServerCallContext.Method
- name: Method
- href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_Method
- commentId: P:Grpc.Core.ServerCallContext.Method
- fullName: Grpc.Core.ServerCallContext.Method
- nameWithType: ServerCallContext.Method
- - uid: Grpc.Core.ServerCallContext.Method*
- name: Method
- href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_Method_
- commentId: Overload:Grpc.Core.ServerCallContext.Method
- fullName: Grpc.Core.ServerCallContext.Method
- nameWithType: ServerCallContext.Method
- - uid: Grpc.Core.ServerCallContext.Peer
- name: Peer
- href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_Peer
- commentId: P:Grpc.Core.ServerCallContext.Peer
- fullName: Grpc.Core.ServerCallContext.Peer
- nameWithType: ServerCallContext.Peer
- - uid: Grpc.Core.ServerCallContext.Peer*
- name: Peer
- href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_Peer_
- commentId: Overload:Grpc.Core.ServerCallContext.Peer
- fullName: Grpc.Core.ServerCallContext.Peer
- nameWithType: ServerCallContext.Peer
- - uid: Grpc.Core.ServerCallContext.RequestHeaders
- name: RequestHeaders
- href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_RequestHeaders
- commentId: P:Grpc.Core.ServerCallContext.RequestHeaders
- fullName: Grpc.Core.ServerCallContext.RequestHeaders
- nameWithType: ServerCallContext.RequestHeaders
- - uid: Grpc.Core.ServerCallContext.RequestHeaders*
- name: RequestHeaders
- href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_RequestHeaders_
- commentId: Overload:Grpc.Core.ServerCallContext.RequestHeaders
- fullName: Grpc.Core.ServerCallContext.RequestHeaders
- nameWithType: ServerCallContext.RequestHeaders
- - uid: Grpc.Core.ServerCallContext.ResponseTrailers
- name: ResponseTrailers
- href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_ResponseTrailers
- commentId: P:Grpc.Core.ServerCallContext.ResponseTrailers
- fullName: Grpc.Core.ServerCallContext.ResponseTrailers
- nameWithType: ServerCallContext.ResponseTrailers
- - uid: Grpc.Core.ServerCallContext.ResponseTrailers*
- name: ResponseTrailers
- href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_ResponseTrailers_
- commentId: Overload:Grpc.Core.ServerCallContext.ResponseTrailers
- fullName: Grpc.Core.ServerCallContext.ResponseTrailers
- nameWithType: ServerCallContext.ResponseTrailers
- - uid: Grpc.Core.ServerCallContext.Status
- name: Status
- href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_Status
- commentId: P:Grpc.Core.ServerCallContext.Status
- fullName: Grpc.Core.ServerCallContext.Status
- nameWithType: ServerCallContext.Status
- - uid: Grpc.Core.ServerCallContext.Status*
- name: Status
- href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_Status_
- commentId: Overload:Grpc.Core.ServerCallContext.Status
- fullName: Grpc.Core.ServerCallContext.Status
- nameWithType: ServerCallContext.Status
- - uid: Grpc.Core.ServerCallContext.WriteOptions
- name: WriteOptions
- href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_WriteOptions
- commentId: P:Grpc.Core.ServerCallContext.WriteOptions
- fullName: Grpc.Core.ServerCallContext.WriteOptions
- nameWithType: ServerCallContext.WriteOptions
- - uid: Grpc.Core.ServerCallContext.WriteOptions*
- name: WriteOptions
- href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_WriteOptions_
- commentId: Overload:Grpc.Core.ServerCallContext.WriteOptions
- fullName: Grpc.Core.ServerCallContext.WriteOptions
- nameWithType: ServerCallContext.WriteOptions
- - uid: Grpc.Core.ServerCallContext.WriteResponseHeadersAsync(Grpc.Core.Metadata)
- name: WriteResponseHeadersAsync(Metadata)
- href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_WriteResponseHeadersAsync_Grpc_Core_Metadata_
- commentId: M:Grpc.Core.ServerCallContext.WriteResponseHeadersAsync(Grpc.Core.Metadata)
- fullName: Grpc.Core.ServerCallContext.WriteResponseHeadersAsync(Grpc.Core.Metadata)
- nameWithType: ServerCallContext.WriteResponseHeadersAsync(Metadata)
- - uid: Grpc.Core.ServerCallContext.WriteResponseHeadersAsync*
- name: WriteResponseHeadersAsync
- href: api/Grpc.Core.ServerCallContext.html#Grpc_Core_ServerCallContext_WriteResponseHeadersAsync_
- commentId: Overload:Grpc.Core.ServerCallContext.WriteResponseHeadersAsync
- fullName: Grpc.Core.ServerCallContext.WriteResponseHeadersAsync
- nameWithType: ServerCallContext.WriteResponseHeadersAsync
- - uid: Grpc.Core.ServerCredentials
- name: ServerCredentials
- href: api/Grpc.Core.ServerCredentials.html
- commentId: T:Grpc.Core.ServerCredentials
- fullName: Grpc.Core.ServerCredentials
- nameWithType: ServerCredentials
- - uid: Grpc.Core.ServerCredentials.Insecure
- name: Insecure
- href: api/Grpc.Core.ServerCredentials.html#Grpc_Core_ServerCredentials_Insecure
- commentId: P:Grpc.Core.ServerCredentials.Insecure
- fullName: Grpc.Core.ServerCredentials.Insecure
- nameWithType: ServerCredentials.Insecure
- - uid: Grpc.Core.ServerCredentials.Insecure*
- name: Insecure
- href: api/Grpc.Core.ServerCredentials.html#Grpc_Core_ServerCredentials_Insecure_
- commentId: Overload:Grpc.Core.ServerCredentials.Insecure
- fullName: Grpc.Core.ServerCredentials.Insecure
- nameWithType: ServerCredentials.Insecure
- - uid: Grpc.Core.ServerPort
- name: ServerPort
- href: api/Grpc.Core.ServerPort.html
- commentId: T:Grpc.Core.ServerPort
- fullName: Grpc.Core.ServerPort
- nameWithType: ServerPort
- - uid: Grpc.Core.ServerPort.#ctor(System.String,System.Int32,Grpc.Core.ServerCredentials)
- name: ServerPort(String, Int32, ServerCredentials)
- href: api/Grpc.Core.ServerPort.html#Grpc_Core_ServerPort__ctor_System_String_System_Int32_Grpc_Core_ServerCredentials_
- commentId: M:Grpc.Core.ServerPort.#ctor(System.String,System.Int32,Grpc.Core.ServerCredentials)
- fullName: Grpc.Core.ServerPort.ServerPort(System.String, System.Int32, Grpc.Core.ServerCredentials)
- nameWithType: ServerPort.ServerPort(String, Int32, ServerCredentials)
- - uid: Grpc.Core.ServerPort.#ctor*
- name: ServerPort
- href: api/Grpc.Core.ServerPort.html#Grpc_Core_ServerPort__ctor_
- commentId: Overload:Grpc.Core.ServerPort.#ctor
- fullName: Grpc.Core.ServerPort.ServerPort
- nameWithType: ServerPort.ServerPort
- - uid: Grpc.Core.ServerPort.BoundPort
- name: BoundPort
- href: api/Grpc.Core.ServerPort.html#Grpc_Core_ServerPort_BoundPort
- commentId: P:Grpc.Core.ServerPort.BoundPort
- fullName: Grpc.Core.ServerPort.BoundPort
- nameWithType: ServerPort.BoundPort
- - uid: Grpc.Core.ServerPort.BoundPort*
- name: BoundPort
- href: api/Grpc.Core.ServerPort.html#Grpc_Core_ServerPort_BoundPort_
- commentId: Overload:Grpc.Core.ServerPort.BoundPort
- fullName: Grpc.Core.ServerPort.BoundPort
- nameWithType: ServerPort.BoundPort
- - uid: Grpc.Core.ServerPort.Credentials
- name: Credentials
- href: api/Grpc.Core.ServerPort.html#Grpc_Core_ServerPort_Credentials
- commentId: P:Grpc.Core.ServerPort.Credentials
- fullName: Grpc.Core.ServerPort.Credentials
- nameWithType: ServerPort.Credentials
- - uid: Grpc.Core.ServerPort.Credentials*
- name: Credentials
- href: api/Grpc.Core.ServerPort.html#Grpc_Core_ServerPort_Credentials_
- commentId: Overload:Grpc.Core.ServerPort.Credentials
- fullName: Grpc.Core.ServerPort.Credentials
- nameWithType: ServerPort.Credentials
- - uid: Grpc.Core.ServerPort.Host
- name: Host
- href: api/Grpc.Core.ServerPort.html#Grpc_Core_ServerPort_Host
- commentId: P:Grpc.Core.ServerPort.Host
- fullName: Grpc.Core.ServerPort.Host
- nameWithType: ServerPort.Host
- - uid: Grpc.Core.ServerPort.Host*
- name: Host
- href: api/Grpc.Core.ServerPort.html#Grpc_Core_ServerPort_Host_
- commentId: Overload:Grpc.Core.ServerPort.Host
- fullName: Grpc.Core.ServerPort.Host
- nameWithType: ServerPort.Host
- - uid: Grpc.Core.ServerPort.PickUnused
- name: PickUnused
- href: api/Grpc.Core.ServerPort.html#Grpc_Core_ServerPort_PickUnused
- commentId: F:Grpc.Core.ServerPort.PickUnused
- fullName: Grpc.Core.ServerPort.PickUnused
- nameWithType: ServerPort.PickUnused
- - uid: Grpc.Core.ServerPort.Port
- name: Port
- href: api/Grpc.Core.ServerPort.html#Grpc_Core_ServerPort_Port
- commentId: P:Grpc.Core.ServerPort.Port
- fullName: Grpc.Core.ServerPort.Port
- nameWithType: ServerPort.Port
- - uid: Grpc.Core.ServerPort.Port*
- name: Port
- href: api/Grpc.Core.ServerPort.html#Grpc_Core_ServerPort_Port_
- commentId: Overload:Grpc.Core.ServerPort.Port
- fullName: Grpc.Core.ServerPort.Port
- nameWithType: ServerPort.Port
- - uid: Grpc.Core.ServerServiceDefinition
- name: ServerServiceDefinition
- href: api/Grpc.Core.ServerServiceDefinition.html
- commentId: T:Grpc.Core.ServerServiceDefinition
- fullName: Grpc.Core.ServerServiceDefinition
- nameWithType: ServerServiceDefinition
- - uid: Grpc.Core.ServerServiceDefinition.Builder
- name: ServerServiceDefinition.Builder
- href: api/Grpc.Core.ServerServiceDefinition.Builder.html
- commentId: T:Grpc.Core.ServerServiceDefinition.Builder
- fullName: Grpc.Core.ServerServiceDefinition.Builder
- nameWithType: ServerServiceDefinition.Builder
- - uid: Grpc.Core.ServerServiceDefinition.Builder.#ctor
- name: Builder()
- href: api/Grpc.Core.ServerServiceDefinition.Builder.html#Grpc_Core_ServerServiceDefinition_Builder__ctor
- commentId: M:Grpc.Core.ServerServiceDefinition.Builder.#ctor
- fullName: Grpc.Core.ServerServiceDefinition.Builder.Builder()
- nameWithType: ServerServiceDefinition.Builder.Builder()
- - uid: Grpc.Core.ServerServiceDefinition.Builder.#ctor*
- name: Builder
- href: api/Grpc.Core.ServerServiceDefinition.Builder.html#Grpc_Core_ServerServiceDefinition_Builder__ctor_
- commentId: Overload:Grpc.Core.ServerServiceDefinition.Builder.#ctor
- fullName: Grpc.Core.ServerServiceDefinition.Builder.Builder
- nameWithType: ServerServiceDefinition.Builder.Builder
- - uid: Grpc.Core.ServerServiceDefinition.Builder.AddMethod*
- name: AddMethod
- href: api/Grpc.Core.ServerServiceDefinition.Builder.html#Grpc_Core_ServerServiceDefinition_Builder_AddMethod_
- commentId: Overload:Grpc.Core.ServerServiceDefinition.Builder.AddMethod
- fullName: Grpc.Core.ServerServiceDefinition.Builder.AddMethod
- nameWithType: ServerServiceDefinition.Builder.AddMethod
- - uid: Grpc.Core.ServerServiceDefinition.Builder.AddMethod``2(Grpc.Core.Method{``0,``1},Grpc.Core.ClientStreamingServerMethod{``0,``1})
- name: AddMethod<TRequest, TResponse>(Method<TRequest, TResponse>, ClientStreamingServerMethod<TRequest, TResponse>)
- href: api/Grpc.Core.ServerServiceDefinition.Builder.html#Grpc_Core_ServerServiceDefinition_Builder_AddMethod__2_Grpc_Core_Method___0___1__Grpc_Core_ClientStreamingServerMethod___0___1__
- commentId: M:Grpc.Core.ServerServiceDefinition.Builder.AddMethod``2(Grpc.Core.Method{``0,``1},Grpc.Core.ClientStreamingServerMethod{``0,``1})
- name.vb: AddMethod(Of TRequest, TResponse)(Method(Of TRequest, TResponse), ClientStreamingServerMethod(Of TRequest, TResponse))
- fullName: Grpc.Core.ServerServiceDefinition.Builder.AddMethod<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, Grpc.Core.ClientStreamingServerMethod<TRequest, TResponse>)
- fullName.vb: Grpc.Core.ServerServiceDefinition.Builder.AddMethod(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), Grpc.Core.ClientStreamingServerMethod(Of TRequest, TResponse))
- nameWithType: ServerServiceDefinition.Builder.AddMethod<TRequest, TResponse>(Method<TRequest, TResponse>, ClientStreamingServerMethod<TRequest, TResponse>)
- nameWithType.vb: ServerServiceDefinition.Builder.AddMethod(Of TRequest, TResponse)(Method(Of TRequest, TResponse), ClientStreamingServerMethod(Of TRequest, TResponse))
- - uid: Grpc.Core.ServerServiceDefinition.Builder.AddMethod``2(Grpc.Core.Method{``0,``1},Grpc.Core.DuplexStreamingServerMethod{``0,``1})
- name: AddMethod<TRequest, TResponse>(Method<TRequest, TResponse>, DuplexStreamingServerMethod<TRequest, TResponse>)
- href: api/Grpc.Core.ServerServiceDefinition.Builder.html#Grpc_Core_ServerServiceDefinition_Builder_AddMethod__2_Grpc_Core_Method___0___1__Grpc_Core_DuplexStreamingServerMethod___0___1__
- commentId: M:Grpc.Core.ServerServiceDefinition.Builder.AddMethod``2(Grpc.Core.Method{``0,``1},Grpc.Core.DuplexStreamingServerMethod{``0,``1})
- name.vb: AddMethod(Of TRequest, TResponse)(Method(Of TRequest, TResponse), DuplexStreamingServerMethod(Of TRequest, TResponse))
- fullName: Grpc.Core.ServerServiceDefinition.Builder.AddMethod<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, Grpc.Core.DuplexStreamingServerMethod<TRequest, TResponse>)
- fullName.vb: Grpc.Core.ServerServiceDefinition.Builder.AddMethod(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), Grpc.Core.DuplexStreamingServerMethod(Of TRequest, TResponse))
- nameWithType: ServerServiceDefinition.Builder.AddMethod<TRequest, TResponse>(Method<TRequest, TResponse>, DuplexStreamingServerMethod<TRequest, TResponse>)
- nameWithType.vb: ServerServiceDefinition.Builder.AddMethod(Of TRequest, TResponse)(Method(Of TRequest, TResponse), DuplexStreamingServerMethod(Of TRequest, TResponse))
- - uid: Grpc.Core.ServerServiceDefinition.Builder.AddMethod``2(Grpc.Core.Method{``0,``1},Grpc.Core.ServerStreamingServerMethod{``0,``1})
- name: AddMethod<TRequest, TResponse>(Method<TRequest, TResponse>, ServerStreamingServerMethod<TRequest, TResponse>)
- href: api/Grpc.Core.ServerServiceDefinition.Builder.html#Grpc_Core_ServerServiceDefinition_Builder_AddMethod__2_Grpc_Core_Method___0___1__Grpc_Core_ServerStreamingServerMethod___0___1__
- commentId: M:Grpc.Core.ServerServiceDefinition.Builder.AddMethod``2(Grpc.Core.Method{``0,``1},Grpc.Core.ServerStreamingServerMethod{``0,``1})
- name.vb: AddMethod(Of TRequest, TResponse)(Method(Of TRequest, TResponse), ServerStreamingServerMethod(Of TRequest, TResponse))
- fullName: Grpc.Core.ServerServiceDefinition.Builder.AddMethod<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, Grpc.Core.ServerStreamingServerMethod<TRequest, TResponse>)
- fullName.vb: Grpc.Core.ServerServiceDefinition.Builder.AddMethod(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), Grpc.Core.ServerStreamingServerMethod(Of TRequest, TResponse))
- nameWithType: ServerServiceDefinition.Builder.AddMethod<TRequest, TResponse>(Method<TRequest, TResponse>, ServerStreamingServerMethod<TRequest, TResponse>)
- nameWithType.vb: ServerServiceDefinition.Builder.AddMethod(Of TRequest, TResponse)(Method(Of TRequest, TResponse), ServerStreamingServerMethod(Of TRequest, TResponse))
- - uid: Grpc.Core.ServerServiceDefinition.Builder.AddMethod``2(Grpc.Core.Method{``0,``1},Grpc.Core.UnaryServerMethod{``0,``1})
- name: AddMethod<TRequest, TResponse>(Method<TRequest, TResponse>, UnaryServerMethod<TRequest, TResponse>)
- href: api/Grpc.Core.ServerServiceDefinition.Builder.html#Grpc_Core_ServerServiceDefinition_Builder_AddMethod__2_Grpc_Core_Method___0___1__Grpc_Core_UnaryServerMethod___0___1__
- commentId: M:Grpc.Core.ServerServiceDefinition.Builder.AddMethod``2(Grpc.Core.Method{``0,``1},Grpc.Core.UnaryServerMethod{``0,``1})
- name.vb: AddMethod(Of TRequest, TResponse)(Method(Of TRequest, TResponse), UnaryServerMethod(Of TRequest, TResponse))
- fullName: Grpc.Core.ServerServiceDefinition.Builder.AddMethod<TRequest, TResponse>(Grpc.Core.Method<TRequest, TResponse>, Grpc.Core.UnaryServerMethod<TRequest, TResponse>)
- fullName.vb: Grpc.Core.ServerServiceDefinition.Builder.AddMethod(Of TRequest, TResponse)(Grpc.Core.Method(Of TRequest, TResponse), Grpc.Core.UnaryServerMethod(Of TRequest, TResponse))
- nameWithType: ServerServiceDefinition.Builder.AddMethod<TRequest, TResponse>(Method<TRequest, TResponse>, UnaryServerMethod<TRequest, TResponse>)
- nameWithType.vb: ServerServiceDefinition.Builder.AddMethod(Of TRequest, TResponse)(Method(Of TRequest, TResponse), UnaryServerMethod(Of TRequest, TResponse))
- - uid: Grpc.Core.ServerServiceDefinition.Builder.Build
- name: Build()
- href: api/Grpc.Core.ServerServiceDefinition.Builder.html#Grpc_Core_ServerServiceDefinition_Builder_Build
- commentId: M:Grpc.Core.ServerServiceDefinition.Builder.Build
- fullName: Grpc.Core.ServerServiceDefinition.Builder.Build()
- nameWithType: ServerServiceDefinition.Builder.Build()
- - uid: Grpc.Core.ServerServiceDefinition.Builder.Build*
- name: Build
- href: api/Grpc.Core.ServerServiceDefinition.Builder.html#Grpc_Core_ServerServiceDefinition_Builder_Build_
- commentId: Overload:Grpc.Core.ServerServiceDefinition.Builder.Build
- fullName: Grpc.Core.ServerServiceDefinition.Builder.Build
- nameWithType: ServerServiceDefinition.Builder.Build
- - uid: Grpc.Core.ServerServiceDefinition.CreateBuilder
- name: CreateBuilder()
- href: api/Grpc.Core.ServerServiceDefinition.html#Grpc_Core_ServerServiceDefinition_CreateBuilder
- commentId: M:Grpc.Core.ServerServiceDefinition.CreateBuilder
- fullName: Grpc.Core.ServerServiceDefinition.CreateBuilder()
- nameWithType: ServerServiceDefinition.CreateBuilder()
- - uid: Grpc.Core.ServerServiceDefinition.CreateBuilder*
- name: CreateBuilder
- href: api/Grpc.Core.ServerServiceDefinition.html#Grpc_Core_ServerServiceDefinition_CreateBuilder_
- commentId: Overload:Grpc.Core.ServerServiceDefinition.CreateBuilder
- fullName: Grpc.Core.ServerServiceDefinition.CreateBuilder
- nameWithType: ServerServiceDefinition.CreateBuilder
- - uid: Grpc.Core.ServerStreamingServerMethod`2
- name: ServerStreamingServerMethod<TRequest, TResponse>
- href: api/Grpc.Core.ServerStreamingServerMethod-2.html
- commentId: T:Grpc.Core.ServerStreamingServerMethod`2
- name.vb: ServerStreamingServerMethod(Of TRequest, TResponse)
- fullName: Grpc.Core.ServerStreamingServerMethod<TRequest, TResponse>
- fullName.vb: Grpc.Core.ServerStreamingServerMethod(Of TRequest, TResponse)
- nameWithType: ServerStreamingServerMethod<TRequest, TResponse>
- nameWithType.vb: ServerStreamingServerMethod(Of TRequest, TResponse)
- - uid: Grpc.Core.SslCredentials
- name: SslCredentials
- href: api/Grpc.Core.SslCredentials.html
- commentId: T:Grpc.Core.SslCredentials
- fullName: Grpc.Core.SslCredentials
- nameWithType: SslCredentials
- - uid: Grpc.Core.SslCredentials.#ctor
- name: SslCredentials()
- href: api/Grpc.Core.SslCredentials.html#Grpc_Core_SslCredentials__ctor
- commentId: M:Grpc.Core.SslCredentials.#ctor
- fullName: Grpc.Core.SslCredentials.SslCredentials()
- nameWithType: SslCredentials.SslCredentials()
- - uid: Grpc.Core.SslCredentials.#ctor(System.String)
- name: SslCredentials(String)
- href: api/Grpc.Core.SslCredentials.html#Grpc_Core_SslCredentials__ctor_System_String_
- commentId: M:Grpc.Core.SslCredentials.#ctor(System.String)
- fullName: Grpc.Core.SslCredentials.SslCredentials(System.String)
- nameWithType: SslCredentials.SslCredentials(String)
- - uid: Grpc.Core.SslCredentials.#ctor(System.String,Grpc.Core.KeyCertificatePair)
- name: SslCredentials(String, KeyCertificatePair)
- href: api/Grpc.Core.SslCredentials.html#Grpc_Core_SslCredentials__ctor_System_String_Grpc_Core_KeyCertificatePair_
- commentId: M:Grpc.Core.SslCredentials.#ctor(System.String,Grpc.Core.KeyCertificatePair)
- fullName: Grpc.Core.SslCredentials.SslCredentials(System.String, Grpc.Core.KeyCertificatePair)
- nameWithType: SslCredentials.SslCredentials(String, KeyCertificatePair)
- - uid: Grpc.Core.SslCredentials.#ctor*
- name: SslCredentials
- href: api/Grpc.Core.SslCredentials.html#Grpc_Core_SslCredentials__ctor_
- commentId: Overload:Grpc.Core.SslCredentials.#ctor
- fullName: Grpc.Core.SslCredentials.SslCredentials
- nameWithType: SslCredentials.SslCredentials
- - uid: Grpc.Core.SslCredentials.KeyCertificatePair
- name: KeyCertificatePair
- href: api/Grpc.Core.SslCredentials.html#Grpc_Core_SslCredentials_KeyCertificatePair
- commentId: P:Grpc.Core.SslCredentials.KeyCertificatePair
- fullName: Grpc.Core.SslCredentials.KeyCertificatePair
- nameWithType: SslCredentials.KeyCertificatePair
- - uid: Grpc.Core.SslCredentials.KeyCertificatePair*
- name: KeyCertificatePair
- href: api/Grpc.Core.SslCredentials.html#Grpc_Core_SslCredentials_KeyCertificatePair_
- commentId: Overload:Grpc.Core.SslCredentials.KeyCertificatePair
- fullName: Grpc.Core.SslCredentials.KeyCertificatePair
- nameWithType: SslCredentials.KeyCertificatePair
- - uid: Grpc.Core.SslCredentials.RootCertificates
- name: RootCertificates
- href: api/Grpc.Core.SslCredentials.html#Grpc_Core_SslCredentials_RootCertificates
- commentId: P:Grpc.Core.SslCredentials.RootCertificates
- fullName: Grpc.Core.SslCredentials.RootCertificates
- nameWithType: SslCredentials.RootCertificates
- - uid: Grpc.Core.SslCredentials.RootCertificates*
- name: RootCertificates
- href: api/Grpc.Core.SslCredentials.html#Grpc_Core_SslCredentials_RootCertificates_
- commentId: Overload:Grpc.Core.SslCredentials.RootCertificates
- fullName: Grpc.Core.SslCredentials.RootCertificates
- nameWithType: SslCredentials.RootCertificates
- - uid: Grpc.Core.SslServerCredentials
- name: SslServerCredentials
- href: api/Grpc.Core.SslServerCredentials.html
- commentId: T:Grpc.Core.SslServerCredentials
- fullName: Grpc.Core.SslServerCredentials
- nameWithType: SslServerCredentials
- - uid: Grpc.Core.SslServerCredentials.#ctor(System.Collections.Generic.IEnumerable{Grpc.Core.KeyCertificatePair})
- name: SslServerCredentials(IEnumerable<KeyCertificatePair>)
- href: api/Grpc.Core.SslServerCredentials.html#Grpc_Core_SslServerCredentials__ctor_System_Collections_Generic_IEnumerable_Grpc_Core_KeyCertificatePair__
- commentId: M:Grpc.Core.SslServerCredentials.#ctor(System.Collections.Generic.IEnumerable{Grpc.Core.KeyCertificatePair})
- name.vb: SslServerCredentials(IEnumerable(Of KeyCertificatePair))
- fullName: Grpc.Core.SslServerCredentials.SslServerCredentials(System.Collections.Generic.IEnumerable<Grpc.Core.KeyCertificatePair>)
- fullName.vb: Grpc.Core.SslServerCredentials.SslServerCredentials(System.Collections.Generic.IEnumerable(Of Grpc.Core.KeyCertificatePair))
- nameWithType: SslServerCredentials.SslServerCredentials(IEnumerable<KeyCertificatePair>)
- nameWithType.vb: SslServerCredentials.SslServerCredentials(IEnumerable(Of KeyCertificatePair))
- - uid: Grpc.Core.SslServerCredentials.#ctor(System.Collections.Generic.IEnumerable{Grpc.Core.KeyCertificatePair},System.String,System.Boolean)
- name: SslServerCredentials(IEnumerable<KeyCertificatePair>, String, Boolean)
- href: api/Grpc.Core.SslServerCredentials.html#Grpc_Core_SslServerCredentials__ctor_System_Collections_Generic_IEnumerable_Grpc_Core_KeyCertificatePair__System_String_System_Boolean_
- commentId: M:Grpc.Core.SslServerCredentials.#ctor(System.Collections.Generic.IEnumerable{Grpc.Core.KeyCertificatePair},System.String,System.Boolean)
- name.vb: SslServerCredentials(IEnumerable(Of KeyCertificatePair), String, Boolean)
- fullName: Grpc.Core.SslServerCredentials.SslServerCredentials(System.Collections.Generic.IEnumerable<Grpc.Core.KeyCertificatePair>, System.String, System.Boolean)
- fullName.vb: Grpc.Core.SslServerCredentials.SslServerCredentials(System.Collections.Generic.IEnumerable(Of Grpc.Core.KeyCertificatePair), System.String, System.Boolean)
- nameWithType: SslServerCredentials.SslServerCredentials(IEnumerable<KeyCertificatePair>, String, Boolean)
- nameWithType.vb: SslServerCredentials.SslServerCredentials(IEnumerable(Of KeyCertificatePair), String, Boolean)
- - uid: Grpc.Core.SslServerCredentials.#ctor*
- name: SslServerCredentials
- href: api/Grpc.Core.SslServerCredentials.html#Grpc_Core_SslServerCredentials__ctor_
- commentId: Overload:Grpc.Core.SslServerCredentials.#ctor
- fullName: Grpc.Core.SslServerCredentials.SslServerCredentials
- nameWithType: SslServerCredentials.SslServerCredentials
- - uid: Grpc.Core.SslServerCredentials.ForceClientAuthentication
- name: ForceClientAuthentication
- href: api/Grpc.Core.SslServerCredentials.html#Grpc_Core_SslServerCredentials_ForceClientAuthentication
- commentId: P:Grpc.Core.SslServerCredentials.ForceClientAuthentication
- fullName: Grpc.Core.SslServerCredentials.ForceClientAuthentication
- nameWithType: SslServerCredentials.ForceClientAuthentication
- - uid: Grpc.Core.SslServerCredentials.ForceClientAuthentication*
- name: ForceClientAuthentication
- href: api/Grpc.Core.SslServerCredentials.html#Grpc_Core_SslServerCredentials_ForceClientAuthentication_
- commentId: Overload:Grpc.Core.SslServerCredentials.ForceClientAuthentication
- fullName: Grpc.Core.SslServerCredentials.ForceClientAuthentication
- nameWithType: SslServerCredentials.ForceClientAuthentication
- - uid: Grpc.Core.SslServerCredentials.KeyCertificatePairs
- name: KeyCertificatePairs
- href: api/Grpc.Core.SslServerCredentials.html#Grpc_Core_SslServerCredentials_KeyCertificatePairs
- commentId: P:Grpc.Core.SslServerCredentials.KeyCertificatePairs
- fullName: Grpc.Core.SslServerCredentials.KeyCertificatePairs
- nameWithType: SslServerCredentials.KeyCertificatePairs
- - uid: Grpc.Core.SslServerCredentials.KeyCertificatePairs*
- name: KeyCertificatePairs
- href: api/Grpc.Core.SslServerCredentials.html#Grpc_Core_SslServerCredentials_KeyCertificatePairs_
- commentId: Overload:Grpc.Core.SslServerCredentials.KeyCertificatePairs
- fullName: Grpc.Core.SslServerCredentials.KeyCertificatePairs
- nameWithType: SslServerCredentials.KeyCertificatePairs
- - uid: Grpc.Core.SslServerCredentials.RootCertificates
- name: RootCertificates
- href: api/Grpc.Core.SslServerCredentials.html#Grpc_Core_SslServerCredentials_RootCertificates
- commentId: P:Grpc.Core.SslServerCredentials.RootCertificates
- fullName: Grpc.Core.SslServerCredentials.RootCertificates
- nameWithType: SslServerCredentials.RootCertificates
- - uid: Grpc.Core.SslServerCredentials.RootCertificates*
- name: RootCertificates
- href: api/Grpc.Core.SslServerCredentials.html#Grpc_Core_SslServerCredentials_RootCertificates_
- commentId: Overload:Grpc.Core.SslServerCredentials.RootCertificates
- fullName: Grpc.Core.SslServerCredentials.RootCertificates
- nameWithType: SslServerCredentials.RootCertificates
- - uid: Grpc.Core.Status
- name: Status
- href: api/Grpc.Core.Status.html
- commentId: T:Grpc.Core.Status
- fullName: Grpc.Core.Status
- nameWithType: Status
- - uid: Grpc.Core.Status.#ctor(Grpc.Core.StatusCode,System.String)
- name: Status(StatusCode, String)
- href: api/Grpc.Core.Status.html#Grpc_Core_Status__ctor_Grpc_Core_StatusCode_System_String_
- commentId: M:Grpc.Core.Status.#ctor(Grpc.Core.StatusCode,System.String)
- fullName: Grpc.Core.Status.Status(Grpc.Core.StatusCode, System.String)
- nameWithType: Status.Status(StatusCode, String)
- - uid: Grpc.Core.Status.#ctor*
- name: Status
- href: api/Grpc.Core.Status.html#Grpc_Core_Status__ctor_
- commentId: Overload:Grpc.Core.Status.#ctor
- fullName: Grpc.Core.Status.Status
- nameWithType: Status.Status
- - uid: Grpc.Core.Status.DefaultCancelled
- name: DefaultCancelled
- href: api/Grpc.Core.Status.html#Grpc_Core_Status_DefaultCancelled
- commentId: F:Grpc.Core.Status.DefaultCancelled
- fullName: Grpc.Core.Status.DefaultCancelled
- nameWithType: Status.DefaultCancelled
- - uid: Grpc.Core.Status.DefaultSuccess
- name: DefaultSuccess
- href: api/Grpc.Core.Status.html#Grpc_Core_Status_DefaultSuccess
- commentId: F:Grpc.Core.Status.DefaultSuccess
- fullName: Grpc.Core.Status.DefaultSuccess
- nameWithType: Status.DefaultSuccess
- - uid: Grpc.Core.Status.Detail
- name: Detail
- href: api/Grpc.Core.Status.html#Grpc_Core_Status_Detail
- commentId: P:Grpc.Core.Status.Detail
- fullName: Grpc.Core.Status.Detail
- nameWithType: Status.Detail
- - uid: Grpc.Core.Status.Detail*
- name: Detail
- href: api/Grpc.Core.Status.html#Grpc_Core_Status_Detail_
- commentId: Overload:Grpc.Core.Status.Detail
- fullName: Grpc.Core.Status.Detail
- nameWithType: Status.Detail
- - uid: Grpc.Core.Status.StatusCode
- name: StatusCode
- href: api/Grpc.Core.Status.html#Grpc_Core_Status_StatusCode
- commentId: P:Grpc.Core.Status.StatusCode
- fullName: Grpc.Core.Status.StatusCode
- nameWithType: Status.StatusCode
- - uid: Grpc.Core.Status.StatusCode*
- name: StatusCode
- href: api/Grpc.Core.Status.html#Grpc_Core_Status_StatusCode_
- commentId: Overload:Grpc.Core.Status.StatusCode
- fullName: Grpc.Core.Status.StatusCode
- nameWithType: Status.StatusCode
- - uid: Grpc.Core.Status.ToString
- name: ToString()
- href: api/Grpc.Core.Status.html#Grpc_Core_Status_ToString
- commentId: M:Grpc.Core.Status.ToString
- fullName: Grpc.Core.Status.ToString()
- nameWithType: Status.ToString()
- - uid: Grpc.Core.Status.ToString*
- name: ToString
- href: api/Grpc.Core.Status.html#Grpc_Core_Status_ToString_
- commentId: Overload:Grpc.Core.Status.ToString
- fullName: Grpc.Core.Status.ToString
- nameWithType: Status.ToString
- - uid: Grpc.Core.StatusCode
- name: StatusCode
- href: api/Grpc.Core.StatusCode.html
- commentId: T:Grpc.Core.StatusCode
- fullName: Grpc.Core.StatusCode
- nameWithType: StatusCode
- - uid: Grpc.Core.StatusCode.Aborted
- name: Aborted
- href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_Aborted
- commentId: F:Grpc.Core.StatusCode.Aborted
- fullName: Grpc.Core.StatusCode.Aborted
- nameWithType: StatusCode.Aborted
- - uid: Grpc.Core.StatusCode.AlreadyExists
- name: AlreadyExists
- href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_AlreadyExists
- commentId: F:Grpc.Core.StatusCode.AlreadyExists
- fullName: Grpc.Core.StatusCode.AlreadyExists
- nameWithType: StatusCode.AlreadyExists
- - uid: Grpc.Core.StatusCode.Cancelled
- name: Cancelled
- href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_Cancelled
- commentId: F:Grpc.Core.StatusCode.Cancelled
- fullName: Grpc.Core.StatusCode.Cancelled
- nameWithType: StatusCode.Cancelled
- - uid: Grpc.Core.StatusCode.DataLoss
- name: DataLoss
- href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_DataLoss
- commentId: F:Grpc.Core.StatusCode.DataLoss
- fullName: Grpc.Core.StatusCode.DataLoss
- nameWithType: StatusCode.DataLoss
- - uid: Grpc.Core.StatusCode.DeadlineExceeded
- name: DeadlineExceeded
- href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_DeadlineExceeded
- commentId: F:Grpc.Core.StatusCode.DeadlineExceeded
- fullName: Grpc.Core.StatusCode.DeadlineExceeded
- nameWithType: StatusCode.DeadlineExceeded
- - uid: Grpc.Core.StatusCode.FailedPrecondition
- name: FailedPrecondition
- href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_FailedPrecondition
- commentId: F:Grpc.Core.StatusCode.FailedPrecondition
- fullName: Grpc.Core.StatusCode.FailedPrecondition
- nameWithType: StatusCode.FailedPrecondition
- - uid: Grpc.Core.StatusCode.Internal
- name: Internal
- href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_Internal
- commentId: F:Grpc.Core.StatusCode.Internal
- fullName: Grpc.Core.StatusCode.Internal
- nameWithType: StatusCode.Internal
- - uid: Grpc.Core.StatusCode.InvalidArgument
- name: InvalidArgument
- href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_InvalidArgument
- commentId: F:Grpc.Core.StatusCode.InvalidArgument
- fullName: Grpc.Core.StatusCode.InvalidArgument
- nameWithType: StatusCode.InvalidArgument
- - uid: Grpc.Core.StatusCode.NotFound
- name: NotFound
- href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_NotFound
- commentId: F:Grpc.Core.StatusCode.NotFound
- fullName: Grpc.Core.StatusCode.NotFound
- nameWithType: StatusCode.NotFound
- - uid: Grpc.Core.StatusCode.OK
- name: OK
- href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_OK
- commentId: F:Grpc.Core.StatusCode.OK
- fullName: Grpc.Core.StatusCode.OK
- nameWithType: StatusCode.OK
- - uid: Grpc.Core.StatusCode.OutOfRange
- name: OutOfRange
- href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_OutOfRange
- commentId: F:Grpc.Core.StatusCode.OutOfRange
- fullName: Grpc.Core.StatusCode.OutOfRange
- nameWithType: StatusCode.OutOfRange
- - uid: Grpc.Core.StatusCode.PermissionDenied
- name: PermissionDenied
- href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_PermissionDenied
- commentId: F:Grpc.Core.StatusCode.PermissionDenied
- fullName: Grpc.Core.StatusCode.PermissionDenied
- nameWithType: StatusCode.PermissionDenied
- - uid: Grpc.Core.StatusCode.ResourceExhausted
- name: ResourceExhausted
- href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_ResourceExhausted
- commentId: F:Grpc.Core.StatusCode.ResourceExhausted
- fullName: Grpc.Core.StatusCode.ResourceExhausted
- nameWithType: StatusCode.ResourceExhausted
- - uid: Grpc.Core.StatusCode.Unauthenticated
- name: Unauthenticated
- href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_Unauthenticated
- commentId: F:Grpc.Core.StatusCode.Unauthenticated
- fullName: Grpc.Core.StatusCode.Unauthenticated
- nameWithType: StatusCode.Unauthenticated
- - uid: Grpc.Core.StatusCode.Unavailable
- name: Unavailable
- href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_Unavailable
- commentId: F:Grpc.Core.StatusCode.Unavailable
- fullName: Grpc.Core.StatusCode.Unavailable
- nameWithType: StatusCode.Unavailable
- - uid: Grpc.Core.StatusCode.Unimplemented
- name: Unimplemented
- href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_Unimplemented
- commentId: F:Grpc.Core.StatusCode.Unimplemented
- fullName: Grpc.Core.StatusCode.Unimplemented
- nameWithType: StatusCode.Unimplemented
- - uid: Grpc.Core.StatusCode.Unknown
- name: Unknown
- href: api/Grpc.Core.StatusCode.html#Grpc_Core_StatusCode_Unknown
- commentId: F:Grpc.Core.StatusCode.Unknown
- fullName: Grpc.Core.StatusCode.Unknown
- nameWithType: StatusCode.Unknown
- - uid: Grpc.Core.Testing
- name: Grpc.Core.Testing
- href: api/Grpc.Core.Testing.html
- commentId: N:Grpc.Core.Testing
- fullName: Grpc.Core.Testing
- nameWithType: Grpc.Core.Testing
- - uid: Grpc.Core.Testing.TestCalls
- name: TestCalls
- href: api/Grpc.Core.Testing.TestCalls.html
- commentId: T:Grpc.Core.Testing.TestCalls
- fullName: Grpc.Core.Testing.TestCalls
- nameWithType: TestCalls
- - uid: Grpc.Core.Testing.TestCalls.AsyncClientStreamingCall*
- name: AsyncClientStreamingCall
- href: api/Grpc.Core.Testing.TestCalls.html#Grpc_Core_Testing_TestCalls_AsyncClientStreamingCall_
- commentId: Overload:Grpc.Core.Testing.TestCalls.AsyncClientStreamingCall
- fullName: Grpc.Core.Testing.TestCalls.AsyncClientStreamingCall
- nameWithType: TestCalls.AsyncClientStreamingCall
- - 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)
- name: AsyncClientStreamingCall<TRequest, TResponse>(IClientStreamWriter<TRequest>, Task<TResponse>, Task<Metadata>, Func<Status>, Func<Metadata>, Action)
- 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_
- 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)
- name.vb: AsyncClientStreamingCall(Of TRequest, TResponse)(IClientStreamWriter(Of TRequest), Task(Of TResponse), Task(Of Metadata), Func(Of Status), Func(Of Metadata), Action)
- 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)
- 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)
- nameWithType: TestCalls.AsyncClientStreamingCall<TRequest, TResponse>(IClientStreamWriter<TRequest>, Task<TResponse>, Task<Metadata>, Func<Status>, Func<Metadata>, Action)
- nameWithType.vb: TestCalls.AsyncClientStreamingCall(Of TRequest, TResponse)(IClientStreamWriter(Of TRequest), Task(Of TResponse), Task(Of Metadata), Func(Of Status), Func(Of Metadata), Action)
- - uid: Grpc.Core.Testing.TestCalls.AsyncDuplexStreamingCall*
- name: AsyncDuplexStreamingCall
- href: api/Grpc.Core.Testing.TestCalls.html#Grpc_Core_Testing_TestCalls_AsyncDuplexStreamingCall_
- commentId: Overload:Grpc.Core.Testing.TestCalls.AsyncDuplexStreamingCall
- fullName: Grpc.Core.Testing.TestCalls.AsyncDuplexStreamingCall
- nameWithType: TestCalls.AsyncDuplexStreamingCall
- - 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)
- name: AsyncDuplexStreamingCall<TResponse, TRequest>(IClientStreamWriter<TRequest>, IAsyncStreamReader<TResponse>, Task<Metadata>, Func<Status>, Func<Metadata>, Action)
- 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_
- 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)
- name.vb: AsyncDuplexStreamingCall(Of TResponse, TRequest)(IClientStreamWriter(Of TRequest), IAsyncStreamReader(Of TResponse), Task(Of Metadata), Func(Of Status), Func(Of Metadata), Action)
- 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)
- 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)
- nameWithType: TestCalls.AsyncDuplexStreamingCall<TResponse, TRequest>(IClientStreamWriter<TRequest>, IAsyncStreamReader<TResponse>, Task<Metadata>, Func<Status>, Func<Metadata>, Action)
- nameWithType.vb: TestCalls.AsyncDuplexStreamingCall(Of TResponse, TRequest)(IClientStreamWriter(Of TRequest), IAsyncStreamReader(Of TResponse), Task(Of Metadata), Func(Of Status), Func(Of Metadata), Action)
- - uid: Grpc.Core.Testing.TestCalls.AsyncServerStreamingCall*
- name: AsyncServerStreamingCall
- href: api/Grpc.Core.Testing.TestCalls.html#Grpc_Core_Testing_TestCalls_AsyncServerStreamingCall_
- commentId: Overload:Grpc.Core.Testing.TestCalls.AsyncServerStreamingCall
- fullName: Grpc.Core.Testing.TestCalls.AsyncServerStreamingCall
- nameWithType: TestCalls.AsyncServerStreamingCall
- - 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)
- name: AsyncServerStreamingCall<TResponse>(IAsyncStreamReader<TResponse>, Task<Metadata>, Func<Status>, Func<Metadata>, Action)
- 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_
- 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)
- name.vb: AsyncServerStreamingCall(Of TResponse)(IAsyncStreamReader(Of TResponse), Task(Of Metadata), Func(Of Status), Func(Of Metadata), Action)
- 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)
- 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)
- nameWithType: TestCalls.AsyncServerStreamingCall<TResponse>(IAsyncStreamReader<TResponse>, Task<Metadata>, Func<Status>, Func<Metadata>, Action)
- nameWithType.vb: TestCalls.AsyncServerStreamingCall(Of TResponse)(IAsyncStreamReader(Of TResponse), Task(Of Metadata), Func(Of Status), Func(Of Metadata), Action)
- - uid: Grpc.Core.Testing.TestCalls.AsyncUnaryCall*
- name: AsyncUnaryCall
- href: api/Grpc.Core.Testing.TestCalls.html#Grpc_Core_Testing_TestCalls_AsyncUnaryCall_
- commentId: Overload:Grpc.Core.Testing.TestCalls.AsyncUnaryCall
- fullName: Grpc.Core.Testing.TestCalls.AsyncUnaryCall
- nameWithType: TestCalls.AsyncUnaryCall
- - 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)
- name: AsyncUnaryCall<TResponse>(Task<TResponse>, Task<Metadata>, Func<Status>, Func<Metadata>, Action)
- 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_
- 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)
- name.vb: AsyncUnaryCall(Of TResponse)(Task(Of TResponse), Task(Of Metadata), Func(Of Status), Func(Of Metadata), Action)
- 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)
- 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)
- nameWithType: TestCalls.AsyncUnaryCall<TResponse>(Task<TResponse>, Task<Metadata>, Func<Status>, Func<Metadata>, Action)
- nameWithType.vb: TestCalls.AsyncUnaryCall(Of TResponse)(Task(Of TResponse), Task(Of Metadata), Func(Of Status), Func(Of Metadata), Action)
- - uid: Grpc.Core.UnaryServerMethod`2
- name: UnaryServerMethod<TRequest, TResponse>
- href: api/Grpc.Core.UnaryServerMethod-2.html
- commentId: T:Grpc.Core.UnaryServerMethod`2
- name.vb: UnaryServerMethod(Of TRequest, TResponse)
- fullName: Grpc.Core.UnaryServerMethod<TRequest, TResponse>
- fullName.vb: Grpc.Core.UnaryServerMethod(Of TRequest, TResponse)
- nameWithType: UnaryServerMethod<TRequest, TResponse>
- nameWithType.vb: UnaryServerMethod(Of TRequest, TResponse)
- - uid: Grpc.Core.Utils
- name: Grpc.Core.Utils
- href: api/Grpc.Core.Utils.html
- commentId: N:Grpc.Core.Utils
- fullName: Grpc.Core.Utils
- nameWithType: Grpc.Core.Utils
- - uid: Grpc.Core.Utils.AsyncStreamExtensions
- name: AsyncStreamExtensions
- href: api/Grpc.Core.Utils.AsyncStreamExtensions.html
- commentId: T:Grpc.Core.Utils.AsyncStreamExtensions
- fullName: Grpc.Core.Utils.AsyncStreamExtensions
- nameWithType: AsyncStreamExtensions
- - uid: Grpc.Core.Utils.AsyncStreamExtensions.ForEachAsync*
- name: ForEachAsync
- href: api/Grpc.Core.Utils.AsyncStreamExtensions.html#Grpc_Core_Utils_AsyncStreamExtensions_ForEachAsync_
- commentId: Overload:Grpc.Core.Utils.AsyncStreamExtensions.ForEachAsync
- fullName: Grpc.Core.Utils.AsyncStreamExtensions.ForEachAsync
- nameWithType: AsyncStreamExtensions.ForEachAsync
- - uid: Grpc.Core.Utils.AsyncStreamExtensions.ForEachAsync``1(Grpc.Core.IAsyncStreamReader{``0},System.Func{``0,System.Threading.Tasks.Task})
- name: ForEachAsync<T>(IAsyncStreamReader<T>, Func<T, Task>)
- href: api/Grpc.Core.Utils.AsyncStreamExtensions.html#Grpc_Core_Utils_AsyncStreamExtensions_ForEachAsync__1_Grpc_Core_IAsyncStreamReader___0__System_Func___0_System_Threading_Tasks_Task__
- commentId: M:Grpc.Core.Utils.AsyncStreamExtensions.ForEachAsync``1(Grpc.Core.IAsyncStreamReader{``0},System.Func{``0,System.Threading.Tasks.Task})
- name.vb: ForEachAsync(Of T)(IAsyncStreamReader(Of T), Func(Of T, Task))
- fullName: Grpc.Core.Utils.AsyncStreamExtensions.ForEachAsync<T>(Grpc.Core.IAsyncStreamReader<T>, System.Func<T, System.Threading.Tasks.Task>)
- fullName.vb: Grpc.Core.Utils.AsyncStreamExtensions.ForEachAsync(Of T)(Grpc.Core.IAsyncStreamReader(Of T), System.Func(Of T, System.Threading.Tasks.Task))
- nameWithType: AsyncStreamExtensions.ForEachAsync<T>(IAsyncStreamReader<T>, Func<T, Task>)
- nameWithType.vb: AsyncStreamExtensions.ForEachAsync(Of T)(IAsyncStreamReader(Of T), Func(Of T, Task))
- - uid: Grpc.Core.Utils.AsyncStreamExtensions.ToListAsync*
- name: ToListAsync
- href: api/Grpc.Core.Utils.AsyncStreamExtensions.html#Grpc_Core_Utils_AsyncStreamExtensions_ToListAsync_
- commentId: Overload:Grpc.Core.Utils.AsyncStreamExtensions.ToListAsync
- fullName: Grpc.Core.Utils.AsyncStreamExtensions.ToListAsync
- nameWithType: AsyncStreamExtensions.ToListAsync
- - uid: Grpc.Core.Utils.AsyncStreamExtensions.ToListAsync``1(Grpc.Core.IAsyncStreamReader{``0})
- name: ToListAsync<T>(IAsyncStreamReader<T>)
- href: api/Grpc.Core.Utils.AsyncStreamExtensions.html#Grpc_Core_Utils_AsyncStreamExtensions_ToListAsync__1_Grpc_Core_IAsyncStreamReader___0__
- commentId: M:Grpc.Core.Utils.AsyncStreamExtensions.ToListAsync``1(Grpc.Core.IAsyncStreamReader{``0})
- name.vb: ToListAsync(Of T)(IAsyncStreamReader(Of T))
- fullName: Grpc.Core.Utils.AsyncStreamExtensions.ToListAsync<T>(Grpc.Core.IAsyncStreamReader<T>)
- fullName.vb: Grpc.Core.Utils.AsyncStreamExtensions.ToListAsync(Of T)(Grpc.Core.IAsyncStreamReader(Of T))
- nameWithType: AsyncStreamExtensions.ToListAsync<T>(IAsyncStreamReader<T>)
- nameWithType.vb: AsyncStreamExtensions.ToListAsync(Of T)(IAsyncStreamReader(Of T))
- - uid: Grpc.Core.Utils.AsyncStreamExtensions.WriteAllAsync*
- name: WriteAllAsync
- href: api/Grpc.Core.Utils.AsyncStreamExtensions.html#Grpc_Core_Utils_AsyncStreamExtensions_WriteAllAsync_
- commentId: Overload:Grpc.Core.Utils.AsyncStreamExtensions.WriteAllAsync
- fullName: Grpc.Core.Utils.AsyncStreamExtensions.WriteAllAsync
- nameWithType: AsyncStreamExtensions.WriteAllAsync
- - uid: Grpc.Core.Utils.AsyncStreamExtensions.WriteAllAsync``1(Grpc.Core.IClientStreamWriter{``0},System.Collections.Generic.IEnumerable{``0},System.Boolean)
- name: WriteAllAsync<T>(IClientStreamWriter<T>, IEnumerable<T>, Boolean)
- href: api/Grpc.Core.Utils.AsyncStreamExtensions.html#Grpc_Core_Utils_AsyncStreamExtensions_WriteAllAsync__1_Grpc_Core_IClientStreamWriter___0__System_Collections_Generic_IEnumerable___0__System_Boolean_
- commentId: M:Grpc.Core.Utils.AsyncStreamExtensions.WriteAllAsync``1(Grpc.Core.IClientStreamWriter{``0},System.Collections.Generic.IEnumerable{``0},System.Boolean)
- name.vb: WriteAllAsync(Of T)(IClientStreamWriter(Of T), IEnumerable(Of T), Boolean)
- fullName: Grpc.Core.Utils.AsyncStreamExtensions.WriteAllAsync<T>(Grpc.Core.IClientStreamWriter<T>, System.Collections.Generic.IEnumerable<T>, System.Boolean)
- fullName.vb: Grpc.Core.Utils.AsyncStreamExtensions.WriteAllAsync(Of T)(Grpc.Core.IClientStreamWriter(Of T), System.Collections.Generic.IEnumerable(Of T), System.Boolean)
- nameWithType: AsyncStreamExtensions.WriteAllAsync<T>(IClientStreamWriter<T>, IEnumerable<T>, Boolean)
- nameWithType.vb: AsyncStreamExtensions.WriteAllAsync(Of T)(IClientStreamWriter(Of T), IEnumerable(Of T), Boolean)
- - uid: Grpc.Core.Utils.AsyncStreamExtensions.WriteAllAsync``1(Grpc.Core.IServerStreamWriter{``0},System.Collections.Generic.IEnumerable{``0})
- name: WriteAllAsync<T>(IServerStreamWriter<T>, IEnumerable<T>)
- href: api/Grpc.Core.Utils.AsyncStreamExtensions.html#Grpc_Core_Utils_AsyncStreamExtensions_WriteAllAsync__1_Grpc_Core_IServerStreamWriter___0__System_Collections_Generic_IEnumerable___0__
- commentId: M:Grpc.Core.Utils.AsyncStreamExtensions.WriteAllAsync``1(Grpc.Core.IServerStreamWriter{``0},System.Collections.Generic.IEnumerable{``0})
- name.vb: WriteAllAsync(Of T)(IServerStreamWriter(Of T), IEnumerable(Of T))
- fullName: Grpc.Core.Utils.AsyncStreamExtensions.WriteAllAsync<T>(Grpc.Core.IServerStreamWriter<T>, System.Collections.Generic.IEnumerable<T>)
- fullName.vb: Grpc.Core.Utils.AsyncStreamExtensions.WriteAllAsync(Of T)(Grpc.Core.IServerStreamWriter(Of T), System.Collections.Generic.IEnumerable(Of T))
- nameWithType: AsyncStreamExtensions.WriteAllAsync<T>(IServerStreamWriter<T>, IEnumerable<T>)
- nameWithType.vb: AsyncStreamExtensions.WriteAllAsync(Of T)(IServerStreamWriter(Of T), IEnumerable(Of T))
- - uid: Grpc.Core.Utils.BenchmarkUtil
- name: BenchmarkUtil
- href: api/Grpc.Core.Utils.BenchmarkUtil.html
- commentId: T:Grpc.Core.Utils.BenchmarkUtil
- fullName: Grpc.Core.Utils.BenchmarkUtil
- nameWithType: BenchmarkUtil
- - uid: Grpc.Core.Utils.BenchmarkUtil.RunBenchmark(System.Int32,System.Int32,System.Action)
- name: RunBenchmark(Int32, Int32, Action)
- href: api/Grpc.Core.Utils.BenchmarkUtil.html#Grpc_Core_Utils_BenchmarkUtil_RunBenchmark_System_Int32_System_Int32_System_Action_
- commentId: M:Grpc.Core.Utils.BenchmarkUtil.RunBenchmark(System.Int32,System.Int32,System.Action)
- fullName: Grpc.Core.Utils.BenchmarkUtil.RunBenchmark(System.Int32, System.Int32, System.Action)
- nameWithType: BenchmarkUtil.RunBenchmark(Int32, Int32, Action)
- - uid: Grpc.Core.Utils.BenchmarkUtil.RunBenchmark*
- name: RunBenchmark
- href: api/Grpc.Core.Utils.BenchmarkUtil.html#Grpc_Core_Utils_BenchmarkUtil_RunBenchmark_
- commentId: Overload:Grpc.Core.Utils.BenchmarkUtil.RunBenchmark
- fullName: Grpc.Core.Utils.BenchmarkUtil.RunBenchmark
- nameWithType: BenchmarkUtil.RunBenchmark
- - uid: Grpc.Core.Utils.GrpcPreconditions
- name: GrpcPreconditions
- href: api/Grpc.Core.Utils.GrpcPreconditions.html
- commentId: T:Grpc.Core.Utils.GrpcPreconditions
- fullName: Grpc.Core.Utils.GrpcPreconditions
- nameWithType: GrpcPreconditions
- - uid: Grpc.Core.Utils.GrpcPreconditions.CheckArgument(System.Boolean)
- name: CheckArgument(Boolean)
- href: api/Grpc.Core.Utils.GrpcPreconditions.html#Grpc_Core_Utils_GrpcPreconditions_CheckArgument_System_Boolean_
- commentId: M:Grpc.Core.Utils.GrpcPreconditions.CheckArgument(System.Boolean)
- fullName: Grpc.Core.Utils.GrpcPreconditions.CheckArgument(System.Boolean)
- nameWithType: GrpcPreconditions.CheckArgument(Boolean)
- - uid: Grpc.Core.Utils.GrpcPreconditions.CheckArgument(System.Boolean,System.String)
- name: CheckArgument(Boolean, String)
- href: api/Grpc.Core.Utils.GrpcPreconditions.html#Grpc_Core_Utils_GrpcPreconditions_CheckArgument_System_Boolean_System_String_
- commentId: M:Grpc.Core.Utils.GrpcPreconditions.CheckArgument(System.Boolean,System.String)
- fullName: Grpc.Core.Utils.GrpcPreconditions.CheckArgument(System.Boolean, System.String)
- nameWithType: GrpcPreconditions.CheckArgument(Boolean, String)
- - uid: Grpc.Core.Utils.GrpcPreconditions.CheckArgument*
- name: CheckArgument
- href: api/Grpc.Core.Utils.GrpcPreconditions.html#Grpc_Core_Utils_GrpcPreconditions_CheckArgument_
- commentId: Overload:Grpc.Core.Utils.GrpcPreconditions.CheckArgument
- fullName: Grpc.Core.Utils.GrpcPreconditions.CheckArgument
- nameWithType: GrpcPreconditions.CheckArgument
- - uid: Grpc.Core.Utils.GrpcPreconditions.CheckNotNull*
- name: CheckNotNull
- href: api/Grpc.Core.Utils.GrpcPreconditions.html#Grpc_Core_Utils_GrpcPreconditions_CheckNotNull_
- commentId: Overload:Grpc.Core.Utils.GrpcPreconditions.CheckNotNull
- fullName: Grpc.Core.Utils.GrpcPreconditions.CheckNotNull
- nameWithType: GrpcPreconditions.CheckNotNull
- - uid: Grpc.Core.Utils.GrpcPreconditions.CheckNotNull``1(``0)
- name: CheckNotNull<T>(T)
- href: api/Grpc.Core.Utils.GrpcPreconditions.html#Grpc_Core_Utils_GrpcPreconditions_CheckNotNull__1___0_
- commentId: M:Grpc.Core.Utils.GrpcPreconditions.CheckNotNull``1(``0)
- name.vb: CheckNotNull(Of T)(T)
- fullName: Grpc.Core.Utils.GrpcPreconditions.CheckNotNull<T>(T)
- fullName.vb: Grpc.Core.Utils.GrpcPreconditions.CheckNotNull(Of T)(T)
- nameWithType: GrpcPreconditions.CheckNotNull<T>(T)
- nameWithType.vb: GrpcPreconditions.CheckNotNull(Of T)(T)
- - uid: Grpc.Core.Utils.GrpcPreconditions.CheckNotNull``1(``0,System.String)
- name: CheckNotNull<T>(T, String)
- href: api/Grpc.Core.Utils.GrpcPreconditions.html#Grpc_Core_Utils_GrpcPreconditions_CheckNotNull__1___0_System_String_
- commentId: M:Grpc.Core.Utils.GrpcPreconditions.CheckNotNull``1(``0,System.String)
- name.vb: CheckNotNull(Of T)(T, String)
- fullName: Grpc.Core.Utils.GrpcPreconditions.CheckNotNull<T>(T, System.String)
- fullName.vb: Grpc.Core.Utils.GrpcPreconditions.CheckNotNull(Of T)(T, System.String)
- nameWithType: GrpcPreconditions.CheckNotNull<T>(T, String)
- nameWithType.vb: GrpcPreconditions.CheckNotNull(Of T)(T, String)
- - uid: Grpc.Core.Utils.GrpcPreconditions.CheckState(System.Boolean)
- name: CheckState(Boolean)
- href: api/Grpc.Core.Utils.GrpcPreconditions.html#Grpc_Core_Utils_GrpcPreconditions_CheckState_System_Boolean_
- commentId: M:Grpc.Core.Utils.GrpcPreconditions.CheckState(System.Boolean)
- fullName: Grpc.Core.Utils.GrpcPreconditions.CheckState(System.Boolean)
- nameWithType: GrpcPreconditions.CheckState(Boolean)
- - uid: Grpc.Core.Utils.GrpcPreconditions.CheckState(System.Boolean,System.String)
- name: CheckState(Boolean, String)
- href: api/Grpc.Core.Utils.GrpcPreconditions.html#Grpc_Core_Utils_GrpcPreconditions_CheckState_System_Boolean_System_String_
- commentId: M:Grpc.Core.Utils.GrpcPreconditions.CheckState(System.Boolean,System.String)
- fullName: Grpc.Core.Utils.GrpcPreconditions.CheckState(System.Boolean, System.String)
- nameWithType: GrpcPreconditions.CheckState(Boolean, String)
- - uid: Grpc.Core.Utils.GrpcPreconditions.CheckState*
- name: CheckState
- href: api/Grpc.Core.Utils.GrpcPreconditions.html#Grpc_Core_Utils_GrpcPreconditions_CheckState_
- commentId: Overload:Grpc.Core.Utils.GrpcPreconditions.CheckState
- fullName: Grpc.Core.Utils.GrpcPreconditions.CheckState
- nameWithType: GrpcPreconditions.CheckState
- - uid: Grpc.Core.Utils.TaskUtils
- name: TaskUtils
- href: api/Grpc.Core.Utils.TaskUtils.html
- commentId: T:Grpc.Core.Utils.TaskUtils
- fullName: Grpc.Core.Utils.TaskUtils
- nameWithType: TaskUtils
- - uid: Grpc.Core.Utils.TaskUtils.CompletedTask
- name: CompletedTask
- href: api/Grpc.Core.Utils.TaskUtils.html#Grpc_Core_Utils_TaskUtils_CompletedTask
- commentId: P:Grpc.Core.Utils.TaskUtils.CompletedTask
- fullName: Grpc.Core.Utils.TaskUtils.CompletedTask
- nameWithType: TaskUtils.CompletedTask
- - uid: Grpc.Core.Utils.TaskUtils.CompletedTask*
- name: CompletedTask
- href: api/Grpc.Core.Utils.TaskUtils.html#Grpc_Core_Utils_TaskUtils_CompletedTask_
- commentId: Overload:Grpc.Core.Utils.TaskUtils.CompletedTask
- fullName: Grpc.Core.Utils.TaskUtils.CompletedTask
- nameWithType: TaskUtils.CompletedTask
- - uid: Grpc.Core.VersionInfo
- name: VersionInfo
- href: api/Grpc.Core.VersionInfo.html
- commentId: T:Grpc.Core.VersionInfo
- fullName: Grpc.Core.VersionInfo
- nameWithType: VersionInfo
- - uid: Grpc.Core.VersionInfo.CurrentAssemblyFileVersion
- name: CurrentAssemblyFileVersion
- href: api/Grpc.Core.VersionInfo.html#Grpc_Core_VersionInfo_CurrentAssemblyFileVersion
- commentId: F:Grpc.Core.VersionInfo.CurrentAssemblyFileVersion
- fullName: Grpc.Core.VersionInfo.CurrentAssemblyFileVersion
- nameWithType: VersionInfo.CurrentAssemblyFileVersion
- - uid: Grpc.Core.VersionInfo.CurrentAssemblyVersion
- name: CurrentAssemblyVersion
- href: api/Grpc.Core.VersionInfo.html#Grpc_Core_VersionInfo_CurrentAssemblyVersion
- commentId: F:Grpc.Core.VersionInfo.CurrentAssemblyVersion
- fullName: Grpc.Core.VersionInfo.CurrentAssemblyVersion
- nameWithType: VersionInfo.CurrentAssemblyVersion
- - uid: Grpc.Core.VersionInfo.CurrentVersion
- name: CurrentVersion
- href: api/Grpc.Core.VersionInfo.html#Grpc_Core_VersionInfo_CurrentVersion
- commentId: F:Grpc.Core.VersionInfo.CurrentVersion
- fullName: Grpc.Core.VersionInfo.CurrentVersion
- nameWithType: VersionInfo.CurrentVersion
- - uid: Grpc.Core.WriteFlags
- name: WriteFlags
- href: api/Grpc.Core.WriteFlags.html
- commentId: T:Grpc.Core.WriteFlags
- fullName: Grpc.Core.WriteFlags
- nameWithType: WriteFlags
- - uid: Grpc.Core.WriteFlags.BufferHint
- name: BufferHint
- href: api/Grpc.Core.WriteFlags.html#Grpc_Core_WriteFlags_BufferHint
- commentId: F:Grpc.Core.WriteFlags.BufferHint
- fullName: Grpc.Core.WriteFlags.BufferHint
- nameWithType: WriteFlags.BufferHint
- - uid: Grpc.Core.WriteFlags.NoCompress
- name: NoCompress
- href: api/Grpc.Core.WriteFlags.html#Grpc_Core_WriteFlags_NoCompress
- commentId: F:Grpc.Core.WriteFlags.NoCompress
- fullName: Grpc.Core.WriteFlags.NoCompress
- nameWithType: WriteFlags.NoCompress
- - uid: Grpc.Core.WriteOptions
- name: WriteOptions
- href: api/Grpc.Core.WriteOptions.html
- commentId: T:Grpc.Core.WriteOptions
- fullName: Grpc.Core.WriteOptions
- nameWithType: WriteOptions
- - uid: Grpc.Core.WriteOptions.#ctor(Grpc.Core.WriteFlags)
- name: WriteOptions(WriteFlags)
- href: api/Grpc.Core.WriteOptions.html#Grpc_Core_WriteOptions__ctor_Grpc_Core_WriteFlags_
- commentId: M:Grpc.Core.WriteOptions.#ctor(Grpc.Core.WriteFlags)
- fullName: Grpc.Core.WriteOptions.WriteOptions(Grpc.Core.WriteFlags)
- nameWithType: WriteOptions.WriteOptions(WriteFlags)
- - uid: Grpc.Core.WriteOptions.#ctor*
- name: WriteOptions
- href: api/Grpc.Core.WriteOptions.html#Grpc_Core_WriteOptions__ctor_
- commentId: Overload:Grpc.Core.WriteOptions.#ctor
- fullName: Grpc.Core.WriteOptions.WriteOptions
- nameWithType: WriteOptions.WriteOptions
- - uid: Grpc.Core.WriteOptions.Default
- name: Default
- href: api/Grpc.Core.WriteOptions.html#Grpc_Core_WriteOptions_Default
- commentId: F:Grpc.Core.WriteOptions.Default
- fullName: Grpc.Core.WriteOptions.Default
- nameWithType: WriteOptions.Default
- - uid: Grpc.Core.WriteOptions.Flags
- name: Flags
- href: api/Grpc.Core.WriteOptions.html#Grpc_Core_WriteOptions_Flags
- commentId: P:Grpc.Core.WriteOptions.Flags
- fullName: Grpc.Core.WriteOptions.Flags
- nameWithType: WriteOptions.Flags
- - uid: Grpc.Core.WriteOptions.Flags*
- name: Flags
- href: api/Grpc.Core.WriteOptions.html#Grpc_Core_WriteOptions_Flags_
- commentId: Overload:Grpc.Core.WriteOptions.Flags
- fullName: Grpc.Core.WriteOptions.Flags
- nameWithType: WriteOptions.Flags
- - uid: Grpc.Health.V1
- name: Grpc.Health.V1
- href: api/Grpc.Health.V1.html
- commentId: N:Grpc.Health.V1
- fullName: Grpc.Health.V1
- nameWithType: Grpc.Health.V1
- - uid: Grpc.Health.V1.Health
- name: Health
- href: api/Grpc.Health.V1.Health.html
- commentId: T:Grpc.Health.V1.Health
- fullName: Grpc.Health.V1.Health
- nameWithType: Health
- - uid: Grpc.Health.V1.Health.BindService(Grpc.Health.V1.Health.HealthBase)
- name: BindService(Health.HealthBase)
- href: api/Grpc.Health.V1.Health.html#Grpc_Health_V1_Health_BindService_Grpc_Health_V1_Health_HealthBase_
- commentId: M:Grpc.Health.V1.Health.BindService(Grpc.Health.V1.Health.HealthBase)
- fullName: Grpc.Health.V1.Health.BindService(Grpc.Health.V1.Health.HealthBase)
- nameWithType: Health.BindService(Health.HealthBase)
- - uid: Grpc.Health.V1.Health.BindService*
- name: BindService
- href: api/Grpc.Health.V1.Health.html#Grpc_Health_V1_Health_BindService_
- commentId: Overload:Grpc.Health.V1.Health.BindService
- fullName: Grpc.Health.V1.Health.BindService
- nameWithType: Health.BindService
- - uid: Grpc.Health.V1.Health.Descriptor
- name: Descriptor
- href: api/Grpc.Health.V1.Health.html#Grpc_Health_V1_Health_Descriptor
- commentId: P:Grpc.Health.V1.Health.Descriptor
- fullName: Grpc.Health.V1.Health.Descriptor
- nameWithType: Health.Descriptor
- - uid: Grpc.Health.V1.Health.Descriptor*
- name: Descriptor
- href: api/Grpc.Health.V1.Health.html#Grpc_Health_V1_Health_Descriptor_
- commentId: Overload:Grpc.Health.V1.Health.Descriptor
- fullName: Grpc.Health.V1.Health.Descriptor
- nameWithType: Health.Descriptor
- - uid: Grpc.Health.V1.Health.HealthBase
- name: Health.HealthBase
- href: api/Grpc.Health.V1.Health.HealthBase.html
- commentId: T:Grpc.Health.V1.Health.HealthBase
- fullName: Grpc.Health.V1.Health.HealthBase
- nameWithType: Health.HealthBase
- - uid: Grpc.Health.V1.Health.HealthBase.Check(Grpc.Health.V1.HealthCheckRequest,Grpc.Core.ServerCallContext)
- name: Check(HealthCheckRequest, ServerCallContext)
- href: api/Grpc.Health.V1.Health.HealthBase.html#Grpc_Health_V1_Health_HealthBase_Check_Grpc_Health_V1_HealthCheckRequest_Grpc_Core_ServerCallContext_
- commentId: M:Grpc.Health.V1.Health.HealthBase.Check(Grpc.Health.V1.HealthCheckRequest,Grpc.Core.ServerCallContext)
- fullName: Grpc.Health.V1.Health.HealthBase.Check(Grpc.Health.V1.HealthCheckRequest, Grpc.Core.ServerCallContext)
- nameWithType: Health.HealthBase.Check(HealthCheckRequest, ServerCallContext)
- - uid: Grpc.Health.V1.Health.HealthBase.Check*
- name: Check
- href: api/Grpc.Health.V1.Health.HealthBase.html#Grpc_Health_V1_Health_HealthBase_Check_
- commentId: Overload:Grpc.Health.V1.Health.HealthBase.Check
- fullName: Grpc.Health.V1.Health.HealthBase.Check
- nameWithType: Health.HealthBase.Check
- - uid: Grpc.Health.V1.Health.HealthClient
- name: Health.HealthClient
- href: api/Grpc.Health.V1.Health.HealthClient.html
- commentId: T:Grpc.Health.V1.Health.HealthClient
- fullName: Grpc.Health.V1.Health.HealthClient
- nameWithType: Health.HealthClient
- - uid: Grpc.Health.V1.Health.HealthClient.#ctor
- name: HealthClient()
- href: api/Grpc.Health.V1.Health.HealthClient.html#Grpc_Health_V1_Health_HealthClient__ctor
- commentId: M:Grpc.Health.V1.Health.HealthClient.#ctor
- fullName: Grpc.Health.V1.Health.HealthClient.HealthClient()
- nameWithType: Health.HealthClient.HealthClient()
- - uid: Grpc.Health.V1.Health.HealthClient.#ctor(Grpc.Core.CallInvoker)
- name: HealthClient(CallInvoker)
- href: api/Grpc.Health.V1.Health.HealthClient.html#Grpc_Health_V1_Health_HealthClient__ctor_Grpc_Core_CallInvoker_
- commentId: M:Grpc.Health.V1.Health.HealthClient.#ctor(Grpc.Core.CallInvoker)
- fullName: Grpc.Health.V1.Health.HealthClient.HealthClient(Grpc.Core.CallInvoker)
- nameWithType: Health.HealthClient.HealthClient(CallInvoker)
- - uid: Grpc.Health.V1.Health.HealthClient.#ctor(Grpc.Core.Channel)
- name: HealthClient(Channel)
- href: api/Grpc.Health.V1.Health.HealthClient.html#Grpc_Health_V1_Health_HealthClient__ctor_Grpc_Core_Channel_
- commentId: M:Grpc.Health.V1.Health.HealthClient.#ctor(Grpc.Core.Channel)
- fullName: Grpc.Health.V1.Health.HealthClient.HealthClient(Grpc.Core.Channel)
- nameWithType: Health.HealthClient.HealthClient(Channel)
- - uid: Grpc.Health.V1.Health.HealthClient.#ctor(Grpc.Core.ClientBase.ClientBaseConfiguration)
- name: HealthClient(ClientBase.ClientBaseConfiguration)
- href: api/Grpc.Health.V1.Health.HealthClient.html#Grpc_Health_V1_Health_HealthClient__ctor_Grpc_Core_ClientBase_ClientBaseConfiguration_
- commentId: M:Grpc.Health.V1.Health.HealthClient.#ctor(Grpc.Core.ClientBase.ClientBaseConfiguration)
- fullName: Grpc.Health.V1.Health.HealthClient.HealthClient(Grpc.Core.ClientBase.ClientBaseConfiguration)
- nameWithType: Health.HealthClient.HealthClient(ClientBase.ClientBaseConfiguration)
- - uid: Grpc.Health.V1.Health.HealthClient.#ctor*
- name: HealthClient
- href: api/Grpc.Health.V1.Health.HealthClient.html#Grpc_Health_V1_Health_HealthClient__ctor_
- commentId: Overload:Grpc.Health.V1.Health.HealthClient.#ctor
- fullName: Grpc.Health.V1.Health.HealthClient.HealthClient
- nameWithType: Health.HealthClient.HealthClient
- - uid: Grpc.Health.V1.Health.HealthClient.Check(Grpc.Health.V1.HealthCheckRequest,Grpc.Core.CallOptions)
- name: Check(HealthCheckRequest, CallOptions)
- href: api/Grpc.Health.V1.Health.HealthClient.html#Grpc_Health_V1_Health_HealthClient_Check_Grpc_Health_V1_HealthCheckRequest_Grpc_Core_CallOptions_
- commentId: M:Grpc.Health.V1.Health.HealthClient.Check(Grpc.Health.V1.HealthCheckRequest,Grpc.Core.CallOptions)
- fullName: Grpc.Health.V1.Health.HealthClient.Check(Grpc.Health.V1.HealthCheckRequest, Grpc.Core.CallOptions)
- nameWithType: Health.HealthClient.Check(HealthCheckRequest, CallOptions)
- - uid: Grpc.Health.V1.Health.HealthClient.Check(Grpc.Health.V1.HealthCheckRequest,Grpc.Core.Metadata,System.Nullable{System.DateTime},System.Threading.CancellationToken)
- name: Check(HealthCheckRequest, Metadata, Nullable<DateTime>, CancellationToken)
- 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_
- commentId: M:Grpc.Health.V1.Health.HealthClient.Check(Grpc.Health.V1.HealthCheckRequest,Grpc.Core.Metadata,System.Nullable{System.DateTime},System.Threading.CancellationToken)
- name.vb: Check(HealthCheckRequest, Metadata, Nullable(Of DateTime), CancellationToken)
- fullName: Grpc.Health.V1.Health.HealthClient.Check(Grpc.Health.V1.HealthCheckRequest, Grpc.Core.Metadata, System.Nullable<System.DateTime>, System.Threading.CancellationToken)
- fullName.vb: Grpc.Health.V1.Health.HealthClient.Check(Grpc.Health.V1.HealthCheckRequest, Grpc.Core.Metadata, System.Nullable(Of System.DateTime), System.Threading.CancellationToken)
- nameWithType: Health.HealthClient.Check(HealthCheckRequest, Metadata, Nullable<DateTime>, CancellationToken)
- nameWithType.vb: Health.HealthClient.Check(HealthCheckRequest, Metadata, Nullable(Of DateTime), CancellationToken)
- - uid: Grpc.Health.V1.Health.HealthClient.Check*
- name: Check
- href: api/Grpc.Health.V1.Health.HealthClient.html#Grpc_Health_V1_Health_HealthClient_Check_
- commentId: Overload:Grpc.Health.V1.Health.HealthClient.Check
- fullName: Grpc.Health.V1.Health.HealthClient.Check
- nameWithType: Health.HealthClient.Check
- - uid: Grpc.Health.V1.Health.HealthClient.CheckAsync(Grpc.Health.V1.HealthCheckRequest,Grpc.Core.CallOptions)
- name: CheckAsync(HealthCheckRequest, CallOptions)
- href: api/Grpc.Health.V1.Health.HealthClient.html#Grpc_Health_V1_Health_HealthClient_CheckAsync_Grpc_Health_V1_HealthCheckRequest_Grpc_Core_CallOptions_
- commentId: M:Grpc.Health.V1.Health.HealthClient.CheckAsync(Grpc.Health.V1.HealthCheckRequest,Grpc.Core.CallOptions)
- fullName: Grpc.Health.V1.Health.HealthClient.CheckAsync(Grpc.Health.V1.HealthCheckRequest, Grpc.Core.CallOptions)
- nameWithType: Health.HealthClient.CheckAsync(HealthCheckRequest, CallOptions)
- - uid: Grpc.Health.V1.Health.HealthClient.CheckAsync(Grpc.Health.V1.HealthCheckRequest,Grpc.Core.Metadata,System.Nullable{System.DateTime},System.Threading.CancellationToken)
- name: CheckAsync(HealthCheckRequest, Metadata, Nullable<DateTime>, CancellationToken)
- 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_
- commentId: M:Grpc.Health.V1.Health.HealthClient.CheckAsync(Grpc.Health.V1.HealthCheckRequest,Grpc.Core.Metadata,System.Nullable{System.DateTime},System.Threading.CancellationToken)
- name.vb: CheckAsync(HealthCheckRequest, Metadata, Nullable(Of DateTime), CancellationToken)
- fullName: Grpc.Health.V1.Health.HealthClient.CheckAsync(Grpc.Health.V1.HealthCheckRequest, Grpc.Core.Metadata, System.Nullable<System.DateTime>, System.Threading.CancellationToken)
- fullName.vb: Grpc.Health.V1.Health.HealthClient.CheckAsync(Grpc.Health.V1.HealthCheckRequest, Grpc.Core.Metadata, System.Nullable(Of System.DateTime), System.Threading.CancellationToken)
- nameWithType: Health.HealthClient.CheckAsync(HealthCheckRequest, Metadata, Nullable<DateTime>, CancellationToken)
- nameWithType.vb: Health.HealthClient.CheckAsync(HealthCheckRequest, Metadata, Nullable(Of DateTime), CancellationToken)
- - uid: Grpc.Health.V1.Health.HealthClient.CheckAsync*
- name: CheckAsync
- href: api/Grpc.Health.V1.Health.HealthClient.html#Grpc_Health_V1_Health_HealthClient_CheckAsync_
- commentId: Overload:Grpc.Health.V1.Health.HealthClient.CheckAsync
- fullName: Grpc.Health.V1.Health.HealthClient.CheckAsync
- nameWithType: Health.HealthClient.CheckAsync
- - uid: Grpc.Health.V1.Health.HealthClient.NewInstance(Grpc.Core.ClientBase.ClientBaseConfiguration)
- name: NewInstance(ClientBase.ClientBaseConfiguration)
- href: api/Grpc.Health.V1.Health.HealthClient.html#Grpc_Health_V1_Health_HealthClient_NewInstance_Grpc_Core_ClientBase_ClientBaseConfiguration_
- commentId: M:Grpc.Health.V1.Health.HealthClient.NewInstance(Grpc.Core.ClientBase.ClientBaseConfiguration)
- fullName: Grpc.Health.V1.Health.HealthClient.NewInstance(Grpc.Core.ClientBase.ClientBaseConfiguration)
- nameWithType: Health.HealthClient.NewInstance(ClientBase.ClientBaseConfiguration)
- - uid: Grpc.Health.V1.Health.HealthClient.NewInstance*
- name: NewInstance
- href: api/Grpc.Health.V1.Health.HealthClient.html#Grpc_Health_V1_Health_HealthClient_NewInstance_
- commentId: Overload:Grpc.Health.V1.Health.HealthClient.NewInstance
- fullName: Grpc.Health.V1.Health.HealthClient.NewInstance
- nameWithType: Health.HealthClient.NewInstance
- - uid: Grpc.Health.V1.HealthCheckRequest
- name: HealthCheckRequest
- href: api/Grpc.Health.V1.HealthCheckRequest.html
- commentId: T:Grpc.Health.V1.HealthCheckRequest
- fullName: Grpc.Health.V1.HealthCheckRequest
- nameWithType: HealthCheckRequest
- - uid: Grpc.Health.V1.HealthCheckRequest.#ctor
- name: HealthCheckRequest()
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest__ctor
- commentId: M:Grpc.Health.V1.HealthCheckRequest.#ctor
- fullName: Grpc.Health.V1.HealthCheckRequest.HealthCheckRequest()
- nameWithType: HealthCheckRequest.HealthCheckRequest()
- - uid: Grpc.Health.V1.HealthCheckRequest.#ctor(Grpc.Health.V1.HealthCheckRequest)
- name: HealthCheckRequest(HealthCheckRequest)
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest__ctor_Grpc_Health_V1_HealthCheckRequest_
- commentId: M:Grpc.Health.V1.HealthCheckRequest.#ctor(Grpc.Health.V1.HealthCheckRequest)
- fullName: Grpc.Health.V1.HealthCheckRequest.HealthCheckRequest(Grpc.Health.V1.HealthCheckRequest)
- nameWithType: HealthCheckRequest.HealthCheckRequest(HealthCheckRequest)
- - uid: Grpc.Health.V1.HealthCheckRequest.#ctor*
- name: HealthCheckRequest
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest__ctor_
- commentId: Overload:Grpc.Health.V1.HealthCheckRequest.#ctor
- fullName: Grpc.Health.V1.HealthCheckRequest.HealthCheckRequest
- nameWithType: HealthCheckRequest.HealthCheckRequest
- - uid: Grpc.Health.V1.HealthCheckRequest.CalculateSize
- name: CalculateSize()
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_CalculateSize
- commentId: M:Grpc.Health.V1.HealthCheckRequest.CalculateSize
- fullName: Grpc.Health.V1.HealthCheckRequest.CalculateSize()
- nameWithType: HealthCheckRequest.CalculateSize()
- - uid: Grpc.Health.V1.HealthCheckRequest.CalculateSize*
- name: CalculateSize
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_CalculateSize_
- commentId: Overload:Grpc.Health.V1.HealthCheckRequest.CalculateSize
- fullName: Grpc.Health.V1.HealthCheckRequest.CalculateSize
- nameWithType: HealthCheckRequest.CalculateSize
- - uid: Grpc.Health.V1.HealthCheckRequest.Clone
- name: Clone()
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Clone
- commentId: M:Grpc.Health.V1.HealthCheckRequest.Clone
- fullName: Grpc.Health.V1.HealthCheckRequest.Clone()
- nameWithType: HealthCheckRequest.Clone()
- - uid: Grpc.Health.V1.HealthCheckRequest.Clone*
- name: Clone
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Clone_
- commentId: Overload:Grpc.Health.V1.HealthCheckRequest.Clone
- fullName: Grpc.Health.V1.HealthCheckRequest.Clone
- nameWithType: HealthCheckRequest.Clone
- - uid: Grpc.Health.V1.HealthCheckRequest.Descriptor
- name: Descriptor
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Descriptor
- commentId: P:Grpc.Health.V1.HealthCheckRequest.Descriptor
- fullName: Grpc.Health.V1.HealthCheckRequest.Descriptor
- nameWithType: HealthCheckRequest.Descriptor
- - uid: Grpc.Health.V1.HealthCheckRequest.Descriptor*
- name: Descriptor
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Descriptor_
- commentId: Overload:Grpc.Health.V1.HealthCheckRequest.Descriptor
- fullName: Grpc.Health.V1.HealthCheckRequest.Descriptor
- nameWithType: HealthCheckRequest.Descriptor
- - uid: Grpc.Health.V1.HealthCheckRequest.Equals(Grpc.Health.V1.HealthCheckRequest)
- name: Equals(HealthCheckRequest)
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Equals_Grpc_Health_V1_HealthCheckRequest_
- commentId: M:Grpc.Health.V1.HealthCheckRequest.Equals(Grpc.Health.V1.HealthCheckRequest)
- fullName: Grpc.Health.V1.HealthCheckRequest.Equals(Grpc.Health.V1.HealthCheckRequest)
- nameWithType: HealthCheckRequest.Equals(HealthCheckRequest)
- - uid: Grpc.Health.V1.HealthCheckRequest.Equals(System.Object)
- name: Equals(Object)
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Equals_System_Object_
- commentId: M:Grpc.Health.V1.HealthCheckRequest.Equals(System.Object)
- fullName: Grpc.Health.V1.HealthCheckRequest.Equals(System.Object)
- nameWithType: HealthCheckRequest.Equals(Object)
- - uid: Grpc.Health.V1.HealthCheckRequest.Equals*
- name: Equals
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Equals_
- commentId: Overload:Grpc.Health.V1.HealthCheckRequest.Equals
- fullName: Grpc.Health.V1.HealthCheckRequest.Equals
- nameWithType: HealthCheckRequest.Equals
- - uid: Grpc.Health.V1.HealthCheckRequest.GetHashCode
- name: GetHashCode()
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_GetHashCode
- commentId: M:Grpc.Health.V1.HealthCheckRequest.GetHashCode
- fullName: Grpc.Health.V1.HealthCheckRequest.GetHashCode()
- nameWithType: HealthCheckRequest.GetHashCode()
- - uid: Grpc.Health.V1.HealthCheckRequest.GetHashCode*
- name: GetHashCode
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_GetHashCode_
- commentId: Overload:Grpc.Health.V1.HealthCheckRequest.GetHashCode
- fullName: Grpc.Health.V1.HealthCheckRequest.GetHashCode
- nameWithType: HealthCheckRequest.GetHashCode
- - uid: Grpc.Health.V1.HealthCheckRequest.Google#Protobuf#IMessage#Descriptor
- name: IMessage.Descriptor
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Google_Protobuf_IMessage_Descriptor
- commentId: P:Grpc.Health.V1.HealthCheckRequest.Google#Protobuf#IMessage#Descriptor
- name.vb: pb::Google.Protobuf.IMessage.Descriptor
- fullName: Grpc.Health.V1.HealthCheckRequest.Google.Protobuf.IMessage.Descriptor
- fullName.vb: Grpc.Health.V1.HealthCheckRequest.pb::Google.Protobuf.IMessage.Descriptor
- nameWithType: HealthCheckRequest.IMessage.Descriptor
- nameWithType.vb: HealthCheckRequest.pb::Google.Protobuf.IMessage.Descriptor
- - uid: Grpc.Health.V1.HealthCheckRequest.Google#Protobuf#IMessage#Descriptor*
- name: IMessage.Descriptor
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Google_Protobuf_IMessage_Descriptor_
- commentId: Overload:Grpc.Health.V1.HealthCheckRequest.Google#Protobuf#IMessage#Descriptor
- name.vb: pb::Google.Protobuf.IMessage.Descriptor
- fullName: Grpc.Health.V1.HealthCheckRequest.Google.Protobuf.IMessage.Descriptor
- fullName.vb: Grpc.Health.V1.HealthCheckRequest.pb::Google.Protobuf.IMessage.Descriptor
- nameWithType: HealthCheckRequest.IMessage.Descriptor
- nameWithType.vb: HealthCheckRequest.pb::Google.Protobuf.IMessage.Descriptor
- - uid: Grpc.Health.V1.HealthCheckRequest.MergeFrom(Google.Protobuf.CodedInputStream)
- name: MergeFrom(CodedInputStream)
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_MergeFrom_Google_Protobuf_CodedInputStream_
- commentId: M:Grpc.Health.V1.HealthCheckRequest.MergeFrom(Google.Protobuf.CodedInputStream)
- fullName: Grpc.Health.V1.HealthCheckRequest.MergeFrom(Google.Protobuf.CodedInputStream)
- nameWithType: HealthCheckRequest.MergeFrom(CodedInputStream)
- - uid: Grpc.Health.V1.HealthCheckRequest.MergeFrom(Grpc.Health.V1.HealthCheckRequest)
- name: MergeFrom(HealthCheckRequest)
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_MergeFrom_Grpc_Health_V1_HealthCheckRequest_
- commentId: M:Grpc.Health.V1.HealthCheckRequest.MergeFrom(Grpc.Health.V1.HealthCheckRequest)
- fullName: Grpc.Health.V1.HealthCheckRequest.MergeFrom(Grpc.Health.V1.HealthCheckRequest)
- nameWithType: HealthCheckRequest.MergeFrom(HealthCheckRequest)
- - uid: Grpc.Health.V1.HealthCheckRequest.MergeFrom*
- name: MergeFrom
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_MergeFrom_
- commentId: Overload:Grpc.Health.V1.HealthCheckRequest.MergeFrom
- fullName: Grpc.Health.V1.HealthCheckRequest.MergeFrom
- nameWithType: HealthCheckRequest.MergeFrom
- - uid: Grpc.Health.V1.HealthCheckRequest.Parser
- name: Parser
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Parser
- commentId: P:Grpc.Health.V1.HealthCheckRequest.Parser
- fullName: Grpc.Health.V1.HealthCheckRequest.Parser
- nameWithType: HealthCheckRequest.Parser
- - uid: Grpc.Health.V1.HealthCheckRequest.Parser*
- name: Parser
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Parser_
- commentId: Overload:Grpc.Health.V1.HealthCheckRequest.Parser
- fullName: Grpc.Health.V1.HealthCheckRequest.Parser
- nameWithType: HealthCheckRequest.Parser
- - uid: Grpc.Health.V1.HealthCheckRequest.Service
- name: Service
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Service
- commentId: P:Grpc.Health.V1.HealthCheckRequest.Service
- fullName: Grpc.Health.V1.HealthCheckRequest.Service
- nameWithType: HealthCheckRequest.Service
- - uid: Grpc.Health.V1.HealthCheckRequest.Service*
- name: Service
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_Service_
- commentId: Overload:Grpc.Health.V1.HealthCheckRequest.Service
- fullName: Grpc.Health.V1.HealthCheckRequest.Service
- nameWithType: HealthCheckRequest.Service
- - uid: Grpc.Health.V1.HealthCheckRequest.ServiceFieldNumber
- name: ServiceFieldNumber
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_ServiceFieldNumber
- commentId: F:Grpc.Health.V1.HealthCheckRequest.ServiceFieldNumber
- fullName: Grpc.Health.V1.HealthCheckRequest.ServiceFieldNumber
- nameWithType: HealthCheckRequest.ServiceFieldNumber
- - uid: Grpc.Health.V1.HealthCheckRequest.ToString
- name: ToString()
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_ToString
- commentId: M:Grpc.Health.V1.HealthCheckRequest.ToString
- fullName: Grpc.Health.V1.HealthCheckRequest.ToString()
- nameWithType: HealthCheckRequest.ToString()
- - uid: Grpc.Health.V1.HealthCheckRequest.ToString*
- name: ToString
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_ToString_
- commentId: Overload:Grpc.Health.V1.HealthCheckRequest.ToString
- fullName: Grpc.Health.V1.HealthCheckRequest.ToString
- nameWithType: HealthCheckRequest.ToString
- - uid: Grpc.Health.V1.HealthCheckRequest.WriteTo(Google.Protobuf.CodedOutputStream)
- name: WriteTo(CodedOutputStream)
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_WriteTo_Google_Protobuf_CodedOutputStream_
- commentId: M:Grpc.Health.V1.HealthCheckRequest.WriteTo(Google.Protobuf.CodedOutputStream)
- fullName: Grpc.Health.V1.HealthCheckRequest.WriteTo(Google.Protobuf.CodedOutputStream)
- nameWithType: HealthCheckRequest.WriteTo(CodedOutputStream)
- - uid: Grpc.Health.V1.HealthCheckRequest.WriteTo*
- name: WriteTo
- href: api/Grpc.Health.V1.HealthCheckRequest.html#Grpc_Health_V1_HealthCheckRequest_WriteTo_
- commentId: Overload:Grpc.Health.V1.HealthCheckRequest.WriteTo
- fullName: Grpc.Health.V1.HealthCheckRequest.WriteTo
- nameWithType: HealthCheckRequest.WriteTo
- - uid: Grpc.Health.V1.HealthCheckResponse
- name: HealthCheckResponse
- href: api/Grpc.Health.V1.HealthCheckResponse.html
- commentId: T:Grpc.Health.V1.HealthCheckResponse
- fullName: Grpc.Health.V1.HealthCheckResponse
- nameWithType: HealthCheckResponse
- - uid: Grpc.Health.V1.HealthCheckResponse.#ctor
- name: HealthCheckResponse()
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse__ctor
- commentId: M:Grpc.Health.V1.HealthCheckResponse.#ctor
- fullName: Grpc.Health.V1.HealthCheckResponse.HealthCheckResponse()
- nameWithType: HealthCheckResponse.HealthCheckResponse()
- - uid: Grpc.Health.V1.HealthCheckResponse.#ctor(Grpc.Health.V1.HealthCheckResponse)
- name: HealthCheckResponse(HealthCheckResponse)
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse__ctor_Grpc_Health_V1_HealthCheckResponse_
- commentId: M:Grpc.Health.V1.HealthCheckResponse.#ctor(Grpc.Health.V1.HealthCheckResponse)
- fullName: Grpc.Health.V1.HealthCheckResponse.HealthCheckResponse(Grpc.Health.V1.HealthCheckResponse)
- nameWithType: HealthCheckResponse.HealthCheckResponse(HealthCheckResponse)
- - uid: Grpc.Health.V1.HealthCheckResponse.#ctor*
- name: HealthCheckResponse
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse__ctor_
- commentId: Overload:Grpc.Health.V1.HealthCheckResponse.#ctor
- fullName: Grpc.Health.V1.HealthCheckResponse.HealthCheckResponse
- nameWithType: HealthCheckResponse.HealthCheckResponse
- - uid: Grpc.Health.V1.HealthCheckResponse.CalculateSize
- name: CalculateSize()
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_CalculateSize
- commentId: M:Grpc.Health.V1.HealthCheckResponse.CalculateSize
- fullName: Grpc.Health.V1.HealthCheckResponse.CalculateSize()
- nameWithType: HealthCheckResponse.CalculateSize()
- - uid: Grpc.Health.V1.HealthCheckResponse.CalculateSize*
- name: CalculateSize
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_CalculateSize_
- commentId: Overload:Grpc.Health.V1.HealthCheckResponse.CalculateSize
- fullName: Grpc.Health.V1.HealthCheckResponse.CalculateSize
- nameWithType: HealthCheckResponse.CalculateSize
- - uid: Grpc.Health.V1.HealthCheckResponse.Clone
- name: Clone()
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Clone
- commentId: M:Grpc.Health.V1.HealthCheckResponse.Clone
- fullName: Grpc.Health.V1.HealthCheckResponse.Clone()
- nameWithType: HealthCheckResponse.Clone()
- - uid: Grpc.Health.V1.HealthCheckResponse.Clone*
- name: Clone
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Clone_
- commentId: Overload:Grpc.Health.V1.HealthCheckResponse.Clone
- fullName: Grpc.Health.V1.HealthCheckResponse.Clone
- nameWithType: HealthCheckResponse.Clone
- - uid: Grpc.Health.V1.HealthCheckResponse.Descriptor
- name: Descriptor
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Descriptor
- commentId: P:Grpc.Health.V1.HealthCheckResponse.Descriptor
- fullName: Grpc.Health.V1.HealthCheckResponse.Descriptor
- nameWithType: HealthCheckResponse.Descriptor
- - uid: Grpc.Health.V1.HealthCheckResponse.Descriptor*
- name: Descriptor
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Descriptor_
- commentId: Overload:Grpc.Health.V1.HealthCheckResponse.Descriptor
- fullName: Grpc.Health.V1.HealthCheckResponse.Descriptor
- nameWithType: HealthCheckResponse.Descriptor
- - uid: Grpc.Health.V1.HealthCheckResponse.Equals(Grpc.Health.V1.HealthCheckResponse)
- name: Equals(HealthCheckResponse)
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Equals_Grpc_Health_V1_HealthCheckResponse_
- commentId: M:Grpc.Health.V1.HealthCheckResponse.Equals(Grpc.Health.V1.HealthCheckResponse)
- fullName: Grpc.Health.V1.HealthCheckResponse.Equals(Grpc.Health.V1.HealthCheckResponse)
- nameWithType: HealthCheckResponse.Equals(HealthCheckResponse)
- - uid: Grpc.Health.V1.HealthCheckResponse.Equals(System.Object)
- name: Equals(Object)
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Equals_System_Object_
- commentId: M:Grpc.Health.V1.HealthCheckResponse.Equals(System.Object)
- fullName: Grpc.Health.V1.HealthCheckResponse.Equals(System.Object)
- nameWithType: HealthCheckResponse.Equals(Object)
- - uid: Grpc.Health.V1.HealthCheckResponse.Equals*
- name: Equals
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Equals_
- commentId: Overload:Grpc.Health.V1.HealthCheckResponse.Equals
- fullName: Grpc.Health.V1.HealthCheckResponse.Equals
- nameWithType: HealthCheckResponse.Equals
- - uid: Grpc.Health.V1.HealthCheckResponse.GetHashCode
- name: GetHashCode()
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_GetHashCode
- commentId: M:Grpc.Health.V1.HealthCheckResponse.GetHashCode
- fullName: Grpc.Health.V1.HealthCheckResponse.GetHashCode()
- nameWithType: HealthCheckResponse.GetHashCode()
- - uid: Grpc.Health.V1.HealthCheckResponse.GetHashCode*
- name: GetHashCode
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_GetHashCode_
- commentId: Overload:Grpc.Health.V1.HealthCheckResponse.GetHashCode
- fullName: Grpc.Health.V1.HealthCheckResponse.GetHashCode
- nameWithType: HealthCheckResponse.GetHashCode
- - uid: Grpc.Health.V1.HealthCheckResponse.Google#Protobuf#IMessage#Descriptor
- name: IMessage.Descriptor
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Google_Protobuf_IMessage_Descriptor
- commentId: P:Grpc.Health.V1.HealthCheckResponse.Google#Protobuf#IMessage#Descriptor
- name.vb: pb::Google.Protobuf.IMessage.Descriptor
- fullName: Grpc.Health.V1.HealthCheckResponse.Google.Protobuf.IMessage.Descriptor
- fullName.vb: Grpc.Health.V1.HealthCheckResponse.pb::Google.Protobuf.IMessage.Descriptor
- nameWithType: HealthCheckResponse.IMessage.Descriptor
- nameWithType.vb: HealthCheckResponse.pb::Google.Protobuf.IMessage.Descriptor
- - uid: Grpc.Health.V1.HealthCheckResponse.Google#Protobuf#IMessage#Descriptor*
- name: IMessage.Descriptor
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Google_Protobuf_IMessage_Descriptor_
- commentId: Overload:Grpc.Health.V1.HealthCheckResponse.Google#Protobuf#IMessage#Descriptor
- name.vb: pb::Google.Protobuf.IMessage.Descriptor
- fullName: Grpc.Health.V1.HealthCheckResponse.Google.Protobuf.IMessage.Descriptor
- fullName.vb: Grpc.Health.V1.HealthCheckResponse.pb::Google.Protobuf.IMessage.Descriptor
- nameWithType: HealthCheckResponse.IMessage.Descriptor
- nameWithType.vb: HealthCheckResponse.pb::Google.Protobuf.IMessage.Descriptor
- - uid: Grpc.Health.V1.HealthCheckResponse.MergeFrom(Google.Protobuf.CodedInputStream)
- name: MergeFrom(CodedInputStream)
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_MergeFrom_Google_Protobuf_CodedInputStream_
- commentId: M:Grpc.Health.V1.HealthCheckResponse.MergeFrom(Google.Protobuf.CodedInputStream)
- fullName: Grpc.Health.V1.HealthCheckResponse.MergeFrom(Google.Protobuf.CodedInputStream)
- nameWithType: HealthCheckResponse.MergeFrom(CodedInputStream)
- - uid: Grpc.Health.V1.HealthCheckResponse.MergeFrom(Grpc.Health.V1.HealthCheckResponse)
- name: MergeFrom(HealthCheckResponse)
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_MergeFrom_Grpc_Health_V1_HealthCheckResponse_
- commentId: M:Grpc.Health.V1.HealthCheckResponse.MergeFrom(Grpc.Health.V1.HealthCheckResponse)
- fullName: Grpc.Health.V1.HealthCheckResponse.MergeFrom(Grpc.Health.V1.HealthCheckResponse)
- nameWithType: HealthCheckResponse.MergeFrom(HealthCheckResponse)
- - uid: Grpc.Health.V1.HealthCheckResponse.MergeFrom*
- name: MergeFrom
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_MergeFrom_
- commentId: Overload:Grpc.Health.V1.HealthCheckResponse.MergeFrom
- fullName: Grpc.Health.V1.HealthCheckResponse.MergeFrom
- nameWithType: HealthCheckResponse.MergeFrom
- - uid: Grpc.Health.V1.HealthCheckResponse.Parser
- name: Parser
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Parser
- commentId: P:Grpc.Health.V1.HealthCheckResponse.Parser
- fullName: Grpc.Health.V1.HealthCheckResponse.Parser
- nameWithType: HealthCheckResponse.Parser
- - uid: Grpc.Health.V1.HealthCheckResponse.Parser*
- name: Parser
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Parser_
- commentId: Overload:Grpc.Health.V1.HealthCheckResponse.Parser
- fullName: Grpc.Health.V1.HealthCheckResponse.Parser
- nameWithType: HealthCheckResponse.Parser
- - uid: Grpc.Health.V1.HealthCheckResponse.Status
- name: Status
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Status
- commentId: P:Grpc.Health.V1.HealthCheckResponse.Status
- fullName: Grpc.Health.V1.HealthCheckResponse.Status
- nameWithType: HealthCheckResponse.Status
- - uid: Grpc.Health.V1.HealthCheckResponse.Status*
- name: Status
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_Status_
- commentId: Overload:Grpc.Health.V1.HealthCheckResponse.Status
- fullName: Grpc.Health.V1.HealthCheckResponse.Status
- nameWithType: HealthCheckResponse.Status
- - uid: Grpc.Health.V1.HealthCheckResponse.StatusFieldNumber
- name: StatusFieldNumber
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_StatusFieldNumber
- commentId: F:Grpc.Health.V1.HealthCheckResponse.StatusFieldNumber
- fullName: Grpc.Health.V1.HealthCheckResponse.StatusFieldNumber
- nameWithType: HealthCheckResponse.StatusFieldNumber
- - uid: Grpc.Health.V1.HealthCheckResponse.ToString
- name: ToString()
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_ToString
- commentId: M:Grpc.Health.V1.HealthCheckResponse.ToString
- fullName: Grpc.Health.V1.HealthCheckResponse.ToString()
- nameWithType: HealthCheckResponse.ToString()
- - uid: Grpc.Health.V1.HealthCheckResponse.ToString*
- name: ToString
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_ToString_
- commentId: Overload:Grpc.Health.V1.HealthCheckResponse.ToString
- fullName: Grpc.Health.V1.HealthCheckResponse.ToString
- nameWithType: HealthCheckResponse.ToString
- - uid: Grpc.Health.V1.HealthCheckResponse.Types
- name: HealthCheckResponse.Types
- href: api/Grpc.Health.V1.HealthCheckResponse.Types.html
- commentId: T:Grpc.Health.V1.HealthCheckResponse.Types
- fullName: Grpc.Health.V1.HealthCheckResponse.Types
- nameWithType: HealthCheckResponse.Types
- - uid: Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus
- name: HealthCheckResponse.Types.ServingStatus
- href: api/Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.html
- commentId: T:Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus
- fullName: Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus
- nameWithType: HealthCheckResponse.Types.ServingStatus
- - uid: Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.NotServing
- name: NotServing
- href: api/Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.html#Grpc_Health_V1_HealthCheckResponse_Types_ServingStatus_NotServing
- commentId: F:Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.NotServing
- fullName: Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.NotServing
- nameWithType: HealthCheckResponse.Types.ServingStatus.NotServing
- - uid: Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.Serving
- name: Serving
- href: api/Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.html#Grpc_Health_V1_HealthCheckResponse_Types_ServingStatus_Serving
- commentId: F:Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.Serving
- fullName: Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.Serving
- nameWithType: HealthCheckResponse.Types.ServingStatus.Serving
- - uid: Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.Unknown
- name: Unknown
- href: api/Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.html#Grpc_Health_V1_HealthCheckResponse_Types_ServingStatus_Unknown
- commentId: F:Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.Unknown
- fullName: Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus.Unknown
- nameWithType: HealthCheckResponse.Types.ServingStatus.Unknown
- - uid: Grpc.Health.V1.HealthCheckResponse.WriteTo(Google.Protobuf.CodedOutputStream)
- name: WriteTo(CodedOutputStream)
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_WriteTo_Google_Protobuf_CodedOutputStream_
- commentId: M:Grpc.Health.V1.HealthCheckResponse.WriteTo(Google.Protobuf.CodedOutputStream)
- fullName: Grpc.Health.V1.HealthCheckResponse.WriteTo(Google.Protobuf.CodedOutputStream)
- nameWithType: HealthCheckResponse.WriteTo(CodedOutputStream)
- - uid: Grpc.Health.V1.HealthCheckResponse.WriteTo*
- name: WriteTo
- href: api/Grpc.Health.V1.HealthCheckResponse.html#Grpc_Health_V1_HealthCheckResponse_WriteTo_
- commentId: Overload:Grpc.Health.V1.HealthCheckResponse.WriteTo
- fullName: Grpc.Health.V1.HealthCheckResponse.WriteTo
- nameWithType: HealthCheckResponse.WriteTo
- - uid: Grpc.Health.V1.HealthReflection
- name: HealthReflection
- href: api/Grpc.Health.V1.HealthReflection.html
- commentId: T:Grpc.Health.V1.HealthReflection
- fullName: Grpc.Health.V1.HealthReflection
- nameWithType: HealthReflection
- - uid: Grpc.Health.V1.HealthReflection.Descriptor
- name: Descriptor
- href: api/Grpc.Health.V1.HealthReflection.html#Grpc_Health_V1_HealthReflection_Descriptor
- commentId: P:Grpc.Health.V1.HealthReflection.Descriptor
- fullName: Grpc.Health.V1.HealthReflection.Descriptor
- nameWithType: HealthReflection.Descriptor
- - uid: Grpc.Health.V1.HealthReflection.Descriptor*
- name: Descriptor
- href: api/Grpc.Health.V1.HealthReflection.html#Grpc_Health_V1_HealthReflection_Descriptor_
- commentId: Overload:Grpc.Health.V1.HealthReflection.Descriptor
- fullName: Grpc.Health.V1.HealthReflection.Descriptor
- nameWithType: HealthReflection.Descriptor
- - uid: Grpc.HealthCheck
- name: Grpc.HealthCheck
- href: api/Grpc.HealthCheck.html
- commentId: N:Grpc.HealthCheck
- fullName: Grpc.HealthCheck
- nameWithType: Grpc.HealthCheck
- - uid: Grpc.HealthCheck.HealthServiceImpl
- name: HealthServiceImpl
- href: api/Grpc.HealthCheck.HealthServiceImpl.html
- commentId: T:Grpc.HealthCheck.HealthServiceImpl
- fullName: Grpc.HealthCheck.HealthServiceImpl
- nameWithType: HealthServiceImpl
- - uid: Grpc.HealthCheck.HealthServiceImpl.Check(Grpc.Health.V1.HealthCheckRequest,Grpc.Core.ServerCallContext)
- name: Check(HealthCheckRequest, ServerCallContext)
- href: api/Grpc.HealthCheck.HealthServiceImpl.html#Grpc_HealthCheck_HealthServiceImpl_Check_Grpc_Health_V1_HealthCheckRequest_Grpc_Core_ServerCallContext_
- commentId: M:Grpc.HealthCheck.HealthServiceImpl.Check(Grpc.Health.V1.HealthCheckRequest,Grpc.Core.ServerCallContext)
- fullName: Grpc.HealthCheck.HealthServiceImpl.Check(Grpc.Health.V1.HealthCheckRequest, Grpc.Core.ServerCallContext)
- nameWithType: HealthServiceImpl.Check(HealthCheckRequest, ServerCallContext)
- - uid: Grpc.HealthCheck.HealthServiceImpl.Check*
- name: Check
- href: api/Grpc.HealthCheck.HealthServiceImpl.html#Grpc_HealthCheck_HealthServiceImpl_Check_
- commentId: Overload:Grpc.HealthCheck.HealthServiceImpl.Check
- fullName: Grpc.HealthCheck.HealthServiceImpl.Check
- nameWithType: HealthServiceImpl.Check
- - uid: Grpc.HealthCheck.HealthServiceImpl.ClearAll
- name: ClearAll()
- href: api/Grpc.HealthCheck.HealthServiceImpl.html#Grpc_HealthCheck_HealthServiceImpl_ClearAll
- commentId: M:Grpc.HealthCheck.HealthServiceImpl.ClearAll
- fullName: Grpc.HealthCheck.HealthServiceImpl.ClearAll()
- nameWithType: HealthServiceImpl.ClearAll()
- - uid: Grpc.HealthCheck.HealthServiceImpl.ClearAll*
- name: ClearAll
- href: api/Grpc.HealthCheck.HealthServiceImpl.html#Grpc_HealthCheck_HealthServiceImpl_ClearAll_
- commentId: Overload:Grpc.HealthCheck.HealthServiceImpl.ClearAll
- fullName: Grpc.HealthCheck.HealthServiceImpl.ClearAll
- nameWithType: HealthServiceImpl.ClearAll
- - uid: Grpc.HealthCheck.HealthServiceImpl.ClearStatus(System.String)
- name: ClearStatus(String)
- href: api/Grpc.HealthCheck.HealthServiceImpl.html#Grpc_HealthCheck_HealthServiceImpl_ClearStatus_System_String_
- commentId: M:Grpc.HealthCheck.HealthServiceImpl.ClearStatus(System.String)
- fullName: Grpc.HealthCheck.HealthServiceImpl.ClearStatus(System.String)
- nameWithType: HealthServiceImpl.ClearStatus(String)
- - uid: Grpc.HealthCheck.HealthServiceImpl.ClearStatus*
- name: ClearStatus
- href: api/Grpc.HealthCheck.HealthServiceImpl.html#Grpc_HealthCheck_HealthServiceImpl_ClearStatus_
- commentId: Overload:Grpc.HealthCheck.HealthServiceImpl.ClearStatus
- fullName: Grpc.HealthCheck.HealthServiceImpl.ClearStatus
- nameWithType: HealthServiceImpl.ClearStatus
- - uid: Grpc.HealthCheck.HealthServiceImpl.SetStatus(System.String,Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus)
- name: SetStatus(String, HealthCheckResponse.Types.ServingStatus)
- href: api/Grpc.HealthCheck.HealthServiceImpl.html#Grpc_HealthCheck_HealthServiceImpl_SetStatus_System_String_Grpc_Health_V1_HealthCheckResponse_Types_ServingStatus_
- commentId: M:Grpc.HealthCheck.HealthServiceImpl.SetStatus(System.String,Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus)
- fullName: Grpc.HealthCheck.HealthServiceImpl.SetStatus(System.String, Grpc.Health.V1.HealthCheckResponse.Types.ServingStatus)
- nameWithType: HealthServiceImpl.SetStatus(String, HealthCheckResponse.Types.ServingStatus)
- - uid: Grpc.HealthCheck.HealthServiceImpl.SetStatus*
- name: SetStatus
- href: api/Grpc.HealthCheck.HealthServiceImpl.html#Grpc_HealthCheck_HealthServiceImpl_SetStatus_
- commentId: Overload:Grpc.HealthCheck.HealthServiceImpl.SetStatus
- fullName: Grpc.HealthCheck.HealthServiceImpl.SetStatus
- nameWithType: HealthServiceImpl.SetStatus
|