Microsoft.Scripting.Core.xml 789 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Microsoft.Scripting.Core</name>
  5. </assembly>
  6. <members>
  7. <member name="T:System.Dynamic.CallInfo">
  8. <summary>
  9. Describes arguments in the dynamic binding process.
  10. </summary>
  11. <remarks>
  12. ArgumentCount - all inclusive number of arguments.
  13. ArgumentNames - names for those arguments that are named.
  14. Argument names match to the argument values in left to right order
  15. and last name corresponds to the last argument.
  16. Example:
  17. Foo(arg1, arg2, arg3, name1 = arg4, name2 = arg5, name3 = arg6)
  18. will correspond to:
  19. ArgumentCount: 6
  20. ArgumentNames: {"name1", "name2", "name3"}
  21. </remarks>
  22. </member>
  23. <member name="M:System.Dynamic.CallInfo.#ctor(System.Int32,System.String[])">
  24. <summary>
  25. Creates a new PositionalArgumentInfo.
  26. </summary>
  27. <param name="argCount">The number of arguments.</param>
  28. <param name="argNames">The argument names.</param>
  29. <returns>The new CallInfo</returns>
  30. </member>
  31. <member name="M:System.Dynamic.CallInfo.#ctor(System.Int32,System.Collections.Generic.IEnumerable{System.String})">
  32. <summary>
  33. Creates a new CallInfo that represents arguments in the dynamic binding process.
  34. </summary>
  35. <param name="argCount">The number of arguments.</param>
  36. <param name="argNames">The argument names.</param>
  37. <returns>The new CallInfo</returns>
  38. </member>
  39. <member name="M:System.Dynamic.CallInfo.GetHashCode">
  40. <summary>
  41. Serves as a hash function for the current CallInfo.
  42. </summary>
  43. <returns>A hash code for the current CallInfo.</returns>
  44. </member>
  45. <member name="M:System.Dynamic.CallInfo.Equals(System.Object)">
  46. <summary>
  47. Determines whether the specified CallInfo instance is considered equal to the current.
  48. </summary>
  49. <param name="obj">The instance of CallInfo to compare with the current instance.</param>
  50. <returns>true if the specified instance is equal to the current one otherwise, false.</returns>
  51. </member>
  52. <member name="P:System.Dynamic.CallInfo.ArgumentCount">
  53. <summary>
  54. The number of arguments.
  55. </summary>
  56. </member>
  57. <member name="P:System.Dynamic.CallInfo.ArgumentNames">
  58. <summary>
  59. The argument names.
  60. </summary>
  61. </member>
  62. <member name="T:System.Runtime.CompilerServices.CallSiteOps">
  63. <summary>
  64. This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
  65. </summary>
  66. </member>
  67. <member name="M:System.Runtime.CompilerServices.CallSiteOps.CreateMatchmaker``1(System.Runtime.CompilerServices.CallSite{``0})">
  68. <summary>
  69. Creates an instance of a dynamic call site used for cache lookup.
  70. </summary>
  71. <typeparam name="T">The type of the delegate of the <see cref="T:System.Runtime.CompilerServices.CallSite"/>.</typeparam>
  72. <returns>The new call site.</returns>
  73. </member>
  74. <member name="M:System.Runtime.CompilerServices.CallSiteOps.SetNotMatched(System.Runtime.CompilerServices.CallSite)">
  75. <summary>
  76. Checks if a dynamic site requires an update.
  77. </summary>
  78. <param name="site">An instance of the dynamic call site.</param>
  79. <returns>true if rule does not need updating, false otherwise.</returns>
  80. </member>
  81. <member name="M:System.Runtime.CompilerServices.CallSiteOps.GetMatch(System.Runtime.CompilerServices.CallSite)">
  82. <summary>
  83. Checks whether the executed rule matched
  84. </summary>
  85. <param name="site">An instance of the dynamic call site.</param>
  86. <returns>true if rule matched, false otherwise.</returns>
  87. </member>
  88. <member name="M:System.Runtime.CompilerServices.CallSiteOps.ClearMatch(System.Runtime.CompilerServices.CallSite)">
  89. <summary>
  90. Clears the match flag on the matchmaker call site.
  91. </summary>
  92. <param name="site">An instance of the dynamic call site.</param>
  93. </member>
  94. <member name="M:System.Runtime.CompilerServices.CallSiteOps.AddRule``1(System.Runtime.CompilerServices.CallSite{``0},``0)">
  95. <summary>
  96. Adds a rule to the cache maintained on the dynamic call site.
  97. </summary>
  98. <typeparam name="T">The type of the delegate of the <see cref="T:System.Runtime.CompilerServices.CallSite"/>.</typeparam>
  99. <param name="site">An instance of the dynamic call site.</param>
  100. <param name="rule">An instance of the call site rule.</param>
  101. </member>
  102. <member name="M:System.Runtime.CompilerServices.CallSiteOps.UpdateRules``1(System.Runtime.CompilerServices.CallSite{``0},System.Int32)">
  103. <summary>
  104. Updates rules in the cache.
  105. </summary>
  106. <typeparam name="T">The type of the delegate of the <see cref="T:System.Runtime.CompilerServices.CallSite"/>.</typeparam>
  107. <param name="this">An instance of the dynamic call site.</param>
  108. <param name="matched">The matched rule index.</param>
  109. </member>
  110. <member name="M:System.Runtime.CompilerServices.CallSiteOps.GetRules``1(System.Runtime.CompilerServices.CallSite{``0})">
  111. <summary>
  112. Gets the dynamic binding rules from the call site.
  113. </summary>
  114. <typeparam name="T">The type of the delegate of the <see cref="T:System.Runtime.CompilerServices.CallSite"/>.</typeparam>
  115. <param name="site">An instance of the dynamic call site.</param>
  116. <returns>An array of dynamic binding rules.</returns>
  117. </member>
  118. <member name="M:System.Runtime.CompilerServices.CallSiteOps.GetRuleCache``1(System.Runtime.CompilerServices.CallSite{``0})">
  119. <summary>
  120. Retrieves binding rule cache.
  121. </summary>
  122. <typeparam name="T">The type of the delegate of the <see cref="T:System.Runtime.CompilerServices.CallSite"/>.</typeparam>
  123. <param name="site">An instance of the dynamic call site.</param>
  124. <returns>The cache.</returns>
  125. </member>
  126. <member name="M:System.Runtime.CompilerServices.CallSiteOps.MoveRule``1(System.Runtime.CompilerServices.RuleCache{``0},``0,System.Int32)">
  127. <summary>
  128. Moves the binding rule within the cache.
  129. </summary>
  130. <typeparam name="T">The type of the delegate of the <see cref="T:System.Runtime.CompilerServices.CallSite"/>.</typeparam>
  131. <param name="cache">The call site rule cache.</param>
  132. <param name="rule">An instance of the call site rule.</param>
  133. <param name="i">An index of the call site rule.</param>
  134. </member>
  135. <member name="M:System.Runtime.CompilerServices.CallSiteOps.GetCachedRules``1(System.Runtime.CompilerServices.RuleCache{``0})">
  136. <summary>
  137. Searches the dynamic rule cache for rules applicable to the dynamic operation.
  138. </summary>
  139. <typeparam name="T">The type of the delegate of the <see cref="T:System.Runtime.CompilerServices.CallSite"/>.</typeparam>
  140. <param name="cache">The cache.</param>
  141. <returns>The collection of applicable rules.</returns>
  142. </member>
  143. <member name="M:System.Runtime.CompilerServices.CallSiteOps.Bind``1(System.Runtime.CompilerServices.CallSiteBinder,System.Runtime.CompilerServices.CallSite{``0},System.Object[])">
  144. <summary>
  145. Updates the call site target with a new rule based on the arguments.
  146. </summary>
  147. <typeparam name="T">The type of the delegate of the <see cref="T:System.Runtime.CompilerServices.CallSite"/>.</typeparam>
  148. <param name="binder">The call site binder.</param>
  149. <param name="site">An instance of the dynamic call site.</param>
  150. <param name="args">Arguments to the call site.</param>
  151. <returns>The new call site target.</returns>
  152. </member>
  153. <member name="T:System.Dynamic.IInvokeOnGetBinder">
  154. <summary>
  155. Represents information about a dynamic get member operation, indicating
  156. if the get member should invoke properties when performing the get.
  157. </summary>
  158. </member>
  159. <member name="P:System.Dynamic.IInvokeOnGetBinder.InvokeOnGet">
  160. <summary>
  161. Gets the value indicating if this GetMember should invoke properties
  162. when performing the get. The default value when this interface is not present
  163. is true.
  164. </summary>
  165. <remarks>
  166. This property is used by some languages to get a better COM interop experience.
  167. When the value is set to false, the dynamic COM object won't invoke the object
  168. but will instead bind to the name, and return an object that can be invoked or
  169. indexed later. This is useful for indexed properties and languages that don't
  170. produce InvokeMember call sites.
  171. </remarks>
  172. </member>
  173. <member name="T:System.Dynamic.InvokeMemberBinder">
  174. <summary>
  175. Represents the invoke member dynamic operation at the call site,
  176. providing the binding semantic and the details about the operation.
  177. </summary>
  178. </member>
  179. <member name="T:System.Dynamic.DynamicMetaObjectBinder">
  180. <summary>
  181. The dynamic call site binder that participates in the <see cref="T:System.Dynamic.DynamicMetaObject"/> binding protocol.
  182. </summary>
  183. <remarks>
  184. The <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"/> performs the binding of the dynamic operation using the runtime values
  185. as input. On the other hand, the <see cref="T:System.Dynamic.DynamicMetaObjectBinder"/> participates in the <see cref="T:System.Dynamic.DynamicMetaObject"/>
  186. binding protocol.
  187. </remarks>
  188. </member>
  189. <member name="T:System.Runtime.CompilerServices.CallSiteBinder">
  190. <summary>
  191. Class responsible for runtime binding of the dynamic operations on the dynamic call site.
  192. </summary>
  193. </member>
  194. <member name="F:System.Runtime.CompilerServices.CallSiteBinder.Cache">
  195. <summary>
  196. The Level 2 cache - all rules produced for the same binder.
  197. </summary>
  198. </member>
  199. <member name="M:System.Runtime.CompilerServices.CallSiteBinder.#ctor">
  200. <summary>
  201. Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"/> class.
  202. </summary>
  203. </member>
  204. <member name="M:System.Runtime.CompilerServices.CallSiteBinder.Bind(System.Object[],System.Collections.ObjectModel.ReadOnlyCollection{Microsoft.Scripting.Ast.ParameterExpression},Microsoft.Scripting.Ast.LabelTarget)">
  205. <summary>
  206. Performs the runtime binding of the dynamic operation on a set of arguments.
  207. </summary>
  208. <param name="args">An array of arguments to the dynamic operation.</param>
  209. <param name="parameters">The array of <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> instances that represent the parameters of the call site in the binding process.</param>
  210. <param name="returnLabel">A LabelTarget used to return the result of the dynamic binding.</param>
  211. <returns>
  212. An Expression that performs tests on the dynamic operation arguments, and
  213. performs the dynamic operation if hte tests are valid. If the tests fail on
  214. subsequent occurrences of the dynamic operation, Bind will be called again
  215. to produce a new <see cref="T:Microsoft.Scripting.Ast.Expression"/> for the new argument types.
  216. </returns>
  217. </member>
  218. <member name="M:System.Runtime.CompilerServices.CallSiteBinder.BindDelegate``1(System.Runtime.CompilerServices.CallSite{``0},System.Object[])">
  219. <summary>
  220. Provides low-level runtime binding support. Classes can override this and provide a direct
  221. delegate for the implementation of rule. This can enable saving rules to disk, having
  222. specialized rules available at runtime, or providing a different caching policy.
  223. </summary>
  224. <typeparam name="T">The target type of the CallSite.</typeparam>
  225. <param name="site">The CallSite the bind is being performed for.</param>
  226. <param name="args">The arguments for the binder.</param>
  227. <returns>A new delegate which replaces the CallSite Target.</returns>
  228. </member>
  229. <member name="M:System.Runtime.CompilerServices.CallSiteBinder.CacheTarget``1(``0)">
  230. <summary>
  231. Adds a target to the cache of known targets. The cached targets will
  232. be scanned before calling BindDelegate to produce the new rule.
  233. </summary>
  234. <typeparam name="T">The type of target being added.</typeparam>
  235. <param name="target">The target delegate to be added to the cache.</param>
  236. </member>
  237. <member name="P:System.Runtime.CompilerServices.CallSiteBinder.UpdateLabel">
  238. <summary>
  239. Gets a label that can be used to cause the binding to be updated. It
  240. indicates that the expression's binding is no longer valid.
  241. This is typically used when the "version" of a dynamic object has
  242. changed.
  243. </summary>
  244. </member>
  245. <member name="M:System.Dynamic.DynamicMetaObjectBinder.#ctor">
  246. <summary>
  247. Initializes a new instance of the <see cref="T:System.Dynamic.DynamicMetaObjectBinder"/> class.
  248. </summary>
  249. </member>
  250. <member name="M:System.Dynamic.DynamicMetaObjectBinder.Bind(System.Object[],System.Collections.ObjectModel.ReadOnlyCollection{Microsoft.Scripting.Ast.ParameterExpression},Microsoft.Scripting.Ast.LabelTarget)">
  251. <summary>
  252. Performs the runtime binding of the dynamic operation on a set of arguments.
  253. </summary>
  254. <param name="args">An array of arguments to the dynamic operation.</param>
  255. <param name="parameters">The array of <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> instances that represent the parameters of the call site in the binding process.</param>
  256. <param name="returnLabel">A LabelTarget used to return the result of the dynamic binding.</param>
  257. <returns>
  258. An Expression that performs tests on the dynamic operation arguments, and
  259. performs the dynamic operation if the tests are valid. If the tests fail on
  260. subsequent occurrences of the dynamic operation, Bind will be called again
  261. to produce a new <see cref="T:Microsoft.Scripting.Ast.Expression"/> for the new argument types.
  262. </returns>
  263. </member>
  264. <member name="M:System.Dynamic.DynamicMetaObjectBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
  265. <summary>
  266. When overridden in the derived class, performs the binding of the dynamic operation.
  267. </summary>
  268. <param name="target">The target of the dynamic operation.</param>
  269. <param name="args">An array of arguments of the dynamic operation.</param>
  270. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  271. </member>
  272. <member name="M:System.Dynamic.DynamicMetaObjectBinder.GetUpdateExpression(System.Type)">
  273. <summary>
  274. Gets an expression that will cause the binding to be updated. It
  275. indicates that the expression's binding is no longer valid.
  276. This is typically used when the "version" of a dynamic object has
  277. changed.
  278. </summary>
  279. <param name="type">The <see cref="P:Microsoft.Scripting.Ast.Expression.Type">Type</see> property of the resulting expression; any type is allowed.</param>
  280. <returns>The update expression.</returns>
  281. </member>
  282. <member name="M:System.Dynamic.DynamicMetaObjectBinder.Defer(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
  283. <summary>
  284. Defers the binding of the operation until later time when the runtime values of all dynamic operation arguments have been computed.
  285. </summary>
  286. <param name="target">The target of the dynamic operation.</param>
  287. <param name="args">An array of arguments of the dynamic operation.</param>
  288. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  289. </member>
  290. <member name="M:System.Dynamic.DynamicMetaObjectBinder.Defer(System.Dynamic.DynamicMetaObject[])">
  291. <summary>
  292. Defers the binding of the operation until later time when the runtime values of all dynamic operation arguments have been computed.
  293. </summary>
  294. <param name="args">An array of arguments of the dynamic operation.</param>
  295. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  296. </member>
  297. <member name="P:System.Dynamic.DynamicMetaObjectBinder.ReturnType">
  298. <summary>
  299. The result type of the operation.
  300. </summary>
  301. </member>
  302. <member name="M:System.Dynamic.InvokeMemberBinder.#ctor(System.String,System.Boolean,System.Dynamic.CallInfo)">
  303. <summary>
  304. Initializes a new instance of the <see cref="T:System.Dynamic.InvokeMemberBinder"/>.
  305. </summary>
  306. <param name="name">The name of the member to invoke.</param>
  307. <param name="ignoreCase">true if the name should be matched ignoring case; false otherwise.</param>
  308. <param name="callInfo">The signature of the arguments at the call site.</param>
  309. </member>
  310. <member name="M:System.Dynamic.InvokeMemberBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
  311. <summary>
  312. Performs the binding of the dynamic invoke member operation.
  313. </summary>
  314. <param name="target">The target of the dynamic invoke member operation.</param>
  315. <param name="args">An array of arguments of the dynamic invoke member operation.</param>
  316. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  317. </member>
  318. <member name="M:System.Dynamic.InvokeMemberBinder.FallbackInvokeMember(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
  319. <summary>
  320. Performs the binding of the dynamic invoke member operation if the target dynamic object cannot bind.
  321. </summary>
  322. <param name="target">The target of the dynamic invoke member operation.</param>
  323. <param name="args">The arguments of the dynamic invoke member operation.</param>
  324. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  325. </member>
  326. <member name="M:System.Dynamic.InvokeMemberBinder.FallbackInvokeMember(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)">
  327. <summary>
  328. When overridden in the derived class, performs the binding of the dynamic invoke member operation if the target dynamic object cannot bind.
  329. </summary>
  330. <param name="target">The target of the dynamic invoke member operation.</param>
  331. <param name="args">The arguments of the dynamic invoke member operation.</param>
  332. <param name="errorSuggestion">The binding result to use if binding fails, or null.</param>
  333. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  334. </member>
  335. <member name="M:System.Dynamic.InvokeMemberBinder.FallbackInvoke(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)">
  336. <summary>
  337. When overridden in the derived class, performs the binding of the dynamic invoke operation if the target dynamic object cannot bind.
  338. </summary>
  339. <param name="target">The target of the dynamic invoke operation.</param>
  340. <param name="args">The arguments of the dynamic invoke operation.</param>
  341. <param name="errorSuggestion">The binding result to use if binding fails, or null.</param>
  342. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  343. <remarks>
  344. This method is called by the target when the target implements the invoke member operation
  345. as a sequence of get member, and invoke, to let the <see cref="T:System.Dynamic.DynamicMetaObject"/>
  346. request the binding of the invoke operation only.
  347. </remarks>
  348. </member>
  349. <member name="P:System.Dynamic.InvokeMemberBinder.ReturnType">
  350. <summary>
  351. The result type of the operation.
  352. </summary>
  353. </member>
  354. <member name="P:System.Dynamic.InvokeMemberBinder.Name">
  355. <summary>
  356. Gets the name of the member to invoke.
  357. </summary>
  358. </member>
  359. <member name="P:System.Dynamic.InvokeMemberBinder.IgnoreCase">
  360. <summary>
  361. Gets the value indicating if the string comparison should ignore the case of the member name.
  362. </summary>
  363. </member>
  364. <member name="P:System.Dynamic.InvokeMemberBinder.CallInfo">
  365. <summary>
  366. Gets the signature of the arguments at the call site.
  367. </summary>
  368. </member>
  369. <member name="T:System.Dynamic.BinaryOperationBinder">
  370. <summary>
  371. Represents the binary dynamic operation at the call site, providing the binding semantic and the details about the operation.
  372. </summary>
  373. </member>
  374. <member name="M:System.Dynamic.BinaryOperationBinder.#ctor(Microsoft.Scripting.Ast.ExpressionType)">
  375. <summary>
  376. Initializes a new instance of the <see cref="T:System.Dynamic.BinaryOperationBinder"/> class.
  377. </summary>
  378. <param name="operation">The binary operation kind.</param>
  379. </member>
  380. <member name="M:System.Dynamic.BinaryOperationBinder.FallbackBinaryOperation(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)">
  381. <summary>
  382. Performs the binding of the binary dynamic operation if the target dynamic object cannot bind.
  383. </summary>
  384. <param name="target">The target of the dynamic binary operation.</param>
  385. <param name="arg">The right hand side operand of the dynamic binary operation.</param>
  386. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  387. </member>
  388. <member name="M:System.Dynamic.BinaryOperationBinder.FallbackBinaryOperation(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)">
  389. <summary>
  390. When overridden in the derived class, performs the binding of the binary dynamic operation if the target dynamic object cannot bind.
  391. </summary>
  392. <param name="target">The target of the dynamic binary operation.</param>
  393. <param name="arg">The right hand side operand of the dynamic binary operation.</param>
  394. <param name="errorSuggestion">The binding result in case the binding fails, or null.</param>
  395. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  396. </member>
  397. <member name="M:System.Dynamic.BinaryOperationBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
  398. <summary>
  399. Performs the binding of the dynamic binary operation.
  400. </summary>
  401. <param name="target">The target of the dynamic operation.</param>
  402. <param name="args">An array of arguments of the dynamic operation.</param>
  403. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  404. </member>
  405. <member name="P:System.Dynamic.BinaryOperationBinder.ReturnType">
  406. <summary>
  407. The result type of the operation.
  408. </summary>
  409. </member>
  410. <member name="P:System.Dynamic.BinaryOperationBinder.Operation">
  411. <summary>
  412. The binary operation kind.
  413. </summary>
  414. </member>
  415. <member name="T:System.Runtime.CompilerServices.CallSite">
  416. <summary>
  417. A Dynamic Call Site base class. This type is used as a parameter type to the
  418. dynamic site targets. The first parameter of the delegate (T) below must be
  419. of this type.
  420. </summary>
  421. </member>
  422. <member name="F:System.Runtime.CompilerServices.CallSite._binder">
  423. <summary>
  424. The Binder responsible for binding operations at this call site.
  425. This binder is invoked by the UpdateAndExecute below if all Level 0,
  426. Level 1 and Level 2 caches experience cache miss.
  427. </summary>
  428. </member>
  429. <member name="F:System.Runtime.CompilerServices.CallSite._match">
  430. <summary>
  431. used by Matchmaker sites to indicate rule match.
  432. </summary>
  433. </member>
  434. <member name="M:System.Runtime.CompilerServices.CallSite.Create(System.Type,System.Runtime.CompilerServices.CallSiteBinder)">
  435. <summary>
  436. Creates a CallSite with the given delegate type and binder.
  437. </summary>
  438. <param name="delegateType">The CallSite delegate type.</param>
  439. <param name="binder">The CallSite binder.</param>
  440. <returns>The new CallSite.</returns>
  441. </member>
  442. <member name="P:System.Runtime.CompilerServices.CallSite.Binder">
  443. <summary>
  444. Class responsible for binding dynamic operations on the dynamic site.
  445. </summary>
  446. </member>
  447. <member name="T:System.Runtime.CompilerServices.CallSite`1">
  448. <summary>
  449. Dynamic site type.
  450. </summary>
  451. <typeparam name="T">The delegate type.</typeparam>
  452. </member>
  453. <member name="F:System.Runtime.CompilerServices.CallSite`1.Target">
  454. <summary>
  455. The Level 0 cache - a delegate specialized based on the site history.
  456. </summary>
  457. </member>
  458. <member name="F:System.Runtime.CompilerServices.CallSite`1.Rules">
  459. <summary>
  460. The Level 1 cache - a history of the dynamic site.
  461. </summary>
  462. </member>
  463. <member name="M:System.Runtime.CompilerServices.CallSite`1.Create(System.Runtime.CompilerServices.CallSiteBinder)">
  464. <summary>
  465. Creates an instance of the dynamic call site, initialized with the binder responsible for the
  466. runtime binding of the dynamic operations at this call site.
  467. </summary>
  468. <param name="binder">The binder responsible for the runtime binding of the dynamic operations at this call site.</param>
  469. <returns>The new instance of dynamic call site.</returns>
  470. </member>
  471. <member name="M:System.Runtime.CompilerServices.CallSite`1.ClearRuleCache">
  472. <summary>
  473. Clears the rule cache ... used by the call site tests.
  474. </summary>
  475. </member>
  476. <member name="P:System.Runtime.CompilerServices.CallSite`1.Update">
  477. <summary>
  478. The update delegate. Called when the dynamic site experiences cache miss.
  479. </summary>
  480. <returns>The update delegate.</returns>
  481. </member>
  482. <member name="T:System.Runtime.CompilerServices.CallSiteHelpers">
  483. <summary>
  484. Class that contains helper methods for DLR CallSites.
  485. </summary>
  486. </member>
  487. <member name="M:System.Runtime.CompilerServices.CallSiteHelpers.IsInternalFrame(System.Reflection.MethodBase)">
  488. <summary>
  489. Checks if a <see cref="T:System.Reflection.MethodBase"/> is internally used by DLR and should not
  490. be displayed on the language code's stack.
  491. </summary>
  492. <param name="mb">The input <see cref="T:System.Reflection.MethodBase"/></param>
  493. <returns>
  494. True if the input <see cref="T:System.Reflection.MethodBase"/> is internally used by DLR and should not
  495. be displayed on the language code's stack. Otherwise, false.
  496. </returns>
  497. </member>
  498. <member name="T:System.Dynamic.ConvertBinder">
  499. <summary>
  500. Represents the convert dynamic operation at the call site, providing the binding semantic and the details about the operation.
  501. </summary>
  502. </member>
  503. <member name="M:System.Dynamic.ConvertBinder.#ctor(System.Type,System.Boolean)">
  504. <summary>
  505. Initializes a new intsance of the <see cref="T:System.Dynamic.ConvertBinder"/>.
  506. </summary>
  507. <param name="type">The type to convert to.</param>
  508. <param name="explicit">true if the conversion should consider explicit conversions; otherwise, false.</param>
  509. </member>
  510. <member name="M:System.Dynamic.ConvertBinder.FallbackConvert(System.Dynamic.DynamicMetaObject)">
  511. <summary>
  512. Performs the binding of the dynamic convert operation if the target dynamic object cannot bind.
  513. </summary>
  514. <param name="target">The target of the dynamic convert operation.</param>
  515. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  516. </member>
  517. <member name="M:System.Dynamic.ConvertBinder.FallbackConvert(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)">
  518. <summary>
  519. When overridden in the derived class, performs the binding of the dynamic convert operation if the target dynamic object cannot bind.
  520. </summary>
  521. <param name="target">The target of the dynamic convert operation.</param>
  522. <param name="errorSuggestion">The binding result to use if binding fails, or null.</param>
  523. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  524. </member>
  525. <member name="M:System.Dynamic.ConvertBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
  526. <summary>
  527. Performs the binding of the dynamic convert operation.
  528. </summary>
  529. <param name="target">The target of the dynamic convert operation.</param>
  530. <param name="args">An array of arguments of the dynamic convert operation.</param>
  531. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  532. </member>
  533. <member name="P:System.Dynamic.ConvertBinder.Type">
  534. <summary>
  535. The type to convert to.
  536. </summary>
  537. </member>
  538. <member name="P:System.Dynamic.ConvertBinder.Explicit">
  539. <summary>
  540. Gets the value indicating if the conversion should consider explicit conversions.
  541. </summary>
  542. </member>
  543. <member name="P:System.Dynamic.ConvertBinder.ReturnType">
  544. <summary>
  545. The result type of the operation.
  546. </summary>
  547. </member>
  548. <member name="T:System.Dynamic.DeleteIndexBinder">
  549. <summary>
  550. Represents the dynamic delete index operation at the call site, providing the binding semantic and the details about the operation.
  551. </summary>
  552. </member>
  553. <member name="M:System.Dynamic.DeleteIndexBinder.#ctor(System.Dynamic.CallInfo)">
  554. <summary>
  555. Initializes a new instance of the <see cref="T:System.Dynamic.DeleteIndexBinder"/>.
  556. </summary>
  557. <param name="callInfo">The signature of the arguments at the call site.</param>
  558. </member>
  559. <member name="M:System.Dynamic.DeleteIndexBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
  560. <summary>
  561. Performs the binding of the dynamic delete index operation.
  562. </summary>
  563. <param name="target">The target of the dynamic delete index operation.</param>
  564. <param name="args">An array of arguments of the dynamic delete index operation.</param>
  565. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  566. </member>
  567. <member name="M:System.Dynamic.DeleteIndexBinder.FallbackDeleteIndex(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
  568. <summary>
  569. Performs the binding of the dynamic delete index operation if the target dynamic object cannot bind.
  570. </summary>
  571. <param name="target">The target of the dynamic delete index operation.</param>
  572. <param name="indexes">The arguments of the dynamic delete index operation.</param>
  573. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  574. </member>
  575. <member name="M:System.Dynamic.DeleteIndexBinder.FallbackDeleteIndex(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)">
  576. <summary>
  577. When overridden in the derived class, performs the binding of the dynamic delete index operation if the target dynamic object cannot bind.
  578. </summary>
  579. <param name="target">The target of the dynamic delete index operation.</param>
  580. <param name="indexes">The arguments of the dynamic delete index operation.</param>
  581. <param name="errorSuggestion">The binding result to use if binding fails, or null.</param>
  582. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  583. </member>
  584. <member name="P:System.Dynamic.DeleteIndexBinder.ReturnType">
  585. <summary>
  586. The result type of the operation.
  587. </summary>
  588. </member>
  589. <member name="P:System.Dynamic.DeleteIndexBinder.CallInfo">
  590. <summary>
  591. Gets the signature of the arguments at the call site.
  592. </summary>
  593. </member>
  594. <member name="T:System.Dynamic.DynamicObject">
  595. <summary>
  596. Provides a simple class that can be inherited from to create an object with dynamic behavior
  597. at runtime. Subclasses can override the various binder methods (GetMember, SetMember, Call, etc...)
  598. to provide custom behavior that will be invoked at runtime.
  599. If a method is not overridden then the DynamicObject does not directly support that behavior and
  600. the call site will determine how the binding should be performed.
  601. </summary>
  602. </member>
  603. <member name="T:System.Dynamic.IDynamicMetaObjectProvider">
  604. <summary>
  605. Represents a dynamic object, that can have its operations bound at runtime.
  606. </summary>
  607. <remarks>
  608. Objects that want to participate in the binding process should implement an IDynamicMetaObjectProvider interface,
  609. and implement <see cref="M:System.Dynamic.IDynamicMetaObjectProvider.GetMetaObject(Microsoft.Scripting.Ast.Expression)"/> to return a <see cref="T:System.Dynamic.DynamicMetaObject"/>.
  610. </remarks>
  611. </member>
  612. <member name="M:System.Dynamic.IDynamicMetaObjectProvider.GetMetaObject(Microsoft.Scripting.Ast.Expression)">
  613. <summary>
  614. Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
  615. </summary>
  616. <param name="parameter">The expression tree representation of the runtime value.</param>
  617. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.</returns>
  618. </member>
  619. <member name="M:System.Dynamic.DynamicObject.#ctor">
  620. <summary>
  621. Enables derived types to create a new instance of DynamicObject. DynamicObject instances cannot be
  622. directly instantiated because they have no implementation of dynamic behavior.
  623. </summary>
  624. </member>
  625. <member name="M:System.Dynamic.DynamicObject.TryGetMember(System.Dynamic.GetMemberBinder,System.Object@)">
  626. <summary>
  627. Provides the implementation of getting a member. Derived classes can override
  628. this method to customize behavior. When not overridden the call site requesting the
  629. binder determines the behavior.
  630. </summary>
  631. <param name="binder">The binder provided by the call site.</param>
  632. <param name="result">The result of the get operation.</param>
  633. <returns>true if the operation is complete, false if the call site should determine behavior.</returns>
  634. </member>
  635. <member name="M:System.Dynamic.DynamicObject.TrySetMember(System.Dynamic.SetMemberBinder,System.Object)">
  636. <summary>
  637. Provides the implementation of setting a member. Derived classes can override
  638. this method to customize behavior. When not overridden the call site requesting the
  639. binder determines the behavior.
  640. </summary>
  641. <param name="binder">The binder provided by the call site.</param>
  642. <param name="value">The value to set.</param>
  643. <returns>true if the operation is complete, false if the call site should determine behavior.</returns>
  644. </member>
  645. <member name="M:System.Dynamic.DynamicObject.TryDeleteMember(System.Dynamic.DeleteMemberBinder)">
  646. <summary>
  647. Provides the implementation of deleting a member. Derived classes can override
  648. this method to customize behavior. When not overridden the call site requesting the
  649. binder determines the behavior.
  650. </summary>
  651. <param name="binder">The binder provided by the call site.</param>
  652. <returns>true if the operation is complete, false if the call site should determine behavior.</returns>
  653. </member>
  654. <member name="M:System.Dynamic.DynamicObject.TryInvokeMember(System.Dynamic.InvokeMemberBinder,System.Object[],System.Object@)">
  655. <summary>
  656. Provides the implementation of calling a member. Derived classes can override
  657. this method to customize behavior. When not overridden the call site requesting the
  658. binder determines the behavior.
  659. </summary>
  660. <param name="binder">The binder provided by the call site.</param>
  661. <param name="args">The arguments to be used for the invocation.</param>
  662. <param name="result">The result of the invocation.</param>
  663. <returns>true if the operation is complete, false if the call site should determine behavior.</returns>
  664. </member>
  665. <member name="M:System.Dynamic.DynamicObject.TryConvert(System.Dynamic.ConvertBinder,System.Object@)">
  666. <summary>
  667. Provides the implementation of converting the DynamicObject to another type. Derived classes
  668. can override this method to customize behavior. When not overridden the call site
  669. requesting the binder determines the behavior.
  670. </summary>
  671. <param name="binder">The binder provided by the call site.</param>
  672. <param name="result">The result of the conversion.</param>
  673. <returns>true if the operation is complete, false if the call site should determine behavior.</returns>
  674. </member>
  675. <member name="M:System.Dynamic.DynamicObject.TryCreateInstance(System.Dynamic.CreateInstanceBinder,System.Object[],System.Object@)">
  676. <summary>
  677. Provides the implementation of creating an instance of the DynamicObject. Derived classes
  678. can override this method to customize behavior. When not overridden the call site requesting
  679. the binder determines the behavior.
  680. </summary>
  681. <param name="binder">The binder provided by the call site.</param>
  682. <param name="args">The arguments used for creation.</param>
  683. <param name="result">The created instance.</param>
  684. <returns>true if the operation is complete, false if the call site should determine behavior.</returns>
  685. </member>
  686. <member name="M:System.Dynamic.DynamicObject.TryInvoke(System.Dynamic.InvokeBinder,System.Object[],System.Object@)">
  687. <summary>
  688. Provides the implementation of invoking the DynamicObject. Derived classes can
  689. override this method to customize behavior. When not overridden the call site requesting
  690. the binder determines the behavior.
  691. </summary>
  692. <param name="binder">The binder provided by the call site.</param>
  693. <param name="args">The arguments to be used for the invocation.</param>
  694. <param name="result">The result of the invocation.</param>
  695. <returns>true if the operation is complete, false if the call site should determine behavior.</returns>
  696. </member>
  697. <member name="M:System.Dynamic.DynamicObject.TryBinaryOperation(System.Dynamic.BinaryOperationBinder,System.Object,System.Object@)">
  698. <summary>
  699. Provides the implementation of performing a binary operation. Derived classes can
  700. override this method to customize behavior. When not overridden the call site requesting
  701. the binder determines the behavior.
  702. </summary>
  703. <param name="binder">The binder provided by the call site.</param>
  704. <param name="arg">The right operand for the operation.</param>
  705. <param name="result">The result of the operation.</param>
  706. <returns>true if the operation is complete, false if the call site should determine behavior.</returns>
  707. </member>
  708. <member name="M:System.Dynamic.DynamicObject.TryUnaryOperation(System.Dynamic.UnaryOperationBinder,System.Object@)">
  709. <summary>
  710. Provides the implementation of performing a unary operation. Derived classes can
  711. override this method to customize behavior. When not overridden the call site requesting
  712. the binder determines the behavior.
  713. </summary>
  714. <param name="binder">The binder provided by the call site.</param>
  715. <param name="result">The result of the operation.</param>
  716. <returns>true if the operation is complete, false if the call site should determine behavior.</returns>
  717. </member>
  718. <member name="M:System.Dynamic.DynamicObject.TryGetIndex(System.Dynamic.GetIndexBinder,System.Object[],System.Object@)">
  719. <summary>
  720. Provides the implementation of performing a get index operation. Derived classes can
  721. override this method to customize behavior. When not overridden the call site requesting
  722. the binder determines the behavior.
  723. </summary>
  724. <param name="binder">The binder provided by the call site.</param>
  725. <param name="indexes">The indexes to be used.</param>
  726. <param name="result">The result of the operation.</param>
  727. <returns>true if the operation is complete, false if the call site should determine behavior.</returns>
  728. </member>
  729. <member name="M:System.Dynamic.DynamicObject.TrySetIndex(System.Dynamic.SetIndexBinder,System.Object[],System.Object)">
  730. <summary>
  731. Provides the implementation of performing a set index operation. Derived classes can
  732. override this method to custmize behavior. When not overridden the call site requesting
  733. the binder determines the behavior.
  734. </summary>
  735. <param name="binder">The binder provided by the call site.</param>
  736. <param name="indexes">The indexes to be used.</param>
  737. <param name="value">The value to set.</param>
  738. <returns>true if the operation is complete, false if the call site should determine behavior.</returns>
  739. </member>
  740. <member name="M:System.Dynamic.DynamicObject.TryDeleteIndex(System.Dynamic.DeleteIndexBinder,System.Object[])">
  741. <summary>
  742. Provides the implementation of performing a delete index operation. Derived classes
  743. can override this method to custmize behavior. When not overridden the call site
  744. requesting the binder determines the behavior.
  745. </summary>
  746. <param name="binder">The binder provided by the call site.</param>
  747. <param name="indexes">The indexes to be deleted.</param>
  748. <returns>true if the operation is complete, false if the call site should determine behavior.</returns>
  749. </member>
  750. <member name="M:System.Dynamic.DynamicObject.GetDynamicMemberNames">
  751. <summary>
  752. Returns the enumeration of all dynamic member names.
  753. </summary>
  754. <returns>The list of dynamic member names.</returns>
  755. </member>
  756. <member name="M:System.Dynamic.DynamicObject.GetMetaObject(Microsoft.Scripting.Ast.Expression)">
  757. <summary>
  758. The provided MetaObject will dispatch to the Dynamic virtual methods.
  759. The object can be encapsulated inside of another MetaObject to
  760. provide custom behavior for individual actions.
  761. </summary>
  762. </member>
  763. <member name="T:System.Dynamic.DynamicMetaObject">
  764. <summary>
  765. Represents the dynamic binding and a binding logic of an object participating in the dynamic binding.
  766. </summary>
  767. </member>
  768. <member name="F:System.Dynamic.DynamicMetaObject.EmptyMetaObjects">
  769. <summary>
  770. Represents an empty array of type <see cref="T:System.Dynamic.DynamicMetaObject"/>. This field is read only.
  771. </summary>
  772. </member>
  773. <member name="M:System.Dynamic.DynamicMetaObject.#ctor(Microsoft.Scripting.Ast.Expression,System.Dynamic.BindingRestrictions)">
  774. <summary>
  775. Initializes a new instance of the <see cref="T:System.Dynamic.DynamicMetaObject"/> class.
  776. </summary>
  777. <param name="expression">The expression representing this <see cref="T:System.Dynamic.DynamicMetaObject"/> during the dynamic binding process.</param>
  778. <param name="restrictions">The set of binding restrictions under which the binding is valid.</param>
  779. </member>
  780. <member name="M:System.Dynamic.DynamicMetaObject.#ctor(Microsoft.Scripting.Ast.Expression,System.Dynamic.BindingRestrictions,System.Object)">
  781. <summary>
  782. Initializes a new instance of the <see cref="T:System.Dynamic.DynamicMetaObject"/> class.
  783. </summary>
  784. <param name="expression">The expression representing this <see cref="T:System.Dynamic.DynamicMetaObject"/> during the dynamic binding process.</param>
  785. <param name="restrictions">The set of binding restrictions under which the binding is valid.</param>
  786. <param name="value">The runtime value represented by the <see cref="T:System.Dynamic.DynamicMetaObject"/>.</param>
  787. </member>
  788. <member name="M:System.Dynamic.DynamicMetaObject.BindConvert(System.Dynamic.ConvertBinder)">
  789. <summary>
  790. Performs the binding of the dynamic conversion operation.
  791. </summary>
  792. <param name="binder">An instance of the <see cref="T:System.Dynamic.ConvertBinder"/> that represents the details of the dynamic operation.</param>
  793. <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  794. </member>
  795. <member name="M:System.Dynamic.DynamicMetaObject.BindGetMember(System.Dynamic.GetMemberBinder)">
  796. <summary>
  797. Performs the binding of the dynamic get member operation.
  798. </summary>
  799. <param name="binder">An instance of the <see cref="T:System.Dynamic.GetMemberBinder"/> that represents the details of the dynamic operation.</param>
  800. <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  801. </member>
  802. <member name="M:System.Dynamic.DynamicMetaObject.BindSetMember(System.Dynamic.SetMemberBinder,System.Dynamic.DynamicMetaObject)">
  803. <summary>
  804. Performs the binding of the dynamic set member operation.
  805. </summary>
  806. <param name="binder">An instance of the <see cref="T:System.Dynamic.SetMemberBinder"/> that represents the details of the dynamic operation.</param>
  807. <param name="value">The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the value for the set member operation.</param>
  808. <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  809. </member>
  810. <member name="M:System.Dynamic.DynamicMetaObject.BindDeleteMember(System.Dynamic.DeleteMemberBinder)">
  811. <summary>
  812. Performs the binding of the dynamic delete member operation.
  813. </summary>
  814. <param name="binder">An instance of the <see cref="T:System.Dynamic.DeleteMemberBinder"/> that represents the details of the dynamic operation.</param>
  815. <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  816. </member>
  817. <member name="M:System.Dynamic.DynamicMetaObject.BindGetIndex(System.Dynamic.GetIndexBinder,System.Dynamic.DynamicMetaObject[])">
  818. <summary>
  819. Performs the binding of the dynamic get index operation.
  820. </summary>
  821. <param name="binder">An instance of the <see cref="T:System.Dynamic.GetIndexBinder"/> that represents the details of the dynamic operation.</param>
  822. <param name="indexes">An array of <see cref="T:System.Dynamic.DynamicMetaObject"/> instances - indexes for the get index operation.</param>
  823. <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  824. </member>
  825. <member name="M:System.Dynamic.DynamicMetaObject.BindSetIndex(System.Dynamic.SetIndexBinder,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)">
  826. <summary>
  827. Performs the binding of the dynamic set index operation.
  828. </summary>
  829. <param name="binder">An instance of the <see cref="T:System.Dynamic.SetIndexBinder"/> that represents the details of the dynamic operation.</param>
  830. <param name="indexes">An array of <see cref="T:System.Dynamic.DynamicMetaObject"/> instances - indexes for the set index operation.</param>
  831. <param name="value">The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the value for the set index operation.</param>
  832. <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  833. </member>
  834. <member name="M:System.Dynamic.DynamicMetaObject.BindDeleteIndex(System.Dynamic.DeleteIndexBinder,System.Dynamic.DynamicMetaObject[])">
  835. <summary>
  836. Performs the binding of the dynamic delete index operation.
  837. </summary>
  838. <param name="binder">An instance of the <see cref="T:System.Dynamic.DeleteIndexBinder"/> that represents the details of the dynamic operation.</param>
  839. <param name="indexes">An array of <see cref="T:System.Dynamic.DynamicMetaObject"/> instances - indexes for the delete index operation.</param>
  840. <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  841. </member>
  842. <member name="M:System.Dynamic.DynamicMetaObject.BindInvokeMember(System.Dynamic.InvokeMemberBinder,System.Dynamic.DynamicMetaObject[])">
  843. <summary>
  844. Performs the binding of the dynamic invoke member operation.
  845. </summary>
  846. <param name="binder">An instance of the <see cref="T:System.Dynamic.InvokeMemberBinder"/> that represents the details of the dynamic operation.</param>
  847. <param name="args">An array of <see cref="T:System.Dynamic.DynamicMetaObject"/> instances - arguments to the invoke member operation.</param>
  848. <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  849. </member>
  850. <member name="M:System.Dynamic.DynamicMetaObject.BindInvoke(System.Dynamic.InvokeBinder,System.Dynamic.DynamicMetaObject[])">
  851. <summary>
  852. Performs the binding of the dynamic invoke operation.
  853. </summary>
  854. <param name="binder">An instance of the <see cref="T:System.Dynamic.InvokeBinder"/> that represents the details of the dynamic operation.</param>
  855. <param name="args">An array of <see cref="T:System.Dynamic.DynamicMetaObject"/> instances - arguments to the invoke operation.</param>
  856. <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  857. </member>
  858. <member name="M:System.Dynamic.DynamicMetaObject.BindCreateInstance(System.Dynamic.CreateInstanceBinder,System.Dynamic.DynamicMetaObject[])">
  859. <summary>
  860. Performs the binding of the dynamic create instance operation.
  861. </summary>
  862. <param name="binder">An instance of the <see cref="T:System.Dynamic.CreateInstanceBinder"/> that represents the details of the dynamic operation.</param>
  863. <param name="args">An array of <see cref="T:System.Dynamic.DynamicMetaObject"/> instances - arguments to the create instance operation.</param>
  864. <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  865. </member>
  866. <member name="M:System.Dynamic.DynamicMetaObject.BindUnaryOperation(System.Dynamic.UnaryOperationBinder)">
  867. <summary>
  868. Performs the binding of the dynamic unary operation.
  869. </summary>
  870. <param name="binder">An instance of the <see cref="T:System.Dynamic.UnaryOperationBinder"/> that represents the details of the dynamic operation.</param>
  871. <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  872. </member>
  873. <member name="M:System.Dynamic.DynamicMetaObject.BindBinaryOperation(System.Dynamic.BinaryOperationBinder,System.Dynamic.DynamicMetaObject)">
  874. <summary>
  875. Performs the binding of the dynamic binary operation.
  876. </summary>
  877. <param name="binder">An instance of the <see cref="T:System.Dynamic.BinaryOperationBinder"/> that represents the details of the dynamic operation.</param>
  878. <param name="arg">An instance of the <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the right hand side of the binary operation.</param>
  879. <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  880. </member>
  881. <member name="M:System.Dynamic.DynamicMetaObject.GetDynamicMemberNames">
  882. <summary>
  883. Returns the enumeration of all dynamic member names.
  884. </summary>
  885. <returns>The list of dynamic member names.</returns>
  886. </member>
  887. <member name="M:System.Dynamic.DynamicMetaObject.GetExpressions(System.Dynamic.DynamicMetaObject[])">
  888. <summary>
  889. Returns the list of expressions represented by the <see cref="T:System.Dynamic.DynamicMetaObject"/> instances.
  890. </summary>
  891. <param name="objects">An array of <see cref="T:System.Dynamic.DynamicMetaObject"/> instances to extract expressions from.</param>
  892. <returns>The array of expressions.</returns>
  893. </member>
  894. <member name="M:System.Dynamic.DynamicMetaObject.Create(System.Object,Microsoft.Scripting.Ast.Expression)">
  895. <summary>
  896. Creates a meta-object for the specified object.
  897. </summary>
  898. <param name="value">The object to get a meta-object for.</param>
  899. <param name="expression">The expression representing this <see cref="T:System.Dynamic.DynamicMetaObject"/> during the dynamic binding process.</param>
  900. <returns>
  901. If the given object implements <see cref="T:System.Dynamic.IDynamicMetaObjectProvider"/> and is not a remote object from outside the current AppDomain,
  902. returns the object's specific meta-object returned by <see cref="M:System.Dynamic.IDynamicMetaObjectProvider.GetMetaObject(Microsoft.Scripting.Ast.Expression)"/>. Otherwise a plain new meta-object
  903. with no restrictions is created and returned.
  904. </returns>
  905. </member>
  906. <member name="P:System.Dynamic.DynamicMetaObject.Expression">
  907. <summary>
  908. The expression representing the <see cref="T:System.Dynamic.DynamicMetaObject"/> during the dynamic binding process.
  909. </summary>
  910. </member>
  911. <member name="P:System.Dynamic.DynamicMetaObject.Restrictions">
  912. <summary>
  913. The set of binding restrictions under which the binding is valid.
  914. </summary>
  915. </member>
  916. <member name="P:System.Dynamic.DynamicMetaObject.Value">
  917. <summary>
  918. The runtime value represented by this <see cref="T:System.Dynamic.DynamicMetaObject"/>.
  919. </summary>
  920. </member>
  921. <member name="P:System.Dynamic.DynamicMetaObject.HasValue">
  922. <summary>
  923. Gets a value indicating whether the <see cref="T:System.Dynamic.DynamicMetaObject"/> has the runtime value.
  924. </summary>
  925. </member>
  926. <member name="P:System.Dynamic.DynamicMetaObject.RuntimeType">
  927. <summary>
  928. Gets the <see cref="T:System.Type"/> of the runtime value or null if the <see cref="T:System.Dynamic.DynamicMetaObject"/> has no value associated with it.
  929. </summary>
  930. </member>
  931. <member name="P:System.Dynamic.DynamicMetaObject.LimitType">
  932. <summary>
  933. Gets the limit type of the <see cref="T:System.Dynamic.DynamicMetaObject"/>.
  934. </summary>
  935. <remarks>Represents the most specific type known about the object represented by the <see cref="T:System.Dynamic.DynamicMetaObject"/>. <see cref="P:System.Dynamic.DynamicMetaObject.RuntimeType"/> if runtime value is available, a type of the <see cref="P:System.Dynamic.DynamicMetaObject.Expression"/> otherwise.</remarks>
  936. </member>
  937. <member name="M:System.Dynamic.DynamicObject.MetaDynamic.ReferenceArgAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression[])">
  938. <summary>
  939. Helper method for generating expressions that assign byRef call
  940. parameters back to their original variables
  941. </summary>
  942. </member>
  943. <member name="M:System.Dynamic.DynamicObject.MetaDynamic.BuildCallArgs(System.Dynamic.DynamicMetaObjectBinder,Microsoft.Scripting.Ast.Expression[],Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  944. <summary>
  945. Helper method for generating arguments for calling methods
  946. on DynamicObject. parameters is either a list of ParameterExpressions
  947. to be passed to the method as an object[], or NoArgs to signify that
  948. the target method takes no object[] parameter.
  949. </summary>
  950. </member>
  951. <member name="M:System.Dynamic.DynamicObject.MetaDynamic.CallMethodWithResult(System.String,System.Dynamic.DynamicMetaObjectBinder,Microsoft.Scripting.Ast.Expression[],System.Dynamic.DynamicObject.MetaDynamic.Fallback)">
  952. <summary>
  953. Helper method for generating a MetaObject which calls a
  954. specific method on Dynamic that returns a result
  955. </summary>
  956. </member>
  957. <member name="M:System.Dynamic.DynamicObject.MetaDynamic.CallMethodWithResult(System.String,System.Dynamic.DynamicMetaObjectBinder,Microsoft.Scripting.Ast.Expression[],System.Dynamic.DynamicObject.MetaDynamic.Fallback,System.Dynamic.DynamicObject.MetaDynamic.Fallback)">
  958. <summary>
  959. Helper method for generating a MetaObject which calls a
  960. specific method on Dynamic that returns a result
  961. </summary>
  962. </member>
  963. <member name="M:System.Dynamic.DynamicObject.MetaDynamic.BuildCallMethodWithResult(System.String,System.Dynamic.DynamicMetaObjectBinder,Microsoft.Scripting.Ast.Expression[],System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicObject.MetaDynamic.Fallback)">
  964. <summary>
  965. Helper method for generating a MetaObject which calls a
  966. specific method on DynamicObject that returns a result.
  967. args is either an array of arguments to be passed
  968. to the method as an object[] or NoArgs to signify that
  969. the target method takes no parameters.
  970. </summary>
  971. </member>
  972. <member name="M:System.Dynamic.DynamicObject.MetaDynamic.CallMethodReturnLast(System.String,System.Dynamic.DynamicMetaObjectBinder,Microsoft.Scripting.Ast.Expression[],Microsoft.Scripting.Ast.Expression,System.Dynamic.DynamicObject.MetaDynamic.Fallback)">
  973. <summary>
  974. Helper method for generating a MetaObject which calls a
  975. specific method on Dynamic, but uses one of the arguments for
  976. the result.
  977. args is either an array of arguments to be passed
  978. to the method as an object[] or NoArgs to signify that
  979. the target method takes no parameters.
  980. </summary>
  981. </member>
  982. <member name="M:System.Dynamic.DynamicObject.MetaDynamic.CallMethodNoResult(System.String,System.Dynamic.DynamicMetaObjectBinder,Microsoft.Scripting.Ast.Expression[],System.Dynamic.DynamicObject.MetaDynamic.Fallback)">
  983. <summary>
  984. Helper method for generating a MetaObject which calls a
  985. specific method on Dynamic, but uses one of the arguments for
  986. the result.
  987. args is either an array of arguments to be passed
  988. to the method as an object[] or NoArgs to signify that
  989. the target method takes no parameters.
  990. </summary>
  991. </member>
  992. <member name="M:System.Dynamic.DynamicObject.MetaDynamic.IsOverridden(System.String)">
  993. <summary>
  994. Checks if the derived type has overridden the specified method. If there is no
  995. implementation for the method provided then Dynamic falls back to the base class
  996. behavior which lets the call site determine how the binder is performed.
  997. </summary>
  998. </member>
  999. <member name="M:System.Dynamic.DynamicObject.MetaDynamic.GetRestrictions">
  1000. <summary>
  1001. Returns a Restrictions object which includes our current restrictions merged
  1002. with a restriction limiting our type
  1003. </summary>
  1004. </member>
  1005. <member name="M:System.Dynamic.DynamicObject.MetaDynamic.GetLimitedSelf">
  1006. <summary>
  1007. Returns our Expression converted to DynamicObject
  1008. </summary>
  1009. </member>
  1010. <member name="T:System.Dynamic.GetMemberBinder">
  1011. <summary>
  1012. Represents the dynamic get member operation at the call site, providing the binding semantic and the details about the operation.
  1013. </summary>
  1014. </member>
  1015. <member name="M:System.Dynamic.GetMemberBinder.#ctor(System.String,System.Boolean)">
  1016. <summary>
  1017. Initializes a new instance of the <see cref="T:System.Dynamic.GetMemberBinder"/>.
  1018. </summary>
  1019. <param name="name">The name of the member to get.</param>
  1020. <param name="ignoreCase">true if the name should be matched ignoring case; false otherwise.</param>
  1021. </member>
  1022. <member name="M:System.Dynamic.GetMemberBinder.FallbackGetMember(System.Dynamic.DynamicMetaObject)">
  1023. <summary>
  1024. Performs the binding of the dynamic get member operation if the target dynamic object cannot bind.
  1025. </summary>
  1026. <param name="target">The target of the dynamic get member operation.</param>
  1027. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  1028. </member>
  1029. <member name="M:System.Dynamic.GetMemberBinder.FallbackGetMember(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)">
  1030. <summary>
  1031. When overridden in the derived class, performs the binding of the dynamic get member operation if the target dynamic object cannot bind.
  1032. </summary>
  1033. <param name="target">The target of the dynamic get member operation.</param>
  1034. <param name="errorSuggestion">The binding result to use if binding fails, or null.</param>
  1035. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  1036. </member>
  1037. <member name="M:System.Dynamic.GetMemberBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
  1038. <summary>
  1039. Performs the binding of the dynamic get member operation.
  1040. </summary>
  1041. <param name="target">The target of the dynamic get member operation.</param>
  1042. <param name="args">An array of arguments of the dynamic get member operation.</param>
  1043. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  1044. </member>
  1045. <member name="P:System.Dynamic.GetMemberBinder.ReturnType">
  1046. <summary>
  1047. The result type of the operation.
  1048. </summary>
  1049. </member>
  1050. <member name="P:System.Dynamic.GetMemberBinder.Name">
  1051. <summary>
  1052. Gets the name of the member to get.
  1053. </summary>
  1054. </member>
  1055. <member name="P:System.Dynamic.GetMemberBinder.IgnoreCase">
  1056. <summary>
  1057. Gets the value indicating if the string comparison should ignore the case of the member name.
  1058. </summary>
  1059. </member>
  1060. <member name="T:System.Dynamic.ExpandoObject">
  1061. <summary>
  1062. Represents an object with members that can be dynamically added and removed at runtime.
  1063. </summary>
  1064. </member>
  1065. <member name="M:System.Dynamic.ExpandoObject.#ctor">
  1066. <summary>
  1067. Creates a new ExpandoObject with no members.
  1068. </summary>
  1069. </member>
  1070. <member name="M:System.Dynamic.ExpandoObject.TryGetValue(System.Object,System.Int32,System.String,System.Boolean,System.Object@)">
  1071. <summary>
  1072. Try to get the data stored for the specified class at the specified index. If the
  1073. class has changed a full lookup for the slot will be performed and the correct
  1074. value will be retrieved.
  1075. </summary>
  1076. </member>
  1077. <member name="M:System.Dynamic.ExpandoObject.TrySetValue(System.Object,System.Int32,System.Object,System.String,System.Boolean,System.Boolean)">
  1078. <summary>
  1079. Sets the data for the specified class at the specified index. If the class has
  1080. changed then a full look for the slot will be performed. If the new class does
  1081. not have the provided slot then the Expando's class will change. Only case sensitive
  1082. setter is supported in ExpandoObject.
  1083. </summary>
  1084. </member>
  1085. <member name="M:System.Dynamic.ExpandoObject.TryDeleteValue(System.Object,System.Int32,System.String,System.Boolean,System.Object)">
  1086. <summary>
  1087. Deletes the data stored for the specified class at the specified index.
  1088. </summary>
  1089. </member>
  1090. <member name="M:System.Dynamic.ExpandoObject.IsDeletedMember(System.Int32)">
  1091. <summary>
  1092. Returns true if the member at the specified index has been deleted,
  1093. otherwise false. Call this function holding the lock.
  1094. </summary>
  1095. </member>
  1096. <member name="M:System.Dynamic.ExpandoObject.PromoteClassCore(System.Dynamic.ExpandoClass,System.Dynamic.ExpandoClass)">
  1097. <summary>
  1098. Promotes the class from the old type to the new type and returns the new
  1099. ExpandoData object.
  1100. </summary>
  1101. </member>
  1102. <member name="M:System.Dynamic.ExpandoObject.PromoteClass(System.Object,System.Object)">
  1103. <summary>
  1104. Internal helper to promote a class. Called from our RuntimeOps helper. This
  1105. version simply doesn't expose the ExpandoData object which is a private
  1106. data structure.
  1107. </summary>
  1108. </member>
  1109. <member name="P:System.Dynamic.ExpandoObject.Class">
  1110. <summary>
  1111. Exposes the ExpandoClass which we've associated with this
  1112. Expando object. Used for type checks in rules.
  1113. </summary>
  1114. </member>
  1115. <member name="M:System.Dynamic.ExpandoObject.MetaExpando.AddDynamicTestAndDefer(System.Dynamic.DynamicMetaObjectBinder,System.Dynamic.ExpandoClass,System.Dynamic.ExpandoClass,System.Dynamic.DynamicMetaObject)">
  1116. <summary>
  1117. Adds a dynamic test which checks if the version has changed. The test is only necessary for
  1118. performance as the methods will do the correct thing if called with an incorrect version.
  1119. </summary>
  1120. </member>
  1121. <member name="M:System.Dynamic.ExpandoObject.MetaExpando.GetClassEnsureIndex(System.String,System.Boolean,System.Dynamic.ExpandoObject,System.Dynamic.ExpandoClass@,System.Int32@)">
  1122. <summary>
  1123. Gets the class and the index associated with the given name. Does not update the expando object. Instead
  1124. this returns both the original and desired new class. A rule is created which includes the test for the
  1125. original class, the promotion to the new class, and the set/delete based on the class post-promotion.
  1126. </summary>
  1127. </member>
  1128. <member name="M:System.Dynamic.ExpandoObject.MetaExpando.GetLimitedSelf">
  1129. <summary>
  1130. Returns our Expression converted to our known LimitType
  1131. </summary>
  1132. </member>
  1133. <member name="M:System.Dynamic.ExpandoObject.MetaExpando.GetRestrictions">
  1134. <summary>
  1135. Returns a Restrictions object which includes our current restrictions merged
  1136. with a restriction limiting our type
  1137. </summary>
  1138. </member>
  1139. <member name="T:System.Dynamic.ExpandoObject.ExpandoData">
  1140. <summary>
  1141. Stores the class and the data associated with the class as one atomic
  1142. pair. This enables us to do a class check in a thread safe manner w/o
  1143. requiring locks.
  1144. </summary>
  1145. </member>
  1146. <member name="F:System.Dynamic.ExpandoObject.ExpandoData.Class">
  1147. <summary>
  1148. the dynamically assigned class associated with the Expando object
  1149. </summary>
  1150. </member>
  1151. <member name="F:System.Dynamic.ExpandoObject.ExpandoData._dataArray">
  1152. <summary>
  1153. data stored in the expando object, key names are stored in the class.
  1154. Expando._data must be locked when mutating the value. Otherwise a copy of it
  1155. could be made and lose values.
  1156. </summary>
  1157. </member>
  1158. <member name="M:System.Dynamic.ExpandoObject.ExpandoData.#ctor">
  1159. <summary>
  1160. Constructs an empty ExpandoData object with the empty class and no data.
  1161. </summary>
  1162. </member>
  1163. <member name="F:System.Dynamic.ExpandoObject.ExpandoData._version">
  1164. <summary>
  1165. the version of the ExpandoObject that tracks set and delete operations
  1166. </summary>
  1167. </member>
  1168. <member name="M:System.Dynamic.ExpandoObject.ExpandoData.#ctor(System.Dynamic.ExpandoClass,System.Object[],System.Int32)">
  1169. <summary>
  1170. Constructs a new ExpandoData object with the specified class and data.
  1171. </summary>
  1172. </member>
  1173. <member name="M:System.Dynamic.ExpandoObject.ExpandoData.UpdateClass(System.Dynamic.ExpandoClass)">
  1174. <summary>
  1175. Update the associated class and increases the storage for the data array if needed.
  1176. </summary>
  1177. <returns></returns>
  1178. </member>
  1179. <member name="P:System.Dynamic.ExpandoObject.ExpandoData.Item(System.Int32)">
  1180. <summary>
  1181. Indexer for getting/setting the data
  1182. </summary>
  1183. </member>
  1184. <member name="T:System.Runtime.CompilerServices.RuntimeOps">
  1185. <summary>
  1186. This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
  1187. Contains helper methods called from dynamically generated methods.
  1188. </summary>
  1189. </member>
  1190. <member name="M:System.Runtime.CompilerServices.RuntimeOps.ExpandoTryGetValue(System.Dynamic.ExpandoObject,System.Object,System.Int32,System.String,System.Boolean,System.Object@)">
  1191. <summary>
  1192. Gets the value of an item in an expando object.
  1193. </summary>
  1194. <param name="expando">The expando object.</param>
  1195. <param name="indexClass">The class of the expando object.</param>
  1196. <param name="index">The index of the member.</param>
  1197. <param name="name">The name of the member.</param>
  1198. <param name="ignoreCase">true if the name should be matched ignoring case; false otherwise.</param>
  1199. <param name="value">The out parameter containing the value of the member.</param>
  1200. <returns>True if the member exists in the expando object, otherwise false.</returns>
  1201. </member>
  1202. <member name="M:System.Runtime.CompilerServices.RuntimeOps.ExpandoTrySetValue(System.Dynamic.ExpandoObject,System.Object,System.Int32,System.Object,System.String,System.Boolean)">
  1203. <summary>
  1204. Sets the value of an item in an expando object.
  1205. </summary>
  1206. <param name="expando">The expando object.</param>
  1207. <param name="indexClass">The class of the expando object.</param>
  1208. <param name="index">The index of the member.</param>
  1209. <param name="value">The value of the member.</param>
  1210. <param name="name">The name of the member.</param>
  1211. <param name="ignoreCase">true if the name should be matched ignoring case; false otherwise.</param>
  1212. <returns>
  1213. Returns the index for the set member.
  1214. </returns>
  1215. </member>
  1216. <member name="M:System.Runtime.CompilerServices.RuntimeOps.ExpandoTryDeleteValue(System.Dynamic.ExpandoObject,System.Object,System.Int32,System.String,System.Boolean)">
  1217. <summary>
  1218. Deletes the value of an item in an expando object.
  1219. </summary>
  1220. <param name="expando">The expando object.</param>
  1221. <param name="indexClass">The class of the expando object.</param>
  1222. <param name="index">The index of the member.</param>
  1223. <param name="name">The name of the member.</param>
  1224. <param name="ignoreCase">true if the name should be matched ignoring case; false otherwise.</param>
  1225. <returns>true if the item was successfully removed; otherwise, false.</returns>
  1226. </member>
  1227. <member name="M:System.Runtime.CompilerServices.RuntimeOps.ExpandoCheckVersion(System.Dynamic.ExpandoObject,System.Object)">
  1228. <summary>
  1229. Checks the version of the expando object.
  1230. </summary>
  1231. <param name="expando">The expando object.</param>
  1232. <param name="version">The version to check.</param>
  1233. <returns>true if the version is equal; otherwise, false.</returns>
  1234. </member>
  1235. <member name="M:System.Runtime.CompilerServices.RuntimeOps.ExpandoPromoteClass(System.Dynamic.ExpandoObject,System.Object,System.Object)">
  1236. <summary>
  1237. Promotes an expando object from one class to a new class.
  1238. </summary>
  1239. <param name="expando">The expando object.</param>
  1240. <param name="oldClass">The old class of the expando object.</param>
  1241. <param name="newClass">The new class of the expando object.</param>
  1242. </member>
  1243. <member name="M:System.Runtime.CompilerServices.RuntimeOps.CreateRuntimeVariables(System.Object[],System.Int64[])">
  1244. <summary>
  1245. Creates an interface that can be used to modify closed over variables at runtime.
  1246. </summary>
  1247. <param name="data">The closure array.</param>
  1248. <param name="indexes">An array of indicies into the closure array where variables are found.</param>
  1249. <returns>An interface to access variables.</returns>
  1250. </member>
  1251. <member name="M:System.Runtime.CompilerServices.RuntimeOps.CreateRuntimeVariables">
  1252. <summary>
  1253. Creates an interface that can be used to modify closed over variables at runtime.
  1254. </summary>
  1255. <returns>An interface to access variables.</returns>
  1256. </member>
  1257. <member name="M:System.Runtime.CompilerServices.RuntimeOps.Quote(Microsoft.Scripting.Ast.Expression,System.Object,System.Object[])">
  1258. <summary>
  1259. Quotes the provided expression tree.
  1260. </summary>
  1261. <param name="expression">The expression to quote.</param>
  1262. <param name="hoistedLocals">The hoisted local state provided by the compiler.</param>
  1263. <param name="locals">The actual hoisted local values.</param>
  1264. <returns>The quoted expression.</returns>
  1265. </member>
  1266. <member name="M:System.Runtime.CompilerServices.RuntimeOps.MergeRuntimeVariables(System.Runtime.CompilerServices.IRuntimeVariables,System.Runtime.CompilerServices.IRuntimeVariables,System.Int32[])">
  1267. <summary>
  1268. Combines two runtime variable lists and returns a new list.
  1269. </summary>
  1270. <param name="first">The first list.</param>
  1271. <param name="second">The second list.</param>
  1272. <param name="indexes">The index array indicating which list to get variables from.</param>
  1273. <returns>The merged runtime variables.</returns>
  1274. </member>
  1275. <member name="T:System.Runtime.CompilerServices.IRuntimeVariables">
  1276. <summary>
  1277. An interface to represent values of runtime variables.
  1278. </summary>
  1279. </member>
  1280. <member name="P:System.Runtime.CompilerServices.IRuntimeVariables.Count">
  1281. <summary>
  1282. Count of the variables.
  1283. </summary>
  1284. </member>
  1285. <member name="P:System.Runtime.CompilerServices.IRuntimeVariables.Item(System.Int32)">
  1286. <summary>
  1287. An indexer to get/set the values of the runtime variables.
  1288. </summary>
  1289. <param name="index">An index of the runtime variable.</param>
  1290. <returns>The value of the runtime variable.</returns>
  1291. </member>
  1292. <member name="T:System.Runtime.CompilerServices.RuntimeOps.RuntimeVariableList">
  1293. <summary>
  1294. Provides a list of variables, supporing read/write of the values
  1295. Exposed via RuntimeVariablesExpression
  1296. </summary>
  1297. </member>
  1298. <member name="T:Microsoft.Scripting.Ast.ExpressionVisitor">
  1299. <summary>
  1300. Represents a visitor or rewriter for expression trees.
  1301. </summary>
  1302. <remarks>
  1303. This class is designed to be inherited to create more specialized
  1304. classes whose functionality requires traversing, examining or copying
  1305. an expression tree.
  1306. </remarks>
  1307. </member>
  1308. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.#ctor">
  1309. <summary>
  1310. Initializes a new instance of <see cref="T:Microsoft.Scripting.Ast.ExpressionVisitor"/>.
  1311. </summary>
  1312. </member>
  1313. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.Visit(Microsoft.Scripting.Ast.Expression)">
  1314. <summary>
  1315. Dispatches the expression to one of the more specialized visit methods in this class.
  1316. </summary>
  1317. <param name="node">The expression to visit.</param>
  1318. <returns>The modified expression, if it or any subexpression was modified;
  1319. otherwise, returns the original expression.</returns>
  1320. </member>
  1321. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.Visit(System.Collections.ObjectModel.ReadOnlyCollection{Microsoft.Scripting.Ast.Expression})">
  1322. <summary>
  1323. Dispatches the list of expressions to one of the more specialized visit methods in this class.
  1324. </summary>
  1325. <param name="nodes">The expressions to visit.</param>
  1326. <returns>The modified expression list, if any of the elements were modified;
  1327. otherwise, returns the original expression list.</returns>
  1328. </member>
  1329. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.Visit``1(System.Collections.ObjectModel.ReadOnlyCollection{``0},System.Func{``0,``0})">
  1330. <summary>
  1331. Visits all nodes in the collection using a specified element visitor.
  1332. </summary>
  1333. <typeparam name="T">The type of the nodes.</typeparam>
  1334. <param name="nodes">The nodes to visit.</param>
  1335. <param name="elementVisitor">A delegate that visits a single element,
  1336. optionally replacing it with a new element.</param>
  1337. <returns>The modified node list, if any of the elements were modified;
  1338. otherwise, returns the original node list.</returns>
  1339. </member>
  1340. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitAndConvert``1(``0,System.String)">
  1341. <summary>
  1342. Visits an expression, casting the result back to the original expression type.
  1343. </summary>
  1344. <typeparam name="T">The type of the expression.</typeparam>
  1345. <param name="node">The expression to visit.</param>
  1346. <param name="callerName">The name of the calling method; used to report to report a better error message.</param>
  1347. <returns>The modified expression, if it or any subexpression was modified;
  1348. otherwise, returns the original expression.</returns>
  1349. <exception cref="T:System.InvalidOperationException">The visit method for this node returned a different type.</exception>
  1350. </member>
  1351. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitAndConvert``1(System.Collections.ObjectModel.ReadOnlyCollection{``0},System.String)">
  1352. <summary>
  1353. Visits an expression, casting the result back to the original expression type.
  1354. </summary>
  1355. <typeparam name="T">The type of the expression.</typeparam>
  1356. <param name="nodes">The expression to visit.</param>
  1357. <param name="callerName">The name of the calling method; used to report to report a better error message.</param>
  1358. <returns>The modified expression, if it or any subexpression was modified;
  1359. otherwise, returns the original expression.</returns>
  1360. <exception cref="T:System.InvalidOperationException">The visit method for this node returned a different type.</exception>
  1361. </member>
  1362. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitBinary(Microsoft.Scripting.Ast.BinaryExpression)">
  1363. <summary>
  1364. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/>.
  1365. </summary>
  1366. <param name="node">The expression to visit.</param>
  1367. <returns>The modified expression, if it or any subexpression was modified;
  1368. otherwise, returns the original expression.</returns>
  1369. </member>
  1370. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitBlock(Microsoft.Scripting.Ast.BlockExpression)">
  1371. <summary>
  1372. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.BlockExpression"/>.
  1373. </summary>
  1374. <param name="node">The expression to visit.</param>
  1375. <returns>The modified expression, if it or any subexpression was modified;
  1376. otherwise, returns the original expression.</returns>
  1377. </member>
  1378. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitConditional(Microsoft.Scripting.Ast.ConditionalExpression)">
  1379. <summary>
  1380. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.ConditionalExpression"/>.
  1381. </summary>
  1382. <param name="node">The expression to visit.</param>
  1383. <returns>The modified expression, if it or any subexpression was modified;
  1384. otherwise, returns the original expression.</returns>
  1385. </member>
  1386. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitConstant(Microsoft.Scripting.Ast.ConstantExpression)">
  1387. <summary>
  1388. Visits the <see cref="T:Microsoft.Scripting.Ast.ConstantExpression"/>.
  1389. </summary>
  1390. <param name="node">The expression to visit.</param>
  1391. <returns>The modified expression, if it or any subexpression was modified;
  1392. otherwise, returns the original expression.</returns>
  1393. </member>
  1394. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitDebugInfo(Microsoft.Scripting.Ast.DebugInfoExpression)">
  1395. <summary>
  1396. Visits the <see cref="T:Microsoft.Scripting.Ast.DebugInfoExpression"/>.
  1397. </summary>
  1398. <param name="node">The expression to visit.</param>
  1399. <returns>The modified expression, if it or any subexpression was modified;
  1400. otherwise, returns the original expression.</returns>
  1401. </member>
  1402. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitDynamic(Microsoft.Scripting.Ast.DynamicExpression)">
  1403. <summary>
  1404. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.DynamicExpression"/>.
  1405. </summary>
  1406. <param name="node">The expression to visit.</param>
  1407. <returns>The modified expression, if it or any subexpression was modified;
  1408. otherwise, returns the original expression.</returns>
  1409. </member>
  1410. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitDefault(Microsoft.Scripting.Ast.DefaultExpression)">
  1411. <summary>
  1412. Visits the <see cref="T:Microsoft.Scripting.Ast.DefaultExpression"/>.
  1413. </summary>
  1414. <param name="node">The expression to visit.</param>
  1415. <returns>The modified expression, if it or any subexpression was modified;
  1416. otherwise, returns the original expression.</returns>
  1417. </member>
  1418. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitExtension(Microsoft.Scripting.Ast.Expression)">
  1419. <summary>
  1420. Visits the children of the extension expression.
  1421. </summary>
  1422. <param name="node">The expression to visit.</param>
  1423. <returns>The modified expression, if it or any subexpression was modified;
  1424. otherwise, returns the original expression.</returns>
  1425. <remarks>
  1426. This can be overridden to visit or rewrite specific extension nodes.
  1427. If it is not overridden, this method will call <see cref="M:Microsoft.Scripting.Ast.Expression.VisitChildren(Microsoft.Scripting.Ast.ExpressionVisitor)"/>,
  1428. which gives the node a chance to walk its children. By default,
  1429. <see cref="M:Microsoft.Scripting.Ast.Expression.VisitChildren(Microsoft.Scripting.Ast.ExpressionVisitor)"/> will try to reduce the node.
  1430. </remarks>
  1431. </member>
  1432. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitGoto(Microsoft.Scripting.Ast.GotoExpression)">
  1433. <summary>
  1434. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/>.
  1435. </summary>
  1436. <param name="node">The expression to visit.</param>
  1437. <returns>The modified expression, if it or any subexpression was modified;
  1438. otherwise, returns the original expression.</returns>
  1439. </member>
  1440. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitInvocation(Microsoft.Scripting.Ast.InvocationExpression)">
  1441. <summary>
  1442. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.InvocationExpression"/>.
  1443. </summary>
  1444. <param name="node">The expression to visit.</param>
  1445. <returns>The modified expression, if it or any subexpression was modified;
  1446. otherwise, returns the original expression.</returns>
  1447. </member>
  1448. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitLabelTarget(Microsoft.Scripting.Ast.LabelTarget)">
  1449. <summary>
  1450. Visits the <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/>.
  1451. </summary>
  1452. <param name="node">The expression to visit.</param>
  1453. <returns>The modified expression, if it or any subexpression was modified;
  1454. otherwise, returns the original expression.</returns>
  1455. </member>
  1456. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitLabel(Microsoft.Scripting.Ast.LabelExpression)">
  1457. <summary>
  1458. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.LabelExpression"/>.
  1459. </summary>
  1460. <param name="node">The expression to visit.</param>
  1461. <returns>The modified expression, if it or any subexpression was modified;
  1462. otherwise, returns the original expression.</returns>
  1463. </member>
  1464. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitLambda``1(Microsoft.Scripting.Ast.Expression{``0})">
  1465. <summary>
  1466. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.Expression`1"/>.
  1467. </summary>
  1468. <typeparam name="T">The type of the delegate.</typeparam>
  1469. <param name="node">The expression to visit.</param>
  1470. <returns>The modified expression, if it or any subexpression was modified;
  1471. otherwise, returns the original expression.</returns>
  1472. </member>
  1473. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitLoop(Microsoft.Scripting.Ast.LoopExpression)">
  1474. <summary>
  1475. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.LoopExpression"/>.
  1476. </summary>
  1477. <param name="node">The expression to visit.</param>
  1478. <returns>The modified expression, if it or any subexpression was modified;
  1479. otherwise, returns the original expression.</returns>
  1480. </member>
  1481. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitMember(Microsoft.Scripting.Ast.MemberExpression)">
  1482. <summary>
  1483. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.MemberExpression"/>.
  1484. </summary>
  1485. <param name="node">The expression to visit.</param>
  1486. <returns>The modified expression, if it or any subexpression was modified;
  1487. otherwise, returns the original expression.</returns>
  1488. </member>
  1489. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitIndex(Microsoft.Scripting.Ast.IndexExpression)">
  1490. <summary>
  1491. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.IndexExpression"/>.
  1492. </summary>
  1493. <param name="node">The expression to visit.</param>
  1494. <returns>The modified expression, if it or any subexpression was modified;
  1495. otherwise, returns the original expression.</returns>
  1496. </member>
  1497. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitMethodCall(Microsoft.Scripting.Ast.MethodCallExpression)">
  1498. <summary>
  1499. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.MethodCallExpression"/>.
  1500. </summary>
  1501. <param name="node">The expression to visit.</param>
  1502. <returns>The modified expression, if it or any subexpression was modified;
  1503. otherwise, returns the original expression.</returns>
  1504. </member>
  1505. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitNewArray(Microsoft.Scripting.Ast.NewArrayExpression)">
  1506. <summary>
  1507. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.NewArrayExpression"/>.
  1508. </summary>
  1509. <param name="node">The expression to visit.</param>
  1510. <returns>The modified expression, if it or any subexpression was modified;
  1511. otherwise, returns the original expression.</returns>
  1512. </member>
  1513. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitNew(Microsoft.Scripting.Ast.NewExpression)">
  1514. <summary>
  1515. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.NewExpression"/>.
  1516. </summary>
  1517. <param name="node">The expression to visit.</param>
  1518. <returns>The modified expression, if it or any subexpression was modified;
  1519. otherwise, returns the original expression.</returns>
  1520. </member>
  1521. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitParameter(Microsoft.Scripting.Ast.ParameterExpression)">
  1522. <summary>
  1523. Visits the <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/>.
  1524. </summary>
  1525. <param name="node">The expression to visit.</param>
  1526. <returns>The modified expression, if it or any subexpression was modified;
  1527. otherwise, returns the original expression.</returns>
  1528. </member>
  1529. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitRuntimeVariables(Microsoft.Scripting.Ast.RuntimeVariablesExpression)">
  1530. <summary>
  1531. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.RuntimeVariablesExpression"/>.
  1532. </summary>
  1533. <param name="node">The expression to visit.</param>
  1534. <returns>The modified expression, if it or any subexpression was modified;
  1535. otherwise, returns the original expression.</returns>
  1536. </member>
  1537. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitSwitchCase(Microsoft.Scripting.Ast.SwitchCase)">
  1538. <summary>
  1539. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.SwitchCase"/>.
  1540. </summary>
  1541. <param name="node">The expression to visit.</param>
  1542. <returns>The modified expression, if it or any subexpression was modified;
  1543. otherwise, returns the original expression.</returns>
  1544. </member>
  1545. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitSwitch(Microsoft.Scripting.Ast.SwitchExpression)">
  1546. <summary>
  1547. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.SwitchExpression"/>.
  1548. </summary>
  1549. <param name="node">The expression to visit.</param>
  1550. <returns>The modified expression, if it or any subexpression was modified;
  1551. otherwise, returns the original expression.</returns>
  1552. </member>
  1553. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitCatchBlock(Microsoft.Scripting.Ast.CatchBlock)">
  1554. <summary>
  1555. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.CatchBlock"/>.
  1556. </summary>
  1557. <param name="node">The expression to visit.</param>
  1558. <returns>The modified expression, if it or any subexpression was modified;
  1559. otherwise, returns the original expression.</returns>
  1560. </member>
  1561. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitTry(Microsoft.Scripting.Ast.TryExpression)">
  1562. <summary>
  1563. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.TryExpression"/>.
  1564. </summary>
  1565. <param name="node">The expression to visit.</param>
  1566. <returns>The modified expression, if it or any subexpression was modified;
  1567. otherwise, returns the original expression.</returns>
  1568. </member>
  1569. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitTypeBinary(Microsoft.Scripting.Ast.TypeBinaryExpression)">
  1570. <summary>
  1571. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.TypeBinaryExpression"/>.
  1572. </summary>
  1573. <param name="node">The expression to visit.</param>
  1574. <returns>The modified expression, if it or any subexpression was modified;
  1575. otherwise, returns the original expression.</returns>
  1576. </member>
  1577. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitUnary(Microsoft.Scripting.Ast.UnaryExpression)">
  1578. <summary>
  1579. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"/>.
  1580. </summary>
  1581. <param name="node">The expression to visit.</param>
  1582. <returns>The modified expression, if it or any subexpression was modified;
  1583. otherwise, returns the original expression.</returns>
  1584. </member>
  1585. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitMemberInit(Microsoft.Scripting.Ast.MemberInitExpression)">
  1586. <summary>
  1587. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.MemberInitExpression"/>.
  1588. </summary>
  1589. <param name="node">The expression to visit.</param>
  1590. <returns>The modified expression, if it or any subexpression was modified;
  1591. otherwise, returns the original expression.</returns>
  1592. </member>
  1593. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitListInit(Microsoft.Scripting.Ast.ListInitExpression)">
  1594. <summary>
  1595. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.ListInitExpression"/>.
  1596. </summary>
  1597. <param name="node">The expression to visit.</param>
  1598. <returns>The modified expression, if it or any subexpression was modified;
  1599. otherwise, returns the original expression.</returns>
  1600. </member>
  1601. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitElementInit(Microsoft.Scripting.Ast.ElementInit)">
  1602. <summary>
  1603. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.ElementInit"/>.
  1604. </summary>
  1605. <param name="node">The expression to visit.</param>
  1606. <returns>The modified expression, if it or any subexpression was modified;
  1607. otherwise, returns the original expression.</returns>
  1608. </member>
  1609. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitMemberBinding(Microsoft.Scripting.Ast.MemberBinding)">
  1610. <summary>
  1611. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.MemberBinding"/>.
  1612. </summary>
  1613. <param name="node">The expression to visit.</param>
  1614. <returns>The modified expression, if it or any subexpression was modified;
  1615. otherwise, returns the original expression.</returns>
  1616. </member>
  1617. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitMemberAssignment(Microsoft.Scripting.Ast.MemberAssignment)">
  1618. <summary>
  1619. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.MemberAssignment"/>.
  1620. </summary>
  1621. <param name="node">The expression to visit.</param>
  1622. <returns>The modified expression, if it or any subexpression was modified;
  1623. otherwise, returns the original expression.</returns>
  1624. </member>
  1625. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitMemberMemberBinding(Microsoft.Scripting.Ast.MemberMemberBinding)">
  1626. <summary>
  1627. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.MemberMemberBinding"/>.
  1628. </summary>
  1629. <param name="node">The expression to visit.</param>
  1630. <returns>The modified expression, if it or any subexpression was modified;
  1631. otherwise, returns the original expression.</returns>
  1632. </member>
  1633. <member name="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitMemberListBinding(Microsoft.Scripting.Ast.MemberListBinding)">
  1634. <summary>
  1635. Visits the children of the <see cref="T:Microsoft.Scripting.Ast.MemberListBinding"/>.
  1636. </summary>
  1637. <param name="node">The expression to visit.</param>
  1638. <returns>The modified expression, if it or any subexpression was modified;
  1639. otherwise, returns the original expression.</returns>
  1640. </member>
  1641. <member name="T:System.Runtime.CompilerServices.RuntimeOps.MergedRuntimeVariables">
  1642. <summary>
  1643. Provides a list of variables, supporing read/write of the values
  1644. Exposed via RuntimeVariablesExpression
  1645. </summary>
  1646. </member>
  1647. <member name="T:System.Dynamic.ExpandoClass">
  1648. <summary>
  1649. Represents a dynamically assigned class. Expando objects which share the same
  1650. members will share the same class. Classes are dynamically assigned as the
  1651. expando object gains members.
  1652. </summary>
  1653. </member>
  1654. <member name="M:System.Dynamic.ExpandoClass.#ctor">
  1655. <summary>
  1656. Constructs the empty ExpandoClass. This is the class used when an
  1657. empty Expando object is initially constructed.
  1658. </summary>
  1659. </member>
  1660. <member name="M:System.Dynamic.ExpandoClass.#ctor(System.String[],System.Int32)">
  1661. <summary>
  1662. Constructs a new ExpandoClass that can hold onto the specified keys. The
  1663. keys must be sorted ordinally. The hash code must be precalculated for
  1664. the keys.
  1665. </summary>
  1666. </member>
  1667. <member name="M:System.Dynamic.ExpandoClass.FindNewClass(System.String)">
  1668. <summary>
  1669. Finds or creates a new ExpandoClass given the existing set of keys
  1670. in this ExpandoClass plus the new key to be added. Members in an
  1671. ExpandoClass are always stored case sensitively.
  1672. </summary>
  1673. </member>
  1674. <member name="M:System.Dynamic.ExpandoClass.GetTransitionList(System.Int32)">
  1675. <summary>
  1676. Gets the lists of transitions that are valid from this ExpandoClass
  1677. to an ExpandoClass whos keys hash to the apporopriate hash code.
  1678. </summary>
  1679. </member>
  1680. <member name="M:System.Dynamic.ExpandoClass.GetValueIndex(System.String,System.Boolean,System.Dynamic.ExpandoObject)">
  1681. <summary>
  1682. Gets the index at which the value should be stored for the specified name.
  1683. </summary>
  1684. </member>
  1685. <member name="M:System.Dynamic.ExpandoClass.GetValueIndexCaseSensitive(System.String)">
  1686. <summary>
  1687. Gets the index at which the value should be stored for the specified name
  1688. case sensitively. Returns the index even if the member is marked as deleted.
  1689. </summary>
  1690. </member>
  1691. <member name="M:System.Dynamic.ExpandoClass.GetValueIndexCaseInsensitive(System.String,System.Dynamic.ExpandoObject)">
  1692. <summary>
  1693. Gets the index at which the value should be stored for the specified name,
  1694. the method is only used in the case-insensitive case.
  1695. </summary>
  1696. <param name="name">the name of the member</param>
  1697. <param name="obj">The ExpandoObject associated with the class
  1698. that is used to check if a member has been deleted.</param>
  1699. <returns>
  1700. the exact match if there is one
  1701. if there is exactly one member with case insensitive match, return it
  1702. otherwise we throw AmbiguousMatchException.
  1703. </returns>
  1704. </member>
  1705. <member name="P:System.Dynamic.ExpandoClass.Keys">
  1706. <summary>
  1707. Gets the names of the keys that can be stored in the Expando class. The
  1708. list is sorted ordinally.
  1709. </summary>
  1710. </member>
  1711. <member name="T:System.Dynamic.GetIndexBinder">
  1712. <summary>
  1713. Represents the dynamic get index operation at the call site, providing the binding semantic and the details about the operation.
  1714. </summary>
  1715. </member>
  1716. <member name="M:System.Dynamic.GetIndexBinder.#ctor(System.Dynamic.CallInfo)">
  1717. <summary>
  1718. Initializes a new instance of the <see cref="T:System.Dynamic.GetIndexBinder"/>.
  1719. </summary>
  1720. <param name="callInfo">The signature of the arguments at the call site.</param>
  1721. </member>
  1722. <member name="M:System.Dynamic.GetIndexBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
  1723. <summary>
  1724. Performs the binding of the dynamic get index operation.
  1725. </summary>
  1726. <param name="target">The target of the dynamic get index operation.</param>
  1727. <param name="args">An array of arguments of the dynamic get index operation.</param>
  1728. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  1729. </member>
  1730. <member name="M:System.Dynamic.GetIndexBinder.FallbackGetIndex(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
  1731. <summary>
  1732. Performs the binding of the dynamic get index operation if the target dynamic object cannot bind.
  1733. </summary>
  1734. <param name="target">The target of the dynamic get index operation.</param>
  1735. <param name="indexes">The arguments of the dynamic get index operation.</param>
  1736. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  1737. </member>
  1738. <member name="M:System.Dynamic.GetIndexBinder.FallbackGetIndex(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)">
  1739. <summary>
  1740. When overridden in the derived class, performs the binding of the dynamic get index operation if the target dynamic object cannot bind.
  1741. </summary>
  1742. <param name="target">The target of the dynamic get index operation.</param>
  1743. <param name="indexes">The arguments of the dynamic get index operation.</param>
  1744. <param name="errorSuggestion">The binding result to use if binding fails, or null.</param>
  1745. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  1746. </member>
  1747. <member name="P:System.Dynamic.GetIndexBinder.ReturnType">
  1748. <summary>
  1749. The result type of the operation.
  1750. </summary>
  1751. </member>
  1752. <member name="P:System.Dynamic.GetIndexBinder.CallInfo">
  1753. <summary>
  1754. Gets the signature of the arguments at the call site.
  1755. </summary>
  1756. </member>
  1757. <member name="T:System.Dynamic.CreateInstanceBinder">
  1758. <summary>
  1759. Represents the create dynamic operation at the call site, providing the binding semantic and the details about the operation.
  1760. </summary>
  1761. </member>
  1762. <member name="M:System.Dynamic.CreateInstanceBinder.#ctor(System.Dynamic.CallInfo)">
  1763. <summary>
  1764. Initializes a new intsance of the <see cref="T:System.Dynamic.CreateInstanceBinder"/>.
  1765. </summary>
  1766. <param name="callInfo">The signature of the arguments at the call site.</param>
  1767. </member>
  1768. <member name="M:System.Dynamic.CreateInstanceBinder.FallbackCreateInstance(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
  1769. <summary>
  1770. Performs the binding of the dynamic create operation if the target dynamic object cannot bind.
  1771. </summary>
  1772. <param name="target">The target of the dynamic create operation.</param>
  1773. <param name="args">The arguments of the dynamic create operation.</param>
  1774. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  1775. </member>
  1776. <member name="M:System.Dynamic.CreateInstanceBinder.FallbackCreateInstance(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)">
  1777. <summary>
  1778. When overridden in the derived class, performs the binding of the dynamic create operation if the target dynamic object cannot bind.
  1779. </summary>
  1780. <param name="target">The target of the dynamic create operation.</param>
  1781. <param name="args">The arguments of the dynamic create operation.</param>
  1782. <param name="errorSuggestion">The binding result to use if binding fails, or null.</param>
  1783. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  1784. </member>
  1785. <member name="M:System.Dynamic.CreateInstanceBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
  1786. <summary>
  1787. Performs the binding of the dynamic create operation.
  1788. </summary>
  1789. <param name="target">The target of the dynamic create operation.</param>
  1790. <param name="args">An array of arguments of the dynamic create operation.</param>
  1791. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  1792. </member>
  1793. <member name="P:System.Dynamic.CreateInstanceBinder.ReturnType">
  1794. <summary>
  1795. The result type of the operation.
  1796. </summary>
  1797. </member>
  1798. <member name="P:System.Dynamic.CreateInstanceBinder.CallInfo">
  1799. <summary>
  1800. Gets the signature of the arguments at the call site.
  1801. </summary>
  1802. </member>
  1803. <member name="T:System.Dynamic.DeleteMemberBinder">
  1804. <summary>
  1805. Represents the dynamic delete member operation at the call site, providing the binding semantic and the details about the operation.
  1806. </summary>
  1807. </member>
  1808. <member name="M:System.Dynamic.DeleteMemberBinder.#ctor(System.String,System.Boolean)">
  1809. <summary>
  1810. Initializes a new instance of the <see cref="T:System.Dynamic.DeleteIndexBinder"/>.
  1811. </summary>
  1812. <param name="name">The name of the member to delete.</param>
  1813. <param name="ignoreCase">true if the name should be matched ignoring case; false otherwise.</param>
  1814. </member>
  1815. <member name="M:System.Dynamic.DeleteMemberBinder.FallbackDeleteMember(System.Dynamic.DynamicMetaObject)">
  1816. <summary>
  1817. Performs the binding of the dynamic delete member operation if the target dynamic object cannot bind.
  1818. </summary>
  1819. <param name="target">The target of the dynamic delete member operation.</param>
  1820. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  1821. </member>
  1822. <member name="M:System.Dynamic.DeleteMemberBinder.FallbackDeleteMember(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)">
  1823. <summary>
  1824. When overridden in the derived class, performs the binding of the dynamic delete member operation if the target dynamic object cannot bind.
  1825. </summary>
  1826. <param name="target">The target of the dynamic delete member operation.</param>
  1827. <param name="errorSuggestion">The binding result to use if binding fails, or null.</param>
  1828. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  1829. </member>
  1830. <member name="M:System.Dynamic.DeleteMemberBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
  1831. <summary>
  1832. Performs the binding of the dynamic delete member operation.
  1833. </summary>
  1834. <param name="target">The target of the dynamic delete member operation.</param>
  1835. <param name="args">An array of arguments of the dynamic delete member operation.</param>
  1836. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  1837. </member>
  1838. <member name="P:System.Dynamic.DeleteMemberBinder.Name">
  1839. <summary>
  1840. Gets the name of the member to delete.
  1841. </summary>
  1842. </member>
  1843. <member name="P:System.Dynamic.DeleteMemberBinder.IgnoreCase">
  1844. <summary>
  1845. Gets the value indicating if the string comparison should ignore the case of the member name.
  1846. </summary>
  1847. </member>
  1848. <member name="P:System.Dynamic.DeleteMemberBinder.ReturnType">
  1849. <summary>
  1850. The result type of the operation.
  1851. </summary>
  1852. </member>
  1853. <member name="T:System.Dynamic.InvokeBinder">
  1854. <summary>
  1855. Represents the invoke dynamic operation at the call site, providing the binding semantic and the details about the operation.
  1856. </summary>
  1857. </member>
  1858. <member name="M:System.Dynamic.InvokeBinder.#ctor(System.Dynamic.CallInfo)">
  1859. <summary>
  1860. Initializes a new instance of the <see cref="T:System.Dynamic.InvokeBinder"/>.
  1861. </summary>
  1862. <param name="callInfo">The signature of the arguments at the call site.</param>
  1863. </member>
  1864. <member name="M:System.Dynamic.InvokeBinder.FallbackInvoke(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
  1865. <summary>
  1866. Performs the binding of the dynamic invoke operation if the target dynamic object cannot bind.
  1867. </summary>
  1868. <param name="target">The target of the dynamic invoke operation.</param>
  1869. <param name="args">The arguments of the dynamic invoke operation.</param>
  1870. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  1871. </member>
  1872. <member name="M:System.Dynamic.InvokeBinder.FallbackInvoke(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)">
  1873. <summary>
  1874. Performs the binding of the dynamic invoke operation if the target dynamic object cannot bind.
  1875. </summary>
  1876. <param name="target">The target of the dynamic invoke operation.</param>
  1877. <param name="args">The arguments of the dynamic invoke operation.</param>
  1878. <param name="errorSuggestion">The binding result to use if binding fails, or null.</param>
  1879. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  1880. </member>
  1881. <member name="M:System.Dynamic.InvokeBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
  1882. <summary>
  1883. Performs the binding of the dynamic invoke operation.
  1884. </summary>
  1885. <param name="target">The target of the dynamic invoke operation.</param>
  1886. <param name="args">An array of arguments of the dynamic invoke operation.</param>
  1887. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  1888. </member>
  1889. <member name="P:System.Dynamic.InvokeBinder.ReturnType">
  1890. <summary>
  1891. The result type of the operation.
  1892. </summary>
  1893. </member>
  1894. <member name="P:System.Dynamic.InvokeBinder.CallInfo">
  1895. <summary>
  1896. Gets the signature of the arguments at the call site.
  1897. </summary>
  1898. </member>
  1899. <member name="T:System.Dynamic.BindingRestrictions">
  1900. <summary>
  1901. Represents a set of binding restrictions on the <see cref="T:System.Dynamic.DynamicMetaObject"/>under which the dynamic binding is valid.
  1902. </summary>
  1903. </member>
  1904. <member name="F:System.Dynamic.BindingRestrictions.Empty">
  1905. <summary>
  1906. Represents an empty set of binding restrictions. This field is read only.
  1907. </summary>
  1908. </member>
  1909. <member name="M:System.Dynamic.BindingRestrictions.Merge(System.Dynamic.BindingRestrictions)">
  1910. <summary>
  1911. Merges the set of binding restrictions with the current binding restrictions.
  1912. </summary>
  1913. <param name="restrictions">The set of restrictions with which to merge the current binding restrictions.</param>
  1914. <returns>The new set of binding restrictions.</returns>
  1915. </member>
  1916. <member name="M:System.Dynamic.BindingRestrictions.GetTypeRestriction(Microsoft.Scripting.Ast.Expression,System.Type)">
  1917. <summary>
  1918. Creates the binding restriction that check the expression for runtime type identity.
  1919. </summary>
  1920. <param name="expression">The expression to test.</param>
  1921. <param name="type">The exact type to test.</param>
  1922. <returns>The new binding restrictions.</returns>
  1923. </member>
  1924. <member name="M:System.Dynamic.BindingRestrictions.GetTypeRestriction(System.Dynamic.DynamicMetaObject)">
  1925. <summary>
  1926. The method takes a DynamicMetaObject, and returns an instance restriction for testing null if the object
  1927. holds a null value, otherwise returns a type restriction.
  1928. </summary>
  1929. </member>
  1930. <member name="M:System.Dynamic.BindingRestrictions.GetInstanceRestriction(Microsoft.Scripting.Ast.Expression,System.Object)">
  1931. <summary>
  1932. Creates the binding restriction that checks the expression for object instance identity.
  1933. </summary>
  1934. <param name="expression">The expression to test.</param>
  1935. <param name="instance">The exact object instance to test.</param>
  1936. <returns>The new binding restrictions.</returns>
  1937. </member>
  1938. <member name="M:System.Dynamic.BindingRestrictions.GetExpressionRestriction(Microsoft.Scripting.Ast.Expression)">
  1939. <summary>
  1940. Creates the binding restriction that checks the expression for arbitrary immutable properties.
  1941. </summary>
  1942. <param name="expression">The expression expression the restrictions.</param>
  1943. <returns>The new binding restrictions.</returns>
  1944. <remarks>
  1945. By convention, the general restrictions created by this method must only test
  1946. immutable object properties.
  1947. </remarks>
  1948. </member>
  1949. <member name="M:System.Dynamic.BindingRestrictions.Combine(System.Collections.Generic.IList{System.Dynamic.DynamicMetaObject})">
  1950. <summary>
  1951. Combines binding restrictions from the list of <see cref="T:System.Dynamic.DynamicMetaObject"/> instances into one set of restrictions.
  1952. </summary>
  1953. <param name="contributingObjects">The list of <see cref="T:System.Dynamic.DynamicMetaObject"/> instances from which to combine restrictions.</param>
  1954. <returns>The new set of binding restrictions.</returns>
  1955. </member>
  1956. <member name="M:System.Dynamic.BindingRestrictions.ToExpression">
  1957. <summary>
  1958. Creates the <see cref="T:Microsoft.Scripting.Ast.Expression"/> representing the binding restrictions.
  1959. </summary>
  1960. <returns>The expression tree representing the restrictions.</returns>
  1961. </member>
  1962. <member name="T:System.Dynamic.BindingRestrictions.TestBuilder">
  1963. <summary>
  1964. Builds a balanced tree of AndAlso nodes.
  1965. We do this so the compiler won't stack overflow if we have many
  1966. restrictions.
  1967. </summary>
  1968. </member>
  1969. <member name="T:System.Runtime.CompilerServices.RuleCache`1">
  1970. <summary>
  1971. This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
  1972. Represents a cache of runtime binding rules.
  1973. </summary>
  1974. <typeparam name="T">The delegate type.</typeparam>
  1975. </member>
  1976. <member name="T:System.Dynamic.SetIndexBinder">
  1977. <summary>
  1978. Represents the dynamic set index operation at the call site, providing the binding semantic and the details about the operation.
  1979. </summary>
  1980. </member>
  1981. <member name="M:System.Dynamic.SetIndexBinder.#ctor(System.Dynamic.CallInfo)">
  1982. <summary>
  1983. Initializes a new instance of the <see cref="T:System.Dynamic.SetIndexBinder"/>.
  1984. </summary>
  1985. <param name="callInfo">The signature of the arguments at the call site.</param>
  1986. </member>
  1987. <member name="M:System.Dynamic.SetIndexBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
  1988. <summary>
  1989. Performs the binding of the dynamic set index operation.
  1990. </summary>
  1991. <param name="target">The target of the dynamic set index operation.</param>
  1992. <param name="args">An array of arguments of the dynamic set index operation.</param>
  1993. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  1994. </member>
  1995. <member name="M:System.Dynamic.SetIndexBinder.FallbackSetIndex(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)">
  1996. <summary>
  1997. Performs the binding of the dynamic set index operation if the target dynamic object cannot bind.
  1998. </summary>
  1999. <param name="target">The target of the dynamic set index operation.</param>
  2000. <param name="indexes">The arguments of the dynamic set index operation.</param>
  2001. <param name="value">The value to set to the collection.</param>
  2002. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  2003. </member>
  2004. <member name="M:System.Dynamic.SetIndexBinder.FallbackSetIndex(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)">
  2005. <summary>
  2006. When overridden in the derived class, performs the binding of the dynamic set index operation if the target dynamic object cannot bind.
  2007. </summary>
  2008. <param name="target">The target of the dynamic set index operation.</param>
  2009. <param name="indexes">The arguments of the dynamic set index operation.</param>
  2010. <param name="value">The value to set to the collection.</param>
  2011. <param name="errorSuggestion">The binding result to use if binding fails, or null.</param>
  2012. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  2013. </member>
  2014. <member name="P:System.Dynamic.SetIndexBinder.ReturnType">
  2015. <summary>
  2016. The result type of the operation.
  2017. </summary>
  2018. </member>
  2019. <member name="P:System.Dynamic.SetIndexBinder.CallInfo">
  2020. <summary>
  2021. Gets the signature of the arguments at the call site.
  2022. </summary>
  2023. </member>
  2024. <member name="T:System.Dynamic.SetMemberBinder">
  2025. <summary>
  2026. Represents the dynamic set member operation at the call site, providing the binding semantic and the details about the operation.
  2027. </summary>
  2028. </member>
  2029. <member name="M:System.Dynamic.SetMemberBinder.#ctor(System.String,System.Boolean)">
  2030. <summary>
  2031. Initializes a new instance of the <see cref="T:System.Dynamic.SetMemberBinder"/>.
  2032. </summary>
  2033. <param name="name">The name of the member to get.</param>
  2034. <param name="ignoreCase">true if the name should be matched ignoring case; false otherwise.</param>
  2035. </member>
  2036. <member name="M:System.Dynamic.SetMemberBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
  2037. <summary>
  2038. Performs the binding of the dynamic set member operation.
  2039. </summary>
  2040. <param name="target">The target of the dynamic set member operation.</param>
  2041. <param name="args">An array of arguments of the dynamic set member operation.</param>
  2042. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  2043. </member>
  2044. <member name="M:System.Dynamic.SetMemberBinder.FallbackSetMember(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)">
  2045. <summary>
  2046. Performs the binding of the dynamic set member operation if the target dynamic object cannot bind.
  2047. </summary>
  2048. <param name="target">The target of the dynamic set member operation.</param>
  2049. <param name="value">The value to set to the member.</param>
  2050. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  2051. </member>
  2052. <member name="M:System.Dynamic.SetMemberBinder.FallbackSetMember(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)">
  2053. <summary>
  2054. Performs the binding of the dynamic set member operation if the target dynamic object cannot bind.
  2055. </summary>
  2056. <param name="target">The target of the dynamic set member operation.</param>
  2057. <param name="value">The value to set to the member.</param>
  2058. <param name="errorSuggestion">The binding result to use if binding fails, or null.</param>
  2059. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  2060. </member>
  2061. <member name="P:System.Dynamic.SetMemberBinder.ReturnType">
  2062. <summary>
  2063. The result type of the operation.
  2064. </summary>
  2065. </member>
  2066. <member name="P:System.Dynamic.SetMemberBinder.Name">
  2067. <summary>
  2068. Gets the name of the member to get.
  2069. </summary>
  2070. </member>
  2071. <member name="P:System.Dynamic.SetMemberBinder.IgnoreCase">
  2072. <summary>
  2073. Gets the value indicating if the string comparison should ignore the case of the member name.
  2074. </summary>
  2075. </member>
  2076. <member name="T:Microsoft.Scripting.Ast.Expression">
  2077. <summary>
  2078. The base type for all nodes in Expression Trees.
  2079. </summary>
  2080. </member>
  2081. <member name="M:Microsoft.Scripting.Ast.Expression.DebugInfo(Microsoft.Scripting.Ast.SymbolDocumentInfo,System.Int32,System.Int32,System.Int32,System.Int32)">
  2082. <summary>
  2083. Creates a <see cref="T:Microsoft.Scripting.Ast.DebugInfoExpression"/> with the specified span.
  2084. </summary>
  2085. <param name="document">The <see cref="T:Microsoft.Scripting.Ast.SymbolDocumentInfo"/> that represents the source file.</param>
  2086. <param name="startLine">The start line of this <see cref="T:Microsoft.Scripting.Ast.DebugInfoExpression"/>. Must be greater than 0.</param>
  2087. <param name="startColumn">The start column of this <see cref="T:Microsoft.Scripting.Ast.DebugInfoExpression"/>. Must be greater than 0.</param>
  2088. <param name="endLine">The end line of this <see cref="T:Microsoft.Scripting.Ast.DebugInfoExpression"/>. Must be greater or equal than the start line.</param>
  2089. <param name="endColumn">The end column of this <see cref="T:Microsoft.Scripting.Ast.DebugInfoExpression"/>. If the end line is the same as the start line, it must be greater or equal than the start column. In any case, must be greater than 0.</param>
  2090. <returns>An instance of <see cref="T:Microsoft.Scripting.Ast.DebugInfoExpression"/>.</returns>
  2091. </member>
  2092. <member name="M:Microsoft.Scripting.Ast.Expression.ClearDebugInfo(Microsoft.Scripting.Ast.SymbolDocumentInfo)">
  2093. <summary>
  2094. Creates a <see cref="T:Microsoft.Scripting.Ast.DebugInfoExpression"/> for clearing a sequence point.
  2095. </summary>
  2096. <param name="document">The <see cref="T:Microsoft.Scripting.Ast.SymbolDocumentInfo"/> that represents the source file.</param>
  2097. <returns>An instance of <see cref="T:Microsoft.Scripting.Ast.DebugInfoExpression"/> for clearning a sequence point.</returns>
  2098. </member>
  2099. <member name="M:Microsoft.Scripting.Ast.Expression.SymbolDocument(System.String)">
  2100. <summary>
  2101. Creates an instance of <see cref="T:System.Linq.Expressions.SymbolDocumentInfo" />.
  2102. </summary>
  2103. <param name="fileName">A <see cref="T:System.String" /> to set the <see cref="P:System.Linq.Expressions.SymbolDocumentInfo.FileName" /> equal to.</param>
  2104. <returns>A <see cref="T:System.Linq.Expressions.SymbolDocumentInfo" /> that has the <see cref="P:System.Linq.Expressions.SymbolDocumentInfo.FileName" /> property set to the specified value.</returns>
  2105. </member>
  2106. <member name="M:Microsoft.Scripting.Ast.Expression.SymbolDocument(System.String,System.Guid)">
  2107. <summary>
  2108. Creates an instance of <see cref="T:System.Linq.Expressions.SymbolDocumentInfo" />.
  2109. </summary>
  2110. <param name="fileName">A <see cref="T:System.String" /> to set the <see cref="P:System.Linq.Expressions.SymbolDocumentInfo.FileName" /> equal to.</param>
  2111. <param name="language">A <see cref="T:System.Guid" /> to set the <see cref="P:System.Linq.Expressions.SymbolDocumentInfo.Language" /> equal to.</param>
  2112. <returns>A <see cref="T:System.Linq.Expressions.SymbolDocumentInfo" /> that has the <see cref="P:System.Linq.Expressions.SymbolDocumentInfo.FileName" />
  2113. and <see cref="P:System.Linq.Expressions.SymbolDocumentInfo.Language" /> properties set to the specified value.</returns>
  2114. </member>
  2115. <member name="M:Microsoft.Scripting.Ast.Expression.SymbolDocument(System.String,System.Guid,System.Guid)">
  2116. <summary>
  2117. Creates an instance of <see cref="T:System.Linq.Expressions.SymbolDocumentInfo" />.
  2118. </summary>
  2119. <param name="fileName">A <see cref="T:System.String" /> to set the <see cref="P:System.Linq.Expressions.SymbolDocumentInfo.FileName" /> equal to.</param>
  2120. <param name="language">A <see cref="T:System.Guid" /> to set the <see cref="P:System.Linq.Expressions.SymbolDocumentInfo.Language" /> equal to.</param>
  2121. <param name="languageVendor">A <see cref="T:System.Guid" /> to set the <see cref="P:System.Linq.Expressions.SymbolDocumentInfo.LanguageVendor" /> equal to.</param>
  2122. <returns>A <see cref="T:System.Linq.Expressions.SymbolDocumentInfo" /> that has the <see cref="P:System.Linq.Expressions.SymbolDocumentInfo.FileName" />
  2123. and <see cref="P:System.Linq.Expressions.SymbolDocumentInfo.Language" />
  2124. and <see cref="P:System.Linq.Expressions.SymbolDocumentInfo.LanguageVendor" /> properties set to the specified value.</returns>
  2125. </member>
  2126. <member name="M:Microsoft.Scripting.Ast.Expression.SymbolDocument(System.String,System.Guid,System.Guid,System.Guid)">
  2127. <summary>
  2128. Creates an instance of <see cref="T:System.Linq.Expressions.SymbolDocumentInfo" />.
  2129. </summary>
  2130. <param name="fileName">A <see cref="T:System.String" /> to set the <see cref="P:System.Linq.Expressions.SymbolDocumentInfo.FileName" /> equal to.</param>
  2131. <param name="language">A <see cref="T:System.Guid" /> to set the <see cref="P:System.Linq.Expressions.SymbolDocumentInfo.Language" /> equal to.</param>
  2132. <param name="languageVendor">A <see cref="T:System.Guid" /> to set the <see cref="P:System.Linq.Expressions.SymbolDocumentInfo.LanguageVendor" /> equal to.</param>
  2133. <param name="documentType">A <see cref="T:System.Guid" /> to set the <see cref="P:System.Linq.Expressions.SymbolDocumentInfo.DocumentType" /> equal to.</param>
  2134. <returns>A <see cref="T:System.Linq.Expressions.SymbolDocumentInfo" /> that has the <see cref="P:System.Linq.Expressions.SymbolDocumentInfo.FileName" />
  2135. and <see cref="P:System.Linq.Expressions.SymbolDocumentInfo.Language" />
  2136. and <see cref="P:System.Linq.Expressions.SymbolDocumentInfo.LanguageVendor" />
  2137. and <see cref="P:System.Linq.Expressions.SymbolDocumentInfo.DocumentType" /> properties set to the specified value.</returns>
  2138. </member>
  2139. <member name="M:Microsoft.Scripting.Ast.Expression.Break(Microsoft.Scripting.Ast.LabelTarget)">
  2140. <summary>
  2141. Creates a <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> representing a break statement.
  2142. </summary>
  2143. <param name="target">The <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/> that the <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> will jump to.</param>
  2144. <returns>
  2145. A <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> with <see cref="P:GotoExpression.Kind"/> equal to Break,
  2146. the <see cref="P:GotoExpression.Target"/> property set to <paramref name="target"/>, and a null value to be passed to the target label upon jumping.
  2147. </returns>
  2148. </member>
  2149. <member name="M:Microsoft.Scripting.Ast.Expression.Break(Microsoft.Scripting.Ast.LabelTarget,Microsoft.Scripting.Ast.Expression)">
  2150. <summary>
  2151. Creates a <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> representing a break statement. The value passed to the label upon jumping can be specified.
  2152. </summary>
  2153. <param name="target">The <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/> that the <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> will jump to.</param>
  2154. <param name="value">The value that will be passed to the associated label upon jumping.</param>
  2155. <returns>
  2156. A <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> with <see cref="P:GotoExpression.Kind"/> equal to Break,
  2157. the <see cref="P:GotoExpression.Target"/> property set to <paramref name="target"/>,
  2158. and <paramref name="value"/> to be passed to the target label upon jumping.
  2159. </returns>
  2160. </member>
  2161. <member name="M:Microsoft.Scripting.Ast.Expression.Break(Microsoft.Scripting.Ast.LabelTarget,System.Type)">
  2162. <summary>
  2163. Creates a <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> representing a break statement with the specified type.
  2164. </summary>
  2165. <param name="target">The <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/> that the <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> will jump to.</param>
  2166. <param name="type">An <see cref="T:System.Type"/> to set the <see cref="P:Expression.Type"/> property equal to.</param>
  2167. <returns>
  2168. A <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> with <see cref="P:GotoExpression.Kind"/> equal to Break,
  2169. the <see cref="P:GotoExpression.Target"/> property set to <paramref name="target"/>,
  2170. and the <see cref="P:Expression.Type"/> property set to <paramref name="type"/>.
  2171. </returns>
  2172. </member>
  2173. <member name="M:Microsoft.Scripting.Ast.Expression.Break(Microsoft.Scripting.Ast.LabelTarget,Microsoft.Scripting.Ast.Expression,System.Type)">
  2174. <summary>
  2175. Creates a <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> representing a break statement with the specified type.
  2176. The value passed to the label upon jumping can be specified.
  2177. </summary>
  2178. <param name="target">The <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/> that the <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> will jump to.</param>
  2179. <param name="value">The value that will be passed to the associated label upon jumping.</param>
  2180. <param name="type">An <see cref="T:System.Type"/> to set the <see cref="P:Expression.Type"/> property equal to.</param>
  2181. <returns>
  2182. A <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> with <see cref="P:GotoExpression.Kind"/> equal to Break,
  2183. the <see cref="P:GotoExpression.Target"/> property set to <paramref name="target"/>,
  2184. the <see cref="P:Expression.Type"/> property set to <paramref name="type"/>,
  2185. and <paramref name="value"/> to be passed to the target label upon jumping.
  2186. </returns>
  2187. </member>
  2188. <member name="M:Microsoft.Scripting.Ast.Expression.Continue(Microsoft.Scripting.Ast.LabelTarget)">
  2189. <summary>
  2190. Creates a <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> representing a continue statement.
  2191. </summary>
  2192. <param name="target">The <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/> that the <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> will jump to.</param>
  2193. <returns>
  2194. A <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> with <see cref="P:GotoExpression.Kind"/> equal to Continue,
  2195. the <see cref="P:GotoExpression.Target"/> property set to <paramref name="target"/>,
  2196. and a null value to be passed to the target label upon jumping.
  2197. </returns>
  2198. </member>
  2199. <member name="M:Microsoft.Scripting.Ast.Expression.Continue(Microsoft.Scripting.Ast.LabelTarget,System.Type)">
  2200. <summary>
  2201. Creates a <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> representing a continue statement with the specified type.
  2202. </summary>
  2203. <param name="target">The <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/> that the <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> will jump to.</param>
  2204. <param name="type">An <see cref="T:System.Type"/> to set the <see cref="P:Expression.Type"/> property equal to.</param>
  2205. <returns>
  2206. A <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> with <see cref="P:GotoExpression.Kind"/> equal to Continue,
  2207. the <see cref="P:GotoExpression.Target"/> property set to <paramref name="target"/>,
  2208. the <see cref="P:Expression.Type"/> property set to <paramref name="type"/>,
  2209. and a null value to be passed to the target label upon jumping.
  2210. </returns>
  2211. </member>
  2212. <member name="M:Microsoft.Scripting.Ast.Expression.Return(Microsoft.Scripting.Ast.LabelTarget)">
  2213. <summary>
  2214. Creates a <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> representing a return statement.
  2215. </summary>
  2216. <param name="target">The <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/> that the <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> will jump to.</param>
  2217. <returns>
  2218. A <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> with <see cref="P:GotoExpression.Kind"/> equal to Return,
  2219. the <see cref="P:GotoExpression.Target"/> property set to <paramref name="target"/>,
  2220. and a null value to be passed to the target label upon jumping.
  2221. </returns>
  2222. </member>
  2223. <member name="M:Microsoft.Scripting.Ast.Expression.Return(Microsoft.Scripting.Ast.LabelTarget,System.Type)">
  2224. <summary>
  2225. Creates a <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> representing a return statement with the specified type.
  2226. </summary>
  2227. <param name="target">The <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/> that the <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> will jump to.</param>
  2228. <param name="type">An <see cref="T:System.Type"/> to set the <see cref="P:Expression.Type"/> property equal to.</param>
  2229. <returns>
  2230. A <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> with <see cref="P:GotoExpression.Kind"/> equal to Return,
  2231. the <see cref="P:GotoExpression.Target"/> property set to <paramref name="target"/>,
  2232. the <see cref="P:Expression.Type"/> property set to <paramref name="type"/>,
  2233. and a null value to be passed to the target label upon jumping.
  2234. </returns>
  2235. </member>
  2236. <member name="M:Microsoft.Scripting.Ast.Expression.Return(Microsoft.Scripting.Ast.LabelTarget,Microsoft.Scripting.Ast.Expression)">
  2237. <summary>
  2238. Creates a <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> representing a return statement. The value passed to the label upon jumping can be specified.
  2239. </summary>
  2240. <param name="target">The <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/> that the <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> will jump to.</param>
  2241. <param name="value">The value that will be passed to the associated label upon jumping.</param>
  2242. <returns>
  2243. A <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> with <see cref="P:GotoExpression.Kind"/> equal to Continue,
  2244. the <see cref="P:GotoExpression.Target"/> property set to <paramref name="target"/>,
  2245. and <paramref name="value"/> to be passed to the target label upon jumping.
  2246. </returns>
  2247. </member>
  2248. <member name="M:Microsoft.Scripting.Ast.Expression.Return(Microsoft.Scripting.Ast.LabelTarget,Microsoft.Scripting.Ast.Expression,System.Type)">
  2249. <summary>
  2250. Creates a <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> representing a return statement with the specified type.
  2251. The value passed to the label upon jumping can be specified.
  2252. </summary>
  2253. <param name="target">The <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/> that the <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> will jump to.</param>
  2254. <param name="value">The value that will be passed to the associated label upon jumping.</param>
  2255. <param name="type">An <see cref="T:System.Type"/> to set the <see cref="P:Expression.Type"/> property equal to.</param>
  2256. <returns>
  2257. A <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> with <see cref="P:GotoExpression.Kind"/> equal to Continue,
  2258. the <see cref="P:GotoExpression.Target"/> property set to <paramref name="target"/>,
  2259. the <see cref="P:Expression.Type"/> property set to <paramref name="type"/>,
  2260. and <paramref name="value"/> to be passed to the target label upon jumping.
  2261. </returns>
  2262. </member>
  2263. <member name="M:Microsoft.Scripting.Ast.Expression.Goto(Microsoft.Scripting.Ast.LabelTarget)">
  2264. <summary>
  2265. Creates a <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> representing a goto.
  2266. </summary>
  2267. <param name="target">The <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/> that the <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> will jump to.</param>
  2268. <returns>
  2269. A <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> with <see cref="P:GotoExpression.Kind"/> equal to Goto,
  2270. the <see cref="P:GotoExpression.Target"/> property set to the specified value,
  2271. and a null value to be passed to the target label upon jumping.
  2272. </returns>
  2273. </member>
  2274. <member name="M:Microsoft.Scripting.Ast.Expression.Goto(Microsoft.Scripting.Ast.LabelTarget,System.Type)">
  2275. <summary>
  2276. Creates a <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> representing a goto with the specified type.
  2277. </summary>
  2278. <param name="target">The <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/> that the <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> will jump to.</param>
  2279. <param name="type">An <see cref="T:System.Type"/> to set the <see cref="P:Expression.Type"/> property equal to.</param>
  2280. <returns>
  2281. A <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> with <see cref="P:GotoExpression.Kind"/> equal to Goto,
  2282. the <see cref="P:GotoExpression.Target"/> property set to the specified value,
  2283. the <see cref="P:Expression.Type"/> property set to <paramref name="type"/>,
  2284. and a null value to be passed to the target label upon jumping.
  2285. </returns>
  2286. </member>
  2287. <member name="M:Microsoft.Scripting.Ast.Expression.Goto(Microsoft.Scripting.Ast.LabelTarget,Microsoft.Scripting.Ast.Expression)">
  2288. <summary>
  2289. Creates a <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> representing a goto. The value passed to the label upon jumping can be specified.
  2290. </summary>
  2291. <param name="target">The <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/> that the <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> will jump to.</param>
  2292. <param name="value">The value that will be passed to the associated label upon jumping.</param>
  2293. <returns>
  2294. A <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> with <see cref="P:GotoExpression.Kind"/> equal to Goto,
  2295. the <see cref="P:GotoExpression.Target"/> property set to <paramref name="target"/>,
  2296. and <paramref name="value"/> to be passed to the target label upon jumping.
  2297. </returns>
  2298. </member>
  2299. <member name="M:Microsoft.Scripting.Ast.Expression.Goto(Microsoft.Scripting.Ast.LabelTarget,Microsoft.Scripting.Ast.Expression,System.Type)">
  2300. <summary>
  2301. Creates a <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> representing a goto with the specified type.
  2302. The value passed to the label upon jumping can be specified.
  2303. </summary>
  2304. <param name="target">The <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/> that the <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> will jump to.</param>
  2305. <param name="value">The value that will be passed to the associated label upon jumping.</param>
  2306. <param name="type">An <see cref="T:System.Type"/> to set the <see cref="P:Expression.Type"/> property equal to.</param>
  2307. <returns>
  2308. A <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> with <see cref="P:GotoExpression.Kind"/> equal to Goto,
  2309. the <see cref="P:GotoExpression.Target"/> property set to <paramref name="target"/>,
  2310. the <see cref="P:Expression.Type"/> property set to <paramref name="type"/>,
  2311. and <paramref name="value"/> to be passed to the target label upon jumping.
  2312. </returns>
  2313. </member>
  2314. <member name="M:Microsoft.Scripting.Ast.Expression.MakeGoto(Microsoft.Scripting.Ast.GotoExpressionKind,Microsoft.Scripting.Ast.LabelTarget,Microsoft.Scripting.Ast.Expression,System.Type)">
  2315. <summary>
  2316. Creates a <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> representing a jump of the specified <see cref="T:Microsoft.Scripting.Ast.GotoExpressionKind"/>.
  2317. The value passed to the label upon jumping can also be specified.
  2318. </summary>
  2319. <param name="kind">The <see cref="T:Microsoft.Scripting.Ast.GotoExpressionKind"/> of the <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/>.</param>
  2320. <param name="target">The <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/> that the <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> will jump to.</param>
  2321. <param name="value">The value that will be passed to the associated label upon jumping.</param>
  2322. <param name="type">An <see cref="T:System.Type"/> to set the <see cref="P:Expression.Type"/> property equal to.</param>
  2323. <returns>
  2324. A <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> with <see cref="P:GotoExpression.Kind"/> equal to <paramref name="kind"/>,
  2325. the <see cref="P:GotoExpression.Target"/> property set to <paramref name="target"/>,
  2326. the <see cref="P:Expression.Type"/> property set to <paramref name="type"/>,
  2327. and <paramref name="value"/> to be passed to the target label upon jumping.
  2328. </returns>
  2329. </member>
  2330. <member name="M:Microsoft.Scripting.Ast.Expression.MakeDynamic(System.Type,System.Runtime.CompilerServices.CallSiteBinder,Microsoft.Scripting.Ast.Expression[])">
  2331. <summary>
  2332. Creates a <see cref="T:Microsoft.Scripting.Ast.DynamicExpression"/> that represents a dynamic operation bound by the provided <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"/>.
  2333. </summary>
  2334. <param name="delegateType">The type of the delegate used by the <see cref="T:System.Runtime.CompilerServices.CallSite"/>.</param>
  2335. <param name="binder">The runtime binder for the dynamic operation.</param>
  2336. <param name="arguments">The arguments to the dynamic operation.</param>
  2337. <returns>
  2338. A <see cref="T:Microsoft.Scripting.Ast.DynamicExpression"/> that has <see cref="P:Microsoft.Scripting.Ast.Expression.NodeType"/> equal to
  2339. <see cref="F:Microsoft.Scripting.Ast.ExpressionType.Dynamic">Dynamic</see> and has the
  2340. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.DelegateType">DelegateType</see>,
  2341. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Binder">Binder</see>, and
  2342. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Arguments">Arguments</see> set to the specified values.
  2343. </returns>
  2344. </member>
  2345. <member name="M:Microsoft.Scripting.Ast.Expression.MakeDynamic(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  2346. <summary>
  2347. Creates a <see cref="T:Microsoft.Scripting.Ast.DynamicExpression"/> that represents a dynamic operation bound by the provided <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"/>.
  2348. </summary>
  2349. <param name="delegateType">The type of the delegate used by the <see cref="T:System.Runtime.CompilerServices.CallSite"/>.</param>
  2350. <param name="binder">The runtime binder for the dynamic operation.</param>
  2351. <param name="arguments">The arguments to the dynamic operation.</param>
  2352. <returns>
  2353. A <see cref="T:Microsoft.Scripting.Ast.DynamicExpression"/> that has <see cref="P:Microsoft.Scripting.Ast.Expression.NodeType"/> equal to
  2354. <see cref="F:Microsoft.Scripting.Ast.ExpressionType.Dynamic">Dynamic</see> and has the
  2355. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.DelegateType">DelegateType</see>,
  2356. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Binder">Binder</see>, and
  2357. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Arguments">Arguments</see> set to the specified values.
  2358. </returns>
  2359. </member>
  2360. <member name="M:Microsoft.Scripting.Ast.Expression.MakeDynamic(System.Type,System.Runtime.CompilerServices.CallSiteBinder,Microsoft.Scripting.Ast.Expression)">
  2361. <summary>
  2362. Creates a <see cref="T:Microsoft.Scripting.Ast.DynamicExpression"/> that represents a dynamic operation bound by the provided <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"/> and one argument.
  2363. </summary>
  2364. <param name="delegateType">The type of the delegate used by the <see cref="T:System.Runtime.CompilerServices.CallSite"/>.</param>
  2365. <param name="binder">The runtime binder for the dynamic operation.</param>
  2366. <param name="arg0">The argument to the dynamic operation.</param>
  2367. <returns>
  2368. A <see cref="T:Microsoft.Scripting.Ast.DynamicExpression"/> that has <see cref="P:Microsoft.Scripting.Ast.Expression.NodeType"/> equal to
  2369. <see cref="F:Microsoft.Scripting.Ast.ExpressionType.Dynamic">Dynamic</see> and has the
  2370. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.DelegateType">DelegateType</see>,
  2371. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Binder">Binder</see>, and
  2372. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Arguments">Arguments</see> set to the specified values.
  2373. </returns>
  2374. </member>
  2375. <member name="M:Microsoft.Scripting.Ast.Expression.MakeDynamic(System.Type,System.Runtime.CompilerServices.CallSiteBinder,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2376. <summary>
  2377. Creates a <see cref="T:Microsoft.Scripting.Ast.DynamicExpression"/> that represents a dynamic operation bound by the provided <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"/> and two arguments.
  2378. </summary>
  2379. <param name="delegateType">The type of the delegate used by the <see cref="T:System.Runtime.CompilerServices.CallSite"/>.</param>
  2380. <param name="binder">The runtime binder for the dynamic operation.</param>
  2381. <param name="arg0">The first argument to the dynamic operation.</param>
  2382. <param name="arg1">The second argument to the dynamic operation.</param>
  2383. <returns>
  2384. A <see cref="T:Microsoft.Scripting.Ast.DynamicExpression"/> that has <see cref="P:Microsoft.Scripting.Ast.Expression.NodeType"/> equal to
  2385. <see cref="F:Microsoft.Scripting.Ast.ExpressionType.Dynamic">Dynamic</see> and has the
  2386. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.DelegateType">DelegateType</see>,
  2387. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Binder">Binder</see>, and
  2388. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Arguments">Arguments</see> set to the specified values.
  2389. </returns>
  2390. </member>
  2391. <member name="M:Microsoft.Scripting.Ast.Expression.MakeDynamic(System.Type,System.Runtime.CompilerServices.CallSiteBinder,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2392. <summary>
  2393. Creates a <see cref="T:Microsoft.Scripting.Ast.DynamicExpression"/> that represents a dynamic operation bound by the provided <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"/> and three arguments.
  2394. </summary>
  2395. <param name="delegateType">The type of the delegate used by the <see cref="T:System.Runtime.CompilerServices.CallSite"/>.</param>
  2396. <param name="binder">The runtime binder for the dynamic operation.</param>
  2397. <param name="arg0">The first argument to the dynamic operation.</param>
  2398. <param name="arg1">The second argument to the dynamic operation.</param>
  2399. <param name="arg2">The third argument to the dynamic operation.</param>
  2400. <returns>
  2401. A <see cref="T:Microsoft.Scripting.Ast.DynamicExpression"/> that has <see cref="P:Microsoft.Scripting.Ast.Expression.NodeType"/> equal to
  2402. <see cref="F:Microsoft.Scripting.Ast.ExpressionType.Dynamic">Dynamic</see> and has the
  2403. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.DelegateType">DelegateType</see>,
  2404. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Binder">Binder</see>, and
  2405. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Arguments">Arguments</see> set to the specified values.
  2406. </returns>
  2407. </member>
  2408. <member name="M:Microsoft.Scripting.Ast.Expression.MakeDynamic(System.Type,System.Runtime.CompilerServices.CallSiteBinder,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2409. <summary>
  2410. Creates a <see cref="T:Microsoft.Scripting.Ast.DynamicExpression"/> that represents a dynamic operation bound by the provided <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"/> and four arguments.
  2411. </summary>
  2412. <param name="delegateType">The type of the delegate used by the <see cref="T:System.Runtime.CompilerServices.CallSite"/>.</param>
  2413. <param name="binder">The runtime binder for the dynamic operation.</param>
  2414. <param name="arg0">The first argument to the dynamic operation.</param>
  2415. <param name="arg1">The second argument to the dynamic operation.</param>
  2416. <param name="arg2">The third argument to the dynamic operation.</param>
  2417. <param name="arg3">The fourth argument to the dynamic operation.</param>
  2418. <returns>
  2419. A <see cref="T:Microsoft.Scripting.Ast.DynamicExpression"/> that has <see cref="P:Microsoft.Scripting.Ast.Expression.NodeType"/> equal to
  2420. <see cref="F:Microsoft.Scripting.Ast.ExpressionType.Dynamic">Dynamic</see> and has the
  2421. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.DelegateType">DelegateType</see>,
  2422. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Binder">Binder</see>, and
  2423. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Arguments">Arguments</see> set to the specified values.
  2424. </returns>
  2425. </member>
  2426. <member name="M:Microsoft.Scripting.Ast.Expression.Dynamic(System.Runtime.CompilerServices.CallSiteBinder,System.Type,Microsoft.Scripting.Ast.Expression[])">
  2427. <summary>
  2428. Creates a <see cref="T:Microsoft.Scripting.Ast.DynamicExpression"/> that represents a dynamic operation bound by the provided <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"/>.
  2429. </summary>
  2430. <param name="binder">The runtime binder for the dynamic operation.</param>
  2431. <param name="returnType">The result type of the dynamic expression.</param>
  2432. <param name="arguments">The arguments to the dynamic operation.</param>
  2433. <returns>
  2434. A <see cref="T:Microsoft.Scripting.Ast.DynamicExpression"/> that has <see cref="P:Microsoft.Scripting.Ast.Expression.NodeType"/> equal to
  2435. <see cref="F:Microsoft.Scripting.Ast.ExpressionType.Dynamic">Dynamic</see> and has the
  2436. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Binder">Binder</see> and
  2437. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Arguments">Arguments</see> set to the specified values.
  2438. </returns>
  2439. <remarks>
  2440. The <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.DelegateType">DelegateType</see> property of the
  2441. result will be inferred from the types of the arguments and the specified return type.
  2442. </remarks>
  2443. </member>
  2444. <member name="M:Microsoft.Scripting.Ast.Expression.Dynamic(System.Runtime.CompilerServices.CallSiteBinder,System.Type,Microsoft.Scripting.Ast.Expression)">
  2445. <summary>
  2446. Creates a <see cref="T:Microsoft.Scripting.Ast.DynamicExpression"/> that represents a dynamic operation bound by the provided <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"/>.
  2447. </summary>
  2448. <param name="binder">The runtime binder for the dynamic operation.</param>
  2449. <param name="returnType">The result type of the dynamic expression.</param>
  2450. <param name="arg0">The first argument to the dynamic operation.</param>
  2451. <returns>
  2452. A <see cref="T:Microsoft.Scripting.Ast.DynamicExpression"/> that has <see cref="P:Microsoft.Scripting.Ast.Expression.NodeType"/> equal to
  2453. <see cref="F:Microsoft.Scripting.Ast.ExpressionType.Dynamic">Dynamic</see> and has the
  2454. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Binder">Binder</see> and
  2455. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Arguments">Arguments</see> set to the specified values.
  2456. </returns>
  2457. <remarks>
  2458. The <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.DelegateType">DelegateType</see> property of the
  2459. result will be inferred from the types of the arguments and the specified return type.
  2460. </remarks>
  2461. </member>
  2462. <member name="M:Microsoft.Scripting.Ast.Expression.Dynamic(System.Runtime.CompilerServices.CallSiteBinder,System.Type,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2463. <summary>
  2464. Creates a <see cref="T:Microsoft.Scripting.Ast.DynamicExpression"/> that represents a dynamic operation bound by the provided <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"/>.
  2465. </summary>
  2466. <param name="binder">The runtime binder for the dynamic operation.</param>
  2467. <param name="returnType">The result type of the dynamic expression.</param>
  2468. <param name="arg0">The first argument to the dynamic operation.</param>
  2469. <param name="arg1">The second argument to the dynamic operation.</param>
  2470. <returns>
  2471. A <see cref="T:Microsoft.Scripting.Ast.DynamicExpression"/> that has <see cref="P:Microsoft.Scripting.Ast.Expression.NodeType"/> equal to
  2472. <see cref="F:Microsoft.Scripting.Ast.ExpressionType.Dynamic">Dynamic</see> and has the
  2473. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Binder">Binder</see> and
  2474. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Arguments">Arguments</see> set to the specified values.
  2475. </returns>
  2476. <remarks>
  2477. The <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.DelegateType">DelegateType</see> property of the
  2478. result will be inferred from the types of the arguments and the specified return type.
  2479. </remarks>
  2480. </member>
  2481. <member name="M:Microsoft.Scripting.Ast.Expression.Dynamic(System.Runtime.CompilerServices.CallSiteBinder,System.Type,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2482. <summary>
  2483. Creates a <see cref="T:Microsoft.Scripting.Ast.DynamicExpression"/> that represents a dynamic operation bound by the provided <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"/>.
  2484. </summary>
  2485. <param name="binder">The runtime binder for the dynamic operation.</param>
  2486. <param name="returnType">The result type of the dynamic expression.</param>
  2487. <param name="arg0">The first argument to the dynamic operation.</param>
  2488. <param name="arg1">The second argument to the dynamic operation.</param>
  2489. <param name="arg2">The third argument to the dynamic operation.</param>
  2490. <returns>
  2491. A <see cref="T:Microsoft.Scripting.Ast.DynamicExpression"/> that has <see cref="P:Microsoft.Scripting.Ast.Expression.NodeType"/> equal to
  2492. <see cref="F:Microsoft.Scripting.Ast.ExpressionType.Dynamic">Dynamic</see> and has the
  2493. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Binder">Binder</see> and
  2494. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Arguments">Arguments</see> set to the specified values.
  2495. </returns>
  2496. <remarks>
  2497. The <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.DelegateType">DelegateType</see> property of the
  2498. result will be inferred from the types of the arguments and the specified return type.
  2499. </remarks>
  2500. </member>
  2501. <member name="M:Microsoft.Scripting.Ast.Expression.Dynamic(System.Runtime.CompilerServices.CallSiteBinder,System.Type,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2502. <summary>
  2503. Creates a <see cref="T:Microsoft.Scripting.Ast.DynamicExpression"/> that represents a dynamic operation bound by the provided <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"/>.
  2504. </summary>
  2505. <param name="binder">The runtime binder for the dynamic operation.</param>
  2506. <param name="returnType">The result type of the dynamic expression.</param>
  2507. <param name="arg0">The first argument to the dynamic operation.</param>
  2508. <param name="arg1">The second argument to the dynamic operation.</param>
  2509. <param name="arg2">The third argument to the dynamic operation.</param>
  2510. <param name="arg3">The fourth argument to the dynamic operation.</param>
  2511. <returns>
  2512. A <see cref="T:Microsoft.Scripting.Ast.DynamicExpression"/> that has <see cref="P:Microsoft.Scripting.Ast.Expression.NodeType"/> equal to
  2513. <see cref="F:Microsoft.Scripting.Ast.ExpressionType.Dynamic">Dynamic</see> and has the
  2514. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Binder">Binder</see> and
  2515. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Arguments">Arguments</see> set to the specified values.
  2516. </returns>
  2517. <remarks>
  2518. The <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.DelegateType">DelegateType</see> property of the
  2519. result will be inferred from the types of the arguments and the specified return type.
  2520. </remarks>
  2521. </member>
  2522. <member name="M:Microsoft.Scripting.Ast.Expression.Dynamic(System.Runtime.CompilerServices.CallSiteBinder,System.Type,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  2523. <summary>
  2524. Creates a <see cref="T:Microsoft.Scripting.Ast.DynamicExpression"/> that represents a dynamic operation bound by the provided <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"/>.
  2525. </summary>
  2526. <param name="binder">The runtime binder for the dynamic operation.</param>
  2527. <param name="returnType">The result type of the dynamic expression.</param>
  2528. <param name="arguments">The arguments to the dynamic operation.</param>
  2529. <returns>
  2530. A <see cref="T:Microsoft.Scripting.Ast.DynamicExpression"/> that has <see cref="P:Microsoft.Scripting.Ast.Expression.NodeType"/> equal to
  2531. <see cref="F:Microsoft.Scripting.Ast.ExpressionType.Dynamic">Dynamic</see> and has the
  2532. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Binder">Binder</see> and
  2533. <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Arguments">Arguments</see> set to the specified values.
  2534. </returns>
  2535. <remarks>
  2536. The <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.DelegateType">DelegateType</see> property of the
  2537. result will be inferred from the types of the arguments and the specified return type.
  2538. </remarks>
  2539. </member>
  2540. <member name="M:Microsoft.Scripting.Ast.Expression.Assign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2541. <summary>
  2542. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an assignment operation.
  2543. </summary>
  2544. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2545. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2546. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see ref="F:ExpressionType.Assign"/>
  2547. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.
  2548. </returns>
  2549. </member>
  2550. <member name="M:Microsoft.Scripting.Ast.Expression.MakeBinary(Microsoft.Scripting.Ast.ExpressionType,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2551. <summary>
  2552. Creates a BinaryExpression, given the left and right operands, by calling an appropriate factory method.
  2553. </summary>
  2554. <param name="binaryType">The ExpressionType that specifies the type of binary operation.</param>
  2555. <param name="left">An Expression that represents the left operand.</param>
  2556. <param name="right">An Expression that represents the right operand.</param>
  2557. <returns>The BinaryExpression that results from calling the appropriate factory method.</returns>
  2558. </member>
  2559. <member name="M:Microsoft.Scripting.Ast.Expression.MakeBinary(Microsoft.Scripting.Ast.ExpressionType,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Boolean,System.Reflection.MethodInfo)">
  2560. <summary>
  2561. Creates a BinaryExpression, given the left and right operands, by calling an appropriate factory method.
  2562. </summary>
  2563. <param name="binaryType">The ExpressionType that specifies the type of binary operation.</param>
  2564. <param name="left">An Expression that represents the left operand.</param>
  2565. <param name="right">An Expression that represents the right operand.</param>
  2566. <param name="liftToNull">true to set IsLiftedToNull to true; false to set IsLiftedToNull to false.</param>
  2567. <param name="method">A MethodInfo that specifies the implementing method.</param>
  2568. <returns>The BinaryExpression that results from calling the appropriate factory method.</returns>
  2569. </member>
  2570. <member name="M:Microsoft.Scripting.Ast.Expression.MakeBinary(Microsoft.Scripting.Ast.ExpressionType,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Boolean,System.Reflection.MethodInfo,Microsoft.Scripting.Ast.LambdaExpression)">
  2571. <summary>
  2572. Creates a BinaryExpression, given the left and right operands, by calling an appropriate factory method.
  2573. </summary>
  2574. <param name="binaryType">The ExpressionType that specifies the type of binary operation.</param>
  2575. <param name="left">An Expression that represents the left operand.</param>
  2576. <param name="right">An Expression that represents the right operand.</param>
  2577. <param name="liftToNull">true to set IsLiftedToNull to true; false to set IsLiftedToNull to false.</param>
  2578. <param name="method">A MethodInfo that specifies the implementing method.</param>
  2579. <param name="conversion">A LambdaExpression that represents a type conversion function. This parameter is used if binaryType is Coalesce or compound assignment.</param>
  2580. <returns>The BinaryExpression that results from calling the appropriate factory method.</returns>
  2581. </member>
  2582. <member name="M:Microsoft.Scripting.Ast.Expression.Equal(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2583. <summary>
  2584. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an equality comparison.
  2585. </summary>
  2586. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2587. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2588. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.Equal"/>
  2589. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  2590. </member>
  2591. <member name="M:Microsoft.Scripting.Ast.Expression.Equal(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Boolean,System.Reflection.MethodInfo)">
  2592. <summary>
  2593. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an equality comparison.
  2594. </summary>
  2595. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2596. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2597. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  2598. <param name="liftToNull">true to set IsLiftedToNull to true; false to set IsLiftedToNull to false.</param>
  2599. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.Equal"/>
  2600. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, <see cref="P:BinaryExpression.IsLiftedToNull"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  2601. </returns>
  2602. </member>
  2603. <member name="M:Microsoft.Scripting.Ast.Expression.ReferenceEqual(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2604. <summary>
  2605. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a reference equality comparison.
  2606. </summary>
  2607. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2608. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2609. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.Equal"/>
  2610. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.
  2611. </returns>
  2612. </member>
  2613. <member name="M:Microsoft.Scripting.Ast.Expression.NotEqual(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2614. <summary>
  2615. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an inequality comparison.
  2616. </summary>
  2617. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2618. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2619. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.NotEqual"/>
  2620. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  2621. </member>
  2622. <member name="M:Microsoft.Scripting.Ast.Expression.NotEqual(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Boolean,System.Reflection.MethodInfo)">
  2623. <summary>
  2624. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an inequality comparison.
  2625. </summary>
  2626. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2627. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2628. <param name="liftToNull">true to set IsLiftedToNull to true; false to set IsLiftedToNull to false.</param>
  2629. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  2630. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.NotEqual"/>
  2631. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, <see cref="P:BinaryExpression.IsLiftedToNull"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  2632. </returns>
  2633. </member>
  2634. <member name="M:Microsoft.Scripting.Ast.Expression.ReferenceNotEqual(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2635. <summary>
  2636. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a reference inequality comparison.
  2637. </summary>
  2638. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2639. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2640. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.NotEqual"/>
  2641. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.
  2642. </returns>
  2643. </member>
  2644. <member name="M:Microsoft.Scripting.Ast.Expression.GreaterThan(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2645. <summary>
  2646. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a "greater than" numeric comparison.
  2647. </summary>
  2648. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2649. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2650. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.GreaterThan"/>
  2651. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  2652. </member>
  2653. <member name="M:Microsoft.Scripting.Ast.Expression.GreaterThan(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Boolean,System.Reflection.MethodInfo)">
  2654. <summary>
  2655. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a "greater than" numeric comparison.
  2656. </summary>
  2657. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2658. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2659. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  2660. <param name="liftToNull">true to set IsLiftedToNull to true; false to set IsLiftedToNull to false.</param>
  2661. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.GreaterThan"/>
  2662. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, <see cref="P:BinaryExpression.IsLiftedToNull"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  2663. </returns>
  2664. </member>
  2665. <member name="M:Microsoft.Scripting.Ast.Expression.LessThan(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2666. <summary>
  2667. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a "less than" numeric comparison.
  2668. </summary>
  2669. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2670. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2671. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.LessThan"/>
  2672. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  2673. </member>
  2674. <member name="M:Microsoft.Scripting.Ast.Expression.LessThan(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Boolean,System.Reflection.MethodInfo)">
  2675. <summary>
  2676. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a "less than" numeric comparison.
  2677. </summary>
  2678. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2679. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2680. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  2681. <param name="liftToNull">true to set IsLiftedToNull to true; false to set IsLiftedToNull to false.</param>
  2682. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.LessThan"/>
  2683. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, <see cref="P:BinaryExpression.IsLiftedToNull"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  2684. </returns>
  2685. </member>
  2686. <member name="M:Microsoft.Scripting.Ast.Expression.GreaterThanOrEqual(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2687. <summary>
  2688. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a "greater than or equal" numeric comparison.
  2689. </summary>
  2690. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2691. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2692. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.GreaterThanOrEqual"/>
  2693. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  2694. </member>
  2695. <member name="M:Microsoft.Scripting.Ast.Expression.GreaterThanOrEqual(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Boolean,System.Reflection.MethodInfo)">
  2696. <summary>
  2697. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a "greater than or equal" numeric comparison.
  2698. </summary>
  2699. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2700. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2701. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  2702. <param name="liftToNull">true to set IsLiftedToNull to true; false to set IsLiftedToNull to false.</param>
  2703. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.GreaterThanOrEqual"/>
  2704. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, <see cref="P:BinaryExpression.IsLiftedToNull"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  2705. </returns>
  2706. </member>
  2707. <member name="M:Microsoft.Scripting.Ast.Expression.LessThanOrEqual(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2708. <summary>
  2709. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a "less than or equal" numeric comparison.
  2710. </summary>
  2711. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2712. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2713. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.LessThanOrEqual"/>
  2714. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  2715. </member>
  2716. <member name="M:Microsoft.Scripting.Ast.Expression.LessThanOrEqual(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Boolean,System.Reflection.MethodInfo)">
  2717. <summary>
  2718. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a "less than or equal" numeric comparison.
  2719. </summary>
  2720. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2721. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2722. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  2723. <param name="liftToNull">true to set IsLiftedToNull to true; false to set IsLiftedToNull to false.</param>
  2724. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.LessThanOrEqual"/>
  2725. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, <see cref="P:BinaryExpression.IsLiftedToNull"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  2726. </returns>
  2727. </member>
  2728. <member name="M:Microsoft.Scripting.Ast.Expression.AndAlso(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2729. <summary>
  2730. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a conditional AND operation that evaluates the second operand only if it has to.
  2731. </summary>
  2732. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2733. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2734. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.AndAlso"/>
  2735. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  2736. </member>
  2737. <member name="M:Microsoft.Scripting.Ast.Expression.AndAlso(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  2738. <summary>
  2739. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a conditional AND operation that evaluates the second operand only if it has to.
  2740. </summary>
  2741. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2742. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2743. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  2744. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.AndAlso"/>
  2745. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  2746. </returns>
  2747. </member>
  2748. <member name="M:Microsoft.Scripting.Ast.Expression.OrElse(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2749. <summary>
  2750. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a conditional OR operation that evaluates the second operand only if it has to.
  2751. </summary>
  2752. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2753. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2754. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.OrElse"/>
  2755. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  2756. </member>
  2757. <member name="M:Microsoft.Scripting.Ast.Expression.OrElse(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  2758. <summary>
  2759. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a conditional OR operation that evaluates the second operand only if it has to.
  2760. </summary>
  2761. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2762. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2763. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  2764. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.OrElse"/>
  2765. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  2766. </returns>
  2767. </member>
  2768. <member name="M:Microsoft.Scripting.Ast.Expression.Coalesce(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2769. <summary>
  2770. Creates a BinaryExpression that represents a coalescing operation.
  2771. </summary>
  2772. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2773. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2774. <returns>A BinaryExpression that has the NodeType property equal to Coalesce and the Left and Right properties set to the specified values.</returns>
  2775. </member>
  2776. <member name="M:Microsoft.Scripting.Ast.Expression.Coalesce(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.LambdaExpression)">
  2777. <summary>
  2778. Creates a BinaryExpression that represents a coalescing operation.
  2779. </summary>
  2780. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2781. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2782. <param name="conversion">A LambdaExpression to set the Conversion property equal to.</param>
  2783. <returns>A BinaryExpression that has the NodeType property equal to Coalesce and the Left, Right and Conversion properties set to the specified values.
  2784. </returns>
  2785. </member>
  2786. <member name="M:Microsoft.Scripting.Ast.Expression.Add(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2787. <summary>
  2788. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an arithmetic addition operation that does not have overflow checking.
  2789. </summary>
  2790. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2791. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2792. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.Add"/>
  2793. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  2794. </member>
  2795. <member name="M:Microsoft.Scripting.Ast.Expression.Add(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  2796. <summary>
  2797. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an arithmetic addition operation that does not have overflow checking.
  2798. </summary>
  2799. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2800. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2801. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  2802. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.Add"/>
  2803. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  2804. </returns>
  2805. </member>
  2806. <member name="M:Microsoft.Scripting.Ast.Expression.AddAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2807. <summary>
  2808. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an addition assignment operation that does not have overflow checking.
  2809. </summary>
  2810. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2811. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2812. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.AddAssign"/>
  2813. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  2814. </member>
  2815. <member name="M:Microsoft.Scripting.Ast.Expression.AddAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  2816. <summary>
  2817. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an addition assignment operation that does not have overflow checking.
  2818. </summary>
  2819. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2820. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2821. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  2822. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.AddAssign"/>
  2823. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  2824. </returns>
  2825. </member>
  2826. <member name="M:Microsoft.Scripting.Ast.Expression.AddAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo,Microsoft.Scripting.Ast.LambdaExpression)">
  2827. <summary>
  2828. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an addition assignment operation that does not have overflow checking.
  2829. </summary>
  2830. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2831. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2832. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  2833. <param name="conversion">A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> to set the <see cref="P:BinaryExpression.Conversion"/> property equal to.</param>
  2834. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.AddAssign"/>
  2835. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, <see cref="P:BinaryExpression.Method"/>,
  2836. and <see cref="P:BinaryExpression.Conversion"/> properties set to the specified values.
  2837. </returns>
  2838. </member>
  2839. <member name="M:Microsoft.Scripting.Ast.Expression.AddAssignChecked(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2840. <summary>
  2841. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an addition assignment operation that has overflow checking.
  2842. </summary>
  2843. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2844. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2845. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to
  2846. <see cref="F:ExpressionType.AddAssignChecked"/> and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/>
  2847. properties set to the specified values.
  2848. </returns>
  2849. </member>
  2850. <member name="M:Microsoft.Scripting.Ast.Expression.AddAssignChecked(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  2851. <summary>
  2852. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an addition assignment operation that has overflow checking.
  2853. </summary>
  2854. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2855. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2856. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  2857. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.AddAssignChecked"/>
  2858. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  2859. </returns>
  2860. </member>
  2861. <member name="M:Microsoft.Scripting.Ast.Expression.AddAssignChecked(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo,Microsoft.Scripting.Ast.LambdaExpression)">
  2862. <summary>
  2863. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an addition assignment operation that has overflow checking.
  2864. </summary>
  2865. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2866. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2867. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  2868. <param name="conversion">A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> to set the <see cref="P:BinaryExpression.Conversion"/> property equal to.</param>
  2869. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.AddAssignChecked"/>
  2870. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, <see cref="P:BinaryExpression.Method"/>,
  2871. and <see cref="P:BinaryExpression.Conversion"/> properties set to the specified values.
  2872. </returns>
  2873. </member>
  2874. <member name="M:Microsoft.Scripting.Ast.Expression.AddChecked(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2875. <summary>
  2876. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an arithmetic addition operation that has overflow checking.
  2877. </summary>
  2878. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2879. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2880. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.AddChecked"/>
  2881. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  2882. </member>
  2883. <member name="M:Microsoft.Scripting.Ast.Expression.AddChecked(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  2884. <summary>
  2885. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an arithmetic addition operation that has overflow checking.
  2886. </summary>
  2887. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2888. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2889. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  2890. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.AddChecked"/>
  2891. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  2892. </returns>
  2893. </member>
  2894. <member name="M:Microsoft.Scripting.Ast.Expression.Subtract(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2895. <summary>
  2896. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an arithmetic subtraction operation that does not have overflow checking.
  2897. </summary>
  2898. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2899. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2900. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.Subtract"/>
  2901. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  2902. </member>
  2903. <member name="M:Microsoft.Scripting.Ast.Expression.Subtract(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  2904. <summary>
  2905. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an arithmetic subtraction operation that does not have overflow checking.
  2906. </summary>
  2907. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2908. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2909. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  2910. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.Subtract"/>
  2911. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  2912. </returns>
  2913. </member>
  2914. <member name="M:Microsoft.Scripting.Ast.Expression.SubtractAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2915. <summary>
  2916. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a subtraction assignment operation that does not have overflow checking.
  2917. </summary>
  2918. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2919. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2920. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.SubtractAssign"/>
  2921. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  2922. </member>
  2923. <member name="M:Microsoft.Scripting.Ast.Expression.SubtractAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  2924. <summary>
  2925. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a subtraction assignment operation that does not have overflow checking.
  2926. </summary>
  2927. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2928. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2929. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  2930. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.SubtractAssign"/>
  2931. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  2932. </returns>
  2933. </member>
  2934. <member name="M:Microsoft.Scripting.Ast.Expression.SubtractAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo,Microsoft.Scripting.Ast.LambdaExpression)">
  2935. <summary>
  2936. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a subtraction assignment operation that does not have overflow checking.
  2937. </summary>
  2938. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2939. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2940. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  2941. <param name="conversion">A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> to set the <see cref="P:BinaryExpression.Conversion"/> property equal to.</param>
  2942. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.SubtractAssign"/>
  2943. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, <see cref="P:BinaryExpression.Method"/>,
  2944. and <see cref="P:BinaryExpression.Conversion"/> properties set to the specified values.
  2945. </returns>
  2946. </member>
  2947. <member name="M:Microsoft.Scripting.Ast.Expression.SubtractAssignChecked(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2948. <summary>
  2949. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a subtraction assignment operation that has overflow checking.
  2950. </summary>
  2951. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2952. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2953. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.SubtractAssignChecked"/>
  2954. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  2955. </member>
  2956. <member name="M:Microsoft.Scripting.Ast.Expression.SubtractAssignChecked(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  2957. <summary>
  2958. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a subtraction assignment operation that has overflow checking.
  2959. </summary>
  2960. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2961. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2962. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  2963. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.SubtractAssignChecked"/>
  2964. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  2965. </returns>
  2966. </member>
  2967. <member name="M:Microsoft.Scripting.Ast.Expression.SubtractAssignChecked(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo,Microsoft.Scripting.Ast.LambdaExpression)">
  2968. <summary>
  2969. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a subtraction assignment operation that has overflow checking.
  2970. </summary>
  2971. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2972. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2973. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  2974. <param name="conversion">A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> to set the <see cref="P:BinaryExpression.Conversion"/> property equal to.</param>
  2975. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.SubtractAssignChecked"/>
  2976. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, <see cref="P:BinaryExpression.Method"/>,
  2977. and <see cref="P:BinaryExpression.Conversion"/> properties set to the specified values.
  2978. </returns>
  2979. </member>
  2980. <member name="M:Microsoft.Scripting.Ast.Expression.SubtractChecked(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  2981. <summary>
  2982. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an arithmetic subtraction operation that has overflow checking.
  2983. </summary>
  2984. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2985. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2986. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.SubtractChecked"/>
  2987. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  2988. </member>
  2989. <member name="M:Microsoft.Scripting.Ast.Expression.SubtractChecked(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  2990. <summary>
  2991. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an arithmetic subtraction operation that has overflow checking.
  2992. </summary>
  2993. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  2994. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  2995. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  2996. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.SubtractChecked"/>
  2997. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  2998. </returns>
  2999. </member>
  3000. <member name="M:Microsoft.Scripting.Ast.Expression.Divide(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3001. <summary>
  3002. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an arithmetic division operation.
  3003. </summary>
  3004. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3005. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3006. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.Divide"/>
  3007. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  3008. </member>
  3009. <member name="M:Microsoft.Scripting.Ast.Expression.Divide(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  3010. <summary>
  3011. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an arithmetic division operation.
  3012. </summary>
  3013. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3014. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3015. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3016. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.Divide"/>
  3017. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  3018. </returns>
  3019. </member>
  3020. <member name="M:Microsoft.Scripting.Ast.Expression.DivideAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3021. <summary>
  3022. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a division assignment operation that does not have overflow checking.
  3023. </summary>
  3024. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3025. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3026. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.DivideAssign"/>
  3027. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  3028. </member>
  3029. <member name="M:Microsoft.Scripting.Ast.Expression.DivideAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  3030. <summary>
  3031. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a division assignment operation that does not have overflow checking.
  3032. </summary>
  3033. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3034. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3035. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3036. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.DivideAssign"/>
  3037. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  3038. </returns>
  3039. </member>
  3040. <member name="M:Microsoft.Scripting.Ast.Expression.DivideAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo,Microsoft.Scripting.Ast.LambdaExpression)">
  3041. <summary>
  3042. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a division assignment operation that does not have overflow checking.
  3043. </summary>
  3044. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3045. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3046. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3047. <param name="conversion">A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> to set the <see cref="P:BinaryExpression.Conversion"/> property equal to.</param>
  3048. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.DivideAssign"/>
  3049. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, <see cref="P:BinaryExpression.Method"/>,
  3050. and <see cref="P:BinaryExpression.Conversion"/> properties set to the specified values.
  3051. </returns>
  3052. </member>
  3053. <member name="M:Microsoft.Scripting.Ast.Expression.Modulo(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3054. <summary>
  3055. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an arithmetic remainder operation.
  3056. </summary>
  3057. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3058. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3059. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.Modulo"/>
  3060. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  3061. </member>
  3062. <member name="M:Microsoft.Scripting.Ast.Expression.Modulo(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  3063. <summary>
  3064. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an arithmetic remainder operation.
  3065. </summary>
  3066. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3067. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3068. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3069. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.Modulo"/>
  3070. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  3071. </returns>
  3072. </member>
  3073. <member name="M:Microsoft.Scripting.Ast.Expression.ModuloAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3074. <summary>
  3075. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a remainder assignment operation.
  3076. </summary>
  3077. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3078. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3079. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.ModuloAssign"/>
  3080. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  3081. </member>
  3082. <member name="M:Microsoft.Scripting.Ast.Expression.ModuloAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  3083. <summary>
  3084. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a remainder assignment operation.
  3085. </summary>
  3086. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3087. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3088. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3089. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.ModuloAssign"/>
  3090. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  3091. </returns>
  3092. </member>
  3093. <member name="M:Microsoft.Scripting.Ast.Expression.ModuloAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo,Microsoft.Scripting.Ast.LambdaExpression)">
  3094. <summary>
  3095. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a remainder assignment operation.
  3096. </summary>
  3097. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3098. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3099. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3100. <param name="conversion">A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> to set the <see cref="P:BinaryExpression.Conversion"/> property equal to.</param>
  3101. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.ModuloAssign"/>
  3102. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, <see cref="P:BinaryExpression.Method"/>,
  3103. and <see cref="P:BinaryExpression.Conversion"/> properties set to the specified values.
  3104. </returns>
  3105. </member>
  3106. <member name="M:Microsoft.Scripting.Ast.Expression.Multiply(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3107. <summary>
  3108. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an arithmetic multiplication operation that does not have overflow checking.
  3109. </summary>
  3110. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3111. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3112. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.Multiply"/>
  3113. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  3114. </member>
  3115. <member name="M:Microsoft.Scripting.Ast.Expression.Multiply(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  3116. <summary>
  3117. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an arithmetic multiplication operation that does not have overflow checking.
  3118. </summary>
  3119. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3120. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3121. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3122. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.Multiply"/>
  3123. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  3124. </returns>
  3125. </member>
  3126. <member name="M:Microsoft.Scripting.Ast.Expression.MultiplyAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3127. <summary>
  3128. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a multiplication assignment operation that does not have overflow checking.
  3129. </summary>
  3130. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3131. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3132. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.MultiplyAssign"/>
  3133. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  3134. </member>
  3135. <member name="M:Microsoft.Scripting.Ast.Expression.MultiplyAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  3136. <summary>
  3137. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a multiplication assignment operation that does not have overflow checking.
  3138. </summary>
  3139. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3140. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3141. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3142. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.MultiplyAssign"/>
  3143. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  3144. </returns>
  3145. </member>
  3146. <member name="M:Microsoft.Scripting.Ast.Expression.MultiplyAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo,Microsoft.Scripting.Ast.LambdaExpression)">
  3147. <summary>
  3148. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a multiplication assignment operation that does not have overflow checking.
  3149. </summary>
  3150. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3151. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3152. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3153. <param name="conversion">A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> to set the <see cref="P:BinaryExpression.Conversion"/> property equal to.</param>
  3154. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.MultiplyAssign"/>
  3155. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, <see cref="P:BinaryExpression.Method"/>,
  3156. and <see cref="P:BinaryExpression.Conversion"/> properties set to the specified values.
  3157. </returns>
  3158. </member>
  3159. <member name="M:Microsoft.Scripting.Ast.Expression.MultiplyAssignChecked(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3160. <summary>
  3161. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a multiplication assignment operation that has overflow checking.
  3162. </summary>
  3163. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3164. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3165. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.MultiplyAssignChecked"/>
  3166. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  3167. </member>
  3168. <member name="M:Microsoft.Scripting.Ast.Expression.MultiplyAssignChecked(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  3169. <summary>
  3170. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a multiplication assignment operation that has overflow checking.
  3171. </summary>
  3172. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3173. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3174. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3175. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.MultiplyAssignChecked"/>
  3176. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  3177. </returns>
  3178. </member>
  3179. <member name="M:Microsoft.Scripting.Ast.Expression.MultiplyAssignChecked(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo,Microsoft.Scripting.Ast.LambdaExpression)">
  3180. <summary>
  3181. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a multiplication assignment operation that has overflow checking.
  3182. </summary>
  3183. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3184. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3185. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3186. <param name="conversion">A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> to set the <see cref="P:BinaryExpression.Conversion"/> property equal to.</param>
  3187. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.MultiplyAssignChecked"/>
  3188. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, <see cref="P:BinaryExpression.Method"/>,
  3189. and <see cref="P:BinaryExpression.Conversion"/> properties set to the specified values.
  3190. </returns>
  3191. </member>
  3192. <member name="M:Microsoft.Scripting.Ast.Expression.MultiplyChecked(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3193. <summary>
  3194. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an arithmetic multiplication operation that has overflow checking.
  3195. </summary>
  3196. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3197. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3198. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.MultiplyChecked"/>
  3199. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  3200. </member>
  3201. <member name="M:Microsoft.Scripting.Ast.Expression.MultiplyChecked(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  3202. <summary>
  3203. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an arithmetic multiplication operation that has overflow checking.
  3204. </summary>
  3205. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3206. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3207. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3208. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.MultiplyChecked"/>
  3209. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  3210. </returns>
  3211. </member>
  3212. <member name="M:Microsoft.Scripting.Ast.Expression.LeftShift(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3213. <summary>
  3214. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an bitwise left-shift operation.
  3215. </summary>
  3216. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3217. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3218. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.LeftShift"/>
  3219. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  3220. </member>
  3221. <member name="M:Microsoft.Scripting.Ast.Expression.LeftShift(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  3222. <summary>
  3223. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an bitwise left-shift operation.
  3224. </summary>
  3225. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3226. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3227. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3228. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.LeftShift"/>
  3229. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  3230. </returns>
  3231. </member>
  3232. <member name="M:Microsoft.Scripting.Ast.Expression.LeftShiftAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3233. <summary>
  3234. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a bitwise left-shift assignment operation.
  3235. </summary>
  3236. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3237. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3238. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.LeftShiftAssign"/>
  3239. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  3240. </member>
  3241. <member name="M:Microsoft.Scripting.Ast.Expression.LeftShiftAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  3242. <summary>
  3243. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a bitwise left-shift assignment operation.
  3244. </summary>
  3245. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3246. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3247. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3248. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.LeftShiftAssign"/>
  3249. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  3250. </returns>
  3251. </member>
  3252. <member name="M:Microsoft.Scripting.Ast.Expression.LeftShiftAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo,Microsoft.Scripting.Ast.LambdaExpression)">
  3253. <summary>
  3254. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a bitwise left-shift assignment operation.
  3255. </summary>
  3256. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3257. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3258. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3259. <param name="conversion">A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> to set the <see cref="P:BinaryExpression.Conversion"/> property equal to.</param>
  3260. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.LeftShiftAssign"/>
  3261. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, <see cref="P:BinaryExpression.Method"/>,
  3262. and <see cref="P:BinaryExpression.Conversion"/> properties set to the specified values.
  3263. </returns>
  3264. </member>
  3265. <member name="M:Microsoft.Scripting.Ast.Expression.RightShift(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3266. <summary>
  3267. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an bitwise right-shift operation.
  3268. </summary>
  3269. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3270. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3271. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.RightShift"/>
  3272. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  3273. </member>
  3274. <member name="M:Microsoft.Scripting.Ast.Expression.RightShift(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  3275. <summary>
  3276. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an bitwise right-shift operation.
  3277. </summary>
  3278. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3279. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3280. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3281. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.RightShift"/>
  3282. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  3283. </returns>
  3284. </member>
  3285. <member name="M:Microsoft.Scripting.Ast.Expression.RightShiftAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3286. <summary>
  3287. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a bitwise right-shift assignment operation.
  3288. </summary>
  3289. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3290. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3291. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.RightShiftAssign"/>
  3292. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  3293. </member>
  3294. <member name="M:Microsoft.Scripting.Ast.Expression.RightShiftAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  3295. <summary>
  3296. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a bitwise right-shift assignment operation.
  3297. </summary>
  3298. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3299. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3300. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3301. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.RightShiftAssign"/>
  3302. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  3303. </returns>
  3304. </member>
  3305. <member name="M:Microsoft.Scripting.Ast.Expression.RightShiftAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo,Microsoft.Scripting.Ast.LambdaExpression)">
  3306. <summary>
  3307. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a bitwise right-shift assignment operation.
  3308. </summary>
  3309. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3310. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3311. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3312. <param name="conversion">A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> to set the <see cref="P:BinaryExpression.Conversion"/> property equal to.</param>
  3313. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.RightShiftAssign"/>
  3314. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, <see cref="P:BinaryExpression.Method"/>,
  3315. and <see cref="P:BinaryExpression.Conversion"/> properties set to the specified values.
  3316. </returns>
  3317. </member>
  3318. <member name="M:Microsoft.Scripting.Ast.Expression.And(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3319. <summary>
  3320. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an bitwise AND operation.
  3321. </summary>
  3322. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3323. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3324. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.And"/>
  3325. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  3326. </member>
  3327. <member name="M:Microsoft.Scripting.Ast.Expression.And(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  3328. <summary>
  3329. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an bitwise AND operation.
  3330. </summary>
  3331. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3332. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3333. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3334. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.And"/>
  3335. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  3336. </returns>
  3337. </member>
  3338. <member name="M:Microsoft.Scripting.Ast.Expression.AndAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3339. <summary>
  3340. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a bitwise AND assignment operation.
  3341. </summary>
  3342. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3343. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3344. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.AndAssign"/>
  3345. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  3346. </member>
  3347. <member name="M:Microsoft.Scripting.Ast.Expression.AndAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  3348. <summary>
  3349. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a bitwise AND assignment operation.
  3350. </summary>
  3351. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3352. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3353. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3354. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.AndAssign"/>
  3355. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  3356. </returns>
  3357. </member>
  3358. <member name="M:Microsoft.Scripting.Ast.Expression.AndAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo,Microsoft.Scripting.Ast.LambdaExpression)">
  3359. <summary>
  3360. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a bitwise AND assignment operation.
  3361. </summary>
  3362. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3363. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3364. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3365. <param name="conversion">A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> to set the <see cref="P:BinaryExpression.Conversion"/> property equal to.</param>
  3366. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.AndAssign"/>
  3367. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, <see cref="P:BinaryExpression.Method"/>,
  3368. and <see cref="P:BinaryExpression.Conversion"/> properties set to the specified values.
  3369. </returns>
  3370. </member>
  3371. <member name="M:Microsoft.Scripting.Ast.Expression.Or(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3372. <summary>
  3373. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an bitwise OR operation.
  3374. </summary>
  3375. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3376. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3377. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.Or"/>
  3378. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  3379. </member>
  3380. <member name="M:Microsoft.Scripting.Ast.Expression.Or(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  3381. <summary>
  3382. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents an bitwise OR operation.
  3383. </summary>
  3384. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3385. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3386. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3387. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.Or"/>
  3388. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  3389. </returns>
  3390. </member>
  3391. <member name="M:Microsoft.Scripting.Ast.Expression.OrAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3392. <summary>
  3393. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a bitwise OR assignment operation.
  3394. </summary>
  3395. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3396. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3397. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.OrAssign"/>
  3398. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  3399. </member>
  3400. <member name="M:Microsoft.Scripting.Ast.Expression.OrAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  3401. <summary>
  3402. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a bitwise OR assignment operation.
  3403. </summary>
  3404. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3405. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3406. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3407. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.OrAssign"/>
  3408. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  3409. </returns>
  3410. </member>
  3411. <member name="M:Microsoft.Scripting.Ast.Expression.OrAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo,Microsoft.Scripting.Ast.LambdaExpression)">
  3412. <summary>
  3413. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a bitwise OR assignment operation.
  3414. </summary>
  3415. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3416. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3417. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3418. <param name="conversion">A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> to set the <see cref="P:BinaryExpression.Conversion"/> property equal to.</param>
  3419. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.OrAssign"/>
  3420. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, <see cref="P:BinaryExpression.Method"/>,
  3421. and <see cref="P:BinaryExpression.Conversion"/> properties set to the specified values.
  3422. </returns>
  3423. </member>
  3424. <member name="M:Microsoft.Scripting.Ast.Expression.ExclusiveOr(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3425. <summary>
  3426. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a bitwise or logical XOR operation, using op_ExclusiveOr for user-defined types.
  3427. </summary>
  3428. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3429. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3430. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.ExclusiveOr"/>
  3431. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  3432. </member>
  3433. <member name="M:Microsoft.Scripting.Ast.Expression.ExclusiveOr(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  3434. <summary>
  3435. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a bitwise or logical XOR operation, using op_ExclusiveOr for user-defined types.
  3436. </summary>
  3437. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3438. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3439. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3440. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.ExclusiveOr"/>
  3441. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  3442. </returns>
  3443. </member>
  3444. <member name="M:Microsoft.Scripting.Ast.Expression.ExclusiveOrAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3445. <summary>
  3446. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a bitwise or logical XOR assignment operation, using op_ExclusiveOr for user-defined types.
  3447. </summary>
  3448. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3449. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3450. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.ExclusiveOrAssign"/>
  3451. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  3452. </member>
  3453. <member name="M:Microsoft.Scripting.Ast.Expression.ExclusiveOrAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  3454. <summary>
  3455. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a bitwise or logical XOR assignment operation, using op_ExclusiveOr for user-defined types.
  3456. </summary>
  3457. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3458. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3459. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3460. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.ExclusiveOrAssign"/>
  3461. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  3462. </returns>
  3463. </member>
  3464. <member name="M:Microsoft.Scripting.Ast.Expression.ExclusiveOrAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo,Microsoft.Scripting.Ast.LambdaExpression)">
  3465. <summary>
  3466. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents a bitwise or logical XOR assignment operation, using op_ExclusiveOr for user-defined types.
  3467. </summary>
  3468. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3469. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3470. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3471. <param name="conversion">A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> to set the <see cref="P:BinaryExpression.Conversion"/> property equal to.</param>
  3472. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.ExclusiveOrAssign"/>
  3473. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, <see cref="P:BinaryExpression.Method"/>,
  3474. and <see cref="P:BinaryExpression.Conversion"/> properties set to the specified values.
  3475. </returns>
  3476. </member>
  3477. <member name="M:Microsoft.Scripting.Ast.Expression.Power(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3478. <summary>
  3479. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents raising a number to a power.
  3480. </summary>
  3481. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3482. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3483. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.Power"/>
  3484. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  3485. </member>
  3486. <member name="M:Microsoft.Scripting.Ast.Expression.Power(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  3487. <summary>
  3488. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents raising a number to a power.
  3489. </summary>
  3490. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3491. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3492. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3493. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.Power"/>
  3494. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  3495. </returns>
  3496. </member>
  3497. <member name="M:Microsoft.Scripting.Ast.Expression.PowerAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3498. <summary>
  3499. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents raising an expression to a power and assigning the result back to the expression.
  3500. </summary>
  3501. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3502. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3503. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.PowerAssign"/>
  3504. and the <see cref="P:BinaryExpression.Left"/> and <see cref="P:BinaryExpression.Right"/> properties set to the specified values.</returns>
  3505. </member>
  3506. <member name="M:Microsoft.Scripting.Ast.Expression.PowerAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  3507. <summary>
  3508. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents raising an expression to a power and assigning the result back to the expression.
  3509. </summary>
  3510. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3511. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3512. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3513. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.PowerAssign"/>
  3514. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, and <see cref="P:BinaryExpression.Method"/> properties set to the specified values.
  3515. </returns>
  3516. </member>
  3517. <member name="M:Microsoft.Scripting.Ast.Expression.PowerAssign(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo,Microsoft.Scripting.Ast.LambdaExpression)">
  3518. <summary>
  3519. Creates a <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that represents raising an expression to a power and assigning the result back to the expression.
  3520. </summary>
  3521. <param name="left">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Left"/> property equal to.</param>
  3522. <param name="right">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:BinaryExpression.Right"/> property equal to.</param>
  3523. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:BinaryExpression.Method"/> property equal to.</param>
  3524. <param name="conversion">A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> to set the <see cref="P:BinaryExpression.Conversion"/> property equal to.</param>
  3525. <returns>A <see cref="T:Microsoft.Scripting.Ast.BinaryExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to <see cref="F:ExpressionType.PowerAssign"/>
  3526. and the <see cref="P:BinaryExpression.Left"/>, <see cref="P:BinaryExpression.Right"/>, <see cref="P:BinaryExpression.Method"/>,
  3527. and <see cref="P:BinaryExpression.Conversion"/> properties set to the specified values.
  3528. </returns>
  3529. </member>
  3530. <member name="M:Microsoft.Scripting.Ast.Expression.ArrayIndex(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3531. <summary>
  3532. Creates a BinaryExpression that represents applying an array index operator to an array of rank one.
  3533. </summary>
  3534. <param name="array">An Expression to set the Left property equal to.</param>
  3535. <param name="index">An Expression to set the Right property equal to.</param>
  3536. <returns>A BinaryExpression that has the NodeType property equal to ArrayIndex and the Left and Right properties set to the specified values.</returns>
  3537. </member>
  3538. <member name="M:Microsoft.Scripting.Ast.Expression.Block(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3539. <summary>
  3540. Creates a <see cref="T:Microsoft.Scripting.Ast.BlockExpression"/> that contains two expressions and has no variables.
  3541. </summary>
  3542. <param name="arg0">The first expression in the block.</param>
  3543. <param name="arg1">The second expression in the block.</param>
  3544. <returns>The created <see cref="T:Microsoft.Scripting.Ast.BlockExpression"/>.</returns>
  3545. </member>
  3546. <member name="M:Microsoft.Scripting.Ast.Expression.Block(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3547. <summary>
  3548. Creates a <see cref="T:Microsoft.Scripting.Ast.BlockExpression"/> that contains three expressions and has no variables.
  3549. </summary>
  3550. <param name="arg0">The first expression in the block.</param>
  3551. <param name="arg1">The second expression in the block.</param>
  3552. <param name="arg2">The third expression in the block.</param>
  3553. <returns>The created <see cref="T:Microsoft.Scripting.Ast.BlockExpression"/>.</returns>
  3554. </member>
  3555. <member name="M:Microsoft.Scripting.Ast.Expression.Block(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3556. <summary>
  3557. Creates a <see cref="T:Microsoft.Scripting.Ast.BlockExpression"/> that contains four expressions and has no variables.
  3558. </summary>
  3559. <param name="arg0">The first expression in the block.</param>
  3560. <param name="arg1">The second expression in the block.</param>
  3561. <param name="arg2">The third expression in the block.</param>
  3562. <param name="arg3">The fourth expression in the block.</param>
  3563. <returns>The created <see cref="T:Microsoft.Scripting.Ast.BlockExpression"/>.</returns>
  3564. </member>
  3565. <member name="M:Microsoft.Scripting.Ast.Expression.Block(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3566. <summary>
  3567. Creates a <see cref="T:Microsoft.Scripting.Ast.BlockExpression"/> that contains five expressions and has no variables.
  3568. </summary>
  3569. <param name="arg0">The first expression in the block.</param>
  3570. <param name="arg1">The second expression in the block.</param>
  3571. <param name="arg2">The third expression in the block.</param>
  3572. <param name="arg3">The fourth expression in the block.</param>
  3573. <param name="arg4">The fifth expression in the block.</param>
  3574. <returns>The created <see cref="T:Microsoft.Scripting.Ast.BlockExpression"/>.</returns>
  3575. </member>
  3576. <member name="M:Microsoft.Scripting.Ast.Expression.Block(Microsoft.Scripting.Ast.Expression[])">
  3577. <summary>
  3578. Creates a <see cref="T:Microsoft.Scripting.Ast.BlockExpression"/> that contains the given expressions and has no variables.
  3579. </summary>
  3580. <param name="expressions">The expressions in the block.</param>
  3581. <returns>The created <see cref="T:Microsoft.Scripting.Ast.BlockExpression"/>.</returns>
  3582. </member>
  3583. <member name="M:Microsoft.Scripting.Ast.Expression.Block(System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  3584. <summary>
  3585. Creates a <see cref="T:Microsoft.Scripting.Ast.BlockExpression"/> that contains the given expressions and has no variables.
  3586. </summary>
  3587. <param name="expressions">The expressions in the block.</param>
  3588. <returns>The created <see cref="T:Microsoft.Scripting.Ast.BlockExpression"/>.</returns>
  3589. </member>
  3590. <member name="M:Microsoft.Scripting.Ast.Expression.Block(System.Type,Microsoft.Scripting.Ast.Expression[])">
  3591. <summary>
  3592. Creates a <see cref="T:Microsoft.Scripting.Ast.BlockExpression"/> that contains the given expressions, has no variables and has specific result type.
  3593. </summary>
  3594. <param name="type">The result type of the block.</param>
  3595. <param name="expressions">The expressions in the block.</param>
  3596. <returns>The created <see cref="T:Microsoft.Scripting.Ast.BlockExpression"/>.</returns>
  3597. </member>
  3598. <member name="M:Microsoft.Scripting.Ast.Expression.Block(System.Type,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  3599. <summary>
  3600. Creates a <see cref="T:Microsoft.Scripting.Ast.BlockExpression"/> that contains the given expressions, has no variables and has specific result type.
  3601. </summary>
  3602. <param name="type">The result type of the block.</param>
  3603. <param name="expressions">The expressions in the block.</param>
  3604. <returns>The created <see cref="T:Microsoft.Scripting.Ast.BlockExpression"/>.</returns>
  3605. </member>
  3606. <member name="M:Microsoft.Scripting.Ast.Expression.Block(System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.ParameterExpression},Microsoft.Scripting.Ast.Expression[])">
  3607. <summary>
  3608. Creates a <see cref="T:Microsoft.Scripting.Ast.BlockExpression"/> that contains the given variables and expressions.
  3609. </summary>
  3610. <param name="variables">The variables in the block.</param>
  3611. <param name="expressions">The expressions in the block.</param>
  3612. <returns>The created <see cref="T:Microsoft.Scripting.Ast.BlockExpression"/>.</returns>
  3613. </member>
  3614. <member name="M:Microsoft.Scripting.Ast.Expression.Block(System.Type,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.ParameterExpression},Microsoft.Scripting.Ast.Expression[])">
  3615. <summary>
  3616. Creates a <see cref="T:Microsoft.Scripting.Ast.BlockExpression"/> that contains the given variables and expressions.
  3617. </summary>
  3618. <param name="type">The result type of the block.</param>
  3619. <param name="variables">The variables in the block.</param>
  3620. <param name="expressions">The expressions in the block.</param>
  3621. <returns>The created <see cref="T:Microsoft.Scripting.Ast.BlockExpression"/>.</returns>
  3622. </member>
  3623. <member name="M:Microsoft.Scripting.Ast.Expression.Block(System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.ParameterExpression},System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  3624. <summary>
  3625. Creates a <see cref="T:Microsoft.Scripting.Ast.BlockExpression"/> that contains the given variables and expressions.
  3626. </summary>
  3627. <param name="variables">The variables in the block.</param>
  3628. <param name="expressions">The expressions in the block.</param>
  3629. <returns>The created <see cref="T:Microsoft.Scripting.Ast.BlockExpression"/>.</returns>
  3630. </member>
  3631. <member name="M:Microsoft.Scripting.Ast.Expression.Block(System.Type,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.ParameterExpression},System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  3632. <summary>
  3633. Creates a <see cref="T:Microsoft.Scripting.Ast.BlockExpression"/> that contains the given variables and expressions.
  3634. </summary>
  3635. <param name="type">The result type of the block.</param>
  3636. <param name="variables">The variables in the block.</param>
  3637. <param name="expressions">The expressions in the block.</param>
  3638. <returns>The created <see cref="T:Microsoft.Scripting.Ast.BlockExpression"/>.</returns>
  3639. </member>
  3640. <member name="M:Microsoft.Scripting.Ast.Expression.Catch(System.Type,Microsoft.Scripting.Ast.Expression)">
  3641. <summary>
  3642. Creates a <see cref="T:Microsoft.Scripting.Ast.CatchBlock"/> representing a catch statement.
  3643. The <see cref="P:Microsoft.Scripting.Ast.Expression.Type"/> of object to be caught can be specified but no reference to the object
  3644. will be available for use in the <see cref="T:Microsoft.Scripting.Ast.CatchBlock"/>.
  3645. </summary>
  3646. <param name="type">The <see cref="P:Microsoft.Scripting.Ast.Expression.Type"/> of <see cref="T:System.Exception"/> this <see cref="T:Microsoft.Scripting.Ast.CatchBlock"/> will handle.</param>
  3647. <param name="body">The body of the catch statement.</param>
  3648. <returns>The created <see cref="T:Microsoft.Scripting.Ast.CatchBlock"/>.</returns>
  3649. </member>
  3650. <member name="M:Microsoft.Scripting.Ast.Expression.Catch(Microsoft.Scripting.Ast.ParameterExpression,Microsoft.Scripting.Ast.Expression)">
  3651. <summary>
  3652. Creates a <see cref="T:Microsoft.Scripting.Ast.CatchBlock"/> representing a catch statement with a reference to the caught object for use in the handler body.
  3653. </summary>
  3654. <param name="variable">A <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> representing a reference to the <see cref="T:System.Exception"/> object caught by this handler.</param>
  3655. <param name="body">The body of the catch statement.</param>
  3656. <returns>The created <see cref="T:Microsoft.Scripting.Ast.CatchBlock"/>.</returns>
  3657. </member>
  3658. <member name="M:Microsoft.Scripting.Ast.Expression.Catch(System.Type,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3659. <summary>
  3660. Creates a <see cref="T:Microsoft.Scripting.Ast.CatchBlock"/> representing a catch statement with
  3661. an <see cref="T:System.Exception"/> filter but no reference to the caught <see cref="T:System.Exception"/> object.
  3662. </summary>
  3663. <param name="type">The <see cref="P:Microsoft.Scripting.Ast.Expression.Type"/> of <see cref="T:System.Exception"/> this <see cref="T:Microsoft.Scripting.Ast.CatchBlock"/> will handle.</param>
  3664. <param name="body">The body of the catch statement.</param>
  3665. <param name="filter">The body of the <see cref="T:System.Exception"/> filter.</param>
  3666. <returns>The created <see cref="T:Microsoft.Scripting.Ast.CatchBlock"/>.</returns>
  3667. </member>
  3668. <member name="M:Microsoft.Scripting.Ast.Expression.Catch(Microsoft.Scripting.Ast.ParameterExpression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3669. <summary>
  3670. Creates a <see cref="T:Microsoft.Scripting.Ast.CatchBlock"/> representing a catch statement with
  3671. an <see cref="T:System.Exception"/> filter and a reference to the caught <see cref="T:System.Exception"/> object.
  3672. </summary>
  3673. <param name="variable">A <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> representing a reference to the <see cref="T:System.Exception"/> object caught by this handler.</param>
  3674. <param name="body">The body of the catch statement.</param>
  3675. <param name="filter">The body of the <see cref="T:System.Exception"/> filter.</param>
  3676. <returns>The created <see cref="T:Microsoft.Scripting.Ast.CatchBlock"/>.</returns>
  3677. </member>
  3678. <member name="M:Microsoft.Scripting.Ast.Expression.MakeCatchBlock(System.Type,Microsoft.Scripting.Ast.ParameterExpression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3679. <summary>
  3680. Creates a <see cref="T:Microsoft.Scripting.Ast.CatchBlock"/> representing a catch statement with the specified elements.
  3681. </summary>
  3682. <param name="type">The <see cref="P:Microsoft.Scripting.Ast.Expression.Type"/> of <see cref="T:System.Exception"/> this <see cref="T:Microsoft.Scripting.Ast.CatchBlock"/> will handle.</param>
  3683. <param name="variable">A <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> representing a reference to the <see cref="T:System.Exception"/> object caught by this handler.</param>
  3684. <param name="body">The body of the catch statement.</param>
  3685. <param name="filter">The body of the <see cref="T:System.Exception"/> filter.</param>
  3686. <returns>The created <see cref="T:Microsoft.Scripting.Ast.CatchBlock"/>.</returns>
  3687. <remarks><paramref name="type"/> must be non-null and match the type of <paramref name="variable"/> (if it is supplied).</remarks>
  3688. </member>
  3689. <member name="M:Microsoft.Scripting.Ast.Expression.Condition(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3690. <summary>
  3691. Creates a <see cref="T:Microsoft.Scripting.Ast.ConditionalExpression"/>.
  3692. </summary>
  3693. <param name="test">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:ConditionalExpression.Test"/> property equal to.</param>
  3694. <param name="ifTrue">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:ConditionalExpression.IfTrue"/> property equal to.</param>
  3695. <param name="ifFalse">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:ConditionalExpression.IfFalse"/> property equal to.</param>
  3696. <returns>A <see cref="T:Microsoft.Scripting.Ast.ConditionalExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to
  3697. <see cref="F:ExpressionType.Conditional"/> and the <see cref="P:ConditionalExpression.Test"/>, <see cref="P:ConditionalExpression.IfTrue"/>,
  3698. and <see cref="P:ConditionalExpression.IfFalse"/> properties set to the specified values.</returns>
  3699. </member>
  3700. <member name="M:Microsoft.Scripting.Ast.Expression.Condition(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Type)">
  3701. <summary>
  3702. Creates a <see cref="T:Microsoft.Scripting.Ast.ConditionalExpression"/>.
  3703. </summary>
  3704. <param name="test">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:ConditionalExpression.Test"/> property equal to.</param>
  3705. <param name="ifTrue">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:ConditionalExpression.IfTrue"/> property equal to.</param>
  3706. <param name="ifFalse">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:ConditionalExpression.IfFalse"/> property equal to.</param>
  3707. <param name="type">A <see cref="P:Microsoft.Scripting.Ast.Expression.Type"/> to set the <see cref="P:Expression.Type"/> property equal to.</param>
  3708. <returns>A <see cref="T:Microsoft.Scripting.Ast.ConditionalExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to
  3709. <see cref="F:ExpressionType.Conditional"/> and the <see cref="P:ConditionalExpression.Test"/>, <see cref="P:ConditionalExpression.IfTrue"/>,
  3710. and <see cref="P:ConditionalExpression.IfFalse"/> properties set to the specified values.</returns>
  3711. <remarks>This method allows explicitly unifying the result type of the conditional expression in cases where the types of <paramref name="ifTrue"/>
  3712. and <paramref name="ifFalse"/> expressions are not equal. Types of both <paramref name="ifTrue"/> and <paramref name="ifFalse"/> must be implicitly
  3713. reference assignable to the result type. The <paramref name="type"/> is allowed to be <see cref="T:System.Void"/>.</remarks>
  3714. </member>
  3715. <member name="M:Microsoft.Scripting.Ast.Expression.IfThen(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3716. <summary>
  3717. Creates a <see cref="T:Microsoft.Scripting.Ast.ConditionalExpression"/>.
  3718. </summary>
  3719. <param name="test">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:ConditionalExpression.Test"/> property equal to.</param>
  3720. <param name="ifTrue">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:ConditionalExpression.IfTrue"/> property equal to.</param>
  3721. <returns>A <see cref="T:Microsoft.Scripting.Ast.ConditionalExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to
  3722. <see cref="F:ExpressionType.Conditional"/> and the <see cref="P:ConditionalExpression.Test"/>, <see cref="P:ConditionalExpression.IfTrue"/>,
  3723. properties set to the specified values. The <see cref="P:ConditionalExpression.IfFalse"/> property is set to default expression and
  3724. the type of the resulting <see cref="T:Microsoft.Scripting.Ast.ConditionalExpression"/> returned by this method is <see cref="T:System.Void"/>.</returns>
  3725. </member>
  3726. <member name="M:Microsoft.Scripting.Ast.Expression.IfThenElse(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  3727. <summary>
  3728. Creates a <see cref="T:Microsoft.Scripting.Ast.ConditionalExpression"/>.
  3729. </summary>
  3730. <param name="test">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:ConditionalExpression.Test"/> property equal to.</param>
  3731. <param name="ifTrue">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:ConditionalExpression.IfTrue"/> property equal to.</param>
  3732. <param name="ifFalse">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:ConditionalExpression.IfFalse"/> property equal to.</param>
  3733. <returns>A <see cref="T:Microsoft.Scripting.Ast.ConditionalExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to
  3734. <see cref="F:ExpressionType.Conditional"/> and the <see cref="P:ConditionalExpression.Test"/>, <see cref="P:ConditionalExpression.IfTrue"/>,
  3735. and <see cref="P:ConditionalExpression.IfFalse"/> properties set to the specified values. The type of the resulting <see cref="T:Microsoft.Scripting.Ast.ConditionalExpression"/>
  3736. returned by this method is <see cref="T:System.Void"/>.</returns>
  3737. </member>
  3738. <member name="M:Microsoft.Scripting.Ast.Expression.Constant(System.Object)">
  3739. <summary>
  3740. Creates a <see cref="T:Microsoft.Scripting.Ast.ConstantExpression"/> that has the <see cref="P:ConstantExpression.Value"/> property set to the specified value. .
  3741. </summary>
  3742. <param name="value">An <see cref="T:System.Object"/> to set the <see cref="P:ConstantExpression.Value"/> property equal to.</param>
  3743. <returns>
  3744. A <see cref="T:Microsoft.Scripting.Ast.ConstantExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to
  3745. <see cref="F:ExpressionType.Constant"/> and the <see cref="P:Expression.Value"/> property set to the specified value.
  3746. </returns>
  3747. </member>
  3748. <member name="M:Microsoft.Scripting.Ast.Expression.Constant(System.Object,System.Type)">
  3749. <summary>
  3750. Creates a <see cref="T:Microsoft.Scripting.Ast.ConstantExpression"/> that has the <see cref="P:ConstantExpression.Value"/>
  3751. and <see cref="P:ConstantExpression.Type"/> properties set to the specified values. .
  3752. </summary>
  3753. <param name="value">An <see cref="T:System.Object"/> to set the <see cref="P:ConstantExpression.Value"/> property equal to.</param>
  3754. <param name="type">A <see cref="T:System.Type"/> to set the <see cref="P:Expression.Type"/> property equal to.</param>
  3755. <returns>
  3756. A <see cref="T:Microsoft.Scripting.Ast.ConstantExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to
  3757. <see cref="F:ExpressionType.Constant"/> and the <see cref="P:ConstantExpression.Value"/> and
  3758. <see cref="P:Expression.Type"/> properties set to the specified values.
  3759. </returns>
  3760. </member>
  3761. <member name="M:Microsoft.Scripting.Ast.Expression.Empty">
  3762. <summary>
  3763. Creates an empty expression that has <see cref="T:System.Void"/> type.
  3764. </summary>
  3765. <returns>
  3766. A <see cref="T:Microsoft.Scripting.Ast.DefaultExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to
  3767. <see cref="F:ExpressionType.Default"/> and the <see cref="P:Expression.Type"/> property set to <see cref="T:System.Void"/>.
  3768. </returns>
  3769. </member>
  3770. <member name="M:Microsoft.Scripting.Ast.Expression.Default(System.Type)">
  3771. <summary>
  3772. Creates a <see cref="T:Microsoft.Scripting.Ast.DefaultExpression"/> that has the <see cref="P:Expression.Type"/> property set to the specified type.
  3773. </summary>
  3774. <param name="type">A <see cref="T:System.Type"/> to set the <see cref="P:Expression.Type"/> property equal to.</param>
  3775. <returns>
  3776. A <see cref="T:Microsoft.Scripting.Ast.DefaultExpression"/> that has the <see cref="P:Expression.NodeType"/> property equal to
  3777. <see cref="F:ExpressionType.Default"/> and the <see cref="P:Expression.Type"/> property set to the specified type.
  3778. </returns>
  3779. </member>
  3780. <member name="M:Microsoft.Scripting.Ast.Expression.ElementInit(System.Reflection.MethodInfo,Microsoft.Scripting.Ast.Expression[])">
  3781. <summary>
  3782. Creates an <see cref="T:ElementInit">ElementInit</see> expression that represents the initialization of a list.
  3783. </summary>
  3784. <param name="addMethod">The <see cref="T:System.Reflection.MethodInfo"/> for the list's Add method.</param>
  3785. <param name="arguments">An array containing the Expressions to be used to initialize the list.</param>
  3786. <returns>The created <see cref="T:ElementInit">ElementInit</see> expression.</returns>
  3787. </member>
  3788. <member name="M:Microsoft.Scripting.Ast.Expression.ElementInit(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  3789. <summary>
  3790. Creates an <see cref="T:ElementInit">ElementInit</see> expression that represents the initialization of a list.
  3791. </summary>
  3792. <param name="addMethod">The <see cref="T:System.Reflection.MethodInfo"/> for the list's Add method.</param>
  3793. <param name="arguments">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing <see cref="T:Microsoft.Scripting.Ast.Expression"/> elements to initialize the list.</param>
  3794. <returns>The created <see cref="T:ElementInit">ElementInit</see> expression.</returns>
  3795. </member>
  3796. <member name="M:Microsoft.Scripting.Ast.Expression.#ctor">
  3797. <summary>
  3798. Constructs a new instance of <see cref="T:Microsoft.Scripting.Ast.Expression"/>.
  3799. </summary>
  3800. </member>
  3801. <member name="M:Microsoft.Scripting.Ast.Expression.Reduce">
  3802. <summary>
  3803. Reduces this node to a simpler expression. If CanReduce returns
  3804. true, this should return a valid expression. This method is
  3805. allowed to return another node which itself must be reduced.
  3806. </summary>
  3807. <returns>The reduced expression.</returns>
  3808. </member>
  3809. <member name="M:Microsoft.Scripting.Ast.Expression.VisitChildren(Microsoft.Scripting.Ast.ExpressionVisitor)">
  3810. <summary>
  3811. Reduces the node and then calls the visitor delegate on the reduced expression.
  3812. Throws an exception if the node isn't reducible.
  3813. </summary>
  3814. <param name="visitor">An instance of <see cref="T:System.Func`2"/>.</param>
  3815. <returns>The expression being visited, or an expression which should replace it in the tree.</returns>
  3816. <remarks>
  3817. Override this method to provide logic to walk the node's children.
  3818. A typical implementation will call visitor.Visit on each of its
  3819. children, and if any of them change, should return a new copy of
  3820. itself with the modified children.
  3821. </remarks>
  3822. </member>
  3823. <member name="M:Microsoft.Scripting.Ast.Expression.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  3824. <summary>
  3825. Dispatches to the specific visit method for this node type. For
  3826. example, <see cref="T:Microsoft.Scripting.Ast.MethodCallExpression"/> will call into
  3827. <see cref="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitMethodCall(Microsoft.Scripting.Ast.MethodCallExpression)"/>.
  3828. </summary>
  3829. <param name="visitor">The visitor to visit this node with.</param>
  3830. <returns>The result of visiting this node.</returns>
  3831. <remarks>
  3832. This default implementation for <see cref="F:Microsoft.Scripting.Ast.ExpressionType.Extension"/>
  3833. nodes will call <see cref="M:Microsoft.Scripting.Ast.ExpressionVisitor.VisitExtension(Microsoft.Scripting.Ast.Expression)"/>.
  3834. Override this method to call into a more specific method on a derived
  3835. visitor class of ExprressionVisitor. However, it should still
  3836. support unknown visitors by calling VisitExtension.
  3837. </remarks>
  3838. </member>
  3839. <member name="M:Microsoft.Scripting.Ast.Expression.ReduceAndCheck">
  3840. <summary>
  3841. Reduces this node to a simpler expression. If CanReduce returns
  3842. true, this should return a valid expression. This method is
  3843. allowed to return another node which itself must be reduced.
  3844. </summary>
  3845. <returns>The reduced expression.</returns>
  3846. <remarks >
  3847. Unlike Reduce, this method checks that the reduced node satisfies
  3848. certain invariants.
  3849. </remarks>
  3850. </member>
  3851. <member name="M:Microsoft.Scripting.Ast.Expression.ReduceExtensions">
  3852. <summary>
  3853. Reduces the expression to a known node type (i.e. not an Extension node)
  3854. or simply returns the expression if it is already a known type.
  3855. </summary>
  3856. <returns>The reduced expression.</returns>
  3857. </member>
  3858. <member name="M:Microsoft.Scripting.Ast.Expression.ToString">
  3859. <summary>
  3860. Creates a <see cref="T:System.String"/> representation of the Expression.
  3861. </summary>
  3862. <returns>A <see cref="T:System.String"/> representation of the Expression.</returns>
  3863. </member>
  3864. <member name="M:Microsoft.Scripting.Ast.Expression.DumpExpression(System.IO.TextWriter)">
  3865. <summary>
  3866. Writes a <see cref="T:System.String"/> representation of the <see cref="T:Microsoft.Scripting.Ast.Expression"/> to a <see cref="T:System.IO.TextWriter"/>.
  3867. </summary>
  3868. <param name="writer">A <see cref="T:System.IO.TextWriter"/> that will be used to build the string representation.</param>
  3869. </member>
  3870. <member name="M:Microsoft.Scripting.Ast.Expression.ReturnReadOnly``1(System.Collections.Generic.IList{``0}@)">
  3871. <summary>
  3872. Helper used for ensuring we only return 1 instance of a ReadOnlyCollection of T.
  3873. This is called from various methods where we internally hold onto an IList of T
  3874. or a readonly collection of T. We check to see if we've already returned a
  3875. readonly collection of T and if so simply return the other one. Otherwise we do
  3876. a thread-safe replacement of the list w/ a readonly collection which wraps it.
  3877. Ultimately this saves us from having to allocate a ReadOnlyCollection for our
  3878. data types because the compiler is capable of going directly to the IList of T.
  3879. </summary>
  3880. </member>
  3881. <member name="M:Microsoft.Scripting.Ast.Expression.ReturnReadOnly(Microsoft.Scripting.Ast.IArgumentProvider,System.Object@)">
  3882. <summary>
  3883. Helper used for ensuring we only return 1 instance of a ReadOnlyCollection of T.
  3884. This is similar to the ReturnReadOnly of T. This version supports nodes which hold
  3885. onto multiple Expressions where one is typed to object. That object field holds either
  3886. an expression or a ReadOnlyCollection of Expressions. When it holds a ReadOnlyCollection
  3887. the IList which backs it is a ListArgumentProvider which uses the Expression which
  3888. implements IArgumentProvider to get 2nd and additional values. The ListArgumentProvider
  3889. continues to hold onto the 1st expression.
  3890. This enables users to get the ReadOnlyCollection w/o it consuming more memory than if
  3891. it was just an array. Meanwhile The DLR internally avoids accessing which would force
  3892. the readonly collection to be created resulting in a typical memory savings.
  3893. </summary>
  3894. </member>
  3895. <member name="M:Microsoft.Scripting.Ast.Expression.ReturnObject``1(System.Object)">
  3896. <summary>
  3897. Helper which is used for specialized subtypes which use ReturnReadOnly(ref object, ...).
  3898. This is the reverse version of ReturnReadOnly which takes an IArgumentProvider.
  3899. This is used to return the 1st argument. The 1st argument is typed as object and either
  3900. contains a ReadOnlyCollection or the Expression. We check for the Expression and if it's
  3901. present we return that, otherwise we return the 1st element of the ReadOnlyCollection.
  3902. </summary>
  3903. </member>
  3904. <member name="M:Microsoft.Scripting.Ast.Expression.MakeIndex(Microsoft.Scripting.Ast.Expression,System.Reflection.PropertyInfo,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  3905. <summary>
  3906. Creates an <see cref="T:Microsoft.Scripting.Ast.IndexExpression"/> that represents accessing an indexed property in an object.
  3907. </summary>
  3908. <param name="instance">The object to which the property belongs. Should be null if the property is static(shared).</param>
  3909. <param name="indexer">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> representing the property to index.</param>
  3910. <param name="arguments">An IEnumerable{Expression} contaning the arguments to be used to index the property.</param>
  3911. <returns>The created <see cref="T:Microsoft.Scripting.Ast.IndexExpression"/>.</returns>
  3912. </member>
  3913. <member name="M:Microsoft.Scripting.Ast.Expression.ArrayAccess(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression[])">
  3914. <summary>
  3915. Creates an <see cref="T:Microsoft.Scripting.Ast.IndexExpression"></see> to access an array.
  3916. </summary>
  3917. <param name="array">An expression representing the array to index.</param>
  3918. <param name="indexes">An array containing expressions used to index the array.</param>
  3919. <remarks>The expression representing the array can be obtained by using the MakeMemberAccess method,
  3920. or through NewArrayBounds or NewArrayInit.</remarks>
  3921. <returns>The created <see cref="T:Microsoft.Scripting.Ast.IndexExpression"/>.</returns>
  3922. </member>
  3923. <member name="M:Microsoft.Scripting.Ast.Expression.ArrayAccess(Microsoft.Scripting.Ast.Expression,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  3924. <summary>
  3925. Creates an <see cref="T:Microsoft.Scripting.Ast.IndexExpression"></see> to access an array.
  3926. </summary>
  3927. <param name="array">An expression representing the array to index.</param>
  3928. <param name="indexes">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing expressions used to index the array.</param>
  3929. <remarks>The expression representing the array can be obtained by using the MakeMemberAccess method,
  3930. or through NewArrayBounds or NewArrayInit.</remarks>
  3931. <returns>The created <see cref="T:Microsoft.Scripting.Ast.IndexExpression"/>.</returns>
  3932. </member>
  3933. <member name="M:Microsoft.Scripting.Ast.Expression.Property(Microsoft.Scripting.Ast.Expression,System.String,Microsoft.Scripting.Ast.Expression[])">
  3934. <summary>
  3935. Creates an <see cref="T:Microsoft.Scripting.Ast.IndexExpression"/> representing the access to an indexed property.
  3936. </summary>
  3937. <param name="instance">The object to which the property belongs. If the property is static/shared, it must be null.</param>
  3938. <param name="propertyName">The name of the indexer.</param>
  3939. <param name="arguments">An array of <see cref="T:Microsoft.Scripting.Ast.Expression"/> objects that are used to index the property.</param>
  3940. <returns>The created <see cref="T:Microsoft.Scripting.Ast.IndexExpression"/>.</returns>
  3941. </member>
  3942. <member name="M:Microsoft.Scripting.Ast.Expression.FindInstanceProperty(System.Type,System.String,Microsoft.Scripting.Ast.Expression[])">
  3943. <summary>
  3944. The method finds the instance property with the specified name in a type. The property's type signature needs to be compatible with
  3945. the arguments if it is a indexer. If the arguments is null or empty, we get a normal property.
  3946. </summary>
  3947. </member>
  3948. <member name="M:Microsoft.Scripting.Ast.Expression.Property(Microsoft.Scripting.Ast.Expression,System.Reflection.PropertyInfo,Microsoft.Scripting.Ast.Expression[])">
  3949. <summary>
  3950. Creates an <see cref="T:Microsoft.Scripting.Ast.IndexExpression"/> representing the access to an indexed property.
  3951. </summary>
  3952. <param name="instance">The object to which the property belongs. If the property is static/shared, it must be null.</param>
  3953. <param name="indexer">The <see cref="T:System.Reflection.PropertyInfo"/> that represents the property to index.</param>
  3954. <param name="arguments">An array of <see cref="T:Microsoft.Scripting.Ast.Expression"/> objects that are used to index the property.</param>
  3955. <returns>The created <see cref="T:Microsoft.Scripting.Ast.IndexExpression"/>.</returns>
  3956. </member>
  3957. <member name="M:Microsoft.Scripting.Ast.Expression.Property(Microsoft.Scripting.Ast.Expression,System.Reflection.PropertyInfo,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  3958. <summary>
  3959. Creates an <see cref="T:Microsoft.Scripting.Ast.IndexExpression"/> representing the access to an indexed property.
  3960. </summary>
  3961. <param name="instance">The object to which the property belongs. If the property is static/shared, it must be null.</param>
  3962. <param name="indexer">The <see cref="T:System.Reflection.PropertyInfo"/> that represents the property to index.</param>
  3963. <param name="arguments">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Microsoft.Scripting.Ast.Expression"/> objects that are used to index the property.</param>
  3964. <returns>The created <see cref="T:Microsoft.Scripting.Ast.IndexExpression"/>.</returns>
  3965. </member>
  3966. <member name="M:Microsoft.Scripting.Ast.Expression.Invoke(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression[])">
  3967. <summary>
  3968. Creates an <see cref="T:System.Linq.Expressions.InvocationExpression" /> that
  3969. applies a delegate or lambda expression to a list of argument expressions.
  3970. </summary>
  3971. <returns>
  3972. An <see cref="T:System.Linq.Expressions.InvocationExpression" /> that
  3973. applies the specified delegate or lambda expression to the provided arguments.
  3974. </returns>
  3975. <param name="expression">
  3976. An <see cref="T:System.Linq.Expressions.Expression" /> that represents the delegate
  3977. or lambda expression to be applied.
  3978. </param>
  3979. <param name="arguments">
  3980. An array of <see cref="T:System.Linq.Expressions.Expression" /> objects
  3981. that represent the arguments that the delegate or lambda expression is applied to.
  3982. </param>
  3983. <exception cref="T:System.ArgumentNullException">
  3984. <paramref name="expression" /> is null.</exception>
  3985. <exception cref="T:System.ArgumentException">
  3986. <paramref name="expression" />.Type does not represent a delegate type or an <see cref="T:System.Linq.Expressions.Expression`1" />.-or-The <see cref="P:System.Linq.Expressions.Expression.Type" /> property of an element of <paramref name="arguments" /> is not assignable to the type of the corresponding parameter of the delegate represented by <paramref name="expression" />.</exception>
  3987. <exception cref="T:System.InvalidOperationException">
  3988. <paramref name="arguments" /> does not contain the same number of elements as the list of parameters for the delegate represented by <paramref name="expression" />.</exception>
  3989. </member>
  3990. <member name="M:Microsoft.Scripting.Ast.Expression.Invoke(Microsoft.Scripting.Ast.Expression,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  3991. <summary>
  3992. Creates an <see cref="T:System.Linq.Expressions.InvocationExpression" /> that
  3993. applies a delegate or lambda expression to a list of argument expressions.
  3994. </summary>
  3995. <returns>
  3996. An <see cref="T:System.Linq.Expressions.InvocationExpression" /> that
  3997. applies the specified delegate or lambda expression to the provided arguments.
  3998. </returns>
  3999. <param name="expression">
  4000. An <see cref="T:System.Linq.Expressions.Expression" /> that represents the delegate
  4001. or lambda expression to be applied.
  4002. </param>
  4003. <param name="arguments">
  4004. An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Linq.Expressions.Expression" /> objects
  4005. that represent the arguments that the delegate or lambda expression is applied to.
  4006. </param>
  4007. <exception cref="T:System.ArgumentNullException">
  4008. <paramref name="expression" /> is null.</exception>
  4009. <exception cref="T:System.ArgumentException">
  4010. <paramref name="expression" />.Type does not represent a delegate type or an <see cref="T:System.Linq.Expressions.Expression`1" />.-or-The <see cref="P:System.Linq.Expressions.Expression.Type" /> property of an element of <paramref name="arguments" /> is not assignable to the type of the corresponding parameter of the delegate represented by <paramref name="expression" />.</exception>
  4011. <exception cref="T:System.InvalidOperationException">
  4012. <paramref name="arguments" /> does not contain the same number of elements as the list of parameters for the delegate represented by <paramref name="expression" />.</exception>
  4013. </member>
  4014. <member name="M:Microsoft.Scripting.Ast.Expression.GetInvokeMethod(Microsoft.Scripting.Ast.Expression)">
  4015. <summary>
  4016. Gets the delegate's Invoke method; used by InvocationExpression.
  4017. </summary>
  4018. <param name="expression">The expression to be invoked.</param>
  4019. </member>
  4020. <member name="M:Microsoft.Scripting.Ast.Expression.Label">
  4021. <summary>
  4022. Creates a <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/> representing a label with void type and no name.
  4023. </summary>
  4024. <returns>The new <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/>.</returns>
  4025. </member>
  4026. <member name="M:Microsoft.Scripting.Ast.Expression.Label(System.String)">
  4027. <summary>
  4028. Creates a <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/> representing a label with void type and the given name.
  4029. </summary>
  4030. <param name="name">The name of the label.</param>
  4031. <returns>The new <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/>.</returns>
  4032. </member>
  4033. <member name="M:Microsoft.Scripting.Ast.Expression.Label(System.Type)">
  4034. <summary>
  4035. Creates a <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/> representing a label with the given type.
  4036. </summary>
  4037. <param name="type">The type of value that is passed when jumping to the label.</param>
  4038. <returns>The new <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/>.</returns>
  4039. </member>
  4040. <member name="M:Microsoft.Scripting.Ast.Expression.Label(System.Type,System.String)">
  4041. <summary>
  4042. Creates a <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/> representing a label with the given type and name.
  4043. </summary>
  4044. <param name="type">The type of value that is passed when jumping to the label.</param>
  4045. <param name="name">The name of the label.</param>
  4046. <returns>The new <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/>.</returns>
  4047. </member>
  4048. <member name="M:Microsoft.Scripting.Ast.Expression.Label(Microsoft.Scripting.Ast.LabelTarget)">
  4049. <summary>
  4050. Creates a <see cref="T:Microsoft.Scripting.Ast.LabelExpression"/> representing a label with no default value.
  4051. </summary>
  4052. <param name="target">The <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/> which this <see cref="T:Microsoft.Scripting.Ast.LabelExpression"/> will be associated with.</param>
  4053. <returns>A <see cref="T:Microsoft.Scripting.Ast.LabelExpression"/> with no default value.</returns>
  4054. </member>
  4055. <member name="M:Microsoft.Scripting.Ast.Expression.Label(Microsoft.Scripting.Ast.LabelTarget,Microsoft.Scripting.Ast.Expression)">
  4056. <summary>
  4057. Creates a <see cref="T:Microsoft.Scripting.Ast.LabelExpression"/> representing a label with the given default value.
  4058. </summary>
  4059. <param name="target">The <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/> which this <see cref="T:Microsoft.Scripting.Ast.LabelExpression"/> will be associated with.</param>
  4060. <param name="defaultValue">The value of this <see cref="T:Microsoft.Scripting.Ast.LabelExpression"/> when the label is reached through normal control flow.</param>
  4061. <returns>A <see cref="T:Microsoft.Scripting.Ast.LabelExpression"/> with the given default value.</returns>
  4062. </member>
  4063. <member name="M:Microsoft.Scripting.Ast.Expression.CreateLambda(System.Type,Microsoft.Scripting.Ast.Expression,System.String,System.Boolean,System.Collections.ObjectModel.ReadOnlyCollection{Microsoft.Scripting.Ast.ParameterExpression})">
  4064. <summary>
  4065. Creates an Expression{T} given the delegate type. Caches the
  4066. factory method to speed up repeated creations for the same T.
  4067. </summary>
  4068. </member>
  4069. <member name="M:Microsoft.Scripting.Ast.Expression.Lambda``1(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.ParameterExpression[])">
  4070. <summary>
  4071. Creates an <see cref="T:Microsoft.Scripting.Ast.Expression`1"/> where the delegate type is known at compile time.
  4072. </summary>
  4073. <typeparam name="TDelegate">The delegate type. </typeparam>
  4074. <param name="body">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:Body"/> property equal to. </param>
  4075. <param name="parameters">An array that contains <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> objects to use to populate the <see cref="P:Parameters"/> collection. </param>
  4076. <returns>An <see cref="T:Microsoft.Scripting.Ast.Expression`1"/> that has the <see cref="P:NodeType"/> property equal to <see cref="P:Lambda"/> and the <see cref="P:Body"/> and <see cref="P:Parameters"/> properties set to the specified values.</returns>
  4077. </member>
  4078. <member name="M:Microsoft.Scripting.Ast.Expression.Lambda``1(Microsoft.Scripting.Ast.Expression,System.Boolean,Microsoft.Scripting.Ast.ParameterExpression[])">
  4079. <summary>
  4080. Creates an <see cref="T:Microsoft.Scripting.Ast.Expression`1"/> where the delegate type is known at compile time.
  4081. </summary>
  4082. <typeparam name="TDelegate">The delegate type. </typeparam>
  4083. <param name="body">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:Body"/> property equal to. </param>
  4084. <param name="tailCall">A <see cref="T:System.Boolean"/> that indicates if tail call optimization will be applied when compiling the created expression. </param>
  4085. <param name="parameters">An array that contains <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> objects to use to populate the <see cref="P:Parameters"/> collection. </param>
  4086. <returns>An <see cref="T:Microsoft.Scripting.Ast.Expression`1"/> that has the <see cref="P:NodeType"/> property equal to <see cref="P:Lambda"/> and the <see cref="P:Body"/> and <see cref="P:Parameters"/> properties set to the specified values.</returns>
  4087. </member>
  4088. <member name="M:Microsoft.Scripting.Ast.Expression.Lambda``1(Microsoft.Scripting.Ast.Expression,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.ParameterExpression})">
  4089. <summary>
  4090. Creates an <see cref="T:Microsoft.Scripting.Ast.Expression`1"/> where the delegate type is known at compile time.
  4091. </summary>
  4092. <typeparam name="TDelegate">The delegate type. </typeparam>
  4093. <param name="body">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:Body"/> property equal to. </param>
  4094. <param name="parameters">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> objects to use to populate the <see cref="P:Parameters"/> collection. </param>
  4095. <returns>An <see cref="T:Microsoft.Scripting.Ast.Expression`1"/> that has the <see cref="P:NodeType"/> property equal to <see cref="P:Lambda"/> and the <see cref="P:Body"/> and <see cref="P:Parameters"/> properties set to the specified values.</returns>
  4096. </member>
  4097. <member name="M:Microsoft.Scripting.Ast.Expression.Lambda``1(Microsoft.Scripting.Ast.Expression,System.Boolean,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.ParameterExpression})">
  4098. <summary>
  4099. Creates an <see cref="T:Microsoft.Scripting.Ast.Expression`1"/> where the delegate type is known at compile time.
  4100. </summary>
  4101. <typeparam name="TDelegate">The delegate type. </typeparam>
  4102. <param name="body">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:Body"/> property equal to. </param>
  4103. <param name="tailCall">A <see cref="T:System.Boolean"/> that indicates if tail call optimization will be applied when compiling the created expression. </param>
  4104. <param name="parameters">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> objects to use to populate the <see cref="P:Parameters"/> collection. </param>
  4105. <returns>An <see cref="T:Microsoft.Scripting.Ast.Expression`1"/> that has the <see cref="P:NodeType"/> property equal to <see cref="P:Lambda"/> and the <see cref="P:Body"/> and <see cref="P:Parameters"/> properties set to the specified values.</returns>
  4106. </member>
  4107. <member name="M:Microsoft.Scripting.Ast.Expression.Lambda``1(Microsoft.Scripting.Ast.Expression,System.String,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.ParameterExpression})">
  4108. <summary>
  4109. Creates an <see cref="T:Microsoft.Scripting.Ast.Expression`1"/> where the delegate type is known at compile time.
  4110. </summary>
  4111. <typeparam name="TDelegate">The delegate type. </typeparam>
  4112. <param name="body">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:Body"/> property equal to. </param>
  4113. <param name="parameters">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> objects to use to populate the <see cref="P:Parameters"/> collection. </param>
  4114. <param name="name">The name of the lambda. Used for generating debugging info.</param>
  4115. <returns>An <see cref="T:Microsoft.Scripting.Ast.Expression`1"/> that has the <see cref="P:NodeType"/> property equal to <see cref="P:Lambda"/> and the <see cref="P:Body"/> and <see cref="P:Parameters"/> properties set to the specified values.</returns>
  4116. </member>
  4117. <member name="M:Microsoft.Scripting.Ast.Expression.Lambda``1(Microsoft.Scripting.Ast.Expression,System.String,System.Boolean,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.ParameterExpression})">
  4118. <summary>
  4119. Creates an <see cref="T:Microsoft.Scripting.Ast.Expression`1"/> where the delegate type is known at compile time.
  4120. </summary>
  4121. <typeparam name="TDelegate">The delegate type. </typeparam>
  4122. <param name="body">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:Body"/> property equal to. </param>
  4123. <param name="name">The name of the lambda. Used for generating debugging info.</param>
  4124. <param name="parameters">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> objects to use to populate the <see cref="P:Parameters"/> collection. </param>
  4125. <param name="tailCall">A <see cref="T:System.Boolean"/> that indicates if tail call optimization will be applied when compiling the created expression. </param>
  4126. <returns>An <see cref="T:Microsoft.Scripting.Ast.Expression`1"/> that has the <see cref="P:NodeType"/> property equal to <see cref="P:Lambda"/> and the <see cref="P:Body"/> and <see cref="P:Parameters"/> properties set to the specified values.</returns>
  4127. </member>
  4128. <member name="M:Microsoft.Scripting.Ast.Expression.Lambda(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.ParameterExpression[])">
  4129. <summary>
  4130. Creates a LambdaExpression by first constructing a delegate type.
  4131. </summary>
  4132. <param name="body">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:Body"/> property equal to. </param>
  4133. <param name="parameters">An array that contains <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> objects to use to populate the <see cref="P:Parameters"/> collection. </param>
  4134. <returns>A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> that has the <see cref="P:NodeType"/> property equal to Lambda and the <see cref="P:Body"/> and <see cref="P:Parameters"/> properties set to the specified values.</returns>
  4135. </member>
  4136. <member name="M:Microsoft.Scripting.Ast.Expression.Lambda(Microsoft.Scripting.Ast.Expression,System.Boolean,Microsoft.Scripting.Ast.ParameterExpression[])">
  4137. <summary>
  4138. Creates a LambdaExpression by first constructing a delegate type.
  4139. </summary>
  4140. <param name="body">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:Body"/> property equal to. </param>
  4141. <param name="tailCall">A <see cref="T:System.Boolean"/> that indicates if tail call optimization will be applied when compiling the created expression. </param>
  4142. <param name="parameters">An array that contains <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> objects to use to populate the <see cref="P:Parameters"/> collection. </param>
  4143. <returns>A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> that has the <see cref="P:NodeType"/> property equal to Lambda and the <see cref="P:Body"/> and <see cref="P:Parameters"/> properties set to the specified values.</returns>
  4144. </member>
  4145. <member name="M:Microsoft.Scripting.Ast.Expression.Lambda(Microsoft.Scripting.Ast.Expression,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.ParameterExpression})">
  4146. <summary>
  4147. Creates a LambdaExpression by first constructing a delegate type.
  4148. </summary>
  4149. <param name="body">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:Body"/> property equal to. </param>
  4150. <param name="parameters">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> objects to use to populate the <see cref="P:Parameters"/> collection. </param>
  4151. <returns>A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> that has the <see cref="P:NodeType"/> property equal to Lambda and the <see cref="P:Body"/> and <see cref="P:Parameters"/> properties set to the specified values.</returns>
  4152. </member>
  4153. <member name="M:Microsoft.Scripting.Ast.Expression.Lambda(Microsoft.Scripting.Ast.Expression,System.Boolean,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.ParameterExpression})">
  4154. <summary>
  4155. Creates a LambdaExpression by first constructing a delegate type.
  4156. </summary>
  4157. <param name="body">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:Body"/> property equal to. </param>
  4158. <param name="tailCall">A <see cref="T:System.Boolean"/> that indicates if tail call optimization will be applied when compiling the created expression. </param>
  4159. <param name="parameters">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> objects to use to populate the <see cref="P:Parameters"/> collection. </param>
  4160. <returns>A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> that has the <see cref="P:NodeType"/> property equal to Lambda and the <see cref="P:Body"/> and <see cref="P:Parameters"/> properties set to the specified values.</returns>
  4161. </member>
  4162. <member name="M:Microsoft.Scripting.Ast.Expression.Lambda(System.Type,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.ParameterExpression[])">
  4163. <summary>
  4164. Creates a LambdaExpression by first constructing a delegate type.
  4165. </summary>
  4166. <param name="body">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:Body"/> property equal to. </param>
  4167. <param name="parameters">An array that contains <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> objects to use to populate the <see cref="P:Parameters"/> collection. </param>
  4168. <param name="delegateType">A <see cref="P:Microsoft.Scripting.Ast.Expression.Type"/> representing the delegate signature for the lambda.</param>
  4169. <returns>A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> that has the <see cref="P:NodeType"/> property equal to Lambda and the <see cref="P:Body"/> and <see cref="P:Parameters"/> properties set to the specified values.</returns>
  4170. </member>
  4171. <member name="M:Microsoft.Scripting.Ast.Expression.Lambda(System.Type,Microsoft.Scripting.Ast.Expression,System.Boolean,Microsoft.Scripting.Ast.ParameterExpression[])">
  4172. <summary>
  4173. Creates a LambdaExpression by first constructing a delegate type.
  4174. </summary>
  4175. <param name="body">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:Body"/> property equal to. </param>
  4176. <param name="tailCall">A <see cref="T:System.Boolean"/> that indicates if tail call optimization will be applied when compiling the created expression. </param>
  4177. <param name="parameters">An array that contains <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> objects to use to populate the <see cref="P:Parameters"/> collection. </param>
  4178. <param name="delegateType">A <see cref="P:Microsoft.Scripting.Ast.Expression.Type"/> representing the delegate signature for the lambda.</param>
  4179. <returns>A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> that has the <see cref="P:NodeType"/> property equal to Lambda and the <see cref="P:Body"/> and <see cref="P:Parameters"/> properties set to the specified values.</returns>
  4180. </member>
  4181. <member name="M:Microsoft.Scripting.Ast.Expression.Lambda(System.Type,Microsoft.Scripting.Ast.Expression,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.ParameterExpression})">
  4182. <summary>
  4183. Creates a LambdaExpression by first constructing a delegate type.
  4184. </summary>
  4185. <param name="body">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:Body"/> property equal to. </param>
  4186. <param name="parameters">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> objects to use to populate the <see cref="P:Parameters"/> collection. </param>
  4187. <param name="delegateType">A <see cref="P:Microsoft.Scripting.Ast.Expression.Type"/> representing the delegate signature for the lambda.</param>
  4188. <returns>A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> that has the <see cref="P:NodeType"/> property equal to Lambda and the <see cref="P:Body"/> and <see cref="P:Parameters"/> properties set to the specified values.</returns>
  4189. </member>
  4190. <member name="M:Microsoft.Scripting.Ast.Expression.Lambda(System.Type,Microsoft.Scripting.Ast.Expression,System.Boolean,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.ParameterExpression})">
  4191. <summary>
  4192. Creates a LambdaExpression by first constructing a delegate type.
  4193. </summary>
  4194. <param name="body">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:Body"/> property equal to. </param>
  4195. <param name="tailCall">A <see cref="T:System.Boolean"/> that indicates if tail call optimization will be applied when compiling the created expression. </param>
  4196. <param name="parameters">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> objects to use to populate the <see cref="P:Parameters"/> collection. </param>
  4197. <param name="delegateType">A <see cref="P:Microsoft.Scripting.Ast.Expression.Type"/> representing the delegate signature for the lambda.</param>
  4198. <returns>A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> that has the <see cref="P:NodeType"/> property equal to Lambda and the <see cref="P:Body"/> and <see cref="P:Parameters"/> properties set to the specified values.</returns>
  4199. </member>
  4200. <member name="M:Microsoft.Scripting.Ast.Expression.Lambda(Microsoft.Scripting.Ast.Expression,System.String,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.ParameterExpression})">
  4201. <summary>
  4202. Creates a LambdaExpression by first constructing a delegate type.
  4203. </summary>
  4204. <param name="body">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:Body"/> property equal to. </param>
  4205. <param name="parameters">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> objects to use to populate the <see cref="P:Parameters"/> collection. </param>
  4206. <param name="name">The name for the lambda. Used for emitting debug information.</param>
  4207. <returns>A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> that has the <see cref="P:NodeType"/> property equal to Lambda and the <see cref="P:Body"/> and <see cref="P:Parameters"/> properties set to the specified values.</returns>
  4208. </member>
  4209. <member name="M:Microsoft.Scripting.Ast.Expression.Lambda(Microsoft.Scripting.Ast.Expression,System.String,System.Boolean,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.ParameterExpression})">
  4210. <summary>
  4211. Creates a LambdaExpression by first constructing a delegate type.
  4212. </summary>
  4213. <param name="body">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:Body"/> property equal to. </param>
  4214. <param name="name">The name for the lambda. Used for emitting debug information.</param>
  4215. <param name="tailCall">A <see cref="T:System.Boolean"/> that indicates if tail call optimization will be applied when compiling the created expression. </param>
  4216. <param name="parameters">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> objects to use to populate the <see cref="P:Parameters"/> collection. </param>
  4217. <returns>A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> that has the <see cref="P:NodeType"/> property equal to Lambda and the <see cref="P:Body"/> and <see cref="P:Parameters"/> properties set to the specified values.</returns>
  4218. </member>
  4219. <member name="M:Microsoft.Scripting.Ast.Expression.Lambda(System.Type,Microsoft.Scripting.Ast.Expression,System.String,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.ParameterExpression})">
  4220. <summary>
  4221. Creates a LambdaExpression by first constructing a delegate type.
  4222. </summary>
  4223. <param name="body">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:Body"/> property equal to. </param>
  4224. <param name="parameters">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> objects to use to populate the <see cref="P:Parameters"/> collection. </param>
  4225. <param name="name">The name for the lambda. Used for emitting debug information.</param>
  4226. <param name="delegateType">A <see cref="P:Microsoft.Scripting.Ast.Expression.Type"/> representing the delegate signature for the lambda.</param>
  4227. <returns>A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> that has the <see cref="P:NodeType"/> property equal to Lambda and the <see cref="P:Body"/> and <see cref="P:Parameters"/> properties set to the specified values.</returns>
  4228. </member>
  4229. <member name="M:Microsoft.Scripting.Ast.Expression.Lambda(System.Type,Microsoft.Scripting.Ast.Expression,System.String,System.Boolean,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.ParameterExpression})">
  4230. <summary>
  4231. Creates a LambdaExpression by first constructing a delegate type.
  4232. </summary>
  4233. <param name="delegateType">A <see cref="P:Microsoft.Scripting.Ast.Expression.Type"/> representing the delegate signature for the lambda.</param>
  4234. <param name="body">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="P:Body"/> property equal to. </param>
  4235. <param name="name">The name for the lambda. Used for emitting debug information.</param>
  4236. <param name="tailCall">A <see cref="T:System.Boolean"/> that indicates if tail call optimization will be applied when compiling the created expression. </param>
  4237. <param name="parameters">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> objects to use to populate the <see cref="P:Parameters"/> collection. </param>
  4238. <returns>A <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> that has the <see cref="P:NodeType"/> property equal to Lambda and the <see cref="P:Body"/> and <see cref="P:Parameters"/> properties set to the specified values.</returns>
  4239. </member>
  4240. <member name="M:Microsoft.Scripting.Ast.Expression.GetFuncType(System.Type[])">
  4241. <summary>
  4242. Creates a <see cref="P:Microsoft.Scripting.Ast.Expression.Type"/> object that represents a generic System.Func delegate type that has specific type arguments.
  4243. The last type argument specifies the return type of the created delegate.
  4244. </summary>
  4245. <param name="typeArgs">An array of Type objects that specify the type arguments for the System.Func delegate type.</param>
  4246. <returns>The type of a System.Func delegate that has the specified type arguments.</returns>
  4247. </member>
  4248. <member name="M:Microsoft.Scripting.Ast.Expression.TryGetFuncType(System.Type[],System.Type@)">
  4249. <summary>
  4250. Creates a <see cref="P:Microsoft.Scripting.Ast.Expression.Type"/> object that represents a generic System.Func delegate type that has specific type arguments.
  4251. The last type argument specifies the return type of the created delegate.
  4252. </summary>
  4253. <param name="typeArgs">An array of Type objects that specify the type arguments for the System.Func delegate type.</param>
  4254. <param name="funcType">When this method returns, contains the generic System.Func delegate type that has specific type arguments. Contains null if there is no generic System.Func delegate that matches the <paramref name="typeArgs"/>.This parameter is passed uninitialized.</param>
  4255. <returns>true if generic System.Func delegate type was created for specific <paramref name="typeArgs"/>; false otherwise.</returns>
  4256. </member>
  4257. <member name="M:Microsoft.Scripting.Ast.Expression.GetActionType(System.Type[])">
  4258. <summary>
  4259. Creates a <see cref="P:Microsoft.Scripting.Ast.Expression.Type"/> object that represents a generic System.Action delegate type that has specific type arguments.
  4260. </summary>
  4261. <param name="typeArgs">An array of Type objects that specify the type arguments for the System.Action delegate type.</param>
  4262. <returns>The type of a System.Action delegate that has the specified type arguments.</returns>
  4263. </member>
  4264. <member name="M:Microsoft.Scripting.Ast.Expression.TryGetActionType(System.Type[],System.Type@)">
  4265. <summary>
  4266. Creates a <see cref="P:Microsoft.Scripting.Ast.Expression.Type"/> object that represents a generic System.Action delegate type that has specific type arguments.
  4267. </summary>
  4268. <param name="typeArgs">An array of Type objects that specify the type arguments for the System.Action delegate type.</param>
  4269. <param name="actionType">When this method returns, contains the generic System.Action delegate type that has specific type arguments. Contains null if there is no generic System.Action delegate that matches the <paramref name="typeArgs"/>.This parameter is passed uninitialized.</param>
  4270. <returns>true if generic System.Action delegate type was created for specific <paramref name="typeArgs"/>; false otherwise.</returns>
  4271. </member>
  4272. <member name="M:Microsoft.Scripting.Ast.Expression.GetDelegateType(System.Type[])">
  4273. <summary>
  4274. Gets a <see cref="P:Microsoft.Scripting.Ast.Expression.Type"/> object that represents a generic System.Func or System.Action delegate type that has specific type arguments.
  4275. The last type argument determines the return type of the delegate. If no Func or Action is large enough, it will generate a custom
  4276. delegate type.
  4277. </summary>
  4278. <param name="typeArgs">The type arguments of the delegate.</param>
  4279. <returns>The delegate type.</returns>
  4280. <remarks>
  4281. As with Func, the last argument is the return type. It can be set
  4282. to System.Void to produce an Action.</remarks>
  4283. </member>
  4284. <member name="M:Microsoft.Scripting.Ast.Expression.ListInit(Microsoft.Scripting.Ast.NewExpression,Microsoft.Scripting.Ast.Expression[])">
  4285. <summary>
  4286. Creates a <see cref="T:Microsoft.Scripting.Ast.ListInitExpression"/> that uses a method named "Add" to add elements to a collection.
  4287. </summary>
  4288. <param name="newExpression">A <see cref="T:Microsoft.Scripting.Ast.NewExpression"/> to set the <see cref="P:ListInitExpression.NewExpression"/> property equal to.</param>
  4289. <param name="initializers">An array of <see cref="T:Microsoft.Scripting.Ast.Expression"/> objects to use to populate the <see cref="P:Microsoft.Scripting.Ast.ListInitExpression.Initializers"/> collection.</param>
  4290. <returns>A <see cref="T:Microsoft.Scripting.Ast.ListInitExpression"/> that has the <see cref="P:ListInitExpression.NodeType"/> property equal to ListInit and the <see cref="P:ListInitExpression.NewExpression"/> property set to the specified value.</returns>
  4291. </member>
  4292. <member name="M:Microsoft.Scripting.Ast.Expression.ListInit(Microsoft.Scripting.Ast.NewExpression,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  4293. <summary>
  4294. Creates a <see cref="T:Microsoft.Scripting.Ast.ListInitExpression"/> that uses a method named "Add" to add elements to a collection.
  4295. </summary>
  4296. <param name="newExpression">A <see cref="T:Microsoft.Scripting.Ast.NewExpression"/> to set the <see cref="P:ListInitExpression.NewExpression"/> property equal to.</param>
  4297. <param name="initializers">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains <see cref="M:ElementInit"/> objects to use to populate the <see cref="P:Microsoft.Scripting.Ast.ListInitExpression.Initializers"/> collection.</param>
  4298. <returns>A <see cref="T:Microsoft.Scripting.Ast.ListInitExpression"/> that has the <see cref="P:ListInitExpression.NodeType"/> property equal to ListInit and the <see cref="P:ListInitExpression.NewExpression"/> property set to the specified value.</returns>
  4299. </member>
  4300. <member name="M:Microsoft.Scripting.Ast.Expression.ListInit(Microsoft.Scripting.Ast.NewExpression,System.Reflection.MethodInfo,Microsoft.Scripting.Ast.Expression[])">
  4301. <summary>
  4302. Creates a <see cref="T:Microsoft.Scripting.Ast.ListInitExpression"/> that uses a specified method to add elements to a collection.
  4303. </summary>
  4304. <param name="newExpression">A <see cref="T:Microsoft.Scripting.Ast.NewExpression"/> to set the <see cref="P:ListInitExpression.NewExpression"/> property equal to.</param>
  4305. <param name="addMethod">A <see cref="T:System.Reflection.MethodInfo"/> that represents an instance method named "Add" (case insensitive), that adds an element to a collection. </param>
  4306. <param name="initializers">An array of <see cref="T:Microsoft.Scripting.Ast.Expression"/> objects to use to populate the <see cref="P:Microsoft.Scripting.Ast.ListInitExpression.Initializers"/> collection.</param>
  4307. <returns>A <see cref="T:Microsoft.Scripting.Ast.ListInitExpression"/> that has the <see cref="P:ListInitExpression.NodeType"/> property equal to ListInit and the <see cref="P:ListInitExpression.NewExpression"/> property set to the specified value.</returns>
  4308. </member>
  4309. <member name="M:Microsoft.Scripting.Ast.Expression.ListInit(Microsoft.Scripting.Ast.NewExpression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  4310. <summary>
  4311. Creates a <see cref="T:Microsoft.Scripting.Ast.ListInitExpression"/> that uses a specified method to add elements to a collection.
  4312. </summary>
  4313. <param name="newExpression">A <see cref="T:Microsoft.Scripting.Ast.NewExpression"/> to set the <see cref="P:ListInitExpression.NewExpression"/> property equal to.</param>
  4314. <param name="addMethod">A <see cref="T:System.Reflection.MethodInfo"/> that represents an instance method named "Add" (case insensitive), that adds an element to a collection. </param>
  4315. <param name="initializers">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains <see cref="T:Microsoft.Scripting.Ast.Expression"/> objects to use to populate the Initializers collection.</param>
  4316. <returns>A <see cref="T:Microsoft.Scripting.Ast.ListInitExpression"/> that has the <see cref="P:ListInitExpression.NodeType"/> property equal to ListInit and the <see cref="P:ListInitExpression.NewExpression"/> property set to the specified value.</returns>
  4317. </member>
  4318. <member name="M:Microsoft.Scripting.Ast.Expression.ListInit(Microsoft.Scripting.Ast.NewExpression,Microsoft.Scripting.Ast.ElementInit[])">
  4319. <summary>
  4320. Creates a <see cref="T:Microsoft.Scripting.Ast.ListInitExpression"/> that uses specified <see cref="M:ElementInit"/> objects to initialize a collection.
  4321. </summary>
  4322. <param name="newExpression">A <see cref="T:Microsoft.Scripting.Ast.NewExpression"/> to set the <see cref="P:ListInitExpression.NewExpression"/> property equal to.</param>
  4323. <param name="initializers">An array that contains <see cref="M:ElementInit"/> objects to use to populate the <see cref="P:Microsoft.Scripting.Ast.ListInitExpression.Initializers"/> collection.</param>
  4324. <returns>
  4325. A <see cref="T:Microsoft.Scripting.Ast.ListInitExpression"/> that has the <see cref="P:Expressions.NodeType"/> property equal to ListInit
  4326. and the <see cref="P:ListInitExpression.NewExpression"/> and <see cref="P:ListInitExpression.Initializers"/> properties set to the specified values.
  4327. </returns>
  4328. <remarks>
  4329. The <see cref="P:Expressions.Type"/> property of <paramref name="newExpression"/> must represent a type that implements <see cref="T:System.Collections.IEnumerable"/>.
  4330. The <see cref="P:Expressions.Type"/> property of the resulting <see cref="T:Microsoft.Scripting.Ast.ListInitExpression"/> is equal to newExpression.Type.
  4331. </remarks>
  4332. </member>
  4333. <member name="M:Microsoft.Scripting.Ast.Expression.ListInit(Microsoft.Scripting.Ast.NewExpression,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.ElementInit})">
  4334. <summary>
  4335. Creates a <see cref="T:Microsoft.Scripting.Ast.ListInitExpression"/> that uses specified <see cref="M:ElementInit"/> objects to initialize a collection.
  4336. </summary>
  4337. <param name="newExpression">A <see cref="T:Microsoft.Scripting.Ast.NewExpression"/> to set the <see cref="P:ListInitExpression.NewExpression"/> property equal to.</param>
  4338. <param name="initializers">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains <see cref="M:ElementInit"/> objects to use to populate the <see cref="P:Microsoft.Scripting.Ast.ListInitExpression.Initializers"/> collection.</param>
  4339. <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains <see cref="M:ElementInit"/> objects to use to populate the <see cref="P:Microsoft.Scripting.Ast.ListInitExpression.Initializers"/> collection.</returns>
  4340. <remarks>
  4341. The <see cref="P:Expressions.Type"/> property of <paramref name="newExpression"/> must represent a type that implements <see cref="T:System.Collections.IEnumerable"/>.
  4342. The <see cref="P:Expressions.Type"/> property of the resulting <see cref="T:Microsoft.Scripting.Ast.ListInitExpression"/> is equal to newExpression.Type.
  4343. </remarks>
  4344. </member>
  4345. <member name="M:Microsoft.Scripting.Ast.Expression.RuntimeVariables(Microsoft.Scripting.Ast.ParameterExpression[])">
  4346. <summary>
  4347. Creates an instance of <see cref="T:System.Linq.Expressions.RuntimeVariablesExpression" />.
  4348. </summary>
  4349. <param name="variables">An array of <see cref="T:System.Linq.Expressions.ParameterExpression" /> objects to use to populate the <see cref="P:System.Linq.Expressions.RuntimeVariablesExpression.Variables" /> collection.</param>
  4350. <returns>An instance of <see cref="T:System.Linq.Expressions.RuntimeVariablesExpression" /> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType" /> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.RuntimeVariables" /> and the <see cref="P:System.Linq.Expressions.RuntimeVariablesExpression.Variables" /> property set to the specified value.</returns>
  4351. </member>
  4352. <member name="M:Microsoft.Scripting.Ast.Expression.RuntimeVariables(System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.ParameterExpression})">
  4353. <summary>
  4354. Creates an instance of <see cref="T:System.Linq.Expressions.RuntimeVariablesExpression" />.
  4355. </summary>
  4356. <param name="variables">A collection of <see cref="T:System.Linq.Expressions.ParameterExpression" /> objects to use to populate the <see cref="P:System.Linq.Expressions.RuntimeVariablesExpression.Variables" /> collection.</param>
  4357. <returns>An instance of <see cref="T:System.Linq.Expressions.RuntimeVariablesExpression" /> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType" /> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.RuntimeVariables" /> and the <see cref="P:System.Linq.Expressions.RuntimeVariablesExpression.Variables" /> property set to the specified value.</returns>
  4358. </member>
  4359. <member name="M:Microsoft.Scripting.Ast.Expression.Loop(Microsoft.Scripting.Ast.Expression)">
  4360. <summary>
  4361. Creates a <see cref="T:Microsoft.Scripting.Ast.LoopExpression"/> with the given body.
  4362. </summary>
  4363. <param name="body">The body of the loop.</param>
  4364. <returns>The created <see cref="T:Microsoft.Scripting.Ast.LoopExpression"/>.</returns>
  4365. </member>
  4366. <member name="M:Microsoft.Scripting.Ast.Expression.Loop(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.LabelTarget)">
  4367. <summary>
  4368. Creates a <see cref="T:Microsoft.Scripting.Ast.LoopExpression"/> with the given body and break target.
  4369. </summary>
  4370. <param name="body">The body of the loop.</param>
  4371. <param name="break">The break target used by the loop body.</param>
  4372. <returns>The created <see cref="T:Microsoft.Scripting.Ast.LoopExpression"/>.</returns>
  4373. </member>
  4374. <member name="M:Microsoft.Scripting.Ast.Expression.Loop(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.LabelTarget,Microsoft.Scripting.Ast.LabelTarget)">
  4375. <summary>
  4376. Creates a <see cref="T:Microsoft.Scripting.Ast.LoopExpression"/> with the given body.
  4377. </summary>
  4378. <param name="body">The body of the loop.</param>
  4379. <param name="break">The break target used by the loop body.</param>
  4380. <param name="continue">The continue target used by the loop body.</param>
  4381. <returns>The created <see cref="T:Microsoft.Scripting.Ast.LoopExpression"/>.</returns>
  4382. </member>
  4383. <member name="M:Microsoft.Scripting.Ast.Expression.Bind(System.Reflection.MemberInfo,Microsoft.Scripting.Ast.Expression)">
  4384. <summary>
  4385. Creates a <see cref="T:Microsoft.Scripting.Ast.MemberAssignment"/> binding the specified value to the given member.
  4386. </summary>
  4387. <param name="member">The <see cref="T:System.Reflection.MemberInfo"/> for the member which is being assigned to.</param>
  4388. <param name="expression">The value to be assigned to <paramref name="member"/>.</param>
  4389. <returns>The created <see cref="T:Microsoft.Scripting.Ast.MemberAssignment"/>.</returns>
  4390. </member>
  4391. <member name="M:Microsoft.Scripting.Ast.Expression.Bind(System.Reflection.MethodInfo,Microsoft.Scripting.Ast.Expression)">
  4392. <summary>
  4393. Creates a <see cref="T:Microsoft.Scripting.Ast.MemberAssignment"/> binding the specified value to the given property.
  4394. </summary>
  4395. <param name="propertyAccessor">The <see cref="T:System.Reflection.PropertyInfo"/> for the property which is being assigned to.</param>
  4396. <param name="expression">The value to be assigned to <paramref name="propertyAccessor"/>.</param>
  4397. <returns>The created <see cref="T:Microsoft.Scripting.Ast.MemberAssignment"/>.</returns>
  4398. </member>
  4399. <member name="M:Microsoft.Scripting.Ast.Expression.Field(Microsoft.Scripting.Ast.Expression,System.Reflection.FieldInfo)">
  4400. <summary>
  4401. Creates a <see cref="T:Microsoft.Scripting.Ast.MemberExpression"/> accessing a field.
  4402. </summary>
  4403. <param name="expression">The containing object of the field. This can be null for static fields.</param>
  4404. <param name="field">The field to be accessed.</param>
  4405. <returns>The created <see cref="T:Microsoft.Scripting.Ast.MemberExpression"/>.</returns>
  4406. </member>
  4407. <member name="M:Microsoft.Scripting.Ast.Expression.Field(Microsoft.Scripting.Ast.Expression,System.String)">
  4408. <summary>
  4409. Creates a <see cref="T:Microsoft.Scripting.Ast.MemberExpression"/> accessing a field.
  4410. </summary>
  4411. <param name="expression">The containing object of the field. This can be null for static fields.</param>
  4412. <param name="fieldName">The field to be accessed.</param>
  4413. <returns>The created <see cref="T:Microsoft.Scripting.Ast.MemberExpression"/>.</returns>
  4414. </member>
  4415. <member name="M:Microsoft.Scripting.Ast.Expression.Field(Microsoft.Scripting.Ast.Expression,System.Type,System.String)">
  4416. <summary>
  4417. Creates a <see cref="T:Microsoft.Scripting.Ast.MemberExpression"/> accessing a field.
  4418. </summary>
  4419. <param name="expression">The containing object of the field. This can be null for static fields.</param>
  4420. <param name="type">The <see cref="P:Microsoft.Scripting.Ast.Expression.Type"/> containing the field.</param>
  4421. <param name="fieldName">The field to be accessed.</param>
  4422. <returns>The created <see cref="T:Microsoft.Scripting.Ast.MemberExpression"/>.</returns>
  4423. </member>
  4424. <member name="M:Microsoft.Scripting.Ast.Expression.Property(Microsoft.Scripting.Ast.Expression,System.String)">
  4425. <summary>
  4426. Creates a <see cref="T:Microsoft.Scripting.Ast.MemberExpression"/> accessing a property.
  4427. </summary>
  4428. <param name="expression">The containing object of the property. This can be null for static properties.</param>
  4429. <param name="propertyName">The property to be accessed.</param>
  4430. <returns>The created <see cref="T:Microsoft.Scripting.Ast.MemberExpression"/>.</returns>
  4431. </member>
  4432. <member name="M:Microsoft.Scripting.Ast.Expression.Property(Microsoft.Scripting.Ast.Expression,System.Type,System.String)">
  4433. <summary>
  4434. Creates a <see cref="T:Microsoft.Scripting.Ast.MemberExpression"/> accessing a property.
  4435. </summary>
  4436. <param name="expression">The containing object of the property. This can be null for static properties.</param>
  4437. <param name="type">The <see cref="P:Microsoft.Scripting.Ast.Expression.Type"/> containing the property.</param>
  4438. <param name="propertyName">The property to be accessed.</param>
  4439. <returns>The created <see cref="T:Microsoft.Scripting.Ast.MemberExpression"/>.</returns>
  4440. </member>
  4441. <member name="M:Microsoft.Scripting.Ast.Expression.Property(Microsoft.Scripting.Ast.Expression,System.Reflection.PropertyInfo)">
  4442. <summary>
  4443. Creates a <see cref="T:Microsoft.Scripting.Ast.MemberExpression"/> accessing a property.
  4444. </summary>
  4445. <param name="expression">The containing object of the property. This can be null for static properties.</param>
  4446. <param name="property">The property to be accessed.</param>
  4447. <returns>The created <see cref="T:Microsoft.Scripting.Ast.MemberExpression"/>.</returns>
  4448. </member>
  4449. <member name="M:Microsoft.Scripting.Ast.Expression.Property(Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  4450. <summary>
  4451. Creates a <see cref="T:Microsoft.Scripting.Ast.MemberExpression"/> accessing a property.
  4452. </summary>
  4453. <param name="expression">The containing object of the property. This can be null for static properties.</param>
  4454. <param name="propertyAccessor">An accessor method of the property to be accessed.</param>
  4455. <returns>The created <see cref="T:Microsoft.Scripting.Ast.MemberExpression"/>.</returns>
  4456. </member>
  4457. <member name="M:Microsoft.Scripting.Ast.Expression.PropertyOrField(Microsoft.Scripting.Ast.Expression,System.String)">
  4458. <summary>
  4459. Creates a <see cref="T:Microsoft.Scripting.Ast.MemberExpression"/> accessing a property or field.
  4460. </summary>
  4461. <param name="expression">The containing object of the member. This can be null for static members.</param>
  4462. <param name="propertyOrFieldName">The member to be accessed.</param>
  4463. <returns>The created <see cref="T:Microsoft.Scripting.Ast.MemberExpression"/>.</returns>
  4464. </member>
  4465. <member name="M:Microsoft.Scripting.Ast.Expression.MakeMemberAccess(Microsoft.Scripting.Ast.Expression,System.Reflection.MemberInfo)">
  4466. <summary>
  4467. Creates a <see cref="T:Microsoft.Scripting.Ast.MemberExpression"/> accessing a property or field.
  4468. </summary>
  4469. <param name="expression">The containing object of the member. This can be null for static members.</param>
  4470. <param name="member">The member to be accessed.</param>
  4471. <returns>The created <see cref="T:Microsoft.Scripting.Ast.MemberExpression"/>.</returns>
  4472. </member>
  4473. <member name="M:Microsoft.Scripting.Ast.Expression.MemberInit(Microsoft.Scripting.Ast.NewExpression,Microsoft.Scripting.Ast.MemberBinding[])">
  4474. <summary>Creates a <see cref="T:System.Linq.Expressions.MemberInitExpression" />.</summary>
  4475. <returns>A <see cref="T:System.Linq.Expressions.MemberInitExpression" /> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType" /> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.MemberInit" /> and the <see cref="P:System.Linq.Expressions.MemberInitExpression.NewExpression" /> and <see cref="P:System.Linq.Expressions.MemberInitExpression.Bindings" /> properties set to the specified values.</returns>
  4476. <param name="newExpression">A <see cref="T:System.Linq.Expressions.NewExpression" /> to set the <see cref="P:System.Linq.Expressions.MemberInitExpression.NewExpression" /> property equal to.</param>
  4477. <param name="bindings">An array of <see cref="T:System.Linq.Expressions.MemberBinding" /> objects to use to populate the <see cref="P:System.Linq.Expressions.MemberInitExpression.Bindings" /> collection.</param>
  4478. <exception cref="T:System.ArgumentNullException">
  4479. <paramref name="newExpression" /> or <paramref name="bindings" /> is null.</exception>
  4480. <exception cref="T:System.ArgumentException">The <see cref="P:System.Linq.Expressions.MemberBinding.Member" /> property of an element of <paramref name="bindings" /> does not represent a member of the type that <paramref name="newExpression" />.Type represents.</exception>
  4481. </member>
  4482. <member name="M:Microsoft.Scripting.Ast.Expression.MemberInit(Microsoft.Scripting.Ast.NewExpression,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.MemberBinding})">
  4483. <summary>Creates a <see cref="T:System.Linq.Expressions.MemberInitExpression" />.</summary>
  4484. <returns>A <see cref="T:System.Linq.Expressions.MemberInitExpression" /> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType" /> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.MemberInit" /> and the <see cref="P:System.Linq.Expressions.MemberInitExpression.NewExpression" /> and <see cref="P:System.Linq.Expressions.MemberInitExpression.Bindings" /> properties set to the specified values.</returns>
  4485. <param name="newExpression">A <see cref="T:System.Linq.Expressions.NewExpression" /> to set the <see cref="P:System.Linq.Expressions.MemberInitExpression.NewExpression" /> property equal to.</param>
  4486. <param name="bindings">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> that contains <see cref="T:System.Linq.Expressions.MemberBinding" /> objects to use to populate the <see cref="P:System.Linq.Expressions.MemberInitExpression.Bindings" /> collection.</param>
  4487. <exception cref="T:System.ArgumentNullException">
  4488. <paramref name="newExpression" /> or <paramref name="bindings" /> is null.</exception>
  4489. <exception cref="T:System.ArgumentException">The <see cref="P:System.Linq.Expressions.MemberBinding.Member" /> property of an element of <paramref name="bindings" /> does not represent a member of the type that <paramref name="newExpression" />.Type represents.</exception>
  4490. </member>
  4491. <member name="M:Microsoft.Scripting.Ast.Expression.ListBind(System.Reflection.MemberInfo,Microsoft.Scripting.Ast.ElementInit[])">
  4492. <summary>Creates a <see cref="T:System.Linq.Expressions.MemberListBinding" /> where the member is a field or property.</summary>
  4493. <returns>A <see cref="T:System.Linq.Expressions.MemberListBinding" /> that has the <see cref="P:System.Linq.Expressions.MemberBinding.BindingType" /> property equal to <see cref="F:System.Linq.Expressions.MemberBindingType.ListBinding" /> and the <see cref="P:System.Linq.Expressions.MemberBinding.Member" /> and <see cref="P:System.Linq.Expressions.MemberListBinding.Initializers" /> properties set to the specified values.</returns>
  4494. <param name="member">A <see cref="T:System.Reflection.MemberInfo" /> that represents a field or property to set the <see cref="P:System.Linq.Expressions.MemberBinding.Member" /> property equal to.</param>
  4495. <param name="initializers">An array of <see cref="T:System.Linq.Expressions.ElementInit" /> objects to use to populate the <see cref="P:System.Linq.Expressions.MemberListBinding.Initializers" /> collection.</param>
  4496. <exception cref="T:System.ArgumentNullException">
  4497. <paramref name="member" /> is null. -or-One or more elements of <paramref name="initializers" /> is null.</exception>
  4498. <exception cref="T:System.ArgumentException">
  4499. <paramref name="member" /> does not represent a field or property.-or-The <see cref="P:System.Reflection.FieldInfo.FieldType" /> or <see cref="P:System.Reflection.PropertyInfo.PropertyType" /> of the field or property that <paramref name="member" /> represents does not implement <see cref="T:System.Collections.IEnumerable" />.</exception>
  4500. </member>
  4501. <member name="M:Microsoft.Scripting.Ast.Expression.ListBind(System.Reflection.MemberInfo,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.ElementInit})">
  4502. <summary>Creates a <see cref="T:System.Linq.Expressions.MemberListBinding" /> where the member is a field or property.</summary>
  4503. <returns>A <see cref="T:System.Linq.Expressions.MemberListBinding" /> that has the <see cref="P:System.Linq.Expressions.MemberBinding.BindingType" /> property equal to <see cref="F:System.Linq.Expressions.MemberBindingType.ListBinding" /> and the <see cref="P:System.Linq.Expressions.MemberBinding.Member" /> and <see cref="P:System.Linq.Expressions.MemberListBinding.Initializers" /> properties set to the specified values.</returns>
  4504. <param name="member">A <see cref="T:System.Reflection.MemberInfo" /> that represents a field or property to set the <see cref="P:System.Linq.Expressions.MemberBinding.Member" /> property equal to.</param>
  4505. <param name="initializers">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> that contains <see cref="T:System.Linq.Expressions.ElementInit" /> objects to use to populate the <see cref="P:System.Linq.Expressions.MemberListBinding.Initializers" /> collection.</param>
  4506. <exception cref="T:System.ArgumentNullException">
  4507. <paramref name="member" /> is null. -or-One or more elements of <paramref name="initializers" /> is null.</exception>
  4508. <exception cref="T:System.ArgumentException">
  4509. <paramref name="member" /> does not represent a field or property.-or-The <see cref="P:System.Reflection.FieldInfo.FieldType" /> or <see cref="P:System.Reflection.PropertyInfo.PropertyType" /> of the field or property that <paramref name="member" /> represents does not implement <see cref="T:System.Collections.IEnumerable" />.</exception>
  4510. </member>
  4511. <member name="M:Microsoft.Scripting.Ast.Expression.ListBind(System.Reflection.MethodInfo,Microsoft.Scripting.Ast.ElementInit[])">
  4512. <summary>Creates a <see cref="T:System.Linq.Expressions.MemberListBinding" /> object based on a specified property accessor method.</summary>
  4513. <returns>A <see cref="T:System.Linq.Expressions.MemberListBinding" /> that has the <see cref="P:System.Linq.Expressions.MemberBinding.BindingType" /> property equal to <see cref="F:System.Linq.Expressions.MemberBindingType.ListBinding" />, the <see cref="P:System.Linq.Expressions.MemberBinding.Member" /> property set to the <see cref="T:System.Reflection.MemberInfo" /> that represents the property accessed in <paramref name="propertyAccessor" />, and <see cref="P:System.Linq.Expressions.MemberListBinding.Initializers" /> populated with the elements of <paramref name="initializers" />.</returns>
  4514. <param name="propertyAccessor">A <see cref="T:System.Reflection.MethodInfo" /> that represents a property accessor method.</param>
  4515. <param name="initializers">An array of <see cref="T:System.Linq.Expressions.ElementInit" /> objects to use to populate the <see cref="P:System.Linq.Expressions.MemberListBinding.Initializers" /> collection.</param>
  4516. <exception cref="T:System.ArgumentNullException">
  4517. <paramref name="propertyAccessor" /> is null. -or-One or more elements of <paramref name="initializers" /> is null.</exception>
  4518. <exception cref="T:System.ArgumentException">
  4519. <paramref name="propertyAccessor" /> does not represent a property accessor method.-or-The <see cref="P:System.Reflection.PropertyInfo.PropertyType" /> of the property that the method represented by <paramref name="propertyAccessor" /> accesses does not implement <see cref="T:System.Collections.IEnumerable" />.</exception>
  4520. </member>
  4521. <member name="M:Microsoft.Scripting.Ast.Expression.ListBind(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.ElementInit})">
  4522. <summary>Creates a <see cref="T:System.Linq.Expressions.MemberListBinding" /> based on a specified property accessor method.</summary>
  4523. <returns>A <see cref="T:System.Linq.Expressions.MemberListBinding" /> that has the <see cref="P:System.Linq.Expressions.MemberBinding.BindingType" /> property equal to <see cref="F:System.Linq.Expressions.MemberBindingType.ListBinding" />, the <see cref="P:System.Linq.Expressions.MemberBinding.Member" /> property set to the <see cref="T:System.Reflection.MemberInfo" /> that represents the property accessed in <paramref name="propertyAccessor" />, and <see cref="P:System.Linq.Expressions.MemberListBinding.Initializers" /> populated with the elements of <paramref name="initializers" />.</returns>
  4524. <param name="propertyAccessor">A <see cref="T:System.Reflection.MethodInfo" /> that represents a property accessor method.</param>
  4525. <param name="initializers">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> that contains <see cref="T:System.Linq.Expressions.ElementInit" /> objects to use to populate the <see cref="P:System.Linq.Expressions.MemberListBinding.Initializers" /> collection.</param>
  4526. <exception cref="T:System.ArgumentNullException">
  4527. <paramref name="propertyAccessor" /> is null. -or-One or more elements of <paramref name="initializers" /> are null.</exception>
  4528. <exception cref="T:System.ArgumentException">
  4529. <paramref name="propertyAccessor" /> does not represent a property accessor method.-or-The <see cref="P:System.Reflection.PropertyInfo.PropertyType" /> of the property that the method represented by <paramref name="propertyAccessor" /> accesses does not implement <see cref="T:System.Collections.IEnumerable" />.</exception>
  4530. </member>
  4531. <member name="M:Microsoft.Scripting.Ast.Expression.MemberBind(System.Reflection.MemberInfo,Microsoft.Scripting.Ast.MemberBinding[])">
  4532. <summary>
  4533. Creates a <see cref="T:Microsoft.Scripting.Ast.MemberMemberBinding"/> that represents the recursive initialization of members of a field or property.
  4534. </summary>
  4535. <param name="member">The <see cref="T:System.Reflection.MemberInfo"/> to set the <see cref="P:MemberBinding.Member"/> property equal to.</param>
  4536. <param name="bindings">An array of <see cref="T:Microsoft.Scripting.Ast.MemberBinding"/> objects to use to populate the <see cref="P:MemberMemberBindings.Bindings"/> collection.</param>
  4537. <returns>A <see cref="T:Microsoft.Scripting.Ast.MemberMemberBinding"/> that has the <see cref="P:MemberBinding.BindingType"/> property equal to <see cref="T:Microsoft.Scripting.Ast.MemberBinding"/> and the <see cref="P:MemberBinding.Member"/> and <see cref="P:MemberMemberBindings.Bindings"/> properties set to the specified values.</returns>
  4538. </member>
  4539. <member name="M:Microsoft.Scripting.Ast.Expression.MemberBind(System.Reflection.MemberInfo,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.MemberBinding})">
  4540. <summary>
  4541. Creates a <see cref="T:Microsoft.Scripting.Ast.MemberMemberBinding"/> that represents the recursive initialization of members of a field or property.
  4542. </summary>
  4543. <param name="member">The <see cref="T:System.Reflection.MemberInfo"/> to set the <see cref="P:MemberBinding.Member"/> property equal to.</param>
  4544. <param name="bindings">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains <see cref="T:Microsoft.Scripting.Ast.MemberBinding"/> objects to use to populate the <see cref="P:MemberMemberBindings.Bindings"/> collection.</param>
  4545. <returns>A <see cref="T:Microsoft.Scripting.Ast.MemberMemberBinding"/> that has the <see cref="P:MemberBinding.BindingType"/> property equal to <see cref="T:Microsoft.Scripting.Ast.MemberBinding"/> and the <see cref="P:MemberBinding.Member"/> and <see cref="P:MemberMemberBindings.Bindings"/> properties set to the specified values.</returns>
  4546. </member>
  4547. <member name="M:Microsoft.Scripting.Ast.Expression.MemberBind(System.Reflection.MethodInfo,Microsoft.Scripting.Ast.MemberBinding[])">
  4548. <summary>
  4549. Creates a <see cref="T:Microsoft.Scripting.Ast.MemberMemberBinding"/> that represents the recursive initialization of members of a member that is accessed by using a property accessor method.
  4550. </summary>
  4551. <param name="propertyAccessor">The <see cref="T:System.Reflection.MemberInfo"/> that represents a property accessor method.</param>
  4552. <param name="bindings">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains <see cref="T:Microsoft.Scripting.Ast.MemberBinding"/> objects to use to populate the <see cref="P:MemberMemberBindings.Bindings"/> collection.</param>
  4553. <returns>
  4554. A <see cref="T:Microsoft.Scripting.Ast.MemberMemberBinding"/> that has the <see cref="P:MemberBinding.BindingType"/> property equal to <see cref="T:Microsoft.Scripting.Ast.MemberBinding"/>,
  4555. the Member property set to the <see cref="T:System.Reflection.PropertyInfo"/> that represents the property accessed in <paramref name="propertyAccessor"/>,
  4556. and <see cref="P:MemberMemberBindings.Bindings"/> properties set to the specified values.
  4557. </returns>
  4558. </member>
  4559. <member name="M:Microsoft.Scripting.Ast.Expression.MemberBind(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.MemberBinding})">
  4560. <summary>
  4561. Creates a <see cref="T:Microsoft.Scripting.Ast.MemberMemberBinding"/> that represents the recursive initialization of members of a member that is accessed by using a property accessor method.
  4562. </summary>
  4563. <param name="propertyAccessor">The <see cref="T:System.Reflection.MemberInfo"/> that represents a property accessor method.</param>
  4564. <param name="bindings">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains <see cref="T:Microsoft.Scripting.Ast.MemberBinding"/> objects to use to populate the <see cref="P:MemberMemberBindings.Bindings"/> collection.</param>
  4565. <returns>
  4566. A <see cref="T:Microsoft.Scripting.Ast.MemberMemberBinding"/> that has the <see cref="P:MemberBinding.BindingType"/> property equal to <see cref="T:Microsoft.Scripting.Ast.MemberBinding"/>,
  4567. the Member property set to the <see cref="T:System.Reflection.PropertyInfo"/> that represents the property accessed in <paramref name="propertyAccessor"/>,
  4568. and <see cref="P:MemberMemberBindings.Bindings"/> properties set to the specified values.
  4569. </returns>
  4570. </member>
  4571. <member name="M:Microsoft.Scripting.Ast.Expression.Call(System.Reflection.MethodInfo,Microsoft.Scripting.Ast.Expression)">
  4572. <summary>Creates a <see cref="T:System.Linq.Expressions.MethodCallExpression"/> that represents a call to a static method that takes one argument.</summary>
  4573. <returns>A <see cref="T:System.Linq.Expressions.MethodCallExpression"/> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType"/> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.Call"/> and the <see cref="P:System.Linq.Expressions.MethodCallExpression.Object"/> and <see cref="P:System.Linq.Expressions.MethodCallExpression.Method"/> properties set to the specified values.</returns>
  4574. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:System.Linq.Expressions.MethodCallExpression.Method"/> property equal to.</param>
  4575. <param name="arg0">The <see cref="T:Microsoft.Scripting.Ast.Expression"/> that represents the first argument.</param>
  4576. <exception cref="T:System.ArgumentNullException">
  4577. <paramref name="method"/> is null.</exception>
  4578. </member>
  4579. <member name="M:Microsoft.Scripting.Ast.Expression.Call(System.Reflection.MethodInfo,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  4580. <summary>Creates a <see cref="T:System.Linq.Expressions.MethodCallExpression"/> that represents a call to a static method that takes two arguments.</summary>
  4581. <returns>A <see cref="T:System.Linq.Expressions.MethodCallExpression"/> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType"/> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.Call"/> and the <see cref="P:System.Linq.Expressions.MethodCallExpression.Object"/> and <see cref="P:System.Linq.Expressions.MethodCallExpression.Method"/> properties set to the specified values.</returns>
  4582. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:System.Linq.Expressions.MethodCallExpression.Method"/> property equal to.</param>
  4583. <param name="arg0">The <see cref="T:Microsoft.Scripting.Ast.Expression"/> that represents the first argument.</param>
  4584. <param name="arg1">The <see cref="T:Microsoft.Scripting.Ast.Expression"/> that represents the second argument.</param>
  4585. <exception cref="T:System.ArgumentNullException">
  4586. <paramref name="method"/> is null.</exception>
  4587. </member>
  4588. <member name="M:Microsoft.Scripting.Ast.Expression.Call(System.Reflection.MethodInfo,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  4589. <summary>Creates a <see cref="T:System.Linq.Expressions.MethodCallExpression"/> that represents a call to a static method that takes three arguments.</summary>
  4590. <returns>A <see cref="T:System.Linq.Expressions.MethodCallExpression"/> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType"/> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.Call"/> and the <see cref="P:System.Linq.Expressions.MethodCallExpression.Object"/> and <see cref="P:System.Linq.Expressions.MethodCallExpression.Method"/> properties set to the specified values.</returns>
  4591. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:System.Linq.Expressions.MethodCallExpression.Method"/> property equal to.</param>
  4592. <param name="arg0">The <see cref="T:Microsoft.Scripting.Ast.Expression"/> that represents the first argument.</param>
  4593. <param name="arg1">The <see cref="T:Microsoft.Scripting.Ast.Expression"/> that represents the second argument.</param>
  4594. <param name="arg2">The <see cref="T:Microsoft.Scripting.Ast.Expression"/> that represents the third argument.</param>
  4595. <exception cref="T:System.ArgumentNullException">
  4596. <paramref name="method"/> is null.</exception>
  4597. </member>
  4598. <member name="M:Microsoft.Scripting.Ast.Expression.Call(System.Reflection.MethodInfo,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  4599. <summary>Creates a <see cref="T:System.Linq.Expressions.MethodCallExpression"/> that represents a call to a static method that takes four arguments.</summary>
  4600. <returns>A <see cref="T:System.Linq.Expressions.MethodCallExpression"/> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType"/> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.Call"/> and the <see cref="P:System.Linq.Expressions.MethodCallExpression.Object"/> and <see cref="P:System.Linq.Expressions.MethodCallExpression.Method"/> properties set to the specified values.</returns>
  4601. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:System.Linq.Expressions.MethodCallExpression.Method"/> property equal to.</param>
  4602. <param name="arg0">The <see cref="T:Microsoft.Scripting.Ast.Expression"/> that represents the first argument.</param>
  4603. <param name="arg1">The <see cref="T:Microsoft.Scripting.Ast.Expression"/> that represents the second argument.</param>
  4604. <param name="arg2">The <see cref="T:Microsoft.Scripting.Ast.Expression"/> that represents the third argument.</param>
  4605. <param name="arg3">The <see cref="T:Microsoft.Scripting.Ast.Expression"/> that represents the fourth argument.</param>
  4606. <exception cref="T:System.ArgumentNullException">
  4607. <paramref name="method"/> is null.</exception>
  4608. </member>
  4609. <member name="M:Microsoft.Scripting.Ast.Expression.Call(System.Reflection.MethodInfo,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  4610. <summary>Creates a <see cref="T:System.Linq.Expressions.MethodCallExpression"/> that represents a call to a static method that takes five arguments.</summary>
  4611. <returns>A <see cref="T:System.Linq.Expressions.MethodCallExpression"/> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType"/> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.Call"/> and the <see cref="P:System.Linq.Expressions.MethodCallExpression.Object"/> and <see cref="P:System.Linq.Expressions.MethodCallExpression.Method"/> properties set to the specified values.</returns>
  4612. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> to set the <see cref="P:System.Linq.Expressions.MethodCallExpression.Method"/> property equal to.</param>
  4613. <param name="arg0">The <see cref="T:Microsoft.Scripting.Ast.Expression"/> that represents the first argument.</param>
  4614. <param name="arg1">The <see cref="T:Microsoft.Scripting.Ast.Expression"/> that represents the second argument.</param>
  4615. <param name="arg2">The <see cref="T:Microsoft.Scripting.Ast.Expression"/> that represents the third argument.</param>
  4616. <param name="arg3">The <see cref="T:Microsoft.Scripting.Ast.Expression"/> that represents the fourth argument.</param>
  4617. <param name="arg4">The <see cref="T:Microsoft.Scripting.Ast.Expression"/> that represents the fifth argument.</param>
  4618. <exception cref="T:System.ArgumentNullException">
  4619. <paramref name="method"/> is null.</exception>
  4620. <returns>A <see cref="T:System.Linq.Expressions.MethodCallExpression"/> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType"/> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.Call"/> and the <see cref="P:System.Linq.Expressions.MethodCallExpression.Object"/> and <see cref="P:System.Linq.Expressions.MethodCallExpression.Method"/> properties set to the specified values.</returns>
  4621. </member>
  4622. <member name="M:Microsoft.Scripting.Ast.Expression.Call(System.Reflection.MethodInfo,Microsoft.Scripting.Ast.Expression[])">
  4623. <summary>
  4624. Creates a <see cref="T:Microsoft.Scripting.Ast.MethodCallExpression"/> that represents a call to a static (Shared in Visual Basic) method.
  4625. </summary>
  4626. <param name="method">The <see cref="T:System.Reflection.MethodInfo"/> that represents the target method.</param>
  4627. <param name="arguments">The array of one or more of <see cref="T:Microsoft.Scripting.Ast.Expression"/> that represents the call arguments.</param>
  4628. <returns>A <see cref="T:System.Linq.Expressions.MethodCallExpression"/> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType"/> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.Call"/> and the <see cref="P:System.Linq.Expressions.MethodCallExpression.Object"/> and <see cref="P:System.Linq.Expressions.MethodCallExpression.Method"/> properties set to the specified values.</returns>
  4629. </member>
  4630. <member name="M:Microsoft.Scripting.Ast.Expression.Call(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  4631. <summary>
  4632. Creates a <see cref="T:Microsoft.Scripting.Ast.MethodCallExpression"/> that represents a call to a static (Shared in Visual Basic) method.
  4633. </summary>
  4634. <param name="method">The <see cref="T:System.Reflection.MethodInfo"/> that represents the target method.</param>
  4635. <param name="arguments">A collection of <see cref="T:Microsoft.Scripting.Ast.Expression"/> that represents the call arguments.</param>
  4636. <returns>A <see cref="T:System.Linq.Expressions.MethodCallExpression"/> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType"/> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.Call"/> and the <see cref="P:System.Linq.Expressions.MethodCallExpression.Object"/> and <see cref="P:System.Linq.Expressions.MethodCallExpression.Method"/> properties set to the specified values.</returns>
  4637. </member>
  4638. <member name="M:Microsoft.Scripting.Ast.Expression.Call(Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  4639. <summary>
  4640. Creates a <see cref="T:Microsoft.Scripting.Ast.MethodCallExpression"/> that represents a call to a method that takes no arguments.
  4641. </summary>
  4642. <param name="instance">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> that specifies the instance for an instance call. (pass null for a static (Shared in Visual Basic) method).</param>
  4643. <param name="method">The <see cref="T:System.Reflection.MethodInfo"/> that represents the target method.</param>
  4644. <returns>A <see cref="T:System.Linq.Expressions.MethodCallExpression"/> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType"/> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.Call"/> and the <see cref="P:System.Linq.Expressions.MethodCallExpression.Object"/> and <see cref="P:System.Linq.Expressions.MethodCallExpression.Method"/> properties set to the specified values.</returns>
  4645. </member>
  4646. <member name="M:Microsoft.Scripting.Ast.Expression.Call(Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo,Microsoft.Scripting.Ast.Expression[])">
  4647. <summary>
  4648. Creates a <see cref="T:Microsoft.Scripting.Ast.MethodCallExpression"/> that represents a method call.
  4649. </summary>
  4650. <param name="instance">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> that specifies the instance for an instance call. (pass null for a static (Shared in Visual Basic) method).</param>
  4651. <param name="method">The <see cref="T:System.Reflection.MethodInfo"/> that represents the target method.</param>
  4652. <param name="arguments">An array of one or more of <see cref="T:Microsoft.Scripting.Ast.Expression"/> that represents the call arguments.</param>
  4653. <returns>A <see cref="T:System.Linq.Expressions.MethodCallExpression"/> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType"/> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.Call"/> and the <see cref="P:System.Linq.Expressions.MethodCallExpression.Object"/> and <see cref="P:System.Linq.Expressions.MethodCallExpression.Method"/> properties set to the specified values.</returns>
  4654. </member>
  4655. <member name="M:Microsoft.Scripting.Ast.Expression.Call(Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  4656. <summary>
  4657. Creates a <see cref="T:Microsoft.Scripting.Ast.MethodCallExpression"/> that represents a call to a method that takes two arguments.
  4658. </summary>
  4659. <param name="instance">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> that specifies the instance for an instance call. (pass null for a static (Shared in Visual Basic) method).</param>
  4660. <param name="method">The <see cref="T:System.Reflection.MethodInfo"/> that represents the target method.</param>
  4661. <param name="arg0">The <see cref="T:Microsoft.Scripting.Ast.Expression"/> that represents the first argument.</param>
  4662. <param name="arg1">The <see cref="T:Microsoft.Scripting.Ast.Expression"/> that represents the second argument.</param>
  4663. <returns>A <see cref="T:System.Linq.Expressions.MethodCallExpression"/> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType"/> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.Call"/> and the <see cref="P:System.Linq.Expressions.MethodCallExpression.Object"/> and <see cref="P:System.Linq.Expressions.MethodCallExpression.Method"/> properties set to the specified values.</returns>
  4664. </member>
  4665. <member name="M:Microsoft.Scripting.Ast.Expression.Call(Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  4666. <summary>
  4667. Creates a <see cref="T:Microsoft.Scripting.Ast.MethodCallExpression"/> that represents a call to a method that takes three arguments.
  4668. </summary>
  4669. <param name="instance">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> that specifies the instance for an instance call. (pass null for a static (Shared in Visual Basic) method).</param>
  4670. <param name="method">The <see cref="T:System.Reflection.MethodInfo"/> that represents the target method.</param>
  4671. <param name="arg0">The <see cref="T:Microsoft.Scripting.Ast.Expression"/> that represents the first argument.</param>
  4672. <param name="arg1">The <see cref="T:Microsoft.Scripting.Ast.Expression"/> that represents the second argument.</param>
  4673. <param name="arg2">The <see cref="T:Microsoft.Scripting.Ast.Expression"/> that represents the third argument.</param>
  4674. <returns>A <see cref="T:System.Linq.Expressions.MethodCallExpression"/> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType"/> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.Call"/> and the <see cref="P:System.Linq.Expressions.MethodCallExpression.Object"/> and <see cref="P:System.Linq.Expressions.MethodCallExpression.Method"/> properties set to the specified values.</returns>
  4675. </member>
  4676. <member name="M:Microsoft.Scripting.Ast.Expression.Call(Microsoft.Scripting.Ast.Expression,System.String,System.Type[],Microsoft.Scripting.Ast.Expression[])">
  4677. <summary>Creates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents a call to an instance method by calling the appropriate factory method.</summary>
  4678. <returns>A <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType" /> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.Call" />, the <see cref="P:System.Linq.Expressions.MethodCallExpression.Object" /> property equal to <paramref name="instance" />, <see cref="P:System.Linq.Expressions.MethodCallExpression.Method" /> set to the <see cref="T:System.Reflection.MethodInfo" /> that represents the specified instance method, and <see cref="P:System.Linq.Expressions.MethodCallExpression.Arguments" /> set to the specified arguments.</returns>
  4679. <param name="instance">An <see cref="T:System.Linq.Expressions.Expression" /> whose <see cref="P:System.Linq.Expressions.Expression.Type" /> property value will be searched for a specific method.</param>
  4680. <param name="methodName">The name of the method.</param>
  4681. <param name="typeArguments">
  4682. An array of <see cref="T:System.Type" /> objects that specify the type parameters of the generic method.
  4683. This argument should be null when <paramref name="methodName" /> specifies a non-generic method.
  4684. </param>
  4685. <param name="arguments">An array of <see cref="T:System.Linq.Expressions.Expression" /> objects that represents the arguments to the method.</param>
  4686. <exception cref="T:System.ArgumentNullException">
  4687. <paramref name="instance" /> or <paramref name="methodName" /> is null.</exception>
  4688. <exception cref="T:System.InvalidOperationException">No method whose name is <paramref name="methodName" />, whose type parameters match <paramref name="typeArguments" />, and whose parameter types match <paramref name="arguments" /> is found in <paramref name="instance" />.Type or its base types.-or-More than one method whose name is <paramref name="methodName" />, whose type parameters match <paramref name="typeArguments" />, and whose parameter types match <paramref name="arguments" /> is found in <paramref name="instance" />.Type or its base types.</exception>
  4689. </member>
  4690. <member name="M:Microsoft.Scripting.Ast.Expression.Call(System.Type,System.String,System.Type[],Microsoft.Scripting.Ast.Expression[])">
  4691. <summary>Creates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents a call to a static (Shared in Visual Basic) method by calling the appropriate factory method.</summary>
  4692. <returns>A <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType" /> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.Call" />, the <see cref="P:System.Linq.Expressions.MethodCallExpression.Method" /> property set to the <see cref="T:System.Reflection.MethodInfo" /> that represents the specified static (Shared in Visual Basic) method, and the <see cref="P:System.Linq.Expressions.MethodCallExpression.Arguments" /> property set to the specified arguments.</returns>
  4693. <param name="type">The <see cref="T:System.Type" /> that specifies the type that contains the specified static (Shared in Visual Basic) method.</param>
  4694. <param name="methodName">The name of the method.</param>
  4695. <param name="typeArguments">
  4696. An array of <see cref="T:System.Type" /> objects that specify the type parameters of the generic method.
  4697. This argument should be null when <paramref name="methodName" /> specifies a non-generic method.
  4698. </param>
  4699. <param name="arguments">An array of <see cref="T:System.Linq.Expressions.Expression" /> objects that represent the arguments to the method.</param>
  4700. <exception cref="T:System.ArgumentNullException">
  4701. <paramref name="type" /> or <paramref name="methodName" /> is null.</exception>
  4702. <exception cref="T:System.InvalidOperationException">No method whose name is <paramref name="methodName" />, whose type parameters match <paramref name="typeArguments" />, and whose parameter types match <paramref name="arguments" /> is found in <paramref name="type" /> or its base types.-or-More than one method whose name is <paramref name="methodName" />, whose type parameters match <paramref name="typeArguments" />, and whose parameter types match <paramref name="arguments" /> is found in <paramref name="type" /> or its base types.</exception>
  4703. </member>
  4704. <member name="M:Microsoft.Scripting.Ast.Expression.Call(Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  4705. <summary>Creates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents a method call.</summary>
  4706. <returns>A <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType" /> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.Call" /> and the <see cref="P:System.Linq.Expressions.MethodCallExpression.Object" />, <see cref="P:System.Linq.Expressions.MethodCallExpression.Method" />, and <see cref="P:System.Linq.Expressions.MethodCallExpression.Arguments" /> properties set to the specified values.</returns>
  4707. <param name="instance">An <see cref="T:System.Linq.Expressions.Expression" /> to set the <see cref="P:System.Linq.Expressions.MethodCallExpression.Object" /> property equal to (pass null for a static (Shared in Visual Basic) method).</param>
  4708. <param name="method">A <see cref="T:System.Reflection.MethodInfo" /> to set the <see cref="P:System.Linq.Expressions.MethodCallExpression.Method" /> property equal to.</param>
  4709. <param name="arguments">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> that contains <see cref="T:System.Linq.Expressions.Expression" /> objects to use to populate the <see cref="P:System.Linq.Expressions.MethodCallExpression.Arguments" /> collection.</param>
  4710. <exception cref="T:System.ArgumentNullException">
  4711. <paramref name="method" /> is null.-or-<paramref name="instance" /> is null and <paramref name="method" /> represents an instance method.</exception>
  4712. <exception cref="T:System.ArgumentException">
  4713. <paramref name="instance" />.Type is not assignable to the declaring type of the method represented by <paramref name="method" />.-or-The number of elements in <paramref name="arguments" /> does not equal the number of parameters for the method represented by <paramref name="method" />.-or-One or more of the elements of <paramref name="arguments" /> is not assignable to the corresponding parameter for the method represented by <paramref name="method" />.</exception>
  4714. </member>
  4715. <member name="M:Microsoft.Scripting.Ast.Expression.ArrayIndex(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression[])">
  4716. <summary>Creates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents applying an array index operator to a multi-dimensional array.</summary>
  4717. <returns>A <see cref="T:System.Linq.Expressions.BinaryExpression" /> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType" /> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.ArrayIndex" /> and the <see cref="P:System.Linq.Expressions.BinaryExpression.Left" /> and <see cref="P:System.Linq.Expressions.BinaryExpression.Right" /> properties set to the specified values.</returns>
  4718. <param name="array">An array of <see cref="T:System.Linq.Expressions.Expression" /> instances - indexes for the array index operation.</param>
  4719. <param name="indexes">An array that contains <see cref="T:System.Linq.Expressions.Expression" /> objects to use to populate the <see cref="P:System.Linq.Expressions.MethodCallExpression.Arguments" /> collection.</param>
  4720. </member>
  4721. <member name="M:Microsoft.Scripting.Ast.Expression.ArrayIndex(Microsoft.Scripting.Ast.Expression,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  4722. <summary>Creates a <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that represents applying an array index operator to an array of rank more than one.</summary>
  4723. <returns>A <see cref="T:System.Linq.Expressions.MethodCallExpression" /> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType" /> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.Call" /> and the <see cref="P:System.Linq.Expressions.MethodCallExpression.Object" /> and <see cref="P:System.Linq.Expressions.MethodCallExpression.Arguments" /> properties set to the specified values.</returns>
  4724. <param name="array">An <see cref="T:System.Linq.Expressions.Expression" /> to set the <see cref="P:System.Linq.Expressions.MethodCallExpression.Object" /> property equal to.</param>
  4725. <param name="indexes">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> that contains <see cref="T:System.Linq.Expressions.Expression" /> objects to use to populate the <see cref="P:System.Linq.Expressions.MethodCallExpression.Arguments" /> collection.</param>
  4726. <exception cref="T:System.ArgumentNullException">
  4727. <paramref name="array" /> or <paramref name="indexes" /> is null.</exception>
  4728. <exception cref="T:System.ArgumentException">
  4729. <paramref name="array" />.Type does not represent an array type.-or-The rank of <paramref name="array" />.Type does not match the number of elements in <paramref name="indexes" />.-or-The <see cref="P:System.Linq.Expressions.Expression.Type" /> property of one or more elements of <paramref name="indexes" /> does not represent the <see cref="T:System.Int32" /> type.</exception>
  4730. </member>
  4731. <member name="M:Microsoft.Scripting.Ast.Expression.NewArrayInit(System.Type,Microsoft.Scripting.Ast.Expression[])">
  4732. <summary>
  4733. Creates a new array expression of the specified type from the provided initializers.
  4734. </summary>
  4735. <param name="type">A Type that represents the element type of the array.</param>
  4736. <param name="initializers">The expressions used to create the array elements.</param>
  4737. <returns>An instance of the <see cref="T:Microsoft.Scripting.Ast.NewArrayExpression"/>.</returns>
  4738. </member>
  4739. <member name="M:Microsoft.Scripting.Ast.Expression.NewArrayInit(System.Type,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  4740. <summary>
  4741. Creates a new array expression of the specified type from the provided initializers.
  4742. </summary>
  4743. <param name="type">A Type that represents the element type of the array.</param>
  4744. <param name="initializers">The expressions used to create the array elements.</param>
  4745. <returns>An instance of the <see cref="T:Microsoft.Scripting.Ast.NewArrayExpression"/>.</returns>
  4746. </member>
  4747. <member name="M:Microsoft.Scripting.Ast.Expression.NewArrayBounds(System.Type,Microsoft.Scripting.Ast.Expression[])">
  4748. <summary>
  4749. Creates a <see cref="T:Microsoft.Scripting.Ast.NewArrayExpression"/> that represents creating an array that has a specified rank.
  4750. </summary>
  4751. <param name="type">A <see cref="P:Microsoft.Scripting.Ast.Expression.Type"/> that represents the element type of the array.</param>
  4752. <param name="bounds">An array that contains Expression objects to use to populate the Expressions collection.</param>
  4753. <returns>A <see cref="T:Microsoft.Scripting.Ast.NewArrayExpression"/> that has the <see cref="P:NodeType"/> property equal to type and the <see cref="P:Expressions"/> property set to the specified value.</returns>
  4754. </member>
  4755. <member name="M:Microsoft.Scripting.Ast.Expression.NewArrayBounds(System.Type,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  4756. <summary>
  4757. Creates a <see cref="T:Microsoft.Scripting.Ast.NewArrayExpression"/> that represents creating an array that has a specified rank.
  4758. </summary>
  4759. <param name="type">A <see cref="P:Microsoft.Scripting.Ast.Expression.Type"/> that represents the element type of the array.</param>
  4760. <param name="bounds">An IEnumerable{T} that contains Expression objects to use to populate the Expressions collection.</param>
  4761. <returns>A <see cref="T:Microsoft.Scripting.Ast.NewArrayExpression"/> that has the <see cref="P:NodeType"/> property equal to type and the <see cref="P:Expressions"/> property set to the specified value.</returns>
  4762. </member>
  4763. <member name="M:Microsoft.Scripting.Ast.Expression.New(System.Reflection.ConstructorInfo)">
  4764. <summary>
  4765. Creates a new <see cref="T:Microsoft.Scripting.Ast.NewExpression"/> that represents calling the specified constructor that takes no arguments.
  4766. </summary>
  4767. <param name="constructor">The <see cref="T:System.Reflection.ConstructorInfo"/> to set the <see cref="P:Constructor"/> property equal to.</param>
  4768. <returns>A <see cref="T:Microsoft.Scripting.Ast.NewExpression"/> that has the <see cref="P:Microsoft.Scripting.Ast.Expression.NodeType"/> property equal to <see cref="P:New"/> and the <see cref="P:Constructor"/> property set to the specified value.</returns>
  4769. </member>
  4770. <member name="M:Microsoft.Scripting.Ast.Expression.New(System.Reflection.ConstructorInfo,Microsoft.Scripting.Ast.Expression[])">
  4771. <summary>
  4772. Creates a new <see cref="T:Microsoft.Scripting.Ast.NewExpression"/> that represents calling the specified constructor that takes no arguments.
  4773. </summary>
  4774. <param name="constructor">The <see cref="T:System.Reflection.ConstructorInfo"/> to set the <see cref="P:Constructor"/> property equal to.</param>
  4775. <param name="arguments">An array of <see cref="T:Microsoft.Scripting.Ast.Expression"/> objects to use to populate the Arguments collection.</param>
  4776. <returns>A <see cref="T:Microsoft.Scripting.Ast.NewExpression"/> that has the <see cref="P:Microsoft.Scripting.Ast.Expression.NodeType"/> property equal to <see cref="P:New"/> and the <see cref="P:Constructor"/> and <see cref="P:Arguments"/> properties set to the specified value.</returns>
  4777. </member>
  4778. <member name="M:Microsoft.Scripting.Ast.Expression.New(System.Reflection.ConstructorInfo,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  4779. <summary>
  4780. Creates a new <see cref="T:Microsoft.Scripting.Ast.NewExpression"/> that represents calling the specified constructor that takes no arguments.
  4781. </summary>
  4782. <param name="constructor">The <see cref="T:System.Reflection.ConstructorInfo"/> to set the <see cref="P:Constructor"/> property equal to.</param>
  4783. <param name="arguments">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Microsoft.Scripting.Ast.Expression"/> objects to use to populate the Arguments collection.</param>
  4784. <returns>A <see cref="T:Microsoft.Scripting.Ast.NewExpression"/> that has the <see cref="P:Microsoft.Scripting.Ast.Expression.NodeType"/> property equal to <see cref="P:New"/> and the <see cref="P:Constructor"/> and <see cref="P:Arguments"/> properties set to the specified value.</returns>
  4785. </member>
  4786. <member name="M:Microsoft.Scripting.Ast.Expression.New(System.Reflection.ConstructorInfo,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression},System.Collections.Generic.IEnumerable{System.Reflection.MemberInfo})">
  4787. <summary>
  4788. Creates a new <see cref="T:Microsoft.Scripting.Ast.NewExpression"/> that represents calling the specified constructor with the specified arguments. The members that access the constructor initialized fields are specified.
  4789. </summary>
  4790. <param name="constructor">The <see cref="T:System.Reflection.ConstructorInfo"/> to set the <see cref="P:Constructor"/> property equal to.</param>
  4791. <param name="arguments">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Microsoft.Scripting.Ast.Expression"/> objects to use to populate the Arguments collection.</param>
  4792. <param name="members">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:System.Reflection.MemberInfo"/> objects to use to populate the Members collection.</param>
  4793. <returns>A <see cref="T:Microsoft.Scripting.Ast.NewExpression"/> that has the <see cref="P:Microsoft.Scripting.Ast.Expression.NodeType"/> property equal to <see cref="P:New"/> and the <see cref="P:Constructor"/>, <see cref="P:Arguments"/> and <see cref="P:Members"/> properties set to the specified value.</returns>
  4794. </member>
  4795. <member name="M:Microsoft.Scripting.Ast.Expression.New(System.Reflection.ConstructorInfo,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression},System.Reflection.MemberInfo[])">
  4796. <summary>
  4797. Creates a new <see cref="T:Microsoft.Scripting.Ast.NewExpression"/> that represents calling the specified constructor with the specified arguments. The members that access the constructor initialized fields are specified.
  4798. </summary>
  4799. <param name="constructor">The <see cref="T:System.Reflection.ConstructorInfo"/> to set the <see cref="P:Constructor"/> property equal to.</param>
  4800. <param name="arguments">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Microsoft.Scripting.Ast.Expression"/> objects to use to populate the Arguments collection.</param>
  4801. <param name="members">An Array of <see cref="T:System.Reflection.MemberInfo"/> objects to use to populate the Members collection.</param>
  4802. <returns>A <see cref="T:Microsoft.Scripting.Ast.NewExpression"/> that has the <see cref="P:Microsoft.Scripting.Ast.Expression.NodeType"/> property equal to <see cref="P:New"/> and the <see cref="P:Constructor"/>, <see cref="P:Arguments"/> and <see cref="P:Members"/> properties set to the specified value.</returns>
  4803. </member>
  4804. <member name="M:Microsoft.Scripting.Ast.Expression.New(System.Type)">
  4805. <summary>
  4806. Creates a <see cref="T:Microsoft.Scripting.Ast.NewExpression"/> that represents calling the parameterless constructor of the specified type.
  4807. </summary>
  4808. <param name="type">A <see cref="P:Microsoft.Scripting.Ast.Expression.Type"/> that has a constructor that takes no arguments. </param>
  4809. <returns>A <see cref="T:Microsoft.Scripting.Ast.NewExpression"/> that has the <see cref="P:Microsoft.Scripting.Ast.Expression.NodeType"/> property equal to New and the Constructor property set to the ConstructorInfo that represents the parameterless constructor of the specified type.</returns>
  4810. </member>
  4811. <member name="M:Microsoft.Scripting.Ast.Expression.Parameter(System.Type)">
  4812. <summary>
  4813. Creates a <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> node that can be used to identify a parameter or a variable in an expression tree.
  4814. </summary>
  4815. <param name="type">The type of the parameter or variable.</param>
  4816. <returns>A <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> node with the specified name and type.</returns>
  4817. </member>
  4818. <member name="M:Microsoft.Scripting.Ast.Expression.Variable(System.Type)">
  4819. <summary>
  4820. Creates a <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> node that can be used to identify a parameter or a variable in an expression tree.
  4821. </summary>
  4822. <param name="type">The type of the parameter or variable.</param>
  4823. <returns>A <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> node with the specified name and type.</returns>
  4824. </member>
  4825. <member name="M:Microsoft.Scripting.Ast.Expression.Parameter(System.Type,System.String)">
  4826. <summary>
  4827. Creates a <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> node that can be used to identify a parameter or a variable in an expression tree.
  4828. </summary>
  4829. <param name="type">The type of the parameter or variable.</param>
  4830. <param name="name">The name of the parameter or variable, used for debugging or pretty printing purpose only.</param>
  4831. <returns>A <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> node with the specified name and type.</returns>
  4832. </member>
  4833. <member name="M:Microsoft.Scripting.Ast.Expression.Variable(System.Type,System.String)">
  4834. <summary>
  4835. Creates a <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> node that can be used to identify a parameter or a variable in an expression tree.
  4836. </summary>
  4837. <param name="type">The type of the parameter or variable.</param>
  4838. <param name="name">The name of the parameter or variable, used for debugging or pretty printing purpose only.</param>
  4839. <returns>A <see cref="T:Microsoft.Scripting.Ast.ParameterExpression"/> node with the specified name and type.</returns>
  4840. </member>
  4841. <member name="M:Microsoft.Scripting.Ast.Expression.SwitchCase(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression[])">
  4842. <summary>
  4843. Creates a <see cref="T:SwitchCase">SwitchCase</see> for use in a <see cref="T:Microsoft.Scripting.Ast.SwitchExpression"/>.
  4844. </summary>
  4845. <param name="body">The body of the case.</param>
  4846. <param name="testValues">The test values of the case.</param>
  4847. <returns>The created <see cref="T:SwitchCase">SwitchCase</see>.</returns>
  4848. </member>
  4849. <member name="M:Microsoft.Scripting.Ast.Expression.SwitchCase(Microsoft.Scripting.Ast.Expression,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  4850. <summary>
  4851. Creates a <see cref="T:SwitchCase">SwitchCase</see> for use in a <see cref="T:Microsoft.Scripting.Ast.SwitchExpression"/>.
  4852. </summary>
  4853. <param name="body">The body of the case.</param>
  4854. <param name="testValues">The test values of the case.</param>
  4855. <returns>The created <see cref="T:SwitchCase">SwitchCase</see>.</returns>
  4856. </member>
  4857. <member name="M:Microsoft.Scripting.Ast.Expression.Switch(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.SwitchCase[])">
  4858. <summary>
  4859. Creates a <see cref="T:Microsoft.Scripting.Ast.SwitchExpression"/>.
  4860. </summary>
  4861. <param name="switchValue">The value to be tested against each case.</param>
  4862. <param name="cases">The valid cases for this switch.</param>
  4863. <returns>The created <see cref="T:Microsoft.Scripting.Ast.SwitchExpression"/>.</returns>
  4864. </member>
  4865. <member name="M:Microsoft.Scripting.Ast.Expression.Switch(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.SwitchCase[])">
  4866. <summary>
  4867. Creates a <see cref="T:Microsoft.Scripting.Ast.SwitchExpression"/>.
  4868. </summary>
  4869. <param name="switchValue">The value to be tested against each case.</param>
  4870. <param name="defaultBody">The result of the switch if no cases are matched.</param>
  4871. <param name="cases">The valid cases for this switch.</param>
  4872. <returns>The created <see cref="T:Microsoft.Scripting.Ast.SwitchExpression"/>.</returns>
  4873. </member>
  4874. <member name="M:Microsoft.Scripting.Ast.Expression.Switch(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo,Microsoft.Scripting.Ast.SwitchCase[])">
  4875. <summary>
  4876. Creates a <see cref="T:Microsoft.Scripting.Ast.SwitchExpression"/>.
  4877. </summary>
  4878. <param name="switchValue">The value to be tested against each case.</param>
  4879. <param name="defaultBody">The result of the switch if no cases are matched.</param>
  4880. <param name="comparison">The equality comparison method to use.</param>
  4881. <param name="cases">The valid cases for this switch.</param>
  4882. <returns>The created <see cref="T:Microsoft.Scripting.Ast.SwitchExpression"/>.</returns>
  4883. </member>
  4884. <member name="M:Microsoft.Scripting.Ast.Expression.Switch(System.Type,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo,Microsoft.Scripting.Ast.SwitchCase[])">
  4885. <summary>
  4886. Creates a <see cref="T:Microsoft.Scripting.Ast.SwitchExpression"/>.
  4887. </summary>
  4888. <param name="type">The result type of the switch.</param>
  4889. <param name="switchValue">The value to be tested against each case.</param>
  4890. <param name="defaultBody">The result of the switch if no cases are matched.</param>
  4891. <param name="comparison">The equality comparison method to use.</param>
  4892. <param name="cases">The valid cases for this switch.</param>
  4893. <returns>The created <see cref="T:Microsoft.Scripting.Ast.SwitchExpression"/>.</returns>
  4894. </member>
  4895. <member name="M:Microsoft.Scripting.Ast.Expression.Switch(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.SwitchCase})">
  4896. <summary>
  4897. Creates a <see cref="T:Microsoft.Scripting.Ast.SwitchExpression"/>.
  4898. </summary>
  4899. <param name="switchValue">The value to be tested against each case.</param>
  4900. <param name="defaultBody">The result of the switch if no cases are matched.</param>
  4901. <param name="comparison">The equality comparison method to use.</param>
  4902. <param name="cases">The valid cases for this switch.</param>
  4903. <returns>The created <see cref="T:Microsoft.Scripting.Ast.SwitchExpression"/>.</returns>
  4904. </member>
  4905. <member name="M:Microsoft.Scripting.Ast.Expression.Switch(System.Type,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.SwitchCase})">
  4906. <summary>
  4907. Creates a <see cref="T:Microsoft.Scripting.Ast.SwitchExpression"/>.
  4908. </summary>
  4909. <param name="type">The result type of the switch.</param>
  4910. <param name="switchValue">The value to be tested against each case.</param>
  4911. <param name="defaultBody">The result of the switch if no cases are matched.</param>
  4912. <param name="comparison">The equality comparison method to use.</param>
  4913. <param name="cases">The valid cases for this switch.</param>
  4914. <returns>The created <see cref="T:Microsoft.Scripting.Ast.SwitchExpression"/>.</returns>
  4915. </member>
  4916. <member name="M:Microsoft.Scripting.Ast.Expression.ValidateSwitchCaseType(Microsoft.Scripting.Ast.Expression,System.Boolean,System.Type,System.String)">
  4917. <summary>
  4918. If custom type is provided, all branches must be reference assignable to the result type.
  4919. If no custom type is provided, all branches must have the same type - resultType.
  4920. </summary>
  4921. </member>
  4922. <member name="M:Microsoft.Scripting.Ast.Expression.TryFault(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  4923. <summary>
  4924. Creates a <see cref="T:Microsoft.Scripting.Ast.TryExpression"/> representing a try block with a fault block and no catch statements.
  4925. </summary>
  4926. <param name="body">The body of the try block.</param>
  4927. <param name="fault">The body of the fault block.</param>
  4928. <returns>The created <see cref="T:Microsoft.Scripting.Ast.TryExpression"/>.</returns>
  4929. </member>
  4930. <member name="M:Microsoft.Scripting.Ast.Expression.TryFinally(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  4931. <summary>
  4932. Creates a <see cref="T:Microsoft.Scripting.Ast.TryExpression"/> representing a try block with a finally block and no catch statements.
  4933. </summary>
  4934. <param name="body">The body of the try block.</param>
  4935. <param name="finally">The body of the finally block.</param>
  4936. <returns>The created <see cref="T:Microsoft.Scripting.Ast.TryExpression"/>.</returns>
  4937. </member>
  4938. <member name="M:Microsoft.Scripting.Ast.Expression.TryCatch(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.CatchBlock[])">
  4939. <summary>
  4940. Creates a <see cref="T:Microsoft.Scripting.Ast.TryExpression"/> representing a try block with any number of catch statements and neither a fault nor finally block.
  4941. </summary>
  4942. <param name="body">The body of the try block.</param>
  4943. <param name="handlers">The array of zero or more <see cref="T:Microsoft.Scripting.Ast.CatchBlock"/>s representing the catch statements to be associated with the try block.</param>
  4944. <returns>The created <see cref="T:Microsoft.Scripting.Ast.TryExpression"/>.</returns>
  4945. </member>
  4946. <member name="M:Microsoft.Scripting.Ast.Expression.TryCatchFinally(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.CatchBlock[])">
  4947. <summary>
  4948. Creates a <see cref="T:Microsoft.Scripting.Ast.TryExpression"/> representing a try block with any number of catch statements and a finally block.
  4949. </summary>
  4950. <param name="body">The body of the try block.</param>
  4951. <param name="finally">The body of the finally block.</param>
  4952. <param name="handlers">The array of zero or more <see cref="T:Microsoft.Scripting.Ast.CatchBlock"/>s representing the catch statements to be associated with the try block.</param>
  4953. <returns>The created <see cref="T:Microsoft.Scripting.Ast.TryExpression"/>.</returns>
  4954. </member>
  4955. <member name="M:Microsoft.Scripting.Ast.Expression.MakeTry(System.Type,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.CatchBlock})">
  4956. <summary>
  4957. Creates a <see cref="T:Microsoft.Scripting.Ast.TryExpression"/> representing a try block with the specified elements.
  4958. </summary>
  4959. <param name="type">The result type of the try expression. If null, bodh and all handlers must have identical type.</param>
  4960. <param name="body">The body of the try block.</param>
  4961. <param name="finally">The body of the finally block. Pass null if the try block has no finally block associated with it.</param>
  4962. <param name="fault">The body of the t block. Pass null if the try block has no fault block associated with it.</param>
  4963. <param name="handlers">A collection of <see cref="T:Microsoft.Scripting.Ast.CatchBlock"/>s representing the catch statements to be associated with the try block.</param>
  4964. <returns>The created <see cref="T:Microsoft.Scripting.Ast.TryExpression"/>.</returns>
  4965. </member>
  4966. <member name="M:Microsoft.Scripting.Ast.Expression.TypeIs(Microsoft.Scripting.Ast.Expression,System.Type)">
  4967. <summary>
  4968. Creates a <see cref="T:Microsoft.Scripting.Ast.TypeBinaryExpression"/>.
  4969. </summary>
  4970. <param name="expression">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="T:Microsoft.Scripting.Ast.Expression"/> property equal to.</param>
  4971. <param name="type">A <see cref="P:Microsoft.Scripting.Ast.Expression.Type"/> to set the <see cref="P:Microsoft.Scripting.Ast.TypeBinaryExpression.TypeOperand"/> property equal to.</param>
  4972. <returns>A <see cref="T:Microsoft.Scripting.Ast.TypeBinaryExpression"/> for which the <see cref="P:Microsoft.Scripting.Ast.Expression.NodeType"/> property is equal to <see cref="M:Microsoft.Scripting.Ast.Expression.TypeIs(Microsoft.Scripting.Ast.Expression,System.Type)"/> and for which the <see cref="T:Microsoft.Scripting.Ast.Expression"/> and <see cref="P:Microsoft.Scripting.Ast.TypeBinaryExpression.TypeOperand"/> properties are set to the specified values.</returns>
  4973. </member>
  4974. <member name="M:Microsoft.Scripting.Ast.Expression.TypeEqual(Microsoft.Scripting.Ast.Expression,System.Type)">
  4975. <summary>
  4976. Creates a <see cref="T:Microsoft.Scripting.Ast.TypeBinaryExpression"/> that compares run-time type identity.
  4977. </summary>
  4978. <param name="expression">An <see cref="T:Microsoft.Scripting.Ast.Expression"/> to set the <see cref="T:Microsoft.Scripting.Ast.Expression"/> property equal to.</param>
  4979. <param name="type">A <see cref="P:Microsoft.Scripting.Ast.Expression.Type"/> to set the <see cref="P:Microsoft.Scripting.Ast.TypeBinaryExpression.TypeOperand"/> property equal to.</param>
  4980. <returns>A <see cref="T:Microsoft.Scripting.Ast.TypeBinaryExpression"/> for which the <see cref="P:Microsoft.Scripting.Ast.Expression.NodeType"/> property is equal to <see cref="M:Microsoft.Scripting.Ast.Expression.TypeEqual(Microsoft.Scripting.Ast.Expression,System.Type)"/> and for which the <see cref="T:Microsoft.Scripting.Ast.Expression"/> and <see cref="P:Microsoft.Scripting.Ast.TypeBinaryExpression.TypeOperand"/> properties are set to the specified values.</returns>
  4981. </member>
  4982. <member name="M:Microsoft.Scripting.Ast.Expression.MakeUnary(Microsoft.Scripting.Ast.ExpressionType,Microsoft.Scripting.Ast.Expression,System.Type)">
  4983. <summary>
  4984. Creates a <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"></see>, given an operand, by calling the appropriate factory method.
  4985. </summary>
  4986. <param name="unaryType">The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"></see> that specifies the type of unary operation.</param>
  4987. <param name="operand">An <see cref="T:Microsoft.Scripting.Ast.Expression"></see> that represents the operand.</param>
  4988. <param name="type">The <see cref="P:Microsoft.Scripting.Ast.Expression.Type"></see> that specifies the type to be converted to (pass null if not applicable).</param>
  4989. <returns>The <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"></see> that results from calling the appropriate factory method.</returns>
  4990. <exception cref="T:System.ArgumentException">Thrown when <paramref name="unaryType"/> does not correspond to a unary expression.</exception>
  4991. <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="operand"/> is null.</exception>
  4992. </member>
  4993. <member name="M:Microsoft.Scripting.Ast.Expression.MakeUnary(Microsoft.Scripting.Ast.ExpressionType,Microsoft.Scripting.Ast.Expression,System.Type,System.Reflection.MethodInfo)">
  4994. <summary>
  4995. Creates a <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"></see>, given an operand and implementing method, by calling the appropriate factory method.
  4996. </summary>
  4997. <param name="unaryType">The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"></see> that specifies the type of unary operation.</param>
  4998. <param name="operand">An <see cref="T:Microsoft.Scripting.Ast.Expression"></see> that represents the operand.</param>
  4999. <param name="type">The <see cref="P:Microsoft.Scripting.Ast.Expression.Type"></see> that specifies the type to be converted to (pass null if not applicable).</param>
  5000. <param name="method">The <see cref="T:System.Reflection.MethodInfo"></see> that represents the implementing method.</param>
  5001. <returns>The <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"></see> that results from calling the appropriate factory method.</returns>
  5002. <exception cref="T:System.ArgumentException">Thrown when <paramref name="unaryType"/> does not correspond to a unary expression.</exception>
  5003. <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="operand"/> is null.</exception>
  5004. </member>
  5005. <member name="M:Microsoft.Scripting.Ast.Expression.Negate(Microsoft.Scripting.Ast.Expression)">
  5006. <summary>
  5007. Creates a <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"></see> that represents an arithmetic negation operation.
  5008. </summary>
  5009. <param name="expression">An <see cref="T:Microsoft.Scripting.Ast.Expression"></see> to set the <see cref="P:UnaryExpression.Operand"></see> property equal to.</param>
  5010. <returns>A <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"></see> that has the <see cref="P:Expression.NodeType"></see> property equal to <see cref="P:ExpressionType.Negate"></see> and the <see cref="P:UnaryExpression.Operand"></see> properties set to the specified value.</returns>
  5011. <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="expression"/> is null.</exception>
  5012. <exception cref="T:System.InvalidOperationException">Thrown when the unary minus operator is not defined for <see cref="P:Expression.Type"></see></exception>
  5013. </member>
  5014. <member name="M:Microsoft.Scripting.Ast.Expression.Negate(Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  5015. <summary>
  5016. Creates a <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"></see> that represents an arithmetic negation operation.
  5017. </summary>
  5018. <param name="expression">An <see cref="T:Microsoft.Scripting.Ast.Expression"></see> to set the <see cref="P:UnaryExpression.Operand"></see> property equal to.</param>
  5019. <param name="method">A <see cref="T:System.Reflection.MethodInfo"></see> to set the <see cref="P:UnaryExpression.Method"></see> property equal to.</param>
  5020. <returns>A <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"></see> that has the <see cref="P:Expression.NodeType"></see> property equal to <see cref="P:ExpressionType.Negate"></see> and the <see cref="P:UnaryExpression.Operand"></see> and <see cref="P:UnaryExpression.Method"></see> properties set to the specified value.</returns>
  5021. <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="expression"/> is null.</exception>
  5022. <exception cref="T:System.ArgumentException">Thrown when <paramref name="method"/> is not null and the method it represents returns void, is not static (Shared in Visual Basic), or does not take exactly one argument.</exception>
  5023. <exception cref="T:System.InvalidOperationException">Thown when <paramref name="method"/> is null and the unary minus operator is not defined for expression.Type or expression.Type (or its corresponding non-nullable type if it is a nullable value type) is not assignable to the argument type of the method represented by method.</exception>
  5024. </member>
  5025. <member name="M:Microsoft.Scripting.Ast.Expression.UnaryPlus(Microsoft.Scripting.Ast.Expression)">
  5026. <summary>
  5027. Creates a <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"></see> that represents a unary plus operation.
  5028. </summary>
  5029. <param name="expression">An <see cref="T:Microsoft.Scripting.Ast.Expression"></see> to set the <see cref="P:Microsoft.Scripting.Ast.UnaryExpression.Operand"></see> property equal to.</param>
  5030. <returns>A <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"></see> that has the <see cref="P:Microsoft.Scripting.Ast.Expression.NodeType"></see> property equal to <see cref="F:Microsoft.Scripting.Ast.ExpressionType.UnaryPlus"></see> and the <see cref="P:Microsoft.Scripting.Ast.UnaryExpression.Operand"></see> property set to the specified value.</returns>
  5031. <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="expression"/> is null.</exception>
  5032. <exception cref="T:System.InvalidOperationException">Thown when the unary minus operator is not defined for expression.Type.</exception>
  5033. </member>
  5034. <member name="M:Microsoft.Scripting.Ast.Expression.UnaryPlus(Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  5035. <summary>
  5036. Creates a <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"></see> that represents a unary plus operation.
  5037. </summary>
  5038. <param name="expression">An <see cref="T:Microsoft.Scripting.Ast.Expression"></see> to set the <see cref="P:Microsoft.Scripting.Ast.UnaryExpression.Operand"></see> property equal to.</param>
  5039. <param name="method">A <see cref="T:System.Reflection.MethodInfo"></see> to set the <see cref="P:Microsoft.Scripting.Ast.UnaryExpression.Method"></see> property equal to.</param>
  5040. <returns>A <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"></see> that has the <see cref="P:Microsoft.Scripting.Ast.Expression.NodeType"></see> property equal to <see cref="F:Microsoft.Scripting.Ast.ExpressionType.UnaryPlus"></see> and the <see cref="P:Microsoft.Scripting.Ast.UnaryExpression.Operand"></see> and <see cref="P:Microsoft.Scripting.Ast.UnaryExpression.Method"></see>property set to the specified value.</returns>
  5041. <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="expression"/> is null.</exception>
  5042. <exception cref="T:System.ArgumentException">Thrown when <paramref name="method"/> is not null and the method it represents returns void, is not static (Shared in Visual Basic), or does not take exactly one argument.</exception>
  5043. <exception cref="T:System.InvalidOperationException">Thown when <paramref name="method"/> is null and the unary minus operator is not defined for expression.Type or expression.Type (or its corresponding non-nullable type if it is a nullable value type) is not assignable to the argument type of the method represented by method.</exception>
  5044. </member>
  5045. <member name="M:Microsoft.Scripting.Ast.Expression.NegateChecked(Microsoft.Scripting.Ast.Expression)">
  5046. <summary>Creates a <see cref="T:System.Linq.Expressions.UnaryExpression" /> that represents an arithmetic negation operation that has overflow checking.</summary>
  5047. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression" /> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType" /> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.NegateChecked" /> and the <see cref="P:System.Linq.Expressions.UnaryExpression.Operand" /> property set to the specified value.</returns>
  5048. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression" /> to set the <see cref="P:System.Linq.Expressions.UnaryExpression.Operand" /> property equal to.</param>
  5049. <exception cref="T:System.ArgumentNullException">
  5050. Thrown when <paramref name="expression" /> is null.</exception>
  5051. <exception cref="T:System.InvalidOperationException">Thrown when the unary minus operator is not defined for <paramref name="expression" />.Type.</exception>
  5052. </member>
  5053. <member name="M:Microsoft.Scripting.Ast.Expression.NegateChecked(Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  5054. <summary>Creates a <see cref="T:System.Linq.Expressions.UnaryExpression" /> that represents an arithmetic negation operation that has overflow checking. The implementing method can be specified.</summary>
  5055. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression" /> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType" /> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.NegateChecked" /> and the <see cref="P:System.Linq.Expressions.UnaryExpression.Operand" /> and <see cref="P:System.Linq.Expressions.UnaryExpression.Method" /> properties set to the specified values.</returns>
  5056. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression" /> to set the <see cref="P:System.Linq.Expressions.UnaryExpression.Operand" /> property equal to.</param>
  5057. <param name="method">A <see cref="T:System.Reflection.MethodInfo" /> to set the <see cref="P:System.Linq.Expressions.UnaryExpression.Method" /> property equal to.</param>
  5058. <exception cref="T:System.ArgumentNullException">
  5059. <paramref name="expression" /> is null.</exception>
  5060. <exception cref="T:System.ArgumentException">
  5061. <paramref name="method" /> is not null and the method it represents returns void, is not static (Shared in Visual Basic), or does not take exactly one argument.</exception>
  5062. <exception cref="T:System.InvalidOperationException">
  5063. <paramref name="method" /> is null and the unary minus operator is not defined for <paramref name="expression" />.Type.-or-<paramref name="expression" />.Type (or its corresponding non-nullable type if it is a nullable value type) is not assignable to the argument type of the method represented by <paramref name="method" />.</exception>
  5064. </member>
  5065. <member name="M:Microsoft.Scripting.Ast.Expression.Not(Microsoft.Scripting.Ast.Expression)">
  5066. <summary>Creates a <see cref="T:System.Linq.Expressions.UnaryExpression" /> that represents a bitwise complement operation.</summary>
  5067. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression" /> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType" /> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.Not" /> and the <see cref="P:System.Linq.Expressions.UnaryExpression.Operand" /> property set to the specified value.</returns>
  5068. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression" /> to set the <see cref="P:System.Linq.Expressions.UnaryExpression.Operand" /> property equal to.</param>
  5069. <exception cref="T:System.ArgumentNullException">
  5070. <paramref name="expression" /> is null.</exception>
  5071. <exception cref="T:System.InvalidOperationException">The unary not operator is not defined for <paramref name="expression" />.Type.</exception>
  5072. </member>
  5073. <member name="M:Microsoft.Scripting.Ast.Expression.Not(Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  5074. <summary>Creates a <see cref="T:System.Linq.Expressions.UnaryExpression" /> that represents a bitwise complement operation. The implementing method can be specified.</summary>
  5075. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression" /> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType" /> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.Not" /> and the <see cref="P:System.Linq.Expressions.UnaryExpression.Operand" /> and <see cref="P:System.Linq.Expressions.UnaryExpression.Method" /> properties set to the specified values.</returns>
  5076. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression" /> to set the <see cref="P:System.Linq.Expressions.UnaryExpression.Operand" /> property equal to.</param>
  5077. <param name="method">A <see cref="T:System.Reflection.MethodInfo" /> to set the <see cref="P:System.Linq.Expressions.UnaryExpression.Method" /> property equal to.</param>
  5078. <exception cref="T:System.ArgumentNullException">
  5079. <paramref name="expression" /> is null.</exception>
  5080. <exception cref="T:System.ArgumentException">
  5081. <paramref name="method" /> is not null and the method it represents returns void, is not static (Shared in Visual Basic), or does not take exactly one argument.</exception>
  5082. <exception cref="T:System.InvalidOperationException">
  5083. <paramref name="method" /> is null and the unary not operator is not defined for <paramref name="expression" />.Type.-or-<paramref name="expression" />.Type (or its corresponding non-nullable type if it is a nullable value type) is not assignable to the argument type of the method represented by <paramref name="method" />.</exception>
  5084. </member>
  5085. <member name="M:Microsoft.Scripting.Ast.Expression.IsFalse(Microsoft.Scripting.Ast.Expression)">
  5086. <summary>
  5087. Returns whether the expression evaluates to false.
  5088. </summary>
  5089. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression"/> to evaluate.</param>
  5090. <returns>An instance of <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"/>.</returns>
  5091. </member>
  5092. <member name="M:Microsoft.Scripting.Ast.Expression.IsFalse(Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  5093. <summary>
  5094. Returns whether the expression evaluates to false.
  5095. </summary>
  5096. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression"/> to evaluate.</param>
  5097. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> that represents the implementing method.</param>
  5098. <returns>An instance of <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"/>.</returns>
  5099. </member>
  5100. <member name="M:Microsoft.Scripting.Ast.Expression.IsTrue(Microsoft.Scripting.Ast.Expression)">
  5101. <summary>
  5102. Returns whether the expression evaluates to true.
  5103. </summary>
  5104. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression"/> to evaluate.</param>
  5105. <returns>An instance of <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"/>.</returns>
  5106. </member>
  5107. <member name="M:Microsoft.Scripting.Ast.Expression.IsTrue(Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  5108. <summary>
  5109. Returns whether the expression evaluates to true.
  5110. </summary>
  5111. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression"/> to evaluate.</param>
  5112. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> that represents the implementing method.</param>
  5113. <returns>An instance of <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"/>.</returns>
  5114. </member>
  5115. <member name="M:Microsoft.Scripting.Ast.Expression.OnesComplement(Microsoft.Scripting.Ast.Expression)">
  5116. <summary>
  5117. Returns the expression representing the ones complement.
  5118. </summary>
  5119. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression"/>.</param>
  5120. <returns>An instance of <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"/>.</returns>
  5121. </member>
  5122. <member name="M:Microsoft.Scripting.Ast.Expression.OnesComplement(Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  5123. <summary>
  5124. Returns the expression representing the ones complement.
  5125. </summary>
  5126. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression"/>.</param>
  5127. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> that represents the implementing method.</param>
  5128. <returns>An instance of <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"/>.</returns>
  5129. </member>
  5130. <member name="M:Microsoft.Scripting.Ast.Expression.TypeAs(Microsoft.Scripting.Ast.Expression,System.Type)">
  5131. <summary>Creates a <see cref="T:System.Linq.Expressions.UnaryExpression" /> that represents an explicit reference or boxing conversion where null is supplied if the conversion fails.</summary>
  5132. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression" /> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType" /> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.TypeAs" /> and the <see cref="P:System.Linq.Expressions.UnaryExpression.Operand" /> and <see cref="P:System.Linq.Expressions.Expression.Type" /> properties set to the specified values.</returns>
  5133. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression" /> to set the <see cref="P:System.Linq.Expressions.UnaryExpression.Operand" /> property equal to.</param>
  5134. <param name="type">A <see cref="T:System.Type" /> to set the <see cref="P:System.Linq.Expressions.Expression.Type" /> property equal to.</param>
  5135. <exception cref="T:System.ArgumentNullException">
  5136. <paramref name="expression" /> or <paramref name="type" /> is null.</exception>
  5137. </member>
  5138. <member name="M:Microsoft.Scripting.Ast.Expression.Unbox(Microsoft.Scripting.Ast.Expression,System.Type)">
  5139. <summary>
  5140. <summary>Creates a <see cref="T:System.Linq.Expressions.UnaryExpression"/> that represents an explicit unboxing.</summary>
  5141. </summary>
  5142. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression"/> to unbox.</param>
  5143. <param name="type">The new <see cref="T:System.Type"/> of the expression.</param>
  5144. <returns>An instance of <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"/>.</returns>
  5145. </member>
  5146. <member name="M:Microsoft.Scripting.Ast.Expression.Convert(Microsoft.Scripting.Ast.Expression,System.Type)">
  5147. <summary>Creates a <see cref="T:System.Linq.Expressions.UnaryExpression" /> that represents a conversion operation.</summary>
  5148. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression" /> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType" /> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.Convert" /> and the <see cref="P:System.Linq.Expressions.UnaryExpression.Operand" /> and <see cref="P:System.Linq.Expressions.Expression.Type" /> properties set to the specified values.</returns>
  5149. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression" /> to set the <see cref="P:System.Linq.Expressions.UnaryExpression.Operand" /> property equal to.</param>
  5150. <param name="type">A <see cref="T:System.Type" /> to set the <see cref="P:System.Linq.Expressions.Expression.Type" /> property equal to.</param>
  5151. <exception cref="T:System.ArgumentNullException">
  5152. <paramref name="expression" /> or <paramref name="type" /> is null.</exception>
  5153. <exception cref="T:System.InvalidOperationException">No conversion operator is defined between <paramref name="expression" />.Type and <paramref name="type" />.</exception>
  5154. </member>
  5155. <member name="M:Microsoft.Scripting.Ast.Expression.Convert(Microsoft.Scripting.Ast.Expression,System.Type,System.Reflection.MethodInfo)">
  5156. <summary>Creates a <see cref="T:System.Linq.Expressions.UnaryExpression" /> that represents a conversion operation for which the implementing method is specified.</summary>
  5157. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression" /> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType" /> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.Convert" /> and the <see cref="P:System.Linq.Expressions.UnaryExpression.Operand" />, <see cref="P:System.Linq.Expressions.Expression.Type" />, and <see cref="P:System.Linq.Expressions.UnaryExpression.Method" /> properties set to the specified values.</returns>
  5158. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression" /> to set the <see cref="P:System.Linq.Expressions.UnaryExpression.Operand" /> property equal to.</param>
  5159. <param name="type">A <see cref="T:System.Type" /> to set the <see cref="P:System.Linq.Expressions.Expression.Type" /> property equal to.</param>
  5160. <param name="method">A <see cref="T:System.Reflection.MethodInfo" /> to set the <see cref="P:System.Linq.Expressions.UnaryExpression.Method" /> property equal to.</param>
  5161. <exception cref="T:System.ArgumentNullException">
  5162. <paramref name="expression" /> or <paramref name="type" /> is null.</exception>
  5163. <exception cref="T:System.ArgumentException">
  5164. <paramref name="method" /> is not null and the method it represents returns void, is not static (Shared in Visual Basic), or does not take exactly one argument.</exception>
  5165. <exception cref="T:System.Reflection.AmbiguousMatchException">More than one method that matches the <paramref name="method" /> description was found.</exception>
  5166. <exception cref="T:System.InvalidOperationException">No conversion operator is defined between <paramref name="expression" />.Type and <paramref name="type" />.-or-<paramref name="expression" />.Type is not assignable to the argument type of the method represented by <paramref name="method" />.-or-The return type of the method represented by <paramref name="method" /> is not assignable to <paramref name="type" />.-or-<paramref name="expression" />.Type or <paramref name="type" /> is a nullable value type and the corresponding non-nullable value type does not equal the argument type or the return type, respectively, of the method represented by <paramref name="method" />.</exception>
  5167. </member>
  5168. <member name="M:Microsoft.Scripting.Ast.Expression.ConvertChecked(Microsoft.Scripting.Ast.Expression,System.Type)">
  5169. <summary>Creates a <see cref="T:System.Linq.Expressions.UnaryExpression" /> that represents a conversion operation that throws an exception if the target type is overflowed.</summary>
  5170. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression" /> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType" /> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.ConvertChecked" /> and the <see cref="P:System.Linq.Expressions.UnaryExpression.Operand" /> and <see cref="P:System.Linq.Expressions.Expression.Type" /> properties set to the specified values.</returns>
  5171. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression" /> to set the <see cref="P:System.Linq.Expressions.UnaryExpression.Operand" /> property equal to.</param>
  5172. <param name="type">A <see cref="T:System.Type" /> to set the <see cref="P:System.Linq.Expressions.Expression.Type" /> property equal to.</param>
  5173. <exception cref="T:System.ArgumentNullException">
  5174. <paramref name="expression" /> or <paramref name="type" /> is null.</exception>
  5175. <exception cref="T:System.InvalidOperationException">No conversion operator is defined between <paramref name="expression" />.Type and <paramref name="type" />.</exception>
  5176. </member>
  5177. <member name="M:Microsoft.Scripting.Ast.Expression.ConvertChecked(Microsoft.Scripting.Ast.Expression,System.Type,System.Reflection.MethodInfo)">
  5178. <summary>Creates a <see cref="T:System.Linq.Expressions.UnaryExpression" /> that represents a conversion operation that throws an exception if the target type is overflowed and for which the implementing method is specified.</summary>
  5179. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression" /> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType" /> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.ConvertChecked" /> and the <see cref="P:System.Linq.Expressions.UnaryExpression.Operand" />, <see cref="P:System.Linq.Expressions.Expression.Type" />, and <see cref="P:System.Linq.Expressions.UnaryExpression.Method" /> properties set to the specified values.</returns>
  5180. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression" /> to set the <see cref="P:System.Linq.Expressions.UnaryExpression.Operand" /> property equal to.</param>
  5181. <param name="type">A <see cref="T:System.Type" /> to set the <see cref="P:System.Linq.Expressions.Expression.Type" /> property equal to.</param>
  5182. <param name="method">A <see cref="T:System.Reflection.MethodInfo" /> to set the <see cref="P:System.Linq.Expressions.UnaryExpression.Method" /> property equal to.</param>
  5183. <exception cref="T:System.ArgumentNullException">
  5184. <paramref name="expression" /> or <paramref name="type" /> is null.</exception>
  5185. <exception cref="T:System.ArgumentException">
  5186. <paramref name="method" /> is not null and the method it represents returns void, is not static (Shared in Visual Basic), or does not take exactly one argument.</exception>
  5187. <exception cref="T:System.Reflection.AmbiguousMatchException">More than one method that matches the <paramref name="method" /> description was found.</exception>
  5188. <exception cref="T:System.InvalidOperationException">No conversion operator is defined between <paramref name="expression" />.Type and <paramref name="type" />.-or-<paramref name="expression" />.Type is not assignable to the argument type of the method represented by <paramref name="method" />.-or-The return type of the method represented by <paramref name="method" /> is not assignable to <paramref name="type" />.-or-<paramref name="expression" />.Type or <paramref name="type" /> is a nullable value type and the corresponding non-nullable value type does not equal the argument type or the return type, respectively, of the method represented by <paramref name="method" />.</exception>
  5189. </member>
  5190. <member name="M:Microsoft.Scripting.Ast.Expression.ArrayLength(Microsoft.Scripting.Ast.Expression)">
  5191. <summary>Creates a <see cref="T:System.Linq.Expressions.UnaryExpression" /> that represents getting the length of a one-dimensional array.</summary>
  5192. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression" /> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType" /> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.ArrayLength" /> and the <see cref="P:System.Linq.Expressions.UnaryExpression.Operand" /> property equal to <paramref name="array" />.</returns>
  5193. <param name="array">An <see cref="T:System.Linq.Expressions.Expression" /> to set the <see cref="P:System.Linq.Expressions.UnaryExpression.Operand" /> property equal to.</param>
  5194. <exception cref="T:System.ArgumentNullException">
  5195. <paramref name="array" /> is null.</exception>
  5196. <exception cref="T:System.ArgumentException">
  5197. <paramref name="array" />.Type does not represent an array type.</exception>
  5198. </member>
  5199. <member name="M:Microsoft.Scripting.Ast.Expression.Quote(Microsoft.Scripting.Ast.Expression)">
  5200. <summary>Creates a <see cref="T:System.Linq.Expressions.UnaryExpression" /> that represents an expression that has a constant value of type <see cref="T:System.Linq.Expressions.Expression" />.</summary>
  5201. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression" /> that has the <see cref="P:System.Linq.Expressions.Expression.NodeType" /> property equal to <see cref="F:System.Linq.Expressions.ExpressionType.Quote" /> and the <see cref="P:System.Linq.Expressions.UnaryExpression.Operand" /> property set to the specified value.</returns>
  5202. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression" /> to set the <see cref="P:System.Linq.Expressions.UnaryExpression.Operand" /> property equal to.</param>
  5203. <exception cref="T:System.ArgumentNullException">
  5204. <paramref name="expression" /> is null.</exception>
  5205. </member>
  5206. <member name="M:Microsoft.Scripting.Ast.Expression.Rethrow">
  5207. <summary>
  5208. Creates a <see cref="T:System.Linq.Expressions.UnaryExpression" /> that represents a rethrowing of an exception.
  5209. </summary>
  5210. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression"/> that represents a rethrowing of an exception.</returns>
  5211. </member>
  5212. <member name="M:Microsoft.Scripting.Ast.Expression.Rethrow(System.Type)">
  5213. <summary>
  5214. Creates a <see cref="T:System.Linq.Expressions.UnaryExpression" /> that represents a rethrowing of an exception with a given type.
  5215. </summary>
  5216. <param name="type">The new <see cref="T:System.Type" /> of the expression.</param>
  5217. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression"/> that represents a rethrowing of an exception.</returns>
  5218. </member>
  5219. <member name="M:Microsoft.Scripting.Ast.Expression.Throw(Microsoft.Scripting.Ast.Expression)">
  5220. <summary>
  5221. Creates a <see cref="T:System.Linq.Expressions.UnaryExpression" /> that represents a throwing of an exception.
  5222. </summary>
  5223. <param name="value">An <see cref="T:System.Linq.Expressions.Expression" />.</param>
  5224. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression"/> that represents the exception.</returns>
  5225. </member>
  5226. <member name="M:Microsoft.Scripting.Ast.Expression.Throw(Microsoft.Scripting.Ast.Expression,System.Type)">
  5227. <summary>
  5228. Creates a <see cref="T:System.Linq.Expressions.UnaryExpression" /> that represents a throwing of a value with a given type.
  5229. </summary>
  5230. <param name="value">An <see cref="T:System.Linq.Expressions.Expression" />.</param>
  5231. <param name="type">The new <see cref="T:System.Type" /> of the expression.</param>
  5232. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression"/> that represents the exception.</returns>
  5233. </member>
  5234. <member name="M:Microsoft.Scripting.Ast.Expression.Increment(Microsoft.Scripting.Ast.Expression)">
  5235. <summary>
  5236. Creates a <see cref="T:System.Linq.Expressions.UnaryExpression" /> that represents the incrementing of the expression by 1.
  5237. </summary>
  5238. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression"></see> to increment.</param>
  5239. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression"/> that represents the incremented expression.</returns>
  5240. </member>
  5241. <member name="M:Microsoft.Scripting.Ast.Expression.Increment(Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  5242. <summary>
  5243. Creates a <see cref="T:System.Linq.Expressions.UnaryExpression" /> that represents the incrementing of the expression by 1.
  5244. </summary>
  5245. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression"></see> to increment.</param>
  5246. <param name="method">A <see cref="T:System.Reflection.MethodInfo" /> that represents the implementing method.</param>
  5247. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression"/> that represents the incremented expression.</returns>
  5248. </member>
  5249. <member name="M:Microsoft.Scripting.Ast.Expression.Decrement(Microsoft.Scripting.Ast.Expression)">
  5250. <summary>
  5251. Creates a <see cref="T:System.Linq.Expressions.UnaryExpression" /> that represents the decrementing of the expression by 1.
  5252. </summary>
  5253. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression"></see> to decrement.</param>
  5254. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression"/> that represents the decremented expression.</returns>
  5255. </member>
  5256. <member name="M:Microsoft.Scripting.Ast.Expression.Decrement(Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  5257. <summary>
  5258. Creates a <see cref="T:System.Linq.Expressions.UnaryExpression" /> that represents the decrementing of the expression by 1.
  5259. </summary>
  5260. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression"></see> to decrement.</param>
  5261. <param name="method">A <see cref="T:System.Reflection.MethodInfo" /> that represents the implementing method.</param>
  5262. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression"/> that represents the decremented expression.</returns>
  5263. </member>
  5264. <member name="M:Microsoft.Scripting.Ast.Expression.PreIncrementAssign(Microsoft.Scripting.Ast.Expression)">
  5265. <summary>
  5266. Creates a <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"/> that increments the expression by 1
  5267. and assigns the result back to the expression.
  5268. </summary>
  5269. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression"></see> to apply the operations on.</param>
  5270. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression"/> that represents the resultant expression.</returns>
  5271. </member>
  5272. <member name="M:Microsoft.Scripting.Ast.Expression.PreIncrementAssign(Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  5273. <summary>
  5274. Creates a <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"/> that increments the expression by 1
  5275. and assigns the result back to the expression.
  5276. </summary>
  5277. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression"></see> to apply the operations on.</param>
  5278. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> that represents the implementing method.</param>
  5279. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression"/> that represents the resultant expression.</returns>
  5280. </member>
  5281. <member name="M:Microsoft.Scripting.Ast.Expression.PreDecrementAssign(Microsoft.Scripting.Ast.Expression)">
  5282. <summary>
  5283. Creates a <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"/> that decrements the expression by 1
  5284. and assigns the result back to the expression.
  5285. </summary>
  5286. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression"></see> to apply the operations on.</param>
  5287. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression"/> that represents the resultant expression.</returns>
  5288. </member>
  5289. <member name="M:Microsoft.Scripting.Ast.Expression.PreDecrementAssign(Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  5290. <summary>
  5291. Creates a <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"/> that decrements the expression by 1
  5292. and assigns the result back to the expression.
  5293. </summary>
  5294. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression"></see> to apply the operations on.</param>
  5295. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> that represents the implementing method.</param>
  5296. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression"/> that represents the resultant expression.</returns>
  5297. </member>
  5298. <member name="M:Microsoft.Scripting.Ast.Expression.PostIncrementAssign(Microsoft.Scripting.Ast.Expression)">
  5299. <summary>
  5300. Creates a <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"/> that represents the assignment of the expression
  5301. followed by a subsequent increment by 1 of the original expression.
  5302. </summary>
  5303. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression"></see> to apply the operations on.</param>
  5304. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression"/> that represents the resultant expression.</returns>
  5305. </member>
  5306. <member name="M:Microsoft.Scripting.Ast.Expression.PostIncrementAssign(Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  5307. <summary>
  5308. Creates a <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"/> that represents the assignment of the expression
  5309. followed by a subsequent increment by 1 of the original expression.
  5310. </summary>
  5311. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression"></see> to apply the operations on.</param>
  5312. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> that represents the implementing method.</param>
  5313. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression"/> that represents the resultant expression.</returns>
  5314. </member>
  5315. <member name="M:Microsoft.Scripting.Ast.Expression.PostDecrementAssign(Microsoft.Scripting.Ast.Expression)">
  5316. <summary>
  5317. Creates a <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"/> that represents the assignment of the expression
  5318. followed by a subsequent decrement by 1 of the original expression.
  5319. </summary>
  5320. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression"></see> to apply the operations on.</param>
  5321. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression"/> that represents the resultant expression.</returns>
  5322. </member>
  5323. <member name="M:Microsoft.Scripting.Ast.Expression.PostDecrementAssign(Microsoft.Scripting.Ast.Expression,System.Reflection.MethodInfo)">
  5324. <summary>
  5325. Creates a <see cref="T:Microsoft.Scripting.Ast.UnaryExpression"/> that represents the assignment of the expression
  5326. followed by a subsequent decrement by 1 of the original expression.
  5327. </summary>
  5328. <param name="expression">An <see cref="T:System.Linq.Expressions.Expression"></see> to apply the operations on.</param>
  5329. <param name="method">A <see cref="T:System.Reflection.MethodInfo"/> that represents the implementing method.</param>
  5330. <returns>A <see cref="T:System.Linq.Expressions.UnaryExpression"/> that represents the resultant expression.</returns>
  5331. </member>
  5332. <member name="P:Microsoft.Scripting.Ast.Expression.NodeType">
  5333. <summary>
  5334. The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> of the <see cref="T:Microsoft.Scripting.Ast.Expression"/>.
  5335. </summary>
  5336. </member>
  5337. <member name="P:Microsoft.Scripting.Ast.Expression.Type">
  5338. <summary>
  5339. The <see cref="P:Microsoft.Scripting.Ast.Expression.Type"/> of the value represented by this <see cref="T:Microsoft.Scripting.Ast.Expression"/>.
  5340. </summary>
  5341. </member>
  5342. <member name="P:Microsoft.Scripting.Ast.Expression.CanReduce">
  5343. <summary>
  5344. Indicates that the node can be reduced to a simpler node. If this
  5345. returns true, Reduce() can be called to produce the reduced form.
  5346. </summary>
  5347. </member>
  5348. <member name="P:Microsoft.Scripting.Ast.Expression.DebugView">
  5349. <summary>
  5350. Creates a <see cref="T:System.String"/> representation of the Expression.
  5351. </summary>
  5352. <returns>A <see cref="T:System.String"/> representation of the Expression.</returns>
  5353. </member>
  5354. <member name="T:Microsoft.Scripting.Ast.IArgumentProvider">
  5355. <summary>
  5356. Provides an internal interface for accessing the arguments that multiple tree
  5357. nodes (DynamicExpression, ElementInit, MethodCallExpression, InvocationExpression, NewExpression,
  5358. and InexExpression).
  5359. This enables two optimizations which reduce the size of the trees. The first is it enables
  5360. the nodes to hold onto an IList of T instead of a ReadOnlyCollection. This saves the cost
  5361. of allocating the ReadOnlyCollection for each node. The second is that it enables specialized
  5362. subclasses to be created which hold onto a specific number of arguments. For example Block2,
  5363. Block3, Block4. These nodes can therefore avoid allocating both a ReadOnlyCollection and an
  5364. array for storing their elements saving 32 bytes per node.
  5365. Meanwhile the nodes can continue to expose the original LINQ properties of ReadOnlyCollections. They
  5366. do this by re-using 1 field for storing both the array or an element that would normally be stored
  5367. in the array.
  5368. For the array case the collection is typed to IList of T instead of ReadOnlyCollection of T.
  5369. When the node is initially constructed it is an array. When the compiler accesses the members it
  5370. uses this interface. If a user accesses the members the array is promoted to a ReadOnlyCollection.
  5371. For the object case we store the 1st argument in a field typed to object and when the node is initially
  5372. constructed this holds directly onto the Expression. When the compiler accesses the members
  5373. it again uses this interface and the accessor for the 1st argument uses Expression.ReturnObject to
  5374. return the object which handles the Expression or ReadOnlyCollection case. When the user accesses
  5375. the ReadOnlyCollection then the object field is updated to hold directly onto the ReadOnlyCollection.
  5376. It is important that the Expressions consistently return the same ReadOnlyCollection otherwise the
  5377. re-writer will be broken and it would be a breaking change from LINQ v1. The problem is that currently
  5378. users can rely on object identity to tell if the node has changed. Storing the readonly collection in
  5379. an overloaded field enables us to both reduce memory usage as well as maintain compatibility and an
  5380. easy to use external API.
  5381. </summary>
  5382. </member>
  5383. <member name="T:Microsoft.Scripting.Ast.ListArgumentProvider">
  5384. <summary>
  5385. Provides a wrapper around an IArgumentProvider which exposes the argument providers
  5386. members out as an IList of Expression. This is used to avoid allocating an array
  5387. which needs to be stored inside of a ReadOnlyCollection. Instead this type has
  5388. the same amount of overhead as an array without duplicating the storage of the
  5389. elements. This ensures that internally we can avoid creating and copying arrays
  5390. while users of the Expression trees also don't pay a size penalty for this internal
  5391. optimization. See IArgumentProvider for more general information on the Expression
  5392. tree optimizations being used here.
  5393. </summary>
  5394. </member>
  5395. <member name="T:System.Dynamic.UnaryOperationBinder">
  5396. <summary>
  5397. Represents the unary dynamic operation at the call site, providing the binding semantic and the details about the operation.
  5398. </summary>
  5399. </member>
  5400. <member name="M:System.Dynamic.UnaryOperationBinder.#ctor(Microsoft.Scripting.Ast.ExpressionType)">
  5401. <summary>
  5402. Initializes a new instance of the <see cref="T:System.Dynamic.BinaryOperationBinder"/> class.
  5403. </summary>
  5404. <param name="operation">The unary operation kind.</param>
  5405. </member>
  5406. <member name="M:System.Dynamic.UnaryOperationBinder.FallbackUnaryOperation(System.Dynamic.DynamicMetaObject)">
  5407. <summary>
  5408. Performs the binding of the unary dynamic operation if the target dynamic object cannot bind.
  5409. </summary>
  5410. <param name="target">The target of the dynamic unary operation.</param>
  5411. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  5412. </member>
  5413. <member name="M:System.Dynamic.UnaryOperationBinder.FallbackUnaryOperation(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)">
  5414. <summary>
  5415. Performs the binding of the unary dynamic operation if the target dynamic object cannot bind.
  5416. </summary>
  5417. <param name="target">The target of the dynamic unary operation.</param>
  5418. <param name="errorSuggestion">The binding result in case the binding fails, or null.</param>
  5419. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  5420. </member>
  5421. <member name="M:System.Dynamic.UnaryOperationBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
  5422. <summary>
  5423. Performs the binding of the dynamic unary operation.
  5424. </summary>
  5425. <param name="target">The target of the dynamic operation.</param>
  5426. <param name="args">An array of arguments of the dynamic operation.</param>
  5427. <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"/> representing the result of the binding.</returns>
  5428. </member>
  5429. <member name="P:System.Dynamic.UnaryOperationBinder.ReturnType">
  5430. <summary>
  5431. The result type of the operation.
  5432. </summary>
  5433. </member>
  5434. <member name="P:System.Dynamic.UnaryOperationBinder.Operation">
  5435. <summary>
  5436. The unary operation kind.
  5437. </summary>
  5438. </member>
  5439. <member name="M:Microsoft.Scripting.Ast.ExpressionStringBuilder.ExpressionToString(Microsoft.Scripting.Ast.Expression)">
  5440. <summary>
  5441. Output a given expression tree to a string.
  5442. </summary>
  5443. </member>
  5444. <member name="M:Microsoft.Scripting.Ast.ExpressionStringBuilder.MemberBindingToString(Microsoft.Scripting.Ast.MemberBinding)">
  5445. <summary>
  5446. Output a given member binding to a string.
  5447. </summary>
  5448. </member>
  5449. <member name="M:Microsoft.Scripting.Ast.ExpressionStringBuilder.ElementInitBindingToString(Microsoft.Scripting.Ast.ElementInit)">
  5450. <summary>
  5451. Output a given ElementInit to a string.
  5452. </summary>
  5453. </member>
  5454. <member name="T:Microsoft.Scripting.Ast.Compiler.BoundConstants">
  5455. <summary>
  5456. This type tracks "runtime" constants--live objects that appear in
  5457. ConstantExpression nodes and must be bound to the delegate.
  5458. </summary>
  5459. </member>
  5460. <member name="F:Microsoft.Scripting.Ast.Compiler.BoundConstants._values">
  5461. <summary>
  5462. The list of constants in the order they appear in the constant array
  5463. </summary>
  5464. </member>
  5465. <member name="F:Microsoft.Scripting.Ast.Compiler.BoundConstants._indexes">
  5466. <summary>
  5467. The index of each constant in the constant array
  5468. </summary>
  5469. </member>
  5470. <member name="F:Microsoft.Scripting.Ast.Compiler.BoundConstants._references">
  5471. <summary>
  5472. Each constant referenced within this lambda, and how often it was referenced
  5473. </summary>
  5474. </member>
  5475. <member name="F:Microsoft.Scripting.Ast.Compiler.BoundConstants._cache">
  5476. <summary>
  5477. IL locals for storing frequently used constants
  5478. </summary>
  5479. </member>
  5480. <member name="M:Microsoft.Scripting.Ast.Compiler.BoundConstants.AddReference(System.Object,System.Type)">
  5481. <summary>
  5482. Called by VariableBinder. Adds the constant to the list (if needed)
  5483. and increases the reference count by one
  5484. </summary>
  5485. </member>
  5486. <member name="M:Microsoft.Scripting.Ast.Compiler.BoundConstants.EmitConstant(Microsoft.Scripting.Ast.Compiler.LambdaCompiler,System.Object,System.Type)">
  5487. <summary>
  5488. Emits a live object as a constant
  5489. </summary>
  5490. </member>
  5491. <member name="M:Microsoft.Scripting.Ast.Compiler.BoundConstants.EmitCacheConstants(Microsoft.Scripting.Ast.Compiler.LambdaCompiler)">
  5492. <summary>
  5493. Emit code to cache frequently used constants into IL locals,
  5494. instead of pulling them out of the array each time
  5495. </summary>
  5496. </member>
  5497. <member name="T:Microsoft.Scripting.Ast.Compiler.BoundConstants.TypedConstant">
  5498. <summary>
  5499. Constants can emit themselves as different types
  5500. For caching purposes, we need to treat each distinct Type as a
  5501. seperate thing to cache. (If we have to cast it on the way out, it
  5502. ends up using a JIT temp and defeats the purpose of caching the
  5503. value in a local)
  5504. </summary>
  5505. </member>
  5506. <member name="T:Microsoft.Scripting.Ast.DebugInfoExpression">
  5507. <summary>
  5508. Emits or clears a sequence point for debug information.
  5509. This allows the debugger to highlight the correct source code when
  5510. debugging.
  5511. </summary>
  5512. </member>
  5513. <member name="M:Microsoft.Scripting.Ast.DebugInfoExpression.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  5514. <summary>
  5515. Dispatches to the specific visit method for this node type.
  5516. </summary>
  5517. </member>
  5518. <member name="P:Microsoft.Scripting.Ast.DebugInfoExpression.Type">
  5519. <summary>
  5520. Gets the static type of the expression that this <see cref="T:Microsoft.Scripting.Ast.Expression"/> represents. (Inherited from <see cref="T:Microsoft.Scripting.Ast.Expression"/>.)
  5521. </summary>
  5522. <returns>The <see cref="P:Microsoft.Scripting.Ast.DebugInfoExpression.Type"/> that represents the static type of the expression.</returns>
  5523. </member>
  5524. <member name="P:Microsoft.Scripting.Ast.DebugInfoExpression.NodeType">
  5525. <summary>
  5526. Returns the node type of this <see cref="T:Microsoft.Scripting.Ast.Expression"/>. (Inherited from <see cref="T:Microsoft.Scripting.Ast.Expression"/>.)
  5527. </summary>
  5528. <returns>The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> that represents this expression.</returns>
  5529. </member>
  5530. <member name="P:Microsoft.Scripting.Ast.DebugInfoExpression.StartLine">
  5531. <summary>
  5532. Gets the start line of this <see cref="T:Microsoft.Scripting.Ast.DebugInfoExpression"/>.
  5533. </summary>
  5534. </member>
  5535. <member name="P:Microsoft.Scripting.Ast.DebugInfoExpression.StartColumn">
  5536. <summary>
  5537. Gets the start column of this <see cref="T:Microsoft.Scripting.Ast.DebugInfoExpression"/>.
  5538. </summary>
  5539. </member>
  5540. <member name="P:Microsoft.Scripting.Ast.DebugInfoExpression.EndLine">
  5541. <summary>
  5542. Gets the end line of this <see cref="T:Microsoft.Scripting.Ast.DebugInfoExpression"/>.
  5543. </summary>
  5544. </member>
  5545. <member name="P:Microsoft.Scripting.Ast.DebugInfoExpression.EndColumn">
  5546. <summary>
  5547. Gets the end column of this <see cref="T:Microsoft.Scripting.Ast.DebugInfoExpression"/>.
  5548. </summary>
  5549. </member>
  5550. <member name="P:Microsoft.Scripting.Ast.DebugInfoExpression.Document">
  5551. <summary>
  5552. Gets the <see cref="T:Microsoft.Scripting.Ast.SymbolDocumentInfo"/> that represents the source file.
  5553. </summary>
  5554. </member>
  5555. <member name="P:Microsoft.Scripting.Ast.DebugInfoExpression.IsClear">
  5556. <summary>
  5557. Gets the value to indicate if the <see cref="T:Microsoft.Scripting.Ast.DebugInfoExpression"/> is for clearing a sequence point.
  5558. </summary>
  5559. </member>
  5560. <member name="T:Microsoft.Scripting.Ast.SymbolDocumentInfo">
  5561. <summary>
  5562. Stores information needed to emit debugging symbol information for a
  5563. source file, in particular the file name and unique language identifier.
  5564. </summary>
  5565. </member>
  5566. <member name="P:Microsoft.Scripting.Ast.SymbolDocumentInfo.FileName">
  5567. <summary>
  5568. The source file name.
  5569. </summary>
  5570. </member>
  5571. <member name="P:Microsoft.Scripting.Ast.SymbolDocumentInfo.Language">
  5572. <summary>
  5573. Returns the language's unique identifier, if any.
  5574. </summary>
  5575. </member>
  5576. <member name="P:Microsoft.Scripting.Ast.SymbolDocumentInfo.LanguageVendor">
  5577. <summary>
  5578. Returns the language vendor's unique identifier, if any.
  5579. </summary>
  5580. </member>
  5581. <member name="P:Microsoft.Scripting.Ast.SymbolDocumentInfo.DocumentType">
  5582. <summary>
  5583. Returns the document type's unique identifier, if any.
  5584. Defaults to the guid for a text file.
  5585. </summary>
  5586. </member>
  5587. <member name="M:Microsoft.Scripting.Ast.Compiler.DelegateHelpers.MakeDelegateType(System.Type[])">
  5588. <summary>
  5589. Finds a delegate type using the types in the array.
  5590. We use the cache to avoid copying the array, and to cache the
  5591. created delegate type
  5592. </summary>
  5593. </member>
  5594. <member name="M:Microsoft.Scripting.Ast.Compiler.DelegateHelpers.MakeCallSiteDelegate(System.Collections.ObjectModel.ReadOnlyCollection{Microsoft.Scripting.Ast.Expression},System.Type)">
  5595. <summary>
  5596. Finds a delegate type for a CallSite using the types in the ReadOnlyCollection of Expression.
  5597. We take the readonly collection of Expression explicitly to avoid allocating memory (an array
  5598. of types) on lookup of delegate types.
  5599. </summary>
  5600. </member>
  5601. <member name="M:Microsoft.Scripting.Ast.Compiler.DelegateHelpers.MakeDeferredSiteDelegate(System.Dynamic.DynamicMetaObject[],System.Type)">
  5602. <summary>
  5603. Finds a delegate type for a CallSite using the MetaObject array.
  5604. We take the array of MetaObject explicitly to avoid allocating memory (an array of types) on
  5605. lookup of delegate types.
  5606. </summary>
  5607. </member>
  5608. <member name="M:Microsoft.Scripting.Ast.Compiler.DelegateHelpers.MakeNewDelegate(System.Type[])">
  5609. <summary>
  5610. Creates a new delegate, or uses a func/action
  5611. Note: this method does not cache
  5612. </summary>
  5613. </member>
  5614. <member name="T:Microsoft.Scripting.Ast.GotoExpressionKind">
  5615. <summary>
  5616. Specifies what kind of jump this <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> represents.
  5617. </summary>
  5618. </member>
  5619. <member name="F:Microsoft.Scripting.Ast.GotoExpressionKind.Goto">
  5620. <summary>
  5621. A <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> that represents a jump to some location.
  5622. </summary>
  5623. </member>
  5624. <member name="F:Microsoft.Scripting.Ast.GotoExpressionKind.Return">
  5625. <summary>
  5626. A <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> that represents a return statement.
  5627. </summary>
  5628. </member>
  5629. <member name="F:Microsoft.Scripting.Ast.GotoExpressionKind.Break">
  5630. <summary>
  5631. A <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> that represents a break statement.
  5632. </summary>
  5633. </member>
  5634. <member name="F:Microsoft.Scripting.Ast.GotoExpressionKind.Continue">
  5635. <summary>
  5636. A <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/> that represents a continue statement.
  5637. </summary>
  5638. </member>
  5639. <member name="T:Microsoft.Scripting.Ast.GotoExpression">
  5640. <summary>
  5641. Represents an unconditional jump. This includes return statements, break and continue statements, and other jumps.
  5642. </summary>
  5643. </member>
  5644. <member name="M:Microsoft.Scripting.Ast.GotoExpression.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  5645. <summary>
  5646. Dispatches to the specific visit method for this node type.
  5647. </summary>
  5648. </member>
  5649. <member name="M:Microsoft.Scripting.Ast.GotoExpression.Update(Microsoft.Scripting.Ast.LabelTarget,Microsoft.Scripting.Ast.Expression)">
  5650. <summary>
  5651. Creates a new expression that is like this one, but using the
  5652. supplied children. If all of the children are the same, it will
  5653. return this expression.
  5654. </summary>
  5655. <param name="target">The <see cref="P:Microsoft.Scripting.Ast.GotoExpression.Target"/> property of the result.</param>
  5656. <param name="value">The <see cref="P:Microsoft.Scripting.Ast.GotoExpression.Value"/> property of the result.</param>
  5657. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  5658. </member>
  5659. <member name="P:Microsoft.Scripting.Ast.GotoExpression.Type">
  5660. <summary>
  5661. Gets the static type of the expression that this <see cref="T:Microsoft.Scripting.Ast.Expression"/> represents. (Inherited from <see cref="T:Microsoft.Scripting.Ast.Expression"/>.)
  5662. </summary>
  5663. <returns>The <see cref="P:Microsoft.Scripting.Ast.GotoExpression.Type"/> that represents the static type of the expression.</returns>
  5664. </member>
  5665. <member name="P:Microsoft.Scripting.Ast.GotoExpression.NodeType">
  5666. <summary>
  5667. Returns the node type of this <see cref="T:Microsoft.Scripting.Ast.Expression"/>. (Inherited from <see cref="T:Microsoft.Scripting.Ast.Expression"/>.)
  5668. </summary>
  5669. <returns>The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> that represents this expression.</returns>
  5670. </member>
  5671. <member name="P:Microsoft.Scripting.Ast.GotoExpression.Value">
  5672. <summary>
  5673. The value passed to the target, or null if the target is of type
  5674. System.Void.
  5675. </summary>
  5676. </member>
  5677. <member name="P:Microsoft.Scripting.Ast.GotoExpression.Target">
  5678. <summary>
  5679. The target label where this node jumps to.
  5680. </summary>
  5681. </member>
  5682. <member name="P:Microsoft.Scripting.Ast.GotoExpression.Kind">
  5683. <summary>
  5684. The kind of the goto. For information purposes only.
  5685. </summary>
  5686. </member>
  5687. <member name="T:Microsoft.Scripting.Ast.Compiler.LabelInfo">
  5688. <summary>
  5689. Contains compiler state corresponding to a LabelTarget
  5690. See also LabelScopeInfo.
  5691. </summary>
  5692. </member>
  5693. <member name="P:Microsoft.Scripting.Ast.Compiler.LabelInfo.CanBranch">
  5694. <summary>
  5695. Indicates if it is legal to emit a "branch" instruction based on
  5696. currently available information. Call the Reference method before
  5697. using this property.
  5698. </summary>
  5699. </member>
  5700. <member name="P:Microsoft.Scripting.Ast.Compiler.LabelScopeInfo.CanJumpInto">
  5701. <summary>
  5702. Returns true if we can jump into this node
  5703. </summary>
  5704. </member>
  5705. <member name="T:Microsoft.Scripting.Ast.Compiler.OffsetTrackingILGenerator">
  5706. <summary>
  5707. Wraps ILGenerator with code that tracks the current IL offset as instructions are emitted into the IL stream.
  5708. </summary>
  5709. </member>
  5710. <member name="T:Microsoft.Scripting.Ast.DynamicExpression">
  5711. <summary>
  5712. Represents a dynamic operation.
  5713. </summary>
  5714. </member>
  5715. <member name="M:Microsoft.Scripting.Ast.DynamicExpression.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  5716. <summary>
  5717. Dispatches to the specific visit method for this node type.
  5718. </summary>
  5719. </member>
  5720. <member name="M:Microsoft.Scripting.Ast.DynamicExpression.Rewrite(Microsoft.Scripting.Ast.Expression[])">
  5721. <summary>
  5722. Makes a copy of this node replacing the args with the provided values. The
  5723. number of the args needs to match the number of the current block.
  5724. This helper is provided to allow re-writing of nodes to not depend on the specific optimized
  5725. subclass of DynamicExpression which is being used.
  5726. </summary>
  5727. </member>
  5728. <member name="M:Microsoft.Scripting.Ast.DynamicExpression.Update(System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  5729. <summary>
  5730. Creates a new expression that is like this one, but using the
  5731. supplied children. If all of the children are the same, it will
  5732. return this expression.
  5733. </summary>
  5734. <param name="arguments">The <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Arguments"/> property of the result.</param>
  5735. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  5736. </member>
  5737. <member name="P:Microsoft.Scripting.Ast.DynamicExpression.Type">
  5738. <summary>
  5739. Gets the static type of the expression that this <see cref="T:Microsoft.Scripting.Ast.Expression"/> represents.
  5740. </summary>
  5741. <returns>The <see cref="P:Microsoft.Scripting.Ast.DynamicExpression.Type"/> that represents the static type of the expression.</returns>
  5742. </member>
  5743. <member name="P:Microsoft.Scripting.Ast.DynamicExpression.NodeType">
  5744. <summary>
  5745. Returns the node type of this Expression. Extension nodes should return
  5746. ExpressionType.Extension when overriding this method.
  5747. </summary>
  5748. <returns>The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> of the expression.</returns>
  5749. </member>
  5750. <member name="P:Microsoft.Scripting.Ast.DynamicExpression.Binder">
  5751. <summary>
  5752. Gets the <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"/>, which determines the runtime behavior of the
  5753. dynamic site.
  5754. </summary>
  5755. </member>
  5756. <member name="P:Microsoft.Scripting.Ast.DynamicExpression.DelegateType">
  5757. <summary>
  5758. Gets the type of the delegate used by the <see cref="T:System.Runtime.CompilerServices.CallSite"/>.
  5759. </summary>
  5760. </member>
  5761. <member name="P:Microsoft.Scripting.Ast.DynamicExpression.Arguments">
  5762. <summary>
  5763. Gets the arguments to the dynamic operation.
  5764. </summary>
  5765. </member>
  5766. <member name="T:Microsoft.Scripting.Ast.BinaryExpression">
  5767. <summary>
  5768. Represents an expression that has a binary operator.
  5769. </summary>
  5770. </member>
  5771. <member name="M:Microsoft.Scripting.Ast.BinaryExpression.Update(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.LambdaExpression,Microsoft.Scripting.Ast.Expression)">
  5772. <summary>
  5773. Creates a new expression that is like this one, but using the
  5774. supplied children. If all of the children are the same, it will
  5775. return this expression.
  5776. </summary>
  5777. <param name="left">The <see cref="P:Microsoft.Scripting.Ast.BinaryExpression.Left"/> property of the result.</param>
  5778. <param name="conversion">The <see cref="P:Microsoft.Scripting.Ast.BinaryExpression.Conversion"/> property of the result.</param>
  5779. <param name="right">The <see cref="P:Microsoft.Scripting.Ast.BinaryExpression.Right"/> property of the result.</param>
  5780. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  5781. </member>
  5782. <member name="M:Microsoft.Scripting.Ast.BinaryExpression.Reduce">
  5783. <summary>
  5784. Reduces the binary expression node to a simpler expression.
  5785. If CanReduce returns true, this should return a valid expression.
  5786. This method is allowed to return another node which itself
  5787. must be reduced.
  5788. </summary>
  5789. <returns>The reduced expression.</returns>
  5790. </member>
  5791. <member name="M:Microsoft.Scripting.Ast.BinaryExpression.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  5792. <summary>
  5793. Dispatches to the specific visit method for this node type.
  5794. </summary>
  5795. </member>
  5796. <member name="P:Microsoft.Scripting.Ast.BinaryExpression.CanReduce">
  5797. <summary>
  5798. Gets a value that indicates whether the expression tree node can be reduced.
  5799. </summary>
  5800. </member>
  5801. <member name="P:Microsoft.Scripting.Ast.BinaryExpression.Right">
  5802. <summary>
  5803. Gets the right operand of the binary operation.
  5804. </summary>
  5805. </member>
  5806. <member name="P:Microsoft.Scripting.Ast.BinaryExpression.Left">
  5807. <summary>
  5808. Gets the left operand of the binary operation.
  5809. </summary>
  5810. </member>
  5811. <member name="P:Microsoft.Scripting.Ast.BinaryExpression.Method">
  5812. <summary>
  5813. Gets the implementing method for the binary operation.
  5814. </summary>
  5815. </member>
  5816. <member name="P:Microsoft.Scripting.Ast.BinaryExpression.Conversion">
  5817. <summary>
  5818. Gets the type conversion function that is used by a coalescing or compound assignment operation.
  5819. </summary>
  5820. </member>
  5821. <member name="P:Microsoft.Scripting.Ast.BinaryExpression.IsLifted">
  5822. <summary>
  5823. Gets a value that indicates whether the expression tree node represents a lifted call to an operator.
  5824. </summary>
  5825. </member>
  5826. <member name="P:Microsoft.Scripting.Ast.BinaryExpression.IsLiftedToNull">
  5827. <summary>
  5828. Gets a value that indicates whether the expression tree node represents a lifted call to an operator whose return type is lifted to a nullable type.
  5829. </summary>
  5830. </member>
  5831. <member name="T:Microsoft.Scripting.Ast.BlockExpression">
  5832. <summary>
  5833. Represents a block that contains a sequence of expressions where variables can be defined.
  5834. </summary>
  5835. </member>
  5836. <member name="M:Microsoft.Scripting.Ast.BlockExpression.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  5837. <summary>
  5838. Dispatches to the specific visit method for this node type.
  5839. </summary>
  5840. </member>
  5841. <member name="M:Microsoft.Scripting.Ast.BlockExpression.Update(System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.ParameterExpression},System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  5842. <summary>
  5843. Creates a new expression that is like this one, but using the
  5844. supplied children. If all of the children are the same, it will
  5845. return this expression.
  5846. </summary>
  5847. <param name="variables">The <see cref="P:Microsoft.Scripting.Ast.BlockExpression.Variables"/> property of the result.</param>
  5848. <param name="expressions">The <see cref="P:Microsoft.Scripting.Ast.BlockExpression.Expressions"/> property of the result.</param>
  5849. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  5850. </member>
  5851. <member name="M:Microsoft.Scripting.Ast.BlockExpression.Rewrite(System.Collections.ObjectModel.ReadOnlyCollection{Microsoft.Scripting.Ast.ParameterExpression},Microsoft.Scripting.Ast.Expression[])">
  5852. <summary>
  5853. Makes a copy of this node replacing the parameters/args with the provided values. The
  5854. shape of the parameters/args needs to match the shape of the current block - in other
  5855. words there should be the same # of parameters and args.
  5856. parameters can be null in which case the existing parameters are used.
  5857. This helper is provided to allow re-writing of nodes to not depend on the specific optimized
  5858. subclass of BlockExpression which is being used.
  5859. </summary>
  5860. </member>
  5861. <member name="M:Microsoft.Scripting.Ast.BlockExpression.ReturnReadOnlyExpressions(Microsoft.Scripting.Ast.BlockExpression,System.Object@)">
  5862. <summary>
  5863. Helper used for ensuring we only return 1 instance of a ReadOnlyCollection of T.
  5864. This is similar to the ReturnReadOnly which only takes a single argument. This version
  5865. supports nodes which hold onto 5 Expressions and puts all of the arguments into the
  5866. ReadOnlyCollection.
  5867. Ultimately this means if we create the readonly collection we will be slightly more wasteful as we'll
  5868. have a readonly collection + some fields in the type. The DLR internally avoids accessing anything
  5869. which would force the readonly collection to be created.
  5870. This is used by BlockExpression5 and MethodCallExpression5.
  5871. </summary>
  5872. </member>
  5873. <member name="P:Microsoft.Scripting.Ast.BlockExpression.Expressions">
  5874. <summary>
  5875. Gets the expressions in this block.
  5876. </summary>
  5877. </member>
  5878. <member name="P:Microsoft.Scripting.Ast.BlockExpression.Variables">
  5879. <summary>
  5880. Gets the variables defined in this block.
  5881. </summary>
  5882. </member>
  5883. <member name="P:Microsoft.Scripting.Ast.BlockExpression.Result">
  5884. <summary>
  5885. Gets the last expression in this block.
  5886. </summary>
  5887. </member>
  5888. <member name="P:Microsoft.Scripting.Ast.BlockExpression.NodeType">
  5889. <summary>
  5890. Returns the node type of this Expression. Extension nodes should return
  5891. ExpressionType.Extension when overriding this method.
  5892. </summary>
  5893. <returns>The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> of the expression.</returns>
  5894. </member>
  5895. <member name="P:Microsoft.Scripting.Ast.BlockExpression.Type">
  5896. <summary>
  5897. Gets the static type of the expression that this <see cref="T:Microsoft.Scripting.Ast.Expression"/> represents.
  5898. </summary>
  5899. <returns>The <see cref="P:Microsoft.Scripting.Ast.BlockExpression.Type"/> that represents the static type of the expression.</returns>
  5900. </member>
  5901. <member name="T:Microsoft.Scripting.Ast.BlockExpressionList">
  5902. <summary>
  5903. Provides a wrapper around an IArgumentProvider which exposes the argument providers
  5904. members out as an IList of Expression. This is used to avoid allocating an array
  5905. which needs to be stored inside of a ReadOnlyCollection. Instead this type has
  5906. the same amount of overhead as an array without duplicating the storage of the
  5907. elements. This ensures that internally we can avoid creating and copying arrays
  5908. while users of the Expression trees also don't pay a size penalty for this internal
  5909. optimization. See IArgumentProvider for more general information on the Expression
  5910. tree optimizations being used here.
  5911. </summary>
  5912. </member>
  5913. <member name="T:Microsoft.Scripting.Ast.CatchBlock">
  5914. <summary>
  5915. Represents a catch statement in a try block.
  5916. This must have the same return type (i.e., the type of <see cref="P:CatchBlock.Body"/>) as the try block it is associated with.
  5917. </summary>
  5918. </member>
  5919. <member name="M:Microsoft.Scripting.Ast.CatchBlock.ToString">
  5920. <summary>
  5921. Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
  5922. </summary>
  5923. <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>. </returns>
  5924. </member>
  5925. <member name="M:Microsoft.Scripting.Ast.CatchBlock.Update(Microsoft.Scripting.Ast.ParameterExpression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  5926. <summary>
  5927. Creates a new expression that is like this one, but using the
  5928. supplied children. If all of the children are the same, it will
  5929. return this expression.
  5930. </summary>
  5931. <param name="variable">The <see cref="P:Microsoft.Scripting.Ast.CatchBlock.Variable"/> property of the result.</param>
  5932. <param name="filter">The <see cref="P:Microsoft.Scripting.Ast.CatchBlock.Filter"/> property of the result.</param>
  5933. <param name="body">The <see cref="P:Microsoft.Scripting.Ast.CatchBlock.Body"/> property of the result.</param>
  5934. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  5935. </member>
  5936. <member name="P:Microsoft.Scripting.Ast.CatchBlock.Variable">
  5937. <summary>
  5938. Gets a reference to the <see cref="T:System.Exception"/> object caught by this handler.
  5939. </summary>
  5940. </member>
  5941. <member name="P:Microsoft.Scripting.Ast.CatchBlock.Test">
  5942. <summary>
  5943. Gets the type of <see cref="T:System.Exception"/> this handler catches.
  5944. </summary>
  5945. </member>
  5946. <member name="P:Microsoft.Scripting.Ast.CatchBlock.Body">
  5947. <summary>
  5948. Gets the body of the catch block.
  5949. </summary>
  5950. </member>
  5951. <member name="P:Microsoft.Scripting.Ast.CatchBlock.Filter">
  5952. <summary>
  5953. Gets the body of the <see cref="T:Microsoft.Scripting.Ast.CatchBlock"/>'s filter.
  5954. </summary>
  5955. </member>
  5956. <member name="T:Microsoft.Scripting.Ast.ConditionalExpression">
  5957. <summary>
  5958. Represents an expression that has a conditional operator.
  5959. </summary>
  5960. </member>
  5961. <member name="M:Microsoft.Scripting.Ast.ConditionalExpression.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  5962. <summary>
  5963. Dispatches to the specific visit method for this node type.
  5964. </summary>
  5965. </member>
  5966. <member name="M:Microsoft.Scripting.Ast.ConditionalExpression.Update(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  5967. <summary>
  5968. Creates a new expression that is like this one, but using the
  5969. supplied children. If all of the children are the same, it will
  5970. return this expression.
  5971. </summary>
  5972. <param name="test">The <see cref="P:Microsoft.Scripting.Ast.ConditionalExpression.Test"/> property of the result.</param>
  5973. <param name="ifTrue">The <see cref="P:Microsoft.Scripting.Ast.ConditionalExpression.IfTrue"/> property of the result.</param>
  5974. <param name="ifFalse">The <see cref="P:Microsoft.Scripting.Ast.ConditionalExpression.IfFalse"/> property of the result.</param>
  5975. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  5976. </member>
  5977. <member name="P:Microsoft.Scripting.Ast.ConditionalExpression.NodeType">
  5978. <summary>
  5979. Returns the node type of this Expression. Extension nodes should return
  5980. ExpressionType.Extension when overriding this method.
  5981. </summary>
  5982. <returns>The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> of the expression.</returns>
  5983. </member>
  5984. <member name="P:Microsoft.Scripting.Ast.ConditionalExpression.Type">
  5985. <summary>
  5986. Gets the static type of the expression that this <see cref="T:Microsoft.Scripting.Ast.Expression"/> represents.
  5987. </summary>
  5988. <returns>The <see cref="P:Microsoft.Scripting.Ast.ConditionalExpression.Type"/> that represents the static type of the expression.</returns>
  5989. </member>
  5990. <member name="P:Microsoft.Scripting.Ast.ConditionalExpression.Test">
  5991. <summary>
  5992. Gets the test of the conditional operation.
  5993. </summary>
  5994. </member>
  5995. <member name="P:Microsoft.Scripting.Ast.ConditionalExpression.IfTrue">
  5996. <summary>
  5997. Gets the expression to execute if the test evaluates to true.
  5998. </summary>
  5999. </member>
  6000. <member name="P:Microsoft.Scripting.Ast.ConditionalExpression.IfFalse">
  6001. <summary>
  6002. Gets the expression to execute if the test evaluates to false.
  6003. </summary>
  6004. </member>
  6005. <member name="T:Microsoft.Scripting.Ast.ConstantExpression">
  6006. <summary>
  6007. Represents an expression that has a constant value.
  6008. </summary>
  6009. </member>
  6010. <member name="M:Microsoft.Scripting.Ast.ConstantExpression.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  6011. <summary>
  6012. Dispatches to the specific visit method for this node type.
  6013. </summary>
  6014. </member>
  6015. <member name="P:Microsoft.Scripting.Ast.ConstantExpression.Type">
  6016. <summary>
  6017. Gets the static type of the expression that this <see cref="T:Microsoft.Scripting.Ast.Expression"/> represents.
  6018. </summary>
  6019. <returns>The <see cref="P:Microsoft.Scripting.Ast.ConstantExpression.Type"/> that represents the static type of the expression.</returns>
  6020. </member>
  6021. <member name="P:Microsoft.Scripting.Ast.ConstantExpression.NodeType">
  6022. <summary>
  6023. Returns the node type of this Expression. Extension nodes should return
  6024. ExpressionType.Extension when overriding this method.
  6025. </summary>
  6026. <returns>The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> of the expression.</returns>
  6027. </member>
  6028. <member name="P:Microsoft.Scripting.Ast.ConstantExpression.Value">
  6029. <summary>
  6030. Gets the value of the constant expression.
  6031. </summary>
  6032. </member>
  6033. <member name="T:Microsoft.Scripting.Ast.DefaultExpression">
  6034. <summary>
  6035. Represents the default value of a type or an empty expression.
  6036. </summary>
  6037. </member>
  6038. <member name="M:Microsoft.Scripting.Ast.DefaultExpression.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  6039. <summary>
  6040. Dispatches to the specific visit method for this node type.
  6041. </summary>
  6042. </member>
  6043. <member name="P:Microsoft.Scripting.Ast.DefaultExpression.Type">
  6044. <summary>
  6045. Gets the static type of the expression that this <see cref="T:Microsoft.Scripting.Ast.Expression"/> represents.
  6046. </summary>
  6047. <returns>The <see cref="P:Microsoft.Scripting.Ast.DefaultExpression.Type"/> that represents the static type of the expression.</returns>
  6048. </member>
  6049. <member name="P:Microsoft.Scripting.Ast.DefaultExpression.NodeType">
  6050. <summary>
  6051. Returns the node type of this Expression. Extension nodes should return
  6052. ExpressionType.Extension when overriding this method.
  6053. </summary>
  6054. <returns>The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> of the expression.</returns>
  6055. </member>
  6056. <member name="T:Microsoft.Scripting.Ast.ElementInit">
  6057. <summary>
  6058. Represents the initialization of a list.
  6059. </summary>
  6060. </member>
  6061. <member name="M:Microsoft.Scripting.Ast.ElementInit.ToString">
  6062. <summary>
  6063. Creates a <see cref="T:System.String"/> representation of the node.
  6064. </summary>
  6065. <returns>A <see cref="T:System.String"/> representation of the node.</returns>
  6066. </member>
  6067. <member name="M:Microsoft.Scripting.Ast.ElementInit.Update(System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  6068. <summary>
  6069. Creates a new expression that is like this one, but using the
  6070. supplied children. If all of the children are the same, it will
  6071. return this expression.
  6072. </summary>
  6073. <param name="arguments">The <see cref="P:Microsoft.Scripting.Ast.ElementInit.Arguments"/> property of the result.</param>
  6074. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  6075. </member>
  6076. <member name="P:Microsoft.Scripting.Ast.ElementInit.AddMethod">
  6077. <summary>
  6078. Gets the <see cref="T:System.Reflection.MethodInfo"/> used to add elements to the object.
  6079. </summary>
  6080. </member>
  6081. <member name="P:Microsoft.Scripting.Ast.ElementInit.Arguments">
  6082. <summary>
  6083. Gets the list of elements to be added to the object.
  6084. </summary>
  6085. </member>
  6086. <member name="T:Microsoft.Scripting.Ast.ExpressionType">
  6087. <summary>
  6088. Describes the node types for the nodes of an expression tree.
  6089. </summary>
  6090. </member>
  6091. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Add">
  6092. <summary>
  6093. A node that represents arithmetic addition without overflow checking.
  6094. </summary>
  6095. </member>
  6096. <member name="F:Microsoft.Scripting.Ast.ExpressionType.AddChecked">
  6097. <summary>
  6098. A node that represents arithmetic addition with overflow checking.
  6099. </summary>
  6100. </member>
  6101. <member name="F:Microsoft.Scripting.Ast.ExpressionType.And">
  6102. <summary>
  6103. A node that represents a bitwise AND operation.
  6104. </summary>
  6105. </member>
  6106. <member name="F:Microsoft.Scripting.Ast.ExpressionType.AndAlso">
  6107. <summary>
  6108. A node that represents a short-circuiting conditional AND operation.
  6109. </summary>
  6110. </member>
  6111. <member name="F:Microsoft.Scripting.Ast.ExpressionType.ArrayLength">
  6112. <summary>
  6113. A node that represents getting the length of a one-dimensional array.
  6114. </summary>
  6115. </member>
  6116. <member name="F:Microsoft.Scripting.Ast.ExpressionType.ArrayIndex">
  6117. <summary>
  6118. A node that represents indexing into a one-dimensional array.
  6119. </summary>
  6120. </member>
  6121. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Call">
  6122. <summary>
  6123. A node that represents represents a method call.
  6124. </summary>
  6125. </member>
  6126. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Coalesce">
  6127. <summary>
  6128. A node that represents a null coalescing operation.
  6129. </summary>
  6130. </member>
  6131. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Conditional">
  6132. <summary>
  6133. A node that represents a conditional operation.
  6134. </summary>
  6135. </member>
  6136. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Constant">
  6137. <summary>
  6138. A node that represents an expression that has a constant value.
  6139. </summary>
  6140. </member>
  6141. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Convert">
  6142. <summary>
  6143. A node that represents a cast or conversion operation. If the operation is a numeric conversion, it overflows silently if the converted value does not fit the target type.
  6144. </summary>
  6145. </member>
  6146. <member name="F:Microsoft.Scripting.Ast.ExpressionType.ConvertChecked">
  6147. <summary>
  6148. A node that represents a cast or conversion operation. If the operation is a numeric conversion, an exception is thrown if the converted value does not fit the target type.
  6149. </summary>
  6150. </member>
  6151. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Divide">
  6152. <summary>
  6153. A node that represents arithmetic division.
  6154. </summary>
  6155. </member>
  6156. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Equal">
  6157. <summary>
  6158. A node that represents an equality comparison.
  6159. </summary>
  6160. </member>
  6161. <member name="F:Microsoft.Scripting.Ast.ExpressionType.ExclusiveOr">
  6162. <summary>
  6163. A node that represents a bitwise XOR operation.
  6164. </summary>
  6165. </member>
  6166. <member name="F:Microsoft.Scripting.Ast.ExpressionType.GreaterThan">
  6167. <summary>
  6168. A node that represents a "greater than" numeric comparison.
  6169. </summary>
  6170. </member>
  6171. <member name="F:Microsoft.Scripting.Ast.ExpressionType.GreaterThanOrEqual">
  6172. <summary>
  6173. A node that represents a "greater than or equal" numeric comparison.
  6174. </summary>
  6175. </member>
  6176. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Invoke">
  6177. <summary>
  6178. A node that represents applying a delegate or lambda expression to a list of argument expressions.
  6179. </summary>
  6180. </member>
  6181. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Lambda">
  6182. <summary>
  6183. A node that represents a lambda expression.
  6184. </summary>
  6185. </member>
  6186. <member name="F:Microsoft.Scripting.Ast.ExpressionType.LeftShift">
  6187. <summary>
  6188. A node that represents a bitwise left-shift operation.
  6189. </summary>
  6190. </member>
  6191. <member name="F:Microsoft.Scripting.Ast.ExpressionType.LessThan">
  6192. <summary>
  6193. A node that represents a "less than" numeric comparison.
  6194. </summary>
  6195. </member>
  6196. <member name="F:Microsoft.Scripting.Ast.ExpressionType.LessThanOrEqual">
  6197. <summary>
  6198. A node that represents a "less than or equal" numeric comparison.
  6199. </summary>
  6200. </member>
  6201. <member name="F:Microsoft.Scripting.Ast.ExpressionType.ListInit">
  6202. <summary>
  6203. A node that represents creating a new IEnumerable object and initializing it from a list of elements.
  6204. </summary>
  6205. </member>
  6206. <member name="F:Microsoft.Scripting.Ast.ExpressionType.MemberAccess">
  6207. <summary>
  6208. A node that represents reading from a field or property.
  6209. </summary>
  6210. </member>
  6211. <member name="F:Microsoft.Scripting.Ast.ExpressionType.MemberInit">
  6212. <summary>
  6213. A node that represents creating a new object and initializing one or more of its members.
  6214. </summary>
  6215. </member>
  6216. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Modulo">
  6217. <summary>
  6218. A node that represents an arithmetic remainder operation.
  6219. </summary>
  6220. </member>
  6221. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Multiply">
  6222. <summary>
  6223. A node that represents arithmetic multiplication without overflow checking.
  6224. </summary>
  6225. </member>
  6226. <member name="F:Microsoft.Scripting.Ast.ExpressionType.MultiplyChecked">
  6227. <summary>
  6228. A node that represents arithmetic multiplication with overflow checking.
  6229. </summary>
  6230. </member>
  6231. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Negate">
  6232. <summary>
  6233. A node that represents an arithmetic negation operation.
  6234. </summary>
  6235. </member>
  6236. <member name="F:Microsoft.Scripting.Ast.ExpressionType.UnaryPlus">
  6237. <summary>
  6238. A node that represents a unary plus operation. The result of a predefined unary plus operation is simply the value of the operand, but user-defined implementations may have non-trivial results.
  6239. </summary>
  6240. </member>
  6241. <member name="F:Microsoft.Scripting.Ast.ExpressionType.NegateChecked">
  6242. <summary>
  6243. A node that represents an arithmetic negation operation that has overflow checking.
  6244. </summary>
  6245. </member>
  6246. <member name="F:Microsoft.Scripting.Ast.ExpressionType.New">
  6247. <summary>
  6248. A node that represents calling a constructor to create a new object.
  6249. </summary>
  6250. </member>
  6251. <member name="F:Microsoft.Scripting.Ast.ExpressionType.NewArrayInit">
  6252. <summary>
  6253. A node that represents creating a new one-dimensional array and initializing it from a list of elements.
  6254. </summary>
  6255. </member>
  6256. <member name="F:Microsoft.Scripting.Ast.ExpressionType.NewArrayBounds">
  6257. <summary>
  6258. A node that represents creating a new array where the bounds for each dimension are specified.
  6259. </summary>
  6260. </member>
  6261. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Not">
  6262. <summary>
  6263. A node that represents a bitwise complement operation.
  6264. </summary>
  6265. </member>
  6266. <member name="F:Microsoft.Scripting.Ast.ExpressionType.NotEqual">
  6267. <summary>
  6268. A node that represents an inequality comparison.
  6269. </summary>
  6270. </member>
  6271. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Or">
  6272. <summary>
  6273. A node that represents a bitwise OR operation.
  6274. </summary>
  6275. </member>
  6276. <member name="F:Microsoft.Scripting.Ast.ExpressionType.OrElse">
  6277. <summary>
  6278. A node that represents a short-circuiting conditional OR operation.
  6279. </summary>
  6280. </member>
  6281. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Parameter">
  6282. <summary>
  6283. A node that represents a reference to a parameter or variable defined in the context of the expression.
  6284. </summary>
  6285. </member>
  6286. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Power">
  6287. <summary>
  6288. A node that represents raising a number to a power.
  6289. </summary>
  6290. </member>
  6291. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Quote">
  6292. <summary>
  6293. A node that represents an expression that has a constant value of type Expression. A Quote node can contain references to parameters defined in the context of the expression it represents.
  6294. </summary>
  6295. </member>
  6296. <member name="F:Microsoft.Scripting.Ast.ExpressionType.RightShift">
  6297. <summary>
  6298. A node that represents a bitwise right-shift operation.
  6299. </summary>
  6300. </member>
  6301. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Subtract">
  6302. <summary>
  6303. A node that represents arithmetic subtraction without overflow checking.
  6304. </summary>
  6305. </member>
  6306. <member name="F:Microsoft.Scripting.Ast.ExpressionType.SubtractChecked">
  6307. <summary>
  6308. A node that represents arithmetic subtraction with overflow checking.
  6309. </summary>
  6310. </member>
  6311. <member name="F:Microsoft.Scripting.Ast.ExpressionType.TypeAs">
  6312. <summary>
  6313. A node that represents an explicit reference or boxing conversion where null reference (Nothing in Visual Basic) is supplied if the conversion fails.
  6314. </summary>
  6315. </member>
  6316. <member name="F:Microsoft.Scripting.Ast.ExpressionType.TypeIs">
  6317. <summary>
  6318. A node that represents a type test.
  6319. </summary>
  6320. </member>
  6321. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Assign">
  6322. <summary>
  6323. A node that represents an assignment.
  6324. </summary>
  6325. </member>
  6326. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Block">
  6327. <summary>
  6328. A node that represents a block of expressions.
  6329. </summary>
  6330. </member>
  6331. <member name="F:Microsoft.Scripting.Ast.ExpressionType.DebugInfo">
  6332. <summary>
  6333. A node that represents a debugging information.
  6334. </summary>
  6335. </member>
  6336. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Decrement">
  6337. <summary>
  6338. A node that represents a unary decrement.
  6339. </summary>
  6340. </member>
  6341. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Dynamic">
  6342. <summary>
  6343. A node that represents a dynamic operation.
  6344. </summary>
  6345. </member>
  6346. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Default">
  6347. <summary>
  6348. A node that represents a default value.
  6349. </summary>
  6350. </member>
  6351. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Extension">
  6352. <summary>
  6353. A node that represents an extension expression.
  6354. </summary>
  6355. </member>
  6356. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Goto">
  6357. <summary>
  6358. A node that represents a goto.
  6359. </summary>
  6360. </member>
  6361. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Increment">
  6362. <summary>
  6363. A node that represents a unary increment.
  6364. </summary>
  6365. </member>
  6366. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Index">
  6367. <summary>
  6368. A node that represents an index operation.
  6369. </summary>
  6370. </member>
  6371. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Label">
  6372. <summary>
  6373. A node that represents a label.
  6374. </summary>
  6375. </member>
  6376. <member name="F:Microsoft.Scripting.Ast.ExpressionType.RuntimeVariables">
  6377. <summary>
  6378. A node that represents a list of runtime variables.
  6379. </summary>
  6380. </member>
  6381. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Loop">
  6382. <summary>
  6383. A node that represents a loop.
  6384. </summary>
  6385. </member>
  6386. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Switch">
  6387. <summary>
  6388. A node that represents a switch operation.
  6389. </summary>
  6390. </member>
  6391. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Throw">
  6392. <summary>
  6393. A node that represents a throwing of an exception.
  6394. </summary>
  6395. </member>
  6396. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Try">
  6397. <summary>
  6398. A node that represents a try-catch expression.
  6399. </summary>
  6400. </member>
  6401. <member name="F:Microsoft.Scripting.Ast.ExpressionType.Unbox">
  6402. <summary>
  6403. A node that represents an unbox value type operation.
  6404. </summary>
  6405. </member>
  6406. <member name="F:Microsoft.Scripting.Ast.ExpressionType.AddAssign">
  6407. <summary>
  6408. A node that represents an arithmetic addition compound assignment without overflow checking.
  6409. </summary>
  6410. </member>
  6411. <member name="F:Microsoft.Scripting.Ast.ExpressionType.AndAssign">
  6412. <summary>
  6413. A node that represents a bitwise AND compound assignment.
  6414. </summary>
  6415. </member>
  6416. <member name="F:Microsoft.Scripting.Ast.ExpressionType.DivideAssign">
  6417. <summary>
  6418. A node that represents an arithmetic division compound assignment .
  6419. </summary>
  6420. </member>
  6421. <member name="F:Microsoft.Scripting.Ast.ExpressionType.ExclusiveOrAssign">
  6422. <summary>
  6423. A node that represents a bitwise XOR compound assignment.
  6424. </summary>
  6425. </member>
  6426. <member name="F:Microsoft.Scripting.Ast.ExpressionType.LeftShiftAssign">
  6427. <summary>
  6428. A node that represents a bitwise left-shift compound assignment.
  6429. </summary>
  6430. </member>
  6431. <member name="F:Microsoft.Scripting.Ast.ExpressionType.ModuloAssign">
  6432. <summary>
  6433. A node that represents an arithmetic remainder compound assignment.
  6434. </summary>
  6435. </member>
  6436. <member name="F:Microsoft.Scripting.Ast.ExpressionType.MultiplyAssign">
  6437. <summary>
  6438. A node that represents arithmetic multiplication compound assignment without overflow checking.
  6439. </summary>
  6440. </member>
  6441. <member name="F:Microsoft.Scripting.Ast.ExpressionType.OrAssign">
  6442. <summary>
  6443. A node that represents a bitwise OR compound assignment.
  6444. </summary>
  6445. </member>
  6446. <member name="F:Microsoft.Scripting.Ast.ExpressionType.PowerAssign">
  6447. <summary>
  6448. A node that represents raising a number to a power compound assignment.
  6449. </summary>
  6450. </member>
  6451. <member name="F:Microsoft.Scripting.Ast.ExpressionType.RightShiftAssign">
  6452. <summary>
  6453. A node that represents a bitwise right-shift compound assignment.
  6454. </summary>
  6455. </member>
  6456. <member name="F:Microsoft.Scripting.Ast.ExpressionType.SubtractAssign">
  6457. <summary>
  6458. A node that represents arithmetic subtraction compound assignment without overflow checking.
  6459. </summary>
  6460. </member>
  6461. <member name="F:Microsoft.Scripting.Ast.ExpressionType.AddAssignChecked">
  6462. <summary>
  6463. A node that represents an arithmetic addition compound assignment with overflow checking.
  6464. </summary>
  6465. </member>
  6466. <member name="F:Microsoft.Scripting.Ast.ExpressionType.MultiplyAssignChecked">
  6467. <summary>
  6468. A node that represents arithmetic multiplication compound assignment with overflow checking.
  6469. </summary>
  6470. </member>
  6471. <member name="F:Microsoft.Scripting.Ast.ExpressionType.SubtractAssignChecked">
  6472. <summary>
  6473. A node that represents arithmetic subtraction compound assignment with overflow checking.
  6474. </summary>
  6475. </member>
  6476. <member name="F:Microsoft.Scripting.Ast.ExpressionType.PreIncrementAssign">
  6477. <summary>
  6478. A node that represents an unary prefix increment.
  6479. </summary>
  6480. </member>
  6481. <member name="F:Microsoft.Scripting.Ast.ExpressionType.PreDecrementAssign">
  6482. <summary>
  6483. A node that represents an unary prefix decrement.
  6484. </summary>
  6485. </member>
  6486. <member name="F:Microsoft.Scripting.Ast.ExpressionType.PostIncrementAssign">
  6487. <summary>
  6488. A node that represents an unary postfix increment.
  6489. </summary>
  6490. </member>
  6491. <member name="F:Microsoft.Scripting.Ast.ExpressionType.PostDecrementAssign">
  6492. <summary>
  6493. A node that represents an unary postfix decrement.
  6494. </summary>
  6495. </member>
  6496. <member name="F:Microsoft.Scripting.Ast.ExpressionType.TypeEqual">
  6497. <summary>
  6498. A node that represents a exact type test.
  6499. </summary>
  6500. </member>
  6501. <member name="F:Microsoft.Scripting.Ast.ExpressionType.OnesComplement">
  6502. <summary>
  6503. A node that represents a ones complement.
  6504. </summary>
  6505. </member>
  6506. <member name="F:Microsoft.Scripting.Ast.ExpressionType.IsTrue">
  6507. <summary>
  6508. A node that represents a true condition value.
  6509. </summary>
  6510. </member>
  6511. <member name="F:Microsoft.Scripting.Ast.ExpressionType.IsFalse">
  6512. <summary>
  6513. A node that represents a false condition value.
  6514. </summary>
  6515. </member>
  6516. <member name="T:Microsoft.Scripting.Ast.IndexExpression">
  6517. <summary>
  6518. Represents indexing a property or array.
  6519. </summary>
  6520. </member>
  6521. <member name="M:Microsoft.Scripting.Ast.IndexExpression.Update(Microsoft.Scripting.Ast.Expression,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  6522. <summary>
  6523. Creates a new expression that is like this one, but using the
  6524. supplied children. If all of the children are the same, it will
  6525. return this expression.
  6526. </summary>
  6527. <param name="object">The <see cref="P:Microsoft.Scripting.Ast.IndexExpression.Object"/> property of the result.</param>
  6528. <param name="arguments">The <see cref="P:Microsoft.Scripting.Ast.IndexExpression.Arguments"/> property of the result.</param>
  6529. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  6530. </member>
  6531. <member name="M:Microsoft.Scripting.Ast.IndexExpression.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  6532. <summary>
  6533. Dispatches to the specific visit method for this node type.
  6534. </summary>
  6535. </member>
  6536. <member name="P:Microsoft.Scripting.Ast.IndexExpression.NodeType">
  6537. <summary>
  6538. Returns the node type of this <see cref="T:Microsoft.Scripting.Ast.Expression"/>. (Inherited from <see cref="T:Microsoft.Scripting.Ast.Expression"/>.)
  6539. </summary>
  6540. <returns>The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> that represents this expression.</returns>
  6541. </member>
  6542. <member name="P:Microsoft.Scripting.Ast.IndexExpression.Type">
  6543. <summary>
  6544. Gets the static type of the expression that this <see cref="T:Microsoft.Scripting.Ast.Expression"/> represents. (Inherited from <see cref="T:Microsoft.Scripting.Ast.Expression"/>.)
  6545. </summary>
  6546. <returns>The <see cref="P:Microsoft.Scripting.Ast.IndexExpression.Type"/> that represents the static type of the expression.</returns>
  6547. </member>
  6548. <member name="P:Microsoft.Scripting.Ast.IndexExpression.Object">
  6549. <summary>
  6550. An object to index.
  6551. </summary>
  6552. </member>
  6553. <member name="P:Microsoft.Scripting.Ast.IndexExpression.Indexer">
  6554. <summary>
  6555. Gets the <see cref="T:System.Reflection.PropertyInfo"/> for the property if the expression represents an indexed property, returns null otherwise.
  6556. </summary>
  6557. </member>
  6558. <member name="P:Microsoft.Scripting.Ast.IndexExpression.Arguments">
  6559. <summary>
  6560. Gets the arguments to be used to index the property or array.
  6561. </summary>
  6562. </member>
  6563. <member name="T:Microsoft.Scripting.Ast.InvocationExpression">
  6564. <summary>
  6565. Represents an expression that applies a delegate or lambda expression to a list of argument expressions.
  6566. </summary>
  6567. </member>
  6568. <member name="M:Microsoft.Scripting.Ast.InvocationExpression.Update(Microsoft.Scripting.Ast.Expression,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  6569. <summary>
  6570. Creates a new expression that is like this one, but using the
  6571. supplied children. If all of the children are the same, it will
  6572. return this expression.
  6573. </summary>
  6574. <param name="expression">The <see cref="P:Microsoft.Scripting.Ast.InvocationExpression.Expression"/> property of the result.</param>
  6575. <param name="arguments">The <see cref="P:Microsoft.Scripting.Ast.InvocationExpression.Arguments"/> property of the result.</param>
  6576. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  6577. </member>
  6578. <member name="M:Microsoft.Scripting.Ast.InvocationExpression.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  6579. <summary>
  6580. Dispatches to the specific visit method for this node type.
  6581. </summary>
  6582. </member>
  6583. <member name="P:Microsoft.Scripting.Ast.InvocationExpression.Type">
  6584. <summary>
  6585. Gets the static type of the expression that this <see cref="P:Microsoft.Scripting.Ast.InvocationExpression.Expression"/> represents.
  6586. </summary>
  6587. <returns>The <see cref="P:Microsoft.Scripting.Ast.InvocationExpression.Type"/> that represents the static type of the expression.</returns>
  6588. </member>
  6589. <member name="P:Microsoft.Scripting.Ast.InvocationExpression.NodeType">
  6590. <summary>
  6591. Returns the node type of this Expression. Extension nodes should return
  6592. ExpressionType.Extension when overriding this method.
  6593. </summary>
  6594. <returns>The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> of the expression.</returns>
  6595. </member>
  6596. <member name="P:Microsoft.Scripting.Ast.InvocationExpression.Expression">
  6597. <summary>
  6598. Gets the delegate or lambda expression to be applied.
  6599. </summary>
  6600. </member>
  6601. <member name="P:Microsoft.Scripting.Ast.InvocationExpression.Arguments">
  6602. <summary>
  6603. Gets the arguments that the delegate or lambda expression is applied to.
  6604. </summary>
  6605. </member>
  6606. <member name="T:Microsoft.Scripting.Ast.LabelTarget">
  6607. <summary>
  6608. Used to denote the target of a <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/>.
  6609. </summary>
  6610. </member>
  6611. <member name="M:Microsoft.Scripting.Ast.LabelTarget.ToString">
  6612. <summary>
  6613. Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
  6614. </summary>
  6615. <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>. </returns>
  6616. </member>
  6617. <member name="P:Microsoft.Scripting.Ast.LabelTarget.Name">
  6618. <summary>
  6619. Gets the name of the label.
  6620. </summary>
  6621. <remarks>The label's name is provided for information purposes only.</remarks>
  6622. </member>
  6623. <member name="P:Microsoft.Scripting.Ast.LabelTarget.Type">
  6624. <summary>
  6625. The type of value that is passed when jumping to the label
  6626. (or System.Void if no value should be passed).
  6627. </summary>
  6628. </member>
  6629. <member name="T:Microsoft.Scripting.Ast.LabelExpression">
  6630. <summary>
  6631. Represents a label, which can be placed in any <see cref="T:Microsoft.Scripting.Ast.Expression"/> context. If
  6632. it is jumped to, it will get the value provided by the corresponding
  6633. <see cref="T:Microsoft.Scripting.Ast.GotoExpression"/>. Otherwise, it gets the value in <see cref="P:Microsoft.Scripting.Ast.LabelExpression.DefaultValue"/>. If the
  6634. <see cref="P:Microsoft.Scripting.Ast.LabelExpression.Type"/> equals System.Void, no value should be provided.
  6635. </summary>
  6636. </member>
  6637. <member name="M:Microsoft.Scripting.Ast.LabelExpression.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  6638. <summary>
  6639. Dispatches to the specific visit method for this node type.
  6640. </summary>
  6641. </member>
  6642. <member name="M:Microsoft.Scripting.Ast.LabelExpression.Update(Microsoft.Scripting.Ast.LabelTarget,Microsoft.Scripting.Ast.Expression)">
  6643. <summary>
  6644. Creates a new expression that is like this one, but using the
  6645. supplied children. If all of the children are the same, it will
  6646. return this expression.
  6647. </summary>
  6648. <param name="target">The <see cref="P:Microsoft.Scripting.Ast.LabelExpression.Target"/> property of the result.</param>
  6649. <param name="defaultValue">The <see cref="P:Microsoft.Scripting.Ast.LabelExpression.DefaultValue"/> property of the result.</param>
  6650. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  6651. </member>
  6652. <member name="P:Microsoft.Scripting.Ast.LabelExpression.Type">
  6653. <summary>
  6654. Gets the static type of the expression that this <see cref="T:Microsoft.Scripting.Ast.Expression"/> represents. (Inherited from <see cref="T:Microsoft.Scripting.Ast.Expression"/>.)
  6655. </summary>
  6656. <returns>The <see cref="P:Microsoft.Scripting.Ast.LabelExpression.Type"/> that represents the static type of the expression.</returns>
  6657. </member>
  6658. <member name="P:Microsoft.Scripting.Ast.LabelExpression.NodeType">
  6659. <summary>
  6660. Returns the node type of this <see cref="T:Microsoft.Scripting.Ast.Expression"/>. (Inherited from <see cref="T:Microsoft.Scripting.Ast.Expression"/>.)
  6661. </summary>
  6662. <returns>The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> that represents this expression.</returns>
  6663. </member>
  6664. <member name="P:Microsoft.Scripting.Ast.LabelExpression.Target">
  6665. <summary>
  6666. The <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/> which this label is associated with.
  6667. </summary>
  6668. </member>
  6669. <member name="P:Microsoft.Scripting.Ast.LabelExpression.DefaultValue">
  6670. <summary>
  6671. The value of the <see cref="T:Microsoft.Scripting.Ast.LabelExpression"/> when the label is reached through
  6672. normal control flow (e.g. is not jumped to).
  6673. </summary>
  6674. </member>
  6675. <member name="T:Microsoft.Scripting.Ast.LambdaExpression">
  6676. <summary>
  6677. Creates a <see cref="T:Microsoft.Scripting.Ast.LambdaExpression"/> node.
  6678. This captures a block of code that is similar to a .NET method body.
  6679. </summary>
  6680. <remarks>
  6681. Lambda expressions take input through parameters and are expected to be fully bound.
  6682. </remarks>
  6683. </member>
  6684. <member name="M:Microsoft.Scripting.Ast.LambdaExpression.Compile">
  6685. <summary>
  6686. Produces a delegate that represents the lambda expression.
  6687. </summary>
  6688. <returns>A delegate containing the compiled version of the lambda.</returns>
  6689. </member>
  6690. <member name="M:Microsoft.Scripting.Ast.LambdaExpression.Compile(System.Runtime.CompilerServices.DebugInfoGenerator)">
  6691. <summary>
  6692. Produces a delegate that represents the lambda expression.
  6693. </summary>
  6694. <param name="debugInfoGenerator">Debugging information generator used by the compiler to mark sequence points and annotate local variables.</param>
  6695. <returns>A delegate containing the compiled version of the lambda.</returns>
  6696. </member>
  6697. <member name="M:Microsoft.Scripting.Ast.LambdaExpression.CompileToMethod(System.Reflection.Emit.MethodBuilder)">
  6698. <summary>
  6699. Compiles the lambda into a method definition.
  6700. </summary>
  6701. <param name="method">A <see cref="T:System.Reflection.Emit.MethodBuilder"/> which will be used to hold the lambda's IL.</param>
  6702. </member>
  6703. <member name="M:Microsoft.Scripting.Ast.LambdaExpression.CompileToMethod(System.Reflection.Emit.MethodBuilder,System.Runtime.CompilerServices.DebugInfoGenerator)">
  6704. <summary>
  6705. Compiles the lambda into a method definition and custom debug information.
  6706. </summary>
  6707. <param name="method">A <see cref="T:System.Reflection.Emit.MethodBuilder"/> which will be used to hold the lambda's IL.</param>
  6708. <param name="debugInfoGenerator">Debugging information generator used by the compiler to mark sequence points and annotate local variables.</param>
  6709. </member>
  6710. <member name="P:Microsoft.Scripting.Ast.LambdaExpression.Type">
  6711. <summary>
  6712. Gets the static type of the expression that this <see cref="T:Microsoft.Scripting.Ast.Expression"/> represents. (Inherited from <see cref="T:Microsoft.Scripting.Ast.Expression"/>.)
  6713. </summary>
  6714. <returns>The <see cref="P:Microsoft.Scripting.Ast.LambdaExpression.Type"/> that represents the static type of the expression.</returns>
  6715. </member>
  6716. <member name="P:Microsoft.Scripting.Ast.LambdaExpression.NodeType">
  6717. <summary>
  6718. Returns the node type of this <see cref="T:Microsoft.Scripting.Ast.Expression"/>. (Inherited from <see cref="T:Microsoft.Scripting.Ast.Expression"/>.)
  6719. </summary>
  6720. <returns>The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> that represents this expression.</returns>
  6721. </member>
  6722. <member name="P:Microsoft.Scripting.Ast.LambdaExpression.Parameters">
  6723. <summary>
  6724. Gets the parameters of the lambda expression.
  6725. </summary>
  6726. </member>
  6727. <member name="P:Microsoft.Scripting.Ast.LambdaExpression.Name">
  6728. <summary>
  6729. Gets the name of the lambda expression.
  6730. </summary>
  6731. <remarks>Used for debugging purposes.</remarks>
  6732. </member>
  6733. <member name="P:Microsoft.Scripting.Ast.LambdaExpression.Body">
  6734. <summary>
  6735. Gets the body of the lambda expression.
  6736. </summary>
  6737. </member>
  6738. <member name="P:Microsoft.Scripting.Ast.LambdaExpression.ReturnType">
  6739. <summary>
  6740. Gets the return type of the lambda expression.
  6741. </summary>
  6742. </member>
  6743. <member name="P:Microsoft.Scripting.Ast.LambdaExpression.TailCall">
  6744. <summary>
  6745. Gets the value that indicates if the lambda expression will be compiled with
  6746. tail call optimization.
  6747. </summary>
  6748. </member>
  6749. <member name="T:Microsoft.Scripting.Ast.Expression`1">
  6750. <summary>
  6751. Defines a <see cref="T:Microsoft.Scripting.Ast.Expression`1"/> node.
  6752. This captures a block of code that is similar to a .NET method body.
  6753. </summary>
  6754. <typeparam name="TDelegate">The type of the delegate.</typeparam>
  6755. <remarks>
  6756. Lambda expressions take input through parameters and are expected to be fully bound.
  6757. </remarks>
  6758. </member>
  6759. <member name="M:Microsoft.Scripting.Ast.Expression`1.Compile">
  6760. <summary>
  6761. Produces a delegate that represents the lambda expression.
  6762. </summary>
  6763. <returns>A delegate containing the compiled version of the lambda.</returns>
  6764. </member>
  6765. <member name="M:Microsoft.Scripting.Ast.Expression`1.Compile(System.Runtime.CompilerServices.DebugInfoGenerator)">
  6766. <summary>
  6767. Produces a delegate that represents the lambda expression.
  6768. </summary>
  6769. <param name="debugInfoGenerator">Debugging information generator used by the compiler to mark sequence points and annotate local variables.</param>
  6770. <returns>A delegate containing the compiled version of the lambda.</returns>
  6771. </member>
  6772. <member name="M:Microsoft.Scripting.Ast.Expression`1.Update(Microsoft.Scripting.Ast.Expression,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.ParameterExpression})">
  6773. <summary>
  6774. Creates a new expression that is like this one, but using the
  6775. supplied children. If all of the children are the same, it will
  6776. return this expression.
  6777. </summary>
  6778. <param name="body">The <see cref="P:Microsoft.Scripting.Ast.LambdaExpression.Body">Body</see> property of the result.</param>
  6779. <param name="parameters">The <see cref="P:Microsoft.Scripting.Ast.LambdaExpression.Parameters">Parameters</see> property of the result.</param>
  6780. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  6781. </member>
  6782. <member name="M:Microsoft.Scripting.Ast.Expression`1.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  6783. <summary>
  6784. Dispatches to the specific visit method for this node type.
  6785. </summary>
  6786. </member>
  6787. <member name="T:Microsoft.Scripting.Ast.ListInitExpression">
  6788. <summary>
  6789. Represents a constructor call that has a collection initializer.
  6790. </summary>
  6791. <remarks>
  6792. Use the <see cref="M:ListInit"/> factory methods to create a ListInitExpression.
  6793. The value of the NodeType property of a ListInitExpression is ListInit.
  6794. </remarks>
  6795. </member>
  6796. <member name="M:Microsoft.Scripting.Ast.ListInitExpression.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  6797. <summary>
  6798. Dispatches to the specific visit method for this node type.
  6799. </summary>
  6800. </member>
  6801. <member name="M:Microsoft.Scripting.Ast.ListInitExpression.Reduce">
  6802. <summary>
  6803. Reduces the binary expression node to a simpler expression.
  6804. If CanReduce returns true, this should return a valid expression.
  6805. This method is allowed to return another node which itself
  6806. must be reduced.
  6807. </summary>
  6808. <returns>The reduced expression.</returns>
  6809. </member>
  6810. <member name="M:Microsoft.Scripting.Ast.ListInitExpression.Update(Microsoft.Scripting.Ast.NewExpression,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.ElementInit})">
  6811. <summary>
  6812. Creates a new expression that is like this one, but using the
  6813. supplied children. If all of the children are the same, it will
  6814. return this expression.
  6815. </summary>
  6816. <param name="newExpression">The <see cref="P:Microsoft.Scripting.Ast.ListInitExpression.NewExpression"/> property of the result.</param>
  6817. <param name="initializers">The <see cref="P:Microsoft.Scripting.Ast.ListInitExpression.Initializers"/> property of the result.</param>
  6818. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  6819. </member>
  6820. <member name="P:Microsoft.Scripting.Ast.ListInitExpression.NodeType">
  6821. <summary>
  6822. Returns the node type of this <see cref="T:Microsoft.Scripting.Ast.Expression"/>. (Inherited from <see cref="T:Microsoft.Scripting.Ast.Expression"/>.)
  6823. </summary>
  6824. <returns>The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> that represents this expression.</returns>
  6825. </member>
  6826. <member name="P:Microsoft.Scripting.Ast.ListInitExpression.Type">
  6827. <summary>
  6828. Gets the static type of the expression that this <see cref="T:Microsoft.Scripting.Ast.Expression"/> represents. (Inherited from <see cref="T:Microsoft.Scripting.Ast.Expression"/>.)
  6829. </summary>
  6830. <returns>The <see cref="P:Microsoft.Scripting.Ast.ListInitExpression.Type"/> that represents the static type of the expression.</returns>
  6831. </member>
  6832. <member name="P:Microsoft.Scripting.Ast.ListInitExpression.CanReduce">
  6833. <summary>
  6834. Gets a value that indicates whether the expression tree node can be reduced.
  6835. </summary>
  6836. </member>
  6837. <member name="P:Microsoft.Scripting.Ast.ListInitExpression.NewExpression">
  6838. <summary>
  6839. Gets the expression that contains a call to the constructor of a collection type.
  6840. </summary>
  6841. </member>
  6842. <member name="P:Microsoft.Scripting.Ast.ListInitExpression.Initializers">
  6843. <summary>
  6844. Gets the element initializers that are used to initialize a collection.
  6845. </summary>
  6846. </member>
  6847. <member name="T:Microsoft.Scripting.Ast.RuntimeVariablesExpression">
  6848. <summary>
  6849. An expression that provides runtime read/write access to variables.
  6850. Needed to implement "eval" in some dynamic languages.
  6851. Evaluates to an instance of <see cref="T:System.Collections.Generic.IList`1"/> when executed.
  6852. </summary>
  6853. </member>
  6854. <member name="M:Microsoft.Scripting.Ast.RuntimeVariablesExpression.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  6855. <summary>
  6856. Dispatches to the specific visit method for this node type.
  6857. </summary>
  6858. </member>
  6859. <member name="M:Microsoft.Scripting.Ast.RuntimeVariablesExpression.Update(System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.ParameterExpression})">
  6860. <summary>
  6861. Creates a new expression that is like this one, but using the
  6862. supplied children. If all of the children are the same, it will
  6863. return this expression.
  6864. </summary>
  6865. <param name="variables">The <see cref="P:Microsoft.Scripting.Ast.RuntimeVariablesExpression.Variables"/> property of the result.</param>
  6866. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  6867. </member>
  6868. <member name="P:Microsoft.Scripting.Ast.RuntimeVariablesExpression.Type">
  6869. <summary>
  6870. Gets the static type of the expression that this <see cref="T:Microsoft.Scripting.Ast.Expression"/> represents.
  6871. </summary>
  6872. <returns>The <see cref="P:Microsoft.Scripting.Ast.RuntimeVariablesExpression.Type"/> that represents the static type of the expression.</returns>
  6873. </member>
  6874. <member name="P:Microsoft.Scripting.Ast.RuntimeVariablesExpression.NodeType">
  6875. <summary>
  6876. Returns the node type of this Expression. Extension nodes should return
  6877. ExpressionType.Extension when overriding this method.
  6878. </summary>
  6879. <returns>The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> of the expression.</returns>
  6880. </member>
  6881. <member name="P:Microsoft.Scripting.Ast.RuntimeVariablesExpression.Variables">
  6882. <summary>
  6883. The variables or parameters to which to provide runtime access.
  6884. </summary>
  6885. </member>
  6886. <member name="T:Microsoft.Scripting.Ast.LoopExpression">
  6887. <summary>
  6888. Represents an infinite loop. It can be exited with "break".
  6889. </summary>
  6890. </member>
  6891. <member name="M:Microsoft.Scripting.Ast.LoopExpression.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  6892. <summary>
  6893. Dispatches to the specific visit method for this node type.
  6894. </summary>
  6895. </member>
  6896. <member name="M:Microsoft.Scripting.Ast.LoopExpression.Update(Microsoft.Scripting.Ast.LabelTarget,Microsoft.Scripting.Ast.LabelTarget,Microsoft.Scripting.Ast.Expression)">
  6897. <summary>
  6898. Creates a new expression that is like this one, but using the
  6899. supplied children. If all of the children are the same, it will
  6900. return this expression.
  6901. </summary>
  6902. <param name="breakLabel">The <see cref="P:Microsoft.Scripting.Ast.LoopExpression.BreakLabel"/> property of the result.</param>
  6903. <param name="continueLabel">The <see cref="P:Microsoft.Scripting.Ast.LoopExpression.ContinueLabel"/> property of the result.</param>
  6904. <param name="body">The <see cref="P:Microsoft.Scripting.Ast.LoopExpression.Body"/> property of the result.</param>
  6905. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  6906. </member>
  6907. <member name="P:Microsoft.Scripting.Ast.LoopExpression.Type">
  6908. <summary>
  6909. Gets the static type of the expression that this <see cref="T:Microsoft.Scripting.Ast.Expression"/> represents.
  6910. </summary>
  6911. <returns>The <see cref="P:Microsoft.Scripting.Ast.LoopExpression.Type"/> that represents the static type of the expression.</returns>
  6912. </member>
  6913. <member name="P:Microsoft.Scripting.Ast.LoopExpression.NodeType">
  6914. <summary>
  6915. Returns the node type of this Expression. Extension nodes should return
  6916. ExpressionType.Extension when overriding this method.
  6917. </summary>
  6918. <returns>The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> of the expression.</returns>
  6919. </member>
  6920. <member name="P:Microsoft.Scripting.Ast.LoopExpression.Body">
  6921. <summary>
  6922. Gets the <see cref="T:Microsoft.Scripting.Ast.Expression"/> that is the body of the loop.
  6923. </summary>
  6924. </member>
  6925. <member name="P:Microsoft.Scripting.Ast.LoopExpression.BreakLabel">
  6926. <summary>
  6927. Gets the <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/> that is used by the loop body as a break statement target.
  6928. </summary>
  6929. </member>
  6930. <member name="P:Microsoft.Scripting.Ast.LoopExpression.ContinueLabel">
  6931. <summary>
  6932. Gets the <see cref="T:Microsoft.Scripting.Ast.LabelTarget"/> that is used by the loop body as a continue statement target.
  6933. </summary>
  6934. </member>
  6935. <member name="T:Microsoft.Scripting.Ast.MemberAssignment">
  6936. <summary>
  6937. Represents assignment to a member of an object.
  6938. </summary>
  6939. </member>
  6940. <member name="T:Microsoft.Scripting.Ast.MemberBinding">
  6941. <summary>
  6942. Provides the base class from which the classes that represent bindings that are used to initialize members of a newly created object derive.
  6943. </summary>
  6944. </member>
  6945. <member name="M:Microsoft.Scripting.Ast.MemberBinding.#ctor(Microsoft.Scripting.Ast.MemberBindingType,System.Reflection.MemberInfo)">
  6946. <summary>
  6947. Initializes an instance of <see cref="T:Microsoft.Scripting.Ast.MemberBinding"/> class.
  6948. </summary>
  6949. <param name="type">The type of member binding.</param>
  6950. <param name="member">The field or property to be initialized.</param>
  6951. </member>
  6952. <member name="M:Microsoft.Scripting.Ast.MemberBinding.ToString">
  6953. <summary>
  6954. Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
  6955. </summary>
  6956. <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>. </returns>
  6957. </member>
  6958. <member name="P:Microsoft.Scripting.Ast.MemberBinding.BindingType">
  6959. <summary>
  6960. Gets the type of binding that is represented.
  6961. </summary>
  6962. </member>
  6963. <member name="P:Microsoft.Scripting.Ast.MemberBinding.Member">
  6964. <summary>
  6965. Gets the field or property to be initialized.
  6966. </summary>
  6967. </member>
  6968. <member name="M:Microsoft.Scripting.Ast.MemberAssignment.Update(Microsoft.Scripting.Ast.Expression)">
  6969. <summary>
  6970. Creates a new expression that is like this one, but using the
  6971. supplied children. If all of the children are the same, it will
  6972. return this expression.
  6973. </summary>
  6974. <param name="expression">The <see cref="P:Microsoft.Scripting.Ast.MemberAssignment.Expression"/> property of the result.</param>
  6975. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  6976. </member>
  6977. <member name="P:Microsoft.Scripting.Ast.MemberAssignment.Expression">
  6978. <summary>
  6979. Gets the <see cref="P:Microsoft.Scripting.Ast.MemberAssignment.Expression"/> which represents the object whose member is being assigned to.
  6980. </summary>
  6981. </member>
  6982. <member name="T:Microsoft.Scripting.Ast.MemberBindingType">
  6983. <summary>
  6984. Describes the binding types that are used in MemberInitExpression objects.
  6985. </summary>
  6986. </member>
  6987. <member name="F:Microsoft.Scripting.Ast.MemberBindingType.Assignment">
  6988. <summary>
  6989. A binding that represents initializing a member with the value of an expression.
  6990. </summary>
  6991. </member>
  6992. <member name="F:Microsoft.Scripting.Ast.MemberBindingType.MemberBinding">
  6993. <summary>
  6994. A binding that represents recursively initializing members of a member.
  6995. </summary>
  6996. </member>
  6997. <member name="F:Microsoft.Scripting.Ast.MemberBindingType.ListBinding">
  6998. <summary>
  6999. A binding that represents initializing a member of type <see cref="T:System.Collections.IList"/> or <see cref="T:System.Collections.Generic.ICollection`1"/> from a list of elements.
  7000. </summary>
  7001. </member>
  7002. <member name="T:Microsoft.Scripting.Ast.MemberExpression">
  7003. <summary>
  7004. Represents accessing a field or property.
  7005. </summary>
  7006. </member>
  7007. <member name="M:Microsoft.Scripting.Ast.MemberExpression.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  7008. <summary>
  7009. Dispatches to the specific visit method for this node type.
  7010. </summary>
  7011. </member>
  7012. <member name="M:Microsoft.Scripting.Ast.MemberExpression.Update(Microsoft.Scripting.Ast.Expression)">
  7013. <summary>
  7014. Creates a new expression that is like this one, but using the
  7015. supplied children. If all of the children are the same, it will
  7016. return this expression.
  7017. </summary>
  7018. <param name="expression">The <see cref="P:Microsoft.Scripting.Ast.MemberExpression.Expression"/> property of the result.</param>
  7019. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  7020. </member>
  7021. <member name="P:Microsoft.Scripting.Ast.MemberExpression.Member">
  7022. <summary>
  7023. Gets the field or property to be accessed.
  7024. </summary>
  7025. </member>
  7026. <member name="P:Microsoft.Scripting.Ast.MemberExpression.Expression">
  7027. <summary>
  7028. Gets the containing object of the field or property.
  7029. </summary>
  7030. </member>
  7031. <member name="P:Microsoft.Scripting.Ast.MemberExpression.NodeType">
  7032. <summary>
  7033. Returns the node type of this <see cref="P:Microsoft.Scripting.Ast.MemberExpression.Expression"/>. (Inherited from <see cref="P:Microsoft.Scripting.Ast.MemberExpression.Expression"/>.)
  7034. </summary>
  7035. <returns>The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> that represents this expression.</returns>
  7036. </member>
  7037. <member name="T:Microsoft.Scripting.Ast.MemberInitExpression">
  7038. <summary>
  7039. Represents calling a constructor and initializing one or more members of the new object.
  7040. </summary>
  7041. </member>
  7042. <member name="M:Microsoft.Scripting.Ast.MemberInitExpression.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  7043. <summary>
  7044. Dispatches to the specific visit method for this node type.
  7045. </summary>
  7046. </member>
  7047. <member name="M:Microsoft.Scripting.Ast.MemberInitExpression.Reduce">
  7048. <summary>
  7049. Reduces the <see cref="T:Microsoft.Scripting.Ast.MemberInitExpression"/> to a simpler expression.
  7050. If CanReduce returns true, this should return a valid expression.
  7051. This method is allowed to return another node which itself
  7052. must be reduced.
  7053. </summary>
  7054. <returns>The reduced expression.</returns>
  7055. </member>
  7056. <member name="M:Microsoft.Scripting.Ast.MemberInitExpression.Update(Microsoft.Scripting.Ast.NewExpression,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.MemberBinding})">
  7057. <summary>
  7058. Creates a new expression that is like this one, but using the
  7059. supplied children. If all of the children are the same, it will
  7060. return this expression.
  7061. </summary>
  7062. <param name="newExpression">The <see cref="P:Microsoft.Scripting.Ast.MemberInitExpression.NewExpression"/> property of the result.</param>
  7063. <param name="bindings">The <see cref="P:Microsoft.Scripting.Ast.MemberInitExpression.Bindings"/> property of the result.</param>
  7064. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  7065. </member>
  7066. <member name="P:Microsoft.Scripting.Ast.MemberInitExpression.Type">
  7067. <summary>
  7068. Gets the static type of the expression that this <see cref="T:Microsoft.Scripting.Ast.Expression"/> represents.
  7069. </summary>
  7070. <returns>The <see cref="P:Microsoft.Scripting.Ast.MemberInitExpression.Type"/> that represents the static type of the expression.</returns>
  7071. </member>
  7072. <member name="P:Microsoft.Scripting.Ast.MemberInitExpression.CanReduce">
  7073. <summary>
  7074. Gets a value that indicates whether the expression tree node can be reduced.
  7075. </summary>
  7076. </member>
  7077. <member name="P:Microsoft.Scripting.Ast.MemberInitExpression.NodeType">
  7078. <summary>
  7079. Returns the node type of this Expression. Extension nodes should return
  7080. ExpressionType.Extension when overriding this method.
  7081. </summary>
  7082. <returns>The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> of the expression.</returns>
  7083. </member>
  7084. <member name="P:Microsoft.Scripting.Ast.MemberInitExpression.NewExpression">
  7085. <summary>Gets the expression that represents the constructor call.</summary>
  7086. <returns>A <see cref="T:System.Linq.Expressions.NewExpression" /> that represents the constructor call.</returns>
  7087. </member>
  7088. <member name="P:Microsoft.Scripting.Ast.MemberInitExpression.Bindings">
  7089. <summary>Gets the bindings that describe how to initialize the members of the newly created object.</summary>
  7090. <returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> of <see cref="T:System.Linq.Expressions.MemberBinding" /> objects which describe how to initialize the members.</returns>
  7091. </member>
  7092. <member name="T:Microsoft.Scripting.Ast.MemberListBinding">
  7093. <summary>
  7094. Represents initializing the elements of a collection member of a newly created object.
  7095. </summary>
  7096. </member>
  7097. <member name="M:Microsoft.Scripting.Ast.MemberListBinding.Update(System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.ElementInit})">
  7098. <summary>
  7099. Creates a new expression that is like this one, but using the
  7100. supplied children. If all of the children are the same, it will
  7101. return this expression.
  7102. </summary>
  7103. <param name="initializers">The <see cref="P:Microsoft.Scripting.Ast.MemberListBinding.Initializers"/> property of the result.</param>
  7104. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  7105. </member>
  7106. <member name="P:Microsoft.Scripting.Ast.MemberListBinding.Initializers">
  7107. <summary>
  7108. Gets the element initializers for initializing a collection member of a newly created object.
  7109. </summary>
  7110. </member>
  7111. <member name="T:Microsoft.Scripting.Ast.MemberMemberBinding">
  7112. <summary>
  7113. Represents initializing members of a member of a newly created object.
  7114. </summary>
  7115. <remarks>
  7116. Use the <see cref="M:MemberBind"/> factory methods to create a <see cref="T:Microsoft.Scripting.Ast.MemberMemberBinding"/>.
  7117. The value of the <see cref="P:MemberBinding.BindingType"/> property of a <see cref="T:Microsoft.Scripting.Ast.MemberMemberBinding"/> object is <see cref="T:Microsoft.Scripting.Ast.MemberBinding"/>.
  7118. </remarks>
  7119. </member>
  7120. <member name="M:Microsoft.Scripting.Ast.MemberMemberBinding.Update(System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.MemberBinding})">
  7121. <summary>
  7122. Creates a new expression that is like this one, but using the
  7123. supplied children. If all of the children are the same, it will
  7124. return this expression.
  7125. </summary>
  7126. <param name="bindings">The <see cref="P:Microsoft.Scripting.Ast.MemberMemberBinding.Bindings"/> property of the result.</param>
  7127. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  7128. </member>
  7129. <member name="P:Microsoft.Scripting.Ast.MemberMemberBinding.Bindings">
  7130. <summary>
  7131. Gets the bindings that describe how to initialize the members of a member.
  7132. </summary>
  7133. </member>
  7134. <member name="T:Microsoft.Scripting.Ast.MethodCallExpression">
  7135. <summary>
  7136. Represents a call to either static or an instance method.
  7137. </summary>
  7138. </member>
  7139. <member name="M:Microsoft.Scripting.Ast.MethodCallExpression.Update(Microsoft.Scripting.Ast.Expression,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  7140. <summary>
  7141. Creates a new expression that is like this one, but using the
  7142. supplied children. If all of the children are the same, it will
  7143. return this expression.
  7144. </summary>
  7145. <param name="object">The <see cref="P:Microsoft.Scripting.Ast.MethodCallExpression.Object"/> property of the result.</param>
  7146. <param name="arguments">The <see cref="P:Microsoft.Scripting.Ast.MethodCallExpression.Arguments"/> property of the result.</param>
  7147. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  7148. </member>
  7149. <member name="M:Microsoft.Scripting.Ast.MethodCallExpression.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  7150. <summary>
  7151. Dispatches to the specific visit method for this node type.
  7152. </summary>
  7153. </member>
  7154. <member name="M:Microsoft.Scripting.Ast.MethodCallExpression.Rewrite(Microsoft.Scripting.Ast.Expression,System.Collections.Generic.IList{Microsoft.Scripting.Ast.Expression})">
  7155. <summary>
  7156. Returns a new MethodCallExpression replacing the existing instance/args with the
  7157. newly provided instance and args. Arguments can be null to use the existing
  7158. arguments.
  7159. This helper is provided to allow re-writing of nodes to not depend on the specific optimized
  7160. subclass of MethodCallExpression which is being used.
  7161. </summary>
  7162. </member>
  7163. <member name="P:Microsoft.Scripting.Ast.MethodCallExpression.NodeType">
  7164. <summary>
  7165. Returns the node type of this <see cref="T:Microsoft.Scripting.Ast.Expression"/>. (Inherited from <see cref="T:Microsoft.Scripting.Ast.Expression"/>.)
  7166. </summary>
  7167. <returns>The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> that represents this expression.</returns>
  7168. </member>
  7169. <member name="P:Microsoft.Scripting.Ast.MethodCallExpression.Type">
  7170. <summary>
  7171. Gets the static type of the expression that this <see cref="T:Microsoft.Scripting.Ast.Expression"/> represents. (Inherited from <see cref="T:Microsoft.Scripting.Ast.Expression"/>.)
  7172. </summary>
  7173. <returns>The <see cref="P:Microsoft.Scripting.Ast.MethodCallExpression.Type"/> that represents the static type of the expression.</returns>
  7174. </member>
  7175. <member name="P:Microsoft.Scripting.Ast.MethodCallExpression.Method">
  7176. <summary>
  7177. Gets the <see cref="T:System.Reflection.MethodInfo"/> for the method to be called.
  7178. </summary>
  7179. </member>
  7180. <member name="P:Microsoft.Scripting.Ast.MethodCallExpression.Object">
  7181. <summary>
  7182. Gets the <see cref="T:Microsoft.Scripting.Ast.Expression"/> that represents the instance
  7183. for instance method calls or null for static method cals.
  7184. </summary>
  7185. </member>
  7186. <member name="P:Microsoft.Scripting.Ast.MethodCallExpression.Arguments">
  7187. <summary>
  7188. Gets a collection of expressions that represent arguments to the method call.
  7189. </summary>
  7190. </member>
  7191. <member name="T:Microsoft.Scripting.Ast.NewArrayExpression">
  7192. <summary>
  7193. Represents creating a new array and possibly initializing the elements of the new array.
  7194. </summary>
  7195. </member>
  7196. <member name="M:Microsoft.Scripting.Ast.NewArrayExpression.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  7197. <summary>
  7198. Dispatches to the specific visit method for this node type.
  7199. </summary>
  7200. </member>
  7201. <member name="M:Microsoft.Scripting.Ast.NewArrayExpression.Update(System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  7202. <summary>
  7203. Creates a new expression that is like this one, but using the
  7204. supplied children. If all of the children are the same, it will
  7205. return this expression.
  7206. </summary>
  7207. <param name="expressions">The <see cref="P:Microsoft.Scripting.Ast.NewArrayExpression.Expressions"/> property of the result.</param>
  7208. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  7209. </member>
  7210. <member name="P:Microsoft.Scripting.Ast.NewArrayExpression.Type">
  7211. <summary>
  7212. Gets the static type of the expression that this <see cref="T:Microsoft.Scripting.Ast.Expression"/> represents. (Inherited from <see cref="T:Microsoft.Scripting.Ast.Expression"/>.)
  7213. </summary>
  7214. <returns>The <see cref="P:Microsoft.Scripting.Ast.NewArrayExpression.Type"/> that represents the static type of the expression.</returns>
  7215. </member>
  7216. <member name="P:Microsoft.Scripting.Ast.NewArrayExpression.Expressions">
  7217. <summary>
  7218. Gets the bounds of the array if the value of the <see cref="P:NodeType"/> property is NewArrayBounds, or the values to initialize the elements of the new array if the value of the <see cref="P:NodeType"/> property is NewArrayInit.
  7219. </summary>
  7220. </member>
  7221. <member name="P:Microsoft.Scripting.Ast.NewArrayInitExpression.NodeType">
  7222. <summary>
  7223. Returns the node type of this <see cref="T:Microsoft.Scripting.Ast.Expression"/>. (Inherited from <see cref="T:Microsoft.Scripting.Ast.Expression"/>.)
  7224. </summary>
  7225. <returns>The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> that represents this expression.</returns>
  7226. </member>
  7227. <member name="P:Microsoft.Scripting.Ast.NewArrayBoundsExpression.NodeType">
  7228. <summary>
  7229. Returns the node type of this <see cref="T:Microsoft.Scripting.Ast.Expression"/>. (Inherited from <see cref="T:Microsoft.Scripting.Ast.Expression"/>.)
  7230. </summary>
  7231. <returns>The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> that represents this expression.</returns>
  7232. </member>
  7233. <member name="T:Microsoft.Scripting.Ast.NewExpression">
  7234. <summary>
  7235. Represents a constructor call.
  7236. </summary>
  7237. </member>
  7238. <member name="M:Microsoft.Scripting.Ast.NewExpression.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  7239. <summary>
  7240. Dispatches to the specific visit method for this node type.
  7241. </summary>
  7242. </member>
  7243. <member name="M:Microsoft.Scripting.Ast.NewExpression.Update(System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression})">
  7244. <summary>
  7245. Creates a new expression that is like this one, but using the
  7246. supplied children. If all of the children are the same, it will
  7247. return this expression.
  7248. </summary>
  7249. <param name="arguments">The <see cref="P:Microsoft.Scripting.Ast.NewExpression.Arguments"/> property of the result.</param>
  7250. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  7251. </member>
  7252. <member name="P:Microsoft.Scripting.Ast.NewExpression.Type">
  7253. <summary>
  7254. Gets the static type of the expression that this <see cref="T:Microsoft.Scripting.Ast.Expression"/> represents. (Inherited from <see cref="T:Microsoft.Scripting.Ast.Expression"/>.)
  7255. </summary>
  7256. <returns>The <see cref="P:Microsoft.Scripting.Ast.NewExpression.Type"/> that represents the static type of the expression.</returns>
  7257. </member>
  7258. <member name="P:Microsoft.Scripting.Ast.NewExpression.NodeType">
  7259. <summary>
  7260. Returns the node type of this <see cref="T:Microsoft.Scripting.Ast.Expression"/>. (Inherited from <see cref="T:Microsoft.Scripting.Ast.Expression"/>.)
  7261. </summary>
  7262. <returns>The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> that represents this expression.</returns>
  7263. </member>
  7264. <member name="P:Microsoft.Scripting.Ast.NewExpression.Constructor">
  7265. <summary>
  7266. Gets the called constructor.
  7267. </summary>
  7268. </member>
  7269. <member name="P:Microsoft.Scripting.Ast.NewExpression.Arguments">
  7270. <summary>
  7271. Gets the arguments to the constructor.
  7272. </summary>
  7273. </member>
  7274. <member name="P:Microsoft.Scripting.Ast.NewExpression.Members">
  7275. <summary>
  7276. Gets the members that can retrieve the values of the fields that were initialized with constructor arguments.
  7277. </summary>
  7278. </member>
  7279. <member name="T:Microsoft.Scripting.Ast.ParameterExpression">
  7280. <summary>
  7281. Represents a named parameter expression.
  7282. </summary>
  7283. </member>
  7284. <member name="M:Microsoft.Scripting.Ast.ParameterExpression.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  7285. <summary>
  7286. Dispatches to the specific visit method for this node type.
  7287. </summary>
  7288. </member>
  7289. <member name="P:Microsoft.Scripting.Ast.ParameterExpression.Type">
  7290. <summary>
  7291. Gets the static type of the expression that this <see cref="T:Microsoft.Scripting.Ast.Expression"/> represents. (Inherited from <see cref="T:Microsoft.Scripting.Ast.Expression"/>.)
  7292. </summary>
  7293. <returns>The <see cref="P:Microsoft.Scripting.Ast.ParameterExpression.Type"/> that represents the static type of the expression.</returns>
  7294. </member>
  7295. <member name="P:Microsoft.Scripting.Ast.ParameterExpression.NodeType">
  7296. <summary>
  7297. Returns the node type of this <see cref="T:Microsoft.Scripting.Ast.Expression"/>. (Inherited from <see cref="T:Microsoft.Scripting.Ast.Expression"/>.)
  7298. </summary>
  7299. <returns>The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> that represents this expression.</returns>
  7300. </member>
  7301. <member name="P:Microsoft.Scripting.Ast.ParameterExpression.Name">
  7302. <summary>
  7303. The Name of the parameter or variable.
  7304. </summary>
  7305. </member>
  7306. <member name="P:Microsoft.Scripting.Ast.ParameterExpression.IsByRef">
  7307. <summary>
  7308. Indicates that this ParameterExpression is to be treated as a ByRef parameter.
  7309. </summary>
  7310. </member>
  7311. <member name="T:Microsoft.Scripting.Ast.ByRefParameterExpression">
  7312. <summary>
  7313. Specialized subclass to avoid holding onto the byref flag in a
  7314. parameter expression. This version always holds onto the expression
  7315. type explicitly and therefore derives from TypedParameterExpression.
  7316. </summary>
  7317. </member>
  7318. <member name="T:Microsoft.Scripting.Ast.TypedParameterExpression">
  7319. <summary>
  7320. Specialized subclass which holds onto the type of the expression for
  7321. uncommon types.
  7322. </summary>
  7323. </member>
  7324. <member name="T:Microsoft.Scripting.Ast.PrimitiveParameterExpression`1">
  7325. <summary>
  7326. Generic type to avoid needing explicit storage for primitive data types
  7327. which are commonly used.
  7328. </summary>
  7329. </member>
  7330. <member name="T:Microsoft.Scripting.Ast.SwitchCase">
  7331. <summary>
  7332. Represents one case of a <see cref="T:Microsoft.Scripting.Ast.SwitchExpression"/>.
  7333. </summary>
  7334. </member>
  7335. <member name="M:Microsoft.Scripting.Ast.SwitchCase.ToString">
  7336. <summary>
  7337. Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
  7338. </summary>
  7339. <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>. </returns>
  7340. </member>
  7341. <member name="M:Microsoft.Scripting.Ast.SwitchCase.Update(System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.Expression},Microsoft.Scripting.Ast.Expression)">
  7342. <summary>
  7343. Creates a new expression that is like this one, but using the
  7344. supplied children. If all of the children are the same, it will
  7345. return this expression.
  7346. </summary>
  7347. <param name="testValues">The <see cref="P:Microsoft.Scripting.Ast.SwitchCase.TestValues"/> property of the result.</param>
  7348. <param name="body">The <see cref="P:Microsoft.Scripting.Ast.SwitchCase.Body"/> property of the result.</param>
  7349. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  7350. </member>
  7351. <member name="P:Microsoft.Scripting.Ast.SwitchCase.TestValues">
  7352. <summary>
  7353. Gets the values of this case. This case is selected for execution when the <see cref="P:Microsoft.Scripting.Ast.SwitchExpression.SwitchValue"/> matches any of these values.
  7354. </summary>
  7355. </member>
  7356. <member name="P:Microsoft.Scripting.Ast.SwitchCase.Body">
  7357. <summary>
  7358. Gets the body of this case.
  7359. </summary>
  7360. </member>
  7361. <member name="T:Microsoft.Scripting.Ast.SwitchExpression">
  7362. <summary>
  7363. Represents a control expression that handles multiple selections by passing control to a <see cref="T:Microsoft.Scripting.Ast.SwitchCase"/>.
  7364. </summary>
  7365. </member>
  7366. <member name="M:Microsoft.Scripting.Ast.SwitchExpression.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  7367. <summary>
  7368. Dispatches to the specific visit method for this node type.
  7369. </summary>
  7370. </member>
  7371. <member name="M:Microsoft.Scripting.Ast.SwitchExpression.Update(Microsoft.Scripting.Ast.Expression,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.SwitchCase},Microsoft.Scripting.Ast.Expression)">
  7372. <summary>
  7373. Creates a new expression that is like this one, but using the
  7374. supplied children. If all of the children are the same, it will
  7375. return this expression.
  7376. </summary>
  7377. <param name="switchValue">The <see cref="P:Microsoft.Scripting.Ast.SwitchExpression.SwitchValue"/> property of the result.</param>
  7378. <param name="cases">The <see cref="P:Microsoft.Scripting.Ast.SwitchExpression.Cases"/> property of the result.</param>
  7379. <param name="defaultBody">The <see cref="P:Microsoft.Scripting.Ast.SwitchExpression.DefaultBody"/> property of the result.</param>
  7380. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  7381. </member>
  7382. <member name="P:Microsoft.Scripting.Ast.SwitchExpression.Type">
  7383. <summary>
  7384. Gets the static type of the expression that this <see cref="T:Microsoft.Scripting.Ast.Expression"/> represents.
  7385. </summary>
  7386. <returns>The <see cref="P:Microsoft.Scripting.Ast.SwitchExpression.Type"/> that represents the static type of the expression.</returns>
  7387. </member>
  7388. <member name="P:Microsoft.Scripting.Ast.SwitchExpression.NodeType">
  7389. <summary>
  7390. Returns the node type of this Expression. Extension nodes should return
  7391. ExpressionType.Extension when overriding this method.
  7392. </summary>
  7393. <returns>The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> of the expression.</returns>
  7394. </member>
  7395. <member name="P:Microsoft.Scripting.Ast.SwitchExpression.SwitchValue">
  7396. <summary>
  7397. Gets the test for the switch.
  7398. </summary>
  7399. </member>
  7400. <member name="P:Microsoft.Scripting.Ast.SwitchExpression.Cases">
  7401. <summary>
  7402. Gets the collection of <see cref="T:Microsoft.Scripting.Ast.SwitchCase"/> objects for the switch.
  7403. </summary>
  7404. </member>
  7405. <member name="P:Microsoft.Scripting.Ast.SwitchExpression.DefaultBody">
  7406. <summary>
  7407. Gets the test for the switch.
  7408. </summary>
  7409. </member>
  7410. <member name="P:Microsoft.Scripting.Ast.SwitchExpression.Comparison">
  7411. <summary>
  7412. Gets the equality comparison method, if any.
  7413. </summary>
  7414. </member>
  7415. <member name="T:Microsoft.Scripting.Ast.TryExpression">
  7416. <summary>
  7417. Represents a try/catch/finally/fault block.
  7418. The body is protected by the try block.
  7419. The handlers consist of a set of <see cref="T:Microsoft.Scripting.Ast.CatchBlock"/>s that can either be catch or filters.
  7420. The fault runs if an exception is thrown.
  7421. The finally runs regardless of how control exits the body.
  7422. Only one of fault or finally can be supplied.
  7423. The return type of the try block must match the return type of any associated catch statements.
  7424. </summary>
  7425. </member>
  7426. <member name="M:Microsoft.Scripting.Ast.TryExpression.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  7427. <summary>
  7428. Dispatches to the specific visit method for this node type.
  7429. </summary>
  7430. </member>
  7431. <member name="M:Microsoft.Scripting.Ast.TryExpression.Update(Microsoft.Scripting.Ast.Expression,System.Collections.Generic.IEnumerable{Microsoft.Scripting.Ast.CatchBlock},Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression)">
  7432. <summary>
  7433. Creates a new expression that is like this one, but using the
  7434. supplied children. If all of the children are the same, it will
  7435. return this expression.
  7436. </summary>
  7437. <param name="body">The <see cref="P:Microsoft.Scripting.Ast.TryExpression.Body"/> property of the result.</param>
  7438. <param name="handlers">The <see cref="P:Microsoft.Scripting.Ast.TryExpression.Handlers"/> property of the result.</param>
  7439. <param name="finally">The <see cref="P:Microsoft.Scripting.Ast.TryExpression.Finally"/> property of the result.</param>
  7440. <param name="fault">The <see cref="P:Microsoft.Scripting.Ast.TryExpression.Fault"/> property of the result.</param>
  7441. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  7442. </member>
  7443. <member name="P:Microsoft.Scripting.Ast.TryExpression.Type">
  7444. <summary>
  7445. Gets the static type of the expression that this <see cref="T:Microsoft.Scripting.Ast.Expression"/> represents. (Inherited from <see cref="T:Microsoft.Scripting.Ast.Expression"/>.)
  7446. </summary>
  7447. <returns>The <see cref="P:Microsoft.Scripting.Ast.TryExpression.Type"/> that represents the static type of the expression.</returns>
  7448. </member>
  7449. <member name="P:Microsoft.Scripting.Ast.TryExpression.NodeType">
  7450. <summary>
  7451. Returns the node type of this <see cref="T:Microsoft.Scripting.Ast.Expression"/>. (Inherited from <see cref="T:Microsoft.Scripting.Ast.Expression"/>.)
  7452. </summary>
  7453. <returns>The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> that represents this expression.</returns>
  7454. </member>
  7455. <member name="P:Microsoft.Scripting.Ast.TryExpression.Body">
  7456. <summary>
  7457. Gets the <see cref="T:Microsoft.Scripting.Ast.Expression"/> representing the body of the try block.
  7458. </summary>
  7459. </member>
  7460. <member name="P:Microsoft.Scripting.Ast.TryExpression.Handlers">
  7461. <summary>
  7462. Gets the collection of <see cref="T:Microsoft.Scripting.Ast.CatchBlock"/>s associated with the try block.
  7463. </summary>
  7464. </member>
  7465. <member name="P:Microsoft.Scripting.Ast.TryExpression.Finally">
  7466. <summary>
  7467. Gets the <see cref="T:Microsoft.Scripting.Ast.Expression"/> representing the finally block.
  7468. </summary>
  7469. </member>
  7470. <member name="P:Microsoft.Scripting.Ast.TryExpression.Fault">
  7471. <summary>
  7472. Gets the <see cref="T:Microsoft.Scripting.Ast.Expression"/> representing the fault block.
  7473. </summary>
  7474. </member>
  7475. <member name="T:Microsoft.Scripting.Ast.TypeBinaryExpression">
  7476. <summary>
  7477. Represents an operation between an expression and a type.
  7478. </summary>
  7479. </member>
  7480. <member name="M:Microsoft.Scripting.Ast.TypeBinaryExpression.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  7481. <summary>
  7482. Dispatches to the specific visit method for this node type.
  7483. </summary>
  7484. </member>
  7485. <member name="M:Microsoft.Scripting.Ast.TypeBinaryExpression.Update(Microsoft.Scripting.Ast.Expression)">
  7486. <summary>
  7487. Creates a new expression that is like this one, but using the
  7488. supplied children. If all of the children are the same, it will
  7489. return this expression.
  7490. </summary>
  7491. <param name="expression">The <see cref="P:Microsoft.Scripting.Ast.TypeBinaryExpression.Expression"/> property of the result.</param>
  7492. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  7493. </member>
  7494. <member name="P:Microsoft.Scripting.Ast.TypeBinaryExpression.Type">
  7495. <summary>
  7496. Gets the static type of the expression that this <see cref="P:Microsoft.Scripting.Ast.TypeBinaryExpression.Expression"/> represents.
  7497. </summary>
  7498. <returns>The <see cref="P:Microsoft.Scripting.Ast.TypeBinaryExpression.Type"/> that represents the static type of the expression.</returns>
  7499. </member>
  7500. <member name="P:Microsoft.Scripting.Ast.TypeBinaryExpression.NodeType">
  7501. <summary>
  7502. Returns the node type of this Expression. Extension nodes should return
  7503. ExpressionType.Extension when overriding this method.
  7504. </summary>
  7505. <returns>The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> of the expression.</returns>
  7506. </member>
  7507. <member name="P:Microsoft.Scripting.Ast.TypeBinaryExpression.Expression">
  7508. <summary>
  7509. Gets the expression operand of a type test operation.
  7510. </summary>
  7511. </member>
  7512. <member name="P:Microsoft.Scripting.Ast.TypeBinaryExpression.TypeOperand">
  7513. <summary>
  7514. Gets the type operand of a type test operation.
  7515. </summary>
  7516. </member>
  7517. <member name="M:System.Dynamic.Utils.TypeUtils.GetBooleanOperator(System.Type,System.String)">
  7518. <summary>
  7519. Searches for an operator method on the type. The method must have
  7520. the specified signature, no generic arguments, and have the
  7521. SpecialName bit set. Also searches inherited operator methods.
  7522. NOTE: This was designed to satisfy the needs of op_True and
  7523. op_False, because we have to do runtime lookup for those. It may
  7524. not work right for unary operators in general.
  7525. </summary>
  7526. </member>
  7527. <member name="M:System.Dynamic.Utils.TypeUtils.CanCache(System.Type)">
  7528. <summary>
  7529. We can cache references to types, as long as they aren't in
  7530. collectable assemblies. Unfortunately, we can't really distinguish
  7531. between different flavors of assemblies. But, we can at least
  7532. create a whitelist for types in mscorlib (so we get the primitives)
  7533. and System.Core (so we find Func/Action overloads, etc).
  7534. </summary>
  7535. </member>
  7536. <member name="T:Microsoft.Scripting.Ast.UnaryExpression">
  7537. <summary>
  7538. Represents an expression that has a unary operator.
  7539. </summary>
  7540. </member>
  7541. <member name="M:Microsoft.Scripting.Ast.UnaryExpression.Accept(Microsoft.Scripting.Ast.ExpressionVisitor)">
  7542. <summary>
  7543. Dispatches to the specific visit method for this node type.
  7544. </summary>
  7545. </member>
  7546. <member name="M:Microsoft.Scripting.Ast.UnaryExpression.Reduce">
  7547. <summary>
  7548. Reduces the expression node to a simpler expression.
  7549. If CanReduce returns true, this should return a valid expression.
  7550. This method is allowed to return another node which itself
  7551. must be reduced.
  7552. </summary>
  7553. <returns>The reduced expression.</returns>
  7554. </member>
  7555. <member name="M:Microsoft.Scripting.Ast.UnaryExpression.Update(Microsoft.Scripting.Ast.Expression)">
  7556. <summary>
  7557. Creates a new expression that is like this one, but using the
  7558. supplied children. If all of the children are the same, it will
  7559. return this expression.
  7560. </summary>
  7561. <param name="operand">The <see cref="P:Microsoft.Scripting.Ast.UnaryExpression.Operand"/> property of the result.</param>
  7562. <returns>This expression if no children changed, or an expression with the updated children.</returns>
  7563. </member>
  7564. <member name="P:Microsoft.Scripting.Ast.UnaryExpression.Type">
  7565. <summary>
  7566. Gets the static type of the expression that this <see cref="T:Microsoft.Scripting.Ast.Expression"/> represents. (Inherited from <see cref="T:Microsoft.Scripting.Ast.Expression"/>.)
  7567. </summary>
  7568. <returns>The <see cref="P:Microsoft.Scripting.Ast.UnaryExpression.Type"/> that represents the static type of the expression.</returns>
  7569. </member>
  7570. <member name="P:Microsoft.Scripting.Ast.UnaryExpression.NodeType">
  7571. <summary>
  7572. Returns the node type of this <see cref="T:Microsoft.Scripting.Ast.Expression"/>. (Inherited from <see cref="T:Microsoft.Scripting.Ast.Expression"/>.)
  7573. </summary>
  7574. <returns>The <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> that represents this expression.</returns>
  7575. </member>
  7576. <member name="P:Microsoft.Scripting.Ast.UnaryExpression.Operand">
  7577. <summary>
  7578. Gets the operand of the unary operation.
  7579. </summary>
  7580. <returns> An <see cref="T:Microsoft.Scripting.Ast.ExpressionType"/> that represents the operand of the unary operation.</returns>
  7581. </member>
  7582. <member name="P:Microsoft.Scripting.Ast.UnaryExpression.Method">
  7583. <summary>
  7584. Gets the implementing method for the unary operation.
  7585. </summary>
  7586. <returns>The <see cref="T:System.Reflection.MethodInfo"/> that represents the implementing method.</returns>
  7587. </member>
  7588. <member name="P:Microsoft.Scripting.Ast.UnaryExpression.IsLifted">
  7589. <summary>
  7590. Gets a value that indicates whether the expression tree node represents a lifted call to an operator.
  7591. </summary>
  7592. <returns>true if the node represents a lifted call; otherwise, false.</returns>
  7593. </member>
  7594. <member name="P:Microsoft.Scripting.Ast.UnaryExpression.IsLiftedToNull">
  7595. <summary>
  7596. Gets a value that indicates whether the expression tree node represents a lifted call to an operator whose return type is lifted to a nullable type.
  7597. </summary>
  7598. <returns>true if the operator's return type is lifted to a nullable type; otherwise, false.</returns>
  7599. </member>
  7600. <member name="P:Microsoft.Scripting.Ast.UnaryExpression.CanReduce">
  7601. <summary>
  7602. Gets a value that indicates whether the expression tree node can be reduced.
  7603. </summary>
  7604. </member>
  7605. <member name="T:System.Runtime.CompilerServices.Closure">
  7606. <summary>
  7607. This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
  7608. Represents the runtime state of a dynamically generated method.
  7609. </summary>
  7610. </member>
  7611. <member name="F:System.Runtime.CompilerServices.Closure.Constants">
  7612. <summary>
  7613. Represents the non-trivial constants and locally executable expressions that are referenced by a dynamically generated method.
  7614. </summary>
  7615. </member>
  7616. <member name="F:System.Runtime.CompilerServices.Closure.Locals">
  7617. <summary>
  7618. Represents the hoisted local variables from the parent context.
  7619. </summary>
  7620. </member>
  7621. <member name="M:System.Runtime.CompilerServices.Closure.#ctor(System.Object[],System.Object[])">
  7622. <summary>
  7623. Creates an object to hold state of a dynamically generated method.
  7624. </summary>
  7625. <param name="constants">The constant values used by the method.</param>
  7626. <param name="locals">The hoisted local variables from the parent context.</param>
  7627. </member>
  7628. <member name="T:Microsoft.Scripting.Ast.Compiler.CompilerScope">
  7629. <summary>
  7630. CompilerScope is the data structure which the Compiler keeps information
  7631. related to compiling scopes. It stores the following information:
  7632. 1. Parent relationship (for resolving variables)
  7633. 2. Information about hoisted variables
  7634. 3. Information for resolving closures
  7635. Instances are produced by VariableBinder, which does a tree walk
  7636. looking for scope nodes: LambdaExpression and BlockExpression.
  7637. </summary>
  7638. </member>
  7639. <member name="F:Microsoft.Scripting.Ast.Compiler.CompilerScope._parent">
  7640. <summary>
  7641. parent scope, if any
  7642. </summary>
  7643. </member>
  7644. <member name="F:Microsoft.Scripting.Ast.Compiler.CompilerScope.Node">
  7645. <summary>
  7646. The expression node for this scope
  7647. Can be LambdaExpression, BlockExpression, or CatchBlock
  7648. </summary>
  7649. </member>
  7650. <member name="F:Microsoft.Scripting.Ast.Compiler.CompilerScope.IsMethod">
  7651. <summary>
  7652. True if this node corresponds to an IL method.
  7653. Can only be true if the Node is a LambdaExpression.
  7654. But inlined lambdas will have it set to false.
  7655. </summary>
  7656. </member>
  7657. <member name="F:Microsoft.Scripting.Ast.Compiler.CompilerScope.NeedsClosure">
  7658. <summary>
  7659. Does this scope (or any inner scope) close over variables from any
  7660. parent scope?
  7661. Populated by VariableBinder
  7662. </summary>
  7663. </member>
  7664. <member name="F:Microsoft.Scripting.Ast.Compiler.CompilerScope.Definitions">
  7665. <summary>
  7666. Variables defined in this scope, and whether they're hoisted or not
  7667. Populated by VariableBinder
  7668. </summary>
  7669. </member>
  7670. <member name="F:Microsoft.Scripting.Ast.Compiler.CompilerScope.ReferenceCount">
  7671. <summary>
  7672. Each variable referenced within this scope, and how often it was referenced
  7673. Populated by VariableBinder
  7674. </summary>
  7675. </member>
  7676. <member name="F:Microsoft.Scripting.Ast.Compiler.CompilerScope.MergedScopes">
  7677. <summary>
  7678. Scopes whose variables were merged into this one
  7679. Created lazily as we create hundreds of compiler scopes w/o merging scopes when compiling rules.
  7680. </summary>
  7681. </member>
  7682. <member name="F:Microsoft.Scripting.Ast.Compiler.CompilerScope._hoistedLocals">
  7683. <summary>
  7684. The scope's hoisted locals, if any.
  7685. Provides storage for variables that are referenced from nested lambdas
  7686. </summary>
  7687. </member>
  7688. <member name="F:Microsoft.Scripting.Ast.Compiler.CompilerScope._closureHoistedLocals">
  7689. <summary>
  7690. The closed over hoisted locals
  7691. </summary>
  7692. </member>
  7693. <member name="F:Microsoft.Scripting.Ast.Compiler.CompilerScope._locals">
  7694. <summary>
  7695. Mutable dictionary that maps non-hoisted variables to either local
  7696. slots or argument slots
  7697. </summary>
  7698. </member>
  7699. <member name="M:Microsoft.Scripting.Ast.Compiler.CompilerScope.Enter(Microsoft.Scripting.Ast.Compiler.LambdaCompiler,Microsoft.Scripting.Ast.Compiler.CompilerScope)">
  7700. <summary>
  7701. Called when entering a lambda/block. Performs all variable allocation
  7702. needed, including creating hoisted locals and IL locals for accessing
  7703. parent locals
  7704. </summary>
  7705. </member>
  7706. <member name="M:Microsoft.Scripting.Ast.Compiler.CompilerScope.Exit">
  7707. <summary>
  7708. Frees unnamed locals, clears state associated with this compiler
  7709. </summary>
  7710. </member>
  7711. <member name="M:Microsoft.Scripting.Ast.Compiler.CompilerScope.AddLocal(Microsoft.Scripting.Ast.Compiler.LambdaCompiler,Microsoft.Scripting.Ast.ParameterExpression)">
  7712. <summary>
  7713. Adds a new virtual variable corresponding to an IL local
  7714. </summary>
  7715. </member>
  7716. <member name="M:Microsoft.Scripting.Ast.Compiler.CompilerScope.ResolveVariable(Microsoft.Scripting.Ast.ParameterExpression,Microsoft.Scripting.Ast.Compiler.HoistedLocals)">
  7717. <summary>
  7718. Resolve a local variable in this scope or a closed over scope
  7719. Throws if the variable is defined
  7720. </summary>
  7721. </member>
  7722. <member name="P:Microsoft.Scripting.Ast.Compiler.CompilerScope.NearestHoistedLocals">
  7723. <summary>
  7724. This scope's hoisted locals, or the closed over locals, if any
  7725. Equivalent to: _hoistedLocals ?? _closureHoistedLocals
  7726. </summary>
  7727. </member>
  7728. <member name="M:Microsoft.Scripting.Ast.ConstantCheck.AnalyzeTypeIs(Microsoft.Scripting.Ast.TypeBinaryExpression)">
  7729. <summary>
  7730. If the result of a TypeBinaryExpression is known statically, this
  7731. returns the result, otherwise it returns null, meaning we'll need
  7732. to perform the IsInst instruction at runtime.
  7733. The result of this function must be equivalent to IsInst, or
  7734. null.
  7735. </summary>
  7736. </member>
  7737. <member name="M:Microsoft.Scripting.Ast.ConstantCheck.AnalyzeTypeIs(Microsoft.Scripting.Ast.Expression,System.Type)">
  7738. <summary>
  7739. If the result of an isinst opcode is known statically, this
  7740. returns the result, otherwise it returns null, meaning we'll need
  7741. to perform the IsInst instruction at runtime.
  7742. The result of this function must be equivalent to IsInst, or
  7743. null.
  7744. </summary>
  7745. </member>
  7746. <member name="M:Microsoft.Scripting.Ast.DebugViewWriter.WriteTo(Microsoft.Scripting.Ast.Expression,System.IO.TextWriter)">
  7747. <summary>
  7748. Write out the given AST
  7749. </summary>
  7750. </member>
  7751. <member name="M:Microsoft.Scripting.Ast.DebugViewWriter.ContainsWhiteSpace(System.String)">
  7752. <summary>
  7753. Return true if the input string contains any whitespace character.
  7754. Otherwise false.
  7755. </summary>
  7756. </member>
  7757. <member name="T:Microsoft.Scripting.Ast.Compiler.HoistedLocals">
  7758. <summary>
  7759. Stores information about locals and arguments that are hoisted into
  7760. the closure array because they're referenced in an inner lambda.
  7761. This class is sometimes emitted as a runtime constant for internal
  7762. use to hoist variables/parameters in quoted expressions
  7763. Invariant: this class stores no mutable state
  7764. </summary>
  7765. </member>
  7766. <member name="T:Microsoft.Scripting.Ast.Compiler.KeyedQueue`2">
  7767. <summary>
  7768. A simple dictionary of queues, keyed off a particular type
  7769. This is useful for storing free lists of variables
  7770. </summary>
  7771. </member>
  7772. <member name="T:Microsoft.Scripting.Ast.Compiler.LambdaCompiler">
  7773. <summary>
  7774. Dynamic Language Runtime Compiler.
  7775. This part compiles lambdas.
  7776. </summary>
  7777. <summary>
  7778. LambdaCompiler is responsible for compiling individual lambda (LambdaExpression). The complete tree may
  7779. contain multiple lambdas, the Compiler class is reponsible for compiling the whole tree, individual
  7780. lambdas are then compiled by the LambdaCompiler.
  7781. </summary>
  7782. </member>
  7783. <member name="M:Microsoft.Scripting.Ast.Compiler.LambdaCompiler.UpdateEmitAsTailCallFlag(Microsoft.Scripting.Ast.Compiler.LambdaCompiler.CompilationFlags,Microsoft.Scripting.Ast.Compiler.LambdaCompiler.CompilationFlags)">
  7784. <summary>
  7785. Update the flag with a new EmitAsTailCall flag
  7786. </summary>
  7787. </member>
  7788. <member name="M:Microsoft.Scripting.Ast.Compiler.LambdaCompiler.UpdateEmitExpressionStartFlag(Microsoft.Scripting.Ast.Compiler.LambdaCompiler.CompilationFlags,Microsoft.Scripting.Ast.Compiler.LambdaCompiler.CompilationFlags)">
  7789. <summary>
  7790. Update the flag with a new EmitExpressionStart flag
  7791. </summary>
  7792. </member>
  7793. <member name="M:Microsoft.Scripting.Ast.Compiler.LambdaCompiler.UpdateEmitAsTypeFlag(Microsoft.Scripting.Ast.Compiler.LambdaCompiler.CompilationFlags,Microsoft.Scripting.Ast.Compiler.LambdaCompiler.CompilationFlags)">
  7794. <summary>
  7795. Update the flag with a new EmitAsType flag
  7796. </summary>
  7797. </member>
  7798. <member name="M:Microsoft.Scripting.Ast.Compiler.LambdaCompiler.EmitExpression(Microsoft.Scripting.Ast.Expression)">
  7799. <summary>
  7800. Generates code for this expression in a value position.
  7801. This method will leave the value of the expression
  7802. on the top of the stack typed as Type.
  7803. </summary>
  7804. </member>
  7805. <member name="M:Microsoft.Scripting.Ast.Compiler.LambdaCompiler.EmitExpressionAsVoid(Microsoft.Scripting.Ast.Expression)">
  7806. <summary>
  7807. Emits an expression and discards the result. For some nodes this emits
  7808. more optimial code then EmitExpression/Pop
  7809. </summary>
  7810. </member>
  7811. <member name="M:Microsoft.Scripting.Ast.Compiler.LambdaCompiler.EmitArguments(System.Reflection.MethodBase,Microsoft.Scripting.Ast.IArgumentProvider)">
  7812. <summary>
  7813. Emits arguments to a call, and returns an array of writebacks that
  7814. should happen after the call.
  7815. </summary>
  7816. </member>
  7817. <member name="M:Microsoft.Scripting.Ast.Compiler.LambdaCompiler.EmitArguments(System.Reflection.MethodBase,Microsoft.Scripting.Ast.IArgumentProvider,System.Int32)">
  7818. <summary>
  7819. Emits arguments to a call, and returns an array of writebacks that
  7820. should happen after the call. For emitting dynamic expressions, we
  7821. need to skip the first parameter of the method (the call site).
  7822. </summary>
  7823. </member>
  7824. <member name="M:Microsoft.Scripting.Ast.Compiler.LambdaCompiler.EmitDelegateConstruction(Microsoft.Scripting.Ast.Compiler.LambdaCompiler)">
  7825. <summary>
  7826. Emits code which creates new instance of the delegateType delegate.
  7827. Since the delegate is getting closed over the "Closure" argument, this
  7828. cannot be used with virtual/instance methods (inner must be static method)
  7829. </summary>
  7830. </member>
  7831. <member name="M:Microsoft.Scripting.Ast.Compiler.LambdaCompiler.EmitDelegateConstruction(Microsoft.Scripting.Ast.LambdaExpression)">
  7832. <summary>
  7833. Emits a delegate to the method generated for the LambdaExpression.
  7834. May end up creating a wrapper to match the requested delegate type.
  7835. </summary>
  7836. <param name="lambda">Lambda for which to generate a delegate</param>
  7837. </member>
  7838. <member name="M:Microsoft.Scripting.Ast.Compiler.LambdaCompiler.EmitLambdaBody(Microsoft.Scripting.Ast.Compiler.CompilerScope,System.Boolean,Microsoft.Scripting.Ast.Compiler.LambdaCompiler.CompilationFlags)">
  7839. <summary>
  7840. Emits the lambda body. If inlined, the parameters should already be
  7841. pushed onto the IL stack.
  7842. </summary>
  7843. <param name="parent">The parent scope.</param>
  7844. <param name="inlined">true if the lambda is inlined; false otherwise.</param>
  7845. <param name="flags">
  7846. The emum to specify if the lambda is compiled with the tail call optimization.
  7847. </param>
  7848. </member>
  7849. <member name="M:Microsoft.Scripting.Ast.Compiler.LambdaCompiler.NotEmpty(Microsoft.Scripting.Ast.Expression)">
  7850. <summary>
  7851. returns true if the expression is not empty, otherwise false.
  7852. </summary>
  7853. </member>
  7854. <member name="M:Microsoft.Scripting.Ast.Compiler.LambdaCompiler.Significant(Microsoft.Scripting.Ast.Expression)">
  7855. <summary>
  7856. returns true if the expression is NOT empty and is not debug info,
  7857. or a block that contains only insignificant expressions.
  7858. </summary>
  7859. </member>
  7860. <member name="M:Microsoft.Scripting.Ast.Compiler.LambdaCompiler.EmitExpressionAndBranch(System.Boolean,Microsoft.Scripting.Ast.Expression,System.Reflection.Emit.Label)">
  7861. <summary>
  7862. Emits the expression and then either brtrue/brfalse to the label.
  7863. </summary>
  7864. <param name="branchValue">True for brtrue, false for brfalse.</param>
  7865. <param name="node">The expression to emit.</param>
  7866. <param name="label">The label to conditionally branch to.</param>
  7867. <remarks>
  7868. This function optimizes equality and short circuiting logical
  7869. operators to avoid double-branching, minimize instruction count,
  7870. and generate similar IL to the C# compiler. This is important for
  7871. the JIT to optimize patterns like:
  7872. x != null AndAlso x.GetType() == typeof(SomeType)
  7873. One optimization we don't do: we always emits at least one
  7874. conditional branch to the label, and always possibly falls through,
  7875. even if we know if the branch will always succeed or always fail.
  7876. We do this to avoid generating unreachable code, which is fine for
  7877. the CLR JIT, but doesn't verify with peverify.
  7878. This kind of optimization could be implemented safely, by doing
  7879. constant folding over conditionals and logical expressions at the
  7880. tree level.
  7881. </remarks>
  7882. </member>
  7883. <member name="M:Microsoft.Scripting.Ast.Compiler.LambdaCompiler.GetTestValueType(Microsoft.Scripting.Ast.SwitchExpression)">
  7884. <summary>
  7885. Gets the common test test value type of the SwitchExpression.
  7886. </summary>
  7887. </member>
  7888. <member name="M:Microsoft.Scripting.Ast.Compiler.LambdaCompiler.DefineSwitchCaseLabel(Microsoft.Scripting.Ast.SwitchCase,System.Reflection.Emit.Label@,System.Boolean@)">
  7889. <summary>
  7890. Creates the label for this case.
  7891. Optimization: if the body is just a goto, and we can branch
  7892. to it, put the goto target directly in the jump table.
  7893. </summary>
  7894. </member>
  7895. <member name="M:Microsoft.Scripting.Ast.Compiler.LambdaCompiler.EmitCatchStart(Microsoft.Scripting.Ast.CatchBlock)">
  7896. <summary>
  7897. Emits the start of a catch block. The exception value that is provided by the
  7898. CLR is stored in the variable specified by the catch block or popped if no
  7899. variable is provided.
  7900. </summary>
  7901. </member>
  7902. <member name="F:Microsoft.Scripting.Ast.Compiler.LambdaCompiler._sequencePointCleared">
  7903. <summary>
  7904. The value is true if a clearance was emitted and no new sequence point
  7905. has been emitted since that.
  7906. </summary>
  7907. </member>
  7908. <member name="M:Microsoft.Scripting.Ast.Compiler.LambdaCompiler.#ctor(Microsoft.Scripting.Ast.Compiler.AnalyzedTree,Microsoft.Scripting.Ast.LambdaExpression)">
  7909. <summary>
  7910. Creates a lambda compiler that will compile to a dynamic method
  7911. </summary>
  7912. </member>
  7913. <member name="M:Microsoft.Scripting.Ast.Compiler.LambdaCompiler.#ctor(Microsoft.Scripting.Ast.Compiler.AnalyzedTree,Microsoft.Scripting.Ast.LambdaExpression,System.Reflection.Emit.MethodBuilder)">
  7914. <summary>
  7915. Creates a lambda compiler that will compile into the provided Methodbuilder
  7916. </summary>
  7917. </member>
  7918. <member name="M:Microsoft.Scripting.Ast.Compiler.LambdaCompiler.#ctor(Microsoft.Scripting.Ast.Compiler.LambdaCompiler,Microsoft.Scripting.Ast.LambdaExpression)">
  7919. <summary>
  7920. Creates a lambda compiler for an inlined lambda
  7921. </summary>
  7922. </member>
  7923. <member name="M:Microsoft.Scripting.Ast.Compiler.LambdaCompiler.Compile(Microsoft.Scripting.Ast.LambdaExpression,System.Runtime.CompilerServices.DebugInfoGenerator)">
  7924. <summary>
  7925. Compiler entry point
  7926. </summary>
  7927. <param name="lambda">LambdaExpression to compile.</param>
  7928. <param name="debugInfoGenerator">Debug info generator.</param>
  7929. <returns>The compiled delegate.</returns>
  7930. </member>
  7931. <member name="M:Microsoft.Scripting.Ast.Compiler.LambdaCompiler.Compile(Microsoft.Scripting.Ast.LambdaExpression,System.Reflection.Emit.MethodBuilder,System.Runtime.CompilerServices.DebugInfoGenerator)">
  7932. <summary>
  7933. Mutates the MethodBuilder parameter, filling in IL, parameters,
  7934. and return type.
  7935. (probably shouldn't be modifying parameters/return type...)
  7936. </summary>
  7937. </member>
  7938. <member name="M:Microsoft.Scripting.Ast.Compiler.LambdaCompiler.GetLambdaArgument(System.Int32)">
  7939. <summary>
  7940. Gets the argument slot corresponding to the parameter at the given
  7941. index. Assumes that the method takes a certain number of prefix
  7942. arguments, followed by the real parameters stored in Parameters
  7943. </summary>
  7944. </member>
  7945. <member name="M:Microsoft.Scripting.Ast.Compiler.LambdaCompiler.EmitLambdaArgument(System.Int32)">
  7946. <summary>
  7947. Returns the index-th argument. This method provides access to the actual arguments
  7948. defined on the lambda itself, and excludes the possible 0-th closure argument.
  7949. </summary>
  7950. </member>
  7951. <member name="M:Microsoft.Scripting.Ast.Compiler.LambdaCompiler.CreateLazyInitializedField``1(System.String)">
  7952. <summary>
  7953. Creates an unitialized field suitible for private implementation details
  7954. Works with DynamicMethods or TypeBuilders.
  7955. </summary>
  7956. </member>
  7957. <member name="T:System.Runtime.CompilerServices.DebugInfoGenerator">
  7958. <summary>
  7959. Generates debug information for lambdas in an expression tree.
  7960. </summary>
  7961. </member>
  7962. <member name="M:System.Runtime.CompilerServices.DebugInfoGenerator.CreatePdbGenerator">
  7963. <summary>
  7964. Creates PDB symbol generator.
  7965. </summary>
  7966. <returns>PDB symbol generator.</returns>
  7967. </member>
  7968. <member name="M:System.Runtime.CompilerServices.DebugInfoGenerator.MarkSequencePoint(Microsoft.Scripting.Ast.LambdaExpression,System.Int32,Microsoft.Scripting.Ast.DebugInfoExpression)">
  7969. <summary>
  7970. Marks a sequence point.
  7971. </summary>
  7972. <param name="method">The lambda being generated.</param>
  7973. <param name="ilOffset">IL offset where to mark the sequence point.</param>
  7974. <param name="sequencePoint">Debug informaton corresponding to the sequence point.</param>
  7975. </member>
  7976. <member name="T:Microsoft.Scripting.Ast.Set`1">
  7977. <summary>
  7978. A simple hashset, built on Dictionary{K, V}
  7979. </summary>
  7980. </member>
  7981. <member name="T:Microsoft.Scripting.Ast.Compiler.StackSpiller">
  7982. <summary>
  7983. Expression rewriting to spill the CLR stack into temporary variables
  7984. in order to guarantee some properties of code generation, for
  7985. example that we always enter try block on empty stack.
  7986. </summary>
  7987. </member>
  7988. <member name="M:Microsoft.Scripting.Ast.Compiler.StackSpiller.RewriteExpression(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Compiler.StackSpiller.Stack)">
  7989. <summary>
  7990. Rewrite the expression
  7991. </summary>
  7992. <param name="node">Expression to rewrite</param>
  7993. <param name="stack">State of the stack before the expression is emitted.</param>
  7994. <returns>Rewritten expression.</returns>
  7995. </member>
  7996. <member name="M:Microsoft.Scripting.Ast.Compiler.StackSpiller.ToTemp(Microsoft.Scripting.Ast.Expression,Microsoft.Scripting.Ast.Expression@)">
  7997. <summary>
  7998. Will perform:
  7999. save: temp = expression
  8000. return value: temp
  8001. </summary>
  8002. </member>
  8003. <member name="M:Microsoft.Scripting.Ast.Compiler.StackSpiller.MakeBlock(Microsoft.Scripting.Ast.Expression[])">
  8004. <summary>
  8005. Creates a special block that is marked as not allowing jumps in.
  8006. This should not be used for rewriting BlockExpression itself, or
  8007. anything else that supports jumping.
  8008. </summary>
  8009. </member>
  8010. <member name="M:Microsoft.Scripting.Ast.Compiler.StackSpiller.MakeBlock(System.Collections.Generic.IList{Microsoft.Scripting.Ast.Expression})">
  8011. <summary>
  8012. Creates a special block that is marked as not allowing jumps in.
  8013. This should not be used for rewriting BlockExpression itself, or
  8014. anything else that supports jumping.
  8015. </summary>
  8016. </member>
  8017. <member name="F:Microsoft.Scripting.Ast.Compiler.StackSpiller._tm">
  8018. <summary>
  8019. The source of temporary variables
  8020. </summary>
  8021. </member>
  8022. <member name="F:Microsoft.Scripting.Ast.Compiler.StackSpiller._startingStack">
  8023. <summary>
  8024. Initial stack state. Normally empty, but when inlining the lambda
  8025. we might have a non-empty starting stack state.
  8026. </summary>
  8027. </member>
  8028. <member name="F:Microsoft.Scripting.Ast.Compiler.StackSpiller._lambdaRewrite">
  8029. <summary>
  8030. Lambda rewrite result. We need this for inlined lambdas to figure
  8031. out whether we need to guarentee it an empty stack.
  8032. </summary>
  8033. </member>
  8034. <member name="M:Microsoft.Scripting.Ast.Compiler.StackSpiller.AnalyzeLambda(Microsoft.Scripting.Ast.LambdaExpression)">
  8035. <summary>
  8036. Analyzes a lambda, producing a new one that has correct invariants
  8037. for codegen. In particular, it spills the IL stack to temps in
  8038. places where it's invalid to have a non-empty stack (for example,
  8039. entering a try statement).
  8040. </summary>
  8041. </member>
  8042. <member name="M:Microsoft.Scripting.Ast.Compiler.StackSpiller.Clone``1(System.Collections.ObjectModel.ReadOnlyCollection{``0},System.Int32)">
  8043. <summary>
  8044. Will clone an IList into an array of the same size, and copy
  8045. all vaues up to (and NOT including) the max index
  8046. </summary>
  8047. <returns>The cloned array.</returns>
  8048. </member>
  8049. <member name="M:Microsoft.Scripting.Ast.Compiler.StackSpiller.RequireNoRefArgs(System.Reflection.MethodBase)">
  8050. <summary>
  8051. If we are spilling, requires that there are no byref arguments to
  8052. the method call.
  8053. Used for:
  8054. NewExpression,
  8055. MethodCallExpression,
  8056. InvocationExpression,
  8057. DynamicExpression,
  8058. UnaryExpression,
  8059. BinaryExpression.
  8060. </summary>
  8061. <remarks>
  8062. We could support this if spilling happened later in the compiler.
  8063. Other expressions that can emit calls with arguments (such as
  8064. ListInitExpression and IndexExpression) don't allow byref arguments.
  8065. </remarks>
  8066. </member>
  8067. <member name="M:Microsoft.Scripting.Ast.Compiler.StackSpiller.RequireNotRefInstance(Microsoft.Scripting.Ast.Expression)">
  8068. <summary>
  8069. Requires that the instance is not a value type (primitive types are
  8070. okay because they're immutable).
  8071. Used for:
  8072. MethodCallExpression,
  8073. MemberExpression (for properties),
  8074. IndexExpression,
  8075. ListInitExpression,
  8076. MemberInitExpression,
  8077. assign to MemberExpression,
  8078. assign to IndexExpression.
  8079. </summary>
  8080. <remarks>
  8081. We could support this if spilling happened later in the compiler.
  8082. </remarks>
  8083. </member>
  8084. <member name="F:Microsoft.Scripting.Ast.Compiler.StackSpiller.TempMaker._temp">
  8085. <summary>
  8086. Current temporary variable
  8087. </summary>
  8088. </member>
  8089. <member name="F:Microsoft.Scripting.Ast.Compiler.StackSpiller.TempMaker._freeTemps">
  8090. <summary>
  8091. List of free temporary variables. These can be recycled for new temps.
  8092. </summary>
  8093. </member>
  8094. <member name="F:Microsoft.Scripting.Ast.Compiler.StackSpiller.TempMaker._usedTemps">
  8095. <summary>
  8096. Stack of currently active temporary variables.
  8097. </summary>
  8098. </member>
  8099. <member name="F:Microsoft.Scripting.Ast.Compiler.StackSpiller.TempMaker._temps">
  8100. <summary>
  8101. List of all temps created by stackspiller for this rule/lambda
  8102. </summary>
  8103. </member>
  8104. <member name="T:Microsoft.Scripting.Ast.Compiler.StackSpiller.ChildRewriter">
  8105. <summary>
  8106. Rewrites child expressions, spilling them into temps if needed. The
  8107. stack starts in the inital state, and after the first subexpression
  8108. is added it is change to non-empty. This behavior can be overridden
  8109. by setting the stack manually between adds.
  8110. When all children have been added, the caller should rewrite the
  8111. node if Rewrite is true. Then, it should call Finish with etiher
  8112. the orignal expression or the rewritten expression. Finish will call
  8113. Expression.Comma if necessary and return a new Result.
  8114. </summary>
  8115. </member>
  8116. <member name="T:Microsoft.Scripting.Ast.Compiler.SpilledExpressionBlock">
  8117. <summary>
  8118. A special subtype of BlockExpression that indicates to the compiler
  8119. that this block is a spilled expression and should not allow jumps in.
  8120. </summary>
  8121. </member>
  8122. <member name="T:System.Runtime.CompilerServices.SymbolDocumentGenerator">
  8123. <summary>
  8124. Generator of PDB debugging information for expression trees.
  8125. </summary>
  8126. </member>
  8127. <member name="T:Microsoft.Scripting.Ast.Compiler.VariableBinder">
  8128. <summary>
  8129. Determines if variables are closed over in nested lambdas and need to
  8130. be hoisted.
  8131. </summary>
  8132. </member>
  8133. <member name="M:Microsoft.Scripting.Ast.Compiler.ILGen.EmitLoadValueIndirect(Microsoft.Scripting.Ast.Compiler.OffsetTrackingILGenerator,System.Type)">
  8134. <summary>
  8135. Emits a Ldind* instruction for the appropriate type
  8136. </summary>
  8137. </member>
  8138. <member name="M:Microsoft.Scripting.Ast.Compiler.ILGen.EmitStoreValueIndirect(Microsoft.Scripting.Ast.Compiler.OffsetTrackingILGenerator,System.Type)">
  8139. <summary>
  8140. Emits a Stind* instruction for the appropriate type.
  8141. </summary>
  8142. </member>
  8143. <member name="M:Microsoft.Scripting.Ast.Compiler.ILGen.EmitStoreElement(Microsoft.Scripting.Ast.Compiler.OffsetTrackingILGenerator,System.Type)">
  8144. <summary>
  8145. Emits a Stelem* instruction for the appropriate type.
  8146. </summary>
  8147. </member>
  8148. <member name="M:Microsoft.Scripting.Ast.Compiler.ILGen.EmitArray``1(Microsoft.Scripting.Ast.Compiler.OffsetTrackingILGenerator,System.Collections.Generic.IList{``0})">
  8149. <summary>
  8150. Emits an array of constant values provided in the given list.
  8151. The array is strongly typed.
  8152. </summary>
  8153. </member>
  8154. <member name="M:Microsoft.Scripting.Ast.Compiler.ILGen.EmitArray(Microsoft.Scripting.Ast.Compiler.OffsetTrackingILGenerator,System.Type,System.Int32,System.Action{System.Int32})">
  8155. <summary>
  8156. Emits an array of values of count size. The items are emitted via the callback
  8157. which is provided with the current item index to emit.
  8158. </summary>
  8159. </member>
  8160. <member name="M:Microsoft.Scripting.Ast.Compiler.ILGen.EmitArray(Microsoft.Scripting.Ast.Compiler.OffsetTrackingILGenerator,System.Type)">
  8161. <summary>
  8162. Emits an array construction code.
  8163. The code assumes that bounds for all dimensions
  8164. are already emitted.
  8165. </summary>
  8166. </member>
  8167. <member name="M:Microsoft.Scripting.Ast.Compiler.ILGen.EmitDefault(Microsoft.Scripting.Ast.Compiler.OffsetTrackingILGenerator,System.Type)">
  8168. <summary>
  8169. Emits default(T)
  8170. Semantics match C# compiler behavior
  8171. </summary>
  8172. </member>
  8173. <member name="T:Microsoft.Scripting.Utils.Action`5">
  8174. <summary>
  8175. Encapsulates a method that takes five parameters and does not return a value.
  8176. </summary>
  8177. <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
  8178. <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
  8179. <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
  8180. <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
  8181. <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
  8182. <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
  8183. <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
  8184. <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
  8185. <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
  8186. <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
  8187. </member>
  8188. <member name="T:Microsoft.Scripting.Utils.Action`6">
  8189. <summary>
  8190. Encapsulates a method that takes six parameters and does not return a value.
  8191. </summary>
  8192. <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
  8193. <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
  8194. <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
  8195. <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
  8196. <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
  8197. <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
  8198. <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
  8199. <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
  8200. <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
  8201. <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
  8202. <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
  8203. <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
  8204. </member>
  8205. <member name="T:Microsoft.Scripting.Utils.Action`7">
  8206. <summary>
  8207. Encapsulates a method that takes seven parameters and does not return a value.
  8208. </summary>
  8209. <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
  8210. <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
  8211. <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
  8212. <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
  8213. <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
  8214. <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
  8215. <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
  8216. <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
  8217. <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
  8218. <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
  8219. <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
  8220. <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
  8221. <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
  8222. <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
  8223. </member>
  8224. <member name="T:Microsoft.Scripting.Utils.Action`8">
  8225. <summary>
  8226. Encapsulates a method that takes eight parameters and does not return a value.
  8227. </summary>
  8228. <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
  8229. <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
  8230. <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
  8231. <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
  8232. <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
  8233. <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
  8234. <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
  8235. <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
  8236. <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
  8237. <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
  8238. <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
  8239. <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
  8240. <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
  8241. <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
  8242. <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
  8243. <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
  8244. </member>
  8245. <member name="T:Microsoft.Scripting.Utils.Action`9">
  8246. <summary>
  8247. Encapsulates a method that takes nine parameters and does not return a value.
  8248. </summary>
  8249. <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
  8250. <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
  8251. <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
  8252. <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
  8253. <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
  8254. <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
  8255. <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
  8256. <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
  8257. <typeparam name="T9">The type of the ninth parameter of the method that this delegate encapsulates.</typeparam>
  8258. <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
  8259. <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
  8260. <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
  8261. <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
  8262. <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
  8263. <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
  8264. <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
  8265. <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
  8266. <param name="arg9">The ninth parameter of the method that this delegate encapsulates.</param>
  8267. </member>
  8268. <member name="T:Microsoft.Scripting.Utils.Action`10">
  8269. <summary>
  8270. Encapsulates a method that takes ten parameters and does not return a value.
  8271. </summary>
  8272. <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
  8273. <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
  8274. <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
  8275. <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
  8276. <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
  8277. <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
  8278. <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
  8279. <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
  8280. <typeparam name="T9">The type of the ninth parameter of the method that this delegate encapsulates.</typeparam>
  8281. <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
  8282. <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
  8283. <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
  8284. <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
  8285. <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
  8286. <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
  8287. <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
  8288. <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
  8289. <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
  8290. <param name="arg9">The ninth parameter of the method that this delegate encapsulates.</param>
  8291. <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
  8292. </member>
  8293. <member name="T:Microsoft.Scripting.Utils.Action`11">
  8294. <summary>
  8295. Encapsulates a method that takes eleven parameters and does not return a value.
  8296. </summary>
  8297. <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
  8298. <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
  8299. <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
  8300. <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
  8301. <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
  8302. <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
  8303. <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
  8304. <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
  8305. <typeparam name="T9">The type of the ninth parameter of the method that this delegate encapsulates.</typeparam>
  8306. <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
  8307. <typeparam name="T11">The type of the eleventh parameter of the method that this delegate encapsulates.</typeparam>
  8308. <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
  8309. <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
  8310. <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
  8311. <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
  8312. <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
  8313. <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
  8314. <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
  8315. <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
  8316. <param name="arg9">The ninth parameter of the method that this delegate encapsulates.</param>
  8317. <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
  8318. <param name="arg11">The eleventh parameter of the method that this delegate encapsulates.</param>
  8319. </member>
  8320. <member name="T:Microsoft.Scripting.Utils.Action`12">
  8321. <summary>
  8322. Encapsulates a method that takes twelve parameters and does not return a value.
  8323. </summary>
  8324. <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
  8325. <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
  8326. <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
  8327. <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
  8328. <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
  8329. <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
  8330. <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
  8331. <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
  8332. <typeparam name="T9">The type of the ninth parameter of the method that this delegate encapsulates.</typeparam>
  8333. <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
  8334. <typeparam name="T11">The type of the eleventh parameter of the method that this delegate encapsulates.</typeparam>
  8335. <typeparam name="T12">The type of the twelfth parameter of the method that this delegate encapsulates.</typeparam>
  8336. <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
  8337. <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
  8338. <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
  8339. <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
  8340. <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
  8341. <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
  8342. <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
  8343. <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
  8344. <param name="arg9">The ninth parameter of the method that this delegate encapsulates.</param>
  8345. <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
  8346. <param name="arg11">The eleventh parameter of the method that this delegate encapsulates.</param>
  8347. <param name="arg12">The twelfth parameter of the method that this delegate encapsulates.</param>
  8348. </member>
  8349. <member name="T:Microsoft.Scripting.Utils.Action`13">
  8350. <summary>
  8351. Encapsulates a method that takes thirteen parameters and does not return a value.
  8352. </summary>
  8353. <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
  8354. <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
  8355. <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
  8356. <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
  8357. <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
  8358. <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
  8359. <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
  8360. <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
  8361. <typeparam name="T9">The type of the ninth parameter of the method that this delegate encapsulates.</typeparam>
  8362. <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
  8363. <typeparam name="T11">The type of the eleventh parameter of the method that this delegate encapsulates.</typeparam>
  8364. <typeparam name="T12">The type of the twelfth parameter of the method that this delegate encapsulates.</typeparam>
  8365. <typeparam name="T13">The type of the thirteenth parameter of the method that this delegate encapsulates.</typeparam>
  8366. <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
  8367. <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
  8368. <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
  8369. <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
  8370. <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
  8371. <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
  8372. <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
  8373. <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
  8374. <param name="arg9">The ninth parameter of the method that this delegate encapsulates.</param>
  8375. <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
  8376. <param name="arg11">The eleventh parameter of the method that this delegate encapsulates.</param>
  8377. <param name="arg12">The twelfth parameter of the method that this delegate encapsulates.</param>
  8378. <param name="arg13">The thirteenth parameter of the method that this delegate encapsulates.</param>
  8379. </member>
  8380. <member name="T:Microsoft.Scripting.Utils.Action`14">
  8381. <summary>
  8382. Encapsulates a method that takes fourteen parameters and does not return a value.
  8383. </summary>
  8384. <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
  8385. <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
  8386. <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
  8387. <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
  8388. <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
  8389. <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
  8390. <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
  8391. <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
  8392. <typeparam name="T9">The type of the ninth parameter of the method that this delegate encapsulates.</typeparam>
  8393. <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
  8394. <typeparam name="T11">The type of the eleventh parameter of the method that this delegate encapsulates.</typeparam>
  8395. <typeparam name="T12">The type of the twelfth parameter of the method that this delegate encapsulates.</typeparam>
  8396. <typeparam name="T13">The type of the thirteenth parameter of the method that this delegate encapsulates.</typeparam>
  8397. <typeparam name="T14">The type of the fourteenth parameter of the method that this delegate encapsulates.</typeparam>
  8398. <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
  8399. <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
  8400. <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
  8401. <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
  8402. <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
  8403. <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
  8404. <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
  8405. <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
  8406. <param name="arg9">The ninth parameter of the method that this delegate encapsulates.</param>
  8407. <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
  8408. <param name="arg11">The eleventh parameter of the method that this delegate encapsulates.</param>
  8409. <param name="arg12">The twelfth parameter of the method that this delegate encapsulates.</param>
  8410. <param name="arg13">The thirteenth parameter of the method that this delegate encapsulates.</param>
  8411. <param name="arg14">The fourteenth parameter of the method that this delegate encapsulates.</param>
  8412. </member>
  8413. <member name="T:Microsoft.Scripting.Utils.Action`15">
  8414. <summary>
  8415. Encapsulates a method that takes fifteen parameters and does not return a value.
  8416. </summary>
  8417. <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
  8418. <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
  8419. <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
  8420. <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
  8421. <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
  8422. <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
  8423. <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
  8424. <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
  8425. <typeparam name="T9">The type of the ninth parameter of the method that this delegate encapsulates.</typeparam>
  8426. <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
  8427. <typeparam name="T11">The type of the eleventh parameter of the method that this delegate encapsulates.</typeparam>
  8428. <typeparam name="T12">The type of the twelfth parameter of the method that this delegate encapsulates.</typeparam>
  8429. <typeparam name="T13">The type of the thirteenth parameter of the method that this delegate encapsulates.</typeparam>
  8430. <typeparam name="T14">The type of the fourteenth parameter of the method that this delegate encapsulates.</typeparam>
  8431. <typeparam name="T15">The type of the fifteenth parameter of the method that this delegate encapsulates.</typeparam>
  8432. <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
  8433. <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
  8434. <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
  8435. <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
  8436. <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
  8437. <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
  8438. <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
  8439. <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
  8440. <param name="arg9">The ninth parameter of the method that this delegate encapsulates.</param>
  8441. <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
  8442. <param name="arg11">The eleventh parameter of the method that this delegate encapsulates.</param>
  8443. <param name="arg12">The twelfth parameter of the method that this delegate encapsulates.</param>
  8444. <param name="arg13">The thirteenth parameter of the method that this delegate encapsulates.</param>
  8445. <param name="arg14">The fourteenth parameter of the method that this delegate encapsulates.</param>
  8446. <param name="arg15">The fifteenth parameter of the method that this delegate encapsulates.</param>
  8447. </member>
  8448. <member name="T:Microsoft.Scripting.Utils.Action`16">
  8449. <summary>
  8450. Encapsulates a method that takes sixteen parameters and does not return a value.
  8451. </summary>
  8452. <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
  8453. <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
  8454. <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
  8455. <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
  8456. <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
  8457. <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
  8458. <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
  8459. <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
  8460. <typeparam name="T9">The type of the ninth parameter of the method that this delegate encapsulates.</typeparam>
  8461. <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
  8462. <typeparam name="T11">The type of the eleventh parameter of the method that this delegate encapsulates.</typeparam>
  8463. <typeparam name="T12">The type of the twelfth parameter of the method that this delegate encapsulates.</typeparam>
  8464. <typeparam name="T13">The type of the thirteenth parameter of the method that this delegate encapsulates.</typeparam>
  8465. <typeparam name="T14">The type of the fourteenth parameter of the method that this delegate encapsulates.</typeparam>
  8466. <typeparam name="T15">The type of the fifteenth parameter of the method that this delegate encapsulates.</typeparam>
  8467. <typeparam name="T16">The type of the sixteenth parameter of the method that this delegate encapsulates.</typeparam>
  8468. <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
  8469. <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
  8470. <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
  8471. <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
  8472. <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
  8473. <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
  8474. <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
  8475. <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
  8476. <param name="arg9">The ninth parameter of the method that this delegate encapsulates.</param>
  8477. <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
  8478. <param name="arg11">The eleventh parameter of the method that this delegate encapsulates.</param>
  8479. <param name="arg12">The twelfth parameter of the method that this delegate encapsulates.</param>
  8480. <param name="arg13">The thirteenth parameter of the method that this delegate encapsulates.</param>
  8481. <param name="arg14">The fourteenth parameter of the method that this delegate encapsulates.</param>
  8482. <param name="arg15">The fifteenth parameter of the method that this delegate encapsulates.</param>
  8483. <param name="arg16">The sixteenth parameter of the method that this delegate encapsulates.</param>
  8484. </member>
  8485. <member name="T:System.Dynamic.Utils.CacheDict`2">
  8486. <summary>
  8487. Provides a dictionary-like object used for caches which holds onto a maximum
  8488. number of elements specified at construction time.
  8489. This class is not thread safe.
  8490. </summary>
  8491. </member>
  8492. <member name="M:System.Dynamic.Utils.CacheDict`2.#ctor(System.Int32)">
  8493. <summary>
  8494. Creates a dictionary-like object used for caches.
  8495. </summary>
  8496. <param name="maxSize">The maximum number of elements to store.</param>
  8497. </member>
  8498. <member name="M:System.Dynamic.Utils.CacheDict`2.TryGetValue(`0,`1@)">
  8499. <summary>
  8500. Tries to get the value associated with 'key', returning true if it's found and
  8501. false if it's not present.
  8502. </summary>
  8503. </member>
  8504. <member name="M:System.Dynamic.Utils.CacheDict`2.Add(`0,`1)">
  8505. <summary>
  8506. Adds a new element to the cache, replacing and moving it to the front if the
  8507. element is already present.
  8508. </summary>
  8509. </member>
  8510. <member name="P:System.Dynamic.Utils.CacheDict`2.Item(`0)">
  8511. <summary>
  8512. Returns the value associated with the given key, or throws KeyNotFoundException
  8513. if the key is not present.
  8514. </summary>
  8515. </member>
  8516. <member name="M:System.Dynamic.Utils.CollectionExtensions.ToReadOnly``1(System.Collections.Generic.IEnumerable{``0})">
  8517. <summary>
  8518. Wraps the provided enumerable into a ReadOnlyCollection{T}
  8519. Copies all of the data into a new array, so the data can't be
  8520. changed after creation. The exception is if the enumerable is
  8521. already a ReadOnlyCollection{T}, in which case we just return it.
  8522. </summary>
  8523. </member>
  8524. <member name="M:System.Dynamic.Utils.ContractUtils.RequiresArrayRange``1(System.Collections.Generic.IList{``0},System.Int32,System.Int32,System.String,System.String)">
  8525. <summary>
  8526. Requires the range [offset, offset + count] to be a subset of [0, array.Count].
  8527. </summary>
  8528. <exception cref="T:System.ArgumentNullException">Array is <c>null</c>.</exception>
  8529. <exception cref="T:System.ArgumentOutOfRangeException">Offset or count are out of range.</exception>
  8530. </member>
  8531. <member name="M:System.Dynamic.Utils.ContractUtils.RequiresNotNullItems``1(System.Collections.Generic.IList{``0},System.String)">
  8532. <summary>
  8533. Requires the array and all its items to be non-null.
  8534. </summary>
  8535. </member>
  8536. <member name="T:Microsoft.Scripting.Ast.Strings">
  8537. <summary>
  8538. Strongly-typed and parameterized string factory.
  8539. </summary>
  8540. </member>
  8541. <member name="M:Microsoft.Scripting.Ast.Strings.VariableMustNotBeByRef(System.Object,System.Object)">
  8542. <summary>
  8543. A string like "Variable '{0}' uses unsupported type '{1}'. Reference types are not supported for variables."
  8544. </summary>
  8545. </member>
  8546. <member name="M:Microsoft.Scripting.Ast.Strings.DuplicateVariable(System.Object)">
  8547. <summary>
  8548. A string like "Found duplicate parameter '{0}'. Each ParameterExpression in the list must be a unique object."
  8549. </summary>
  8550. </member>
  8551. <member name="M:Microsoft.Scripting.Ast.Strings.ExtensionNodeMustOverrideProperty(System.Object)">
  8552. <summary>
  8553. A string like "Extension node must override the property {0}."
  8554. </summary>
  8555. </member>
  8556. <member name="M:Microsoft.Scripting.Ast.Strings.UserDefinedOperatorMustBeStatic(System.Object)">
  8557. <summary>
  8558. A string like "User-defined operator method '{0}' must be static."
  8559. </summary>
  8560. </member>
  8561. <member name="M:Microsoft.Scripting.Ast.Strings.UserDefinedOperatorMustNotBeVoid(System.Object)">
  8562. <summary>
  8563. A string like "User-defined operator method '{0}' must not be void."
  8564. </summary>
  8565. </member>
  8566. <member name="M:Microsoft.Scripting.Ast.Strings.CoercionOperatorNotDefined(System.Object,System.Object)">
  8567. <summary>
  8568. A string like "No coercion operator is defined between types '{0}' and '{1}'."
  8569. </summary>
  8570. </member>
  8571. <member name="M:Microsoft.Scripting.Ast.Strings.DynamicBinderResultNotAssignable(System.Object,System.Object,System.Object)">
  8572. <summary>
  8573. A string like "The result type '{0}' of the dynamic binding produced by binder '{1}' is not compatible with the result type '{2}' expected by the call site."
  8574. </summary>
  8575. </member>
  8576. <member name="M:Microsoft.Scripting.Ast.Strings.DynamicObjectResultNotAssignable(System.Object,System.Object,System.Object,System.Object)">
  8577. <summary>
  8578. A string like "The result type '{0}' of the dynamic binding produced by the object with type '{1}' for the binder '{2}' is not compatible with the result type '{3}' expected by the call site."
  8579. </summary>
  8580. </member>
  8581. <member name="M:Microsoft.Scripting.Ast.Strings.DynamicBindingNeedsRestrictions(System.Object,System.Object)">
  8582. <summary>
  8583. A string like "The result of the dynamic binding produced by the object with type '{0}' for the binder '{1}' needs at least one restriction."
  8584. </summary>
  8585. </member>
  8586. <member name="M:Microsoft.Scripting.Ast.Strings.BinderNotCompatibleWithCallSite(System.Object,System.Object,System.Object)">
  8587. <summary>
  8588. A string like "The result type '{0}' of the binder '{1}' is not compatible with the result type '{2}' expected by the call site."
  8589. </summary>
  8590. </member>
  8591. <member name="M:Microsoft.Scripting.Ast.Strings.UnaryOperatorNotDefined(System.Object,System.Object)">
  8592. <summary>
  8593. A string like "The unary operator {0} is not defined for the type '{1}'."
  8594. </summary>
  8595. </member>
  8596. <member name="M:Microsoft.Scripting.Ast.Strings.BinaryOperatorNotDefined(System.Object,System.Object,System.Object)">
  8597. <summary>
  8598. A string like "The binary operator {0} is not defined for the types '{1}' and '{2}'."
  8599. </summary>
  8600. </member>
  8601. <member name="M:Microsoft.Scripting.Ast.Strings.ReferenceEqualityNotDefined(System.Object,System.Object)">
  8602. <summary>
  8603. A string like "Reference equality is not defined for the types '{0}' and '{1}'."
  8604. </summary>
  8605. </member>
  8606. <member name="M:Microsoft.Scripting.Ast.Strings.OperandTypesDoNotMatchParameters(System.Object,System.Object)">
  8607. <summary>
  8608. A string like "The operands for operator '{0}' do not match the parameters of method '{1}'."
  8609. </summary>
  8610. </member>
  8611. <member name="M:Microsoft.Scripting.Ast.Strings.OverloadOperatorTypeDoesNotMatchConversionType(System.Object,System.Object)">
  8612. <summary>
  8613. A string like "The return type of overload method for operator '{0}' does not match the parameter type of conversion method '{1}'."
  8614. </summary>
  8615. </member>
  8616. <member name="M:Microsoft.Scripting.Ast.Strings.EqualityMustReturnBoolean(System.Object)">
  8617. <summary>
  8618. A string like "The user-defined equality method '{0}' must return a boolean value."
  8619. </summary>
  8620. </member>
  8621. <member name="M:Microsoft.Scripting.Ast.Strings.CannotAutoInitializeValueTypeElementThroughProperty(System.Object)">
  8622. <summary>
  8623. A string like "Cannot auto initialize elements of value type through property '{0}', use assignment instead"
  8624. </summary>
  8625. </member>
  8626. <member name="M:Microsoft.Scripting.Ast.Strings.CannotAutoInitializeValueTypeMemberThroughProperty(System.Object)">
  8627. <summary>
  8628. A string like "Cannot auto initialize members of value type through property '{0}', use assignment instead"
  8629. </summary>
  8630. </member>
  8631. <member name="M:Microsoft.Scripting.Ast.Strings.IncorrectTypeForTypeAs(System.Object)">
  8632. <summary>
  8633. A string like "The type used in TypeAs Expression must be of reference or nullable type, {0} is neither"
  8634. </summary>
  8635. </member>
  8636. <member name="M:Microsoft.Scripting.Ast.Strings.ExpressionTypeCannotInitializeArrayType(System.Object,System.Object)">
  8637. <summary>
  8638. A string like "An expression of type '{0}' cannot be used to initialize an array of type '{1}'"
  8639. </summary>
  8640. </member>
  8641. <member name="M:Microsoft.Scripting.Ast.Strings.ExpressionTypeDoesNotMatchConstructorParameter(System.Object,System.Object)">
  8642. <summary>
  8643. A string like "Expression of type '{0}' cannot be used for constructor parameter of type '{1}'"
  8644. </summary>
  8645. </member>
  8646. <member name="M:Microsoft.Scripting.Ast.Strings.ArgumentTypeDoesNotMatchMember(System.Object,System.Object)">
  8647. <summary>
  8648. A string like " Argument type '{0}' does not match the corresponding member type '{1}'"
  8649. </summary>
  8650. </member>
  8651. <member name="M:Microsoft.Scripting.Ast.Strings.ArgumentMemberNotDeclOnType(System.Object,System.Object)">
  8652. <summary>
  8653. A string like " The member '{0}' is not declared on type '{1}' being created"
  8654. </summary>
  8655. </member>
  8656. <member name="M:Microsoft.Scripting.Ast.Strings.ExpressionTypeDoesNotMatchMethodParameter(System.Object,System.Object,System.Object)">
  8657. <summary>
  8658. A string like "Expression of type '{0}' cannot be used for parameter of type '{1}' of method '{2}'"
  8659. </summary>
  8660. </member>
  8661. <member name="M:Microsoft.Scripting.Ast.Strings.ExpressionTypeDoesNotMatchParameter(System.Object,System.Object)">
  8662. <summary>
  8663. A string like "Expression of type '{0}' cannot be used for parameter of type '{1}'"
  8664. </summary>
  8665. </member>
  8666. <member name="M:Microsoft.Scripting.Ast.Strings.ExpressionTypeDoesNotMatchReturn(System.Object,System.Object)">
  8667. <summary>
  8668. A string like "Expression of type '{0}' cannot be used for return type '{1}'"
  8669. </summary>
  8670. </member>
  8671. <member name="M:Microsoft.Scripting.Ast.Strings.ExpressionTypeDoesNotMatchAssignment(System.Object,System.Object)">
  8672. <summary>
  8673. A string like "Expression of type '{0}' cannot be used for assignment to type '{1}'"
  8674. </summary>
  8675. </member>
  8676. <member name="M:Microsoft.Scripting.Ast.Strings.ExpressionTypeDoesNotMatchLabel(System.Object,System.Object)">
  8677. <summary>
  8678. A string like "Expression of type '{0}' cannot be used for label of type '{1}'"
  8679. </summary>
  8680. </member>
  8681. <member name="M:Microsoft.Scripting.Ast.Strings.ExpressionTypeNotInvocable(System.Object)">
  8682. <summary>
  8683. A string like "Expression of type '{0}' cannot be invoked"
  8684. </summary>
  8685. </member>
  8686. <member name="M:Microsoft.Scripting.Ast.Strings.FieldNotDefinedForType(System.Object,System.Object)">
  8687. <summary>
  8688. A string like "Field '{0}' is not defined for type '{1}'"
  8689. </summary>
  8690. </member>
  8691. <member name="M:Microsoft.Scripting.Ast.Strings.InstanceFieldNotDefinedForType(System.Object,System.Object)">
  8692. <summary>
  8693. A string like "Instance field '{0}' is not defined for type '{1}'"
  8694. </summary>
  8695. </member>
  8696. <member name="M:Microsoft.Scripting.Ast.Strings.FieldInfoNotDefinedForType(System.Object,System.Object,System.Object)">
  8697. <summary>
  8698. A string like "Field '{0}.{1}' is not defined for type '{2}'"
  8699. </summary>
  8700. </member>
  8701. <member name="M:Microsoft.Scripting.Ast.Strings.IncorrectNumberOfMethodCallArguments(System.Object)">
  8702. <summary>
  8703. A string like "Incorrect number of arguments supplied for call to method '{0}'"
  8704. </summary>
  8705. </member>
  8706. <member name="M:Microsoft.Scripting.Ast.Strings.MemberNotFieldOrProperty(System.Object)">
  8707. <summary>
  8708. A string like "Member '{0}' not field or property"
  8709. </summary>
  8710. </member>
  8711. <member name="M:Microsoft.Scripting.Ast.Strings.MethodContainsGenericParameters(System.Object)">
  8712. <summary>
  8713. A string like "Method {0} contains generic parameters"
  8714. </summary>
  8715. </member>
  8716. <member name="M:Microsoft.Scripting.Ast.Strings.MethodIsGeneric(System.Object)">
  8717. <summary>
  8718. A string like "Method {0} is a generic method definition"
  8719. </summary>
  8720. </member>
  8721. <member name="M:Microsoft.Scripting.Ast.Strings.MethodNotPropertyAccessor(System.Object,System.Object)">
  8722. <summary>
  8723. A string like "The method '{0}.{1}' is not a property accessor"
  8724. </summary>
  8725. </member>
  8726. <member name="M:Microsoft.Scripting.Ast.Strings.PropertyDoesNotHaveGetter(System.Object)">
  8727. <summary>
  8728. A string like "The property '{0}' has no 'get' accessor"
  8729. </summary>
  8730. </member>
  8731. <member name="M:Microsoft.Scripting.Ast.Strings.PropertyDoesNotHaveSetter(System.Object)">
  8732. <summary>
  8733. A string like "The property '{0}' has no 'set' accessor"
  8734. </summary>
  8735. </member>
  8736. <member name="M:Microsoft.Scripting.Ast.Strings.PropertyDoesNotHaveAccessor(System.Object)">
  8737. <summary>
  8738. A string like "The property '{0}' has no 'get' or 'set' accessors"
  8739. </summary>
  8740. </member>
  8741. <member name="M:Microsoft.Scripting.Ast.Strings.NotAMemberOfType(System.Object,System.Object)">
  8742. <summary>
  8743. A string like "'{0}' is not a member of type '{1}'"
  8744. </summary>
  8745. </member>
  8746. <member name="M:Microsoft.Scripting.Ast.Strings.OperatorNotImplementedForType(System.Object,System.Object)">
  8747. <summary>
  8748. A string like "The operator '{0}' is not implemented for type '{1}'"
  8749. </summary>
  8750. </member>
  8751. <member name="M:Microsoft.Scripting.Ast.Strings.ParameterExpressionNotValidAsDelegate(System.Object,System.Object)">
  8752. <summary>
  8753. A string like "ParameterExpression of type '{0}' cannot be used for delegate parameter of type '{1}'"
  8754. </summary>
  8755. </member>
  8756. <member name="M:Microsoft.Scripting.Ast.Strings.PropertyNotDefinedForType(System.Object,System.Object)">
  8757. <summary>
  8758. A string like "Property '{0}' is not defined for type '{1}'"
  8759. </summary>
  8760. </member>
  8761. <member name="M:Microsoft.Scripting.Ast.Strings.InstancePropertyNotDefinedForType(System.Object,System.Object)">
  8762. <summary>
  8763. A string like "Instance property '{0}' is not defined for type '{1}'"
  8764. </summary>
  8765. </member>
  8766. <member name="M:Microsoft.Scripting.Ast.Strings.InstancePropertyWithoutParameterNotDefinedForType(System.Object,System.Object)">
  8767. <summary>
  8768. A string like "Instance property '{0}' that takes no argument is not defined for type '{1}'"
  8769. </summary>
  8770. </member>
  8771. <member name="M:Microsoft.Scripting.Ast.Strings.InstancePropertyWithSpecifiedParametersNotDefinedForType(System.Object,System.Object,System.Object)">
  8772. <summary>
  8773. A string like "Instance property '{0}{1}' is not defined for type '{2}'"
  8774. </summary>
  8775. </member>
  8776. <member name="M:Microsoft.Scripting.Ast.Strings.InstanceAndMethodTypeMismatch(System.Object,System.Object,System.Object)">
  8777. <summary>
  8778. A string like "Method '{0}' declared on type '{1}' cannot be called with instance of type '{2}'"
  8779. </summary>
  8780. </member>
  8781. <member name="M:Microsoft.Scripting.Ast.Strings.TypeContainsGenericParameters(System.Object)">
  8782. <summary>
  8783. A string like "Type {0} contains generic parameters"
  8784. </summary>
  8785. </member>
  8786. <member name="M:Microsoft.Scripting.Ast.Strings.TypeIsGeneric(System.Object)">
  8787. <summary>
  8788. A string like "Type {0} is a generic type definition"
  8789. </summary>
  8790. </member>
  8791. <member name="M:Microsoft.Scripting.Ast.Strings.TypeMissingDefaultConstructor(System.Object)">
  8792. <summary>
  8793. A string like "Type '{0}' does not have a default constructor"
  8794. </summary>
  8795. </member>
  8796. <member name="M:Microsoft.Scripting.Ast.Strings.ElementInitializerMethodNoRefOutParam(System.Object,System.Object)">
  8797. <summary>
  8798. A string like "Parameter '{0}' of element initializer method '{1}' must not be a pass by reference parameter"
  8799. </summary>
  8800. </member>
  8801. <member name="M:Microsoft.Scripting.Ast.Strings.TypeNotIEnumerable(System.Object)">
  8802. <summary>
  8803. A string like "Type '{0}' is not IEnumerable"
  8804. </summary>
  8805. </member>
  8806. <member name="M:Microsoft.Scripting.Ast.Strings.TypeParameterIsNotDelegate(System.Object)">
  8807. <summary>
  8808. A string like "Type parameter is {0}. Expected a delegate."
  8809. </summary>
  8810. </member>
  8811. <member name="M:Microsoft.Scripting.Ast.Strings.InvalidCast(System.Object,System.Object)">
  8812. <summary>
  8813. A string like "Cannot cast from type '{0}' to type '{1}"
  8814. </summary>
  8815. </member>
  8816. <member name="M:Microsoft.Scripting.Ast.Strings.UnhandledBinary(System.Object)">
  8817. <summary>
  8818. A string like "Unhandled binary: {0}"
  8819. </summary>
  8820. </member>
  8821. <member name="M:Microsoft.Scripting.Ast.Strings.UnhandledBindingType(System.Object)">
  8822. <summary>
  8823. A string like "Unhandled Binding Type: {0}"
  8824. </summary>
  8825. </member>
  8826. <member name="M:Microsoft.Scripting.Ast.Strings.UnhandledConvert(System.Object)">
  8827. <summary>
  8828. A string like "Unhandled convert: {0}"
  8829. </summary>
  8830. </member>
  8831. <member name="M:Microsoft.Scripting.Ast.Strings.UnhandledExpressionType(System.Object)">
  8832. <summary>
  8833. A string like "Unhandled Expression Type: {0}"
  8834. </summary>
  8835. </member>
  8836. <member name="M:Microsoft.Scripting.Ast.Strings.UnhandledUnary(System.Object)">
  8837. <summary>
  8838. A string like "Unhandled unary: {0}"
  8839. </summary>
  8840. </member>
  8841. <member name="M:Microsoft.Scripting.Ast.Strings.UserDefinedOpMustHaveConsistentTypes(System.Object,System.Object)">
  8842. <summary>
  8843. A string like "The user-defined operator method '{1}' for operator '{0}' must have identical parameter and return types."
  8844. </summary>
  8845. </member>
  8846. <member name="M:Microsoft.Scripting.Ast.Strings.UserDefinedOpMustHaveValidReturnType(System.Object,System.Object)">
  8847. <summary>
  8848. A string like "The user-defined operator method '{1}' for operator '{0}' must return the same type as its parameter or a derived type."
  8849. </summary>
  8850. </member>
  8851. <member name="M:Microsoft.Scripting.Ast.Strings.LogicalOperatorMustHaveBooleanOperators(System.Object,System.Object)">
  8852. <summary>
  8853. A string like "The user-defined operator method '{1}' for operator '{0}' must have associated boolean True and False operators."
  8854. </summary>
  8855. </member>
  8856. <member name="M:Microsoft.Scripting.Ast.Strings.MethodDoesNotExistOnType(System.Object,System.Object)">
  8857. <summary>
  8858. A string like "No method '{0}' exists on type '{1}'."
  8859. </summary>
  8860. </member>
  8861. <member name="M:Microsoft.Scripting.Ast.Strings.MethodWithArgsDoesNotExistOnType(System.Object,System.Object)">
  8862. <summary>
  8863. A string like "No method '{0}' on type '{1}' is compatible with the supplied arguments."
  8864. </summary>
  8865. </member>
  8866. <member name="M:Microsoft.Scripting.Ast.Strings.GenericMethodWithArgsDoesNotExistOnType(System.Object,System.Object)">
  8867. <summary>
  8868. A string like "No generic method '{0}' on type '{1}' is compatible with the supplied type arguments and arguments. No type arguments should be provided if the method is non-generic. "
  8869. </summary>
  8870. </member>
  8871. <member name="M:Microsoft.Scripting.Ast.Strings.MethodWithMoreThanOneMatch(System.Object,System.Object)">
  8872. <summary>
  8873. A string like "More than one method '{0}' on type '{1}' is compatible with the supplied arguments."
  8874. </summary>
  8875. </member>
  8876. <member name="M:Microsoft.Scripting.Ast.Strings.PropertyWithMoreThanOneMatch(System.Object,System.Object)">
  8877. <summary>
  8878. A string like "More than one property '{0}' on type '{1}' is compatible with the supplied arguments."
  8879. </summary>
  8880. </member>
  8881. <member name="M:Microsoft.Scripting.Ast.Strings.AmbiguousMatchInExpandoObject(System.Object)">
  8882. <summary>
  8883. A string like "More than one key matching '{0}' was found in the ExpandoObject."
  8884. </summary>
  8885. </member>
  8886. <member name="M:Microsoft.Scripting.Ast.Strings.SameKeyExistsInExpando(System.Object)">
  8887. <summary>
  8888. A string like "An element with the same key '{0}' already exists in the ExpandoObject."
  8889. </summary>
  8890. </member>
  8891. <member name="M:Microsoft.Scripting.Ast.Strings.KeyDoesNotExistInExpando(System.Object)">
  8892. <summary>
  8893. A string like "The specified key '{0}' does not exist in the ExpandoObject."
  8894. </summary>
  8895. </member>
  8896. <member name="M:Microsoft.Scripting.Ast.Strings.InvalidOperation(System.Object)">
  8897. <summary>
  8898. A string like "Invalid operation: '{0}'"
  8899. </summary>
  8900. </member>
  8901. <member name="M:Microsoft.Scripting.Ast.Strings.OutOfRange(System.Object,System.Object)">
  8902. <summary>
  8903. A string like "{0} must be greater than or equal to {1}"
  8904. </summary>
  8905. </member>
  8906. <member name="M:Microsoft.Scripting.Ast.Strings.LabelTargetAlreadyDefined(System.Object)">
  8907. <summary>
  8908. A string like "Cannot redefine label '{0}' in an inner block."
  8909. </summary>
  8910. </member>
  8911. <member name="M:Microsoft.Scripting.Ast.Strings.LabelTargetUndefined(System.Object)">
  8912. <summary>
  8913. A string like "Cannot jump to undefined label '{0}'."
  8914. </summary>
  8915. </member>
  8916. <member name="M:Microsoft.Scripting.Ast.Strings.AmbiguousJump(System.Object)">
  8917. <summary>
  8918. A string like "Cannot jump to ambiguous label '{0}'."
  8919. </summary>
  8920. </member>
  8921. <member name="M:Microsoft.Scripting.Ast.Strings.NonLocalJumpWithValue(System.Object)">
  8922. <summary>
  8923. A string like "Cannot jump to non-local label '{0}' with a value. Only jumps to labels defined in outer blocks can pass values."
  8924. </summary>
  8925. </member>
  8926. <member name="M:Microsoft.Scripting.Ast.Strings.CannotCompileConstant(System.Object)">
  8927. <summary>
  8928. A string like "CompileToMethod cannot compile constant '{0}' because it is a non-trivial value, such as a live object. Instead, create an expression tree that can construct this value."
  8929. </summary>
  8930. </member>
  8931. <member name="M:Microsoft.Scripting.Ast.Strings.InvalidLvalue(System.Object)">
  8932. <summary>
  8933. A string like "Invalid lvalue for assignment: {0}."
  8934. </summary>
  8935. </member>
  8936. <member name="M:Microsoft.Scripting.Ast.Strings.InvalidMemberType(System.Object)">
  8937. <summary>
  8938. A string like "Invalid member type: {0}."
  8939. </summary>
  8940. </member>
  8941. <member name="M:Microsoft.Scripting.Ast.Strings.UnknownLiftType(System.Object)">
  8942. <summary>
  8943. A string like "unknown lift type: '{0}'."
  8944. </summary>
  8945. </member>
  8946. <member name="M:Microsoft.Scripting.Ast.Strings.IllegalNewGenericParams(System.Object)">
  8947. <summary>
  8948. A string like "Cannot create instance of {0} because it contains generic parameters"
  8949. </summary>
  8950. </member>
  8951. <member name="M:Microsoft.Scripting.Ast.Strings.UndefinedVariable(System.Object,System.Object,System.Object)">
  8952. <summary>
  8953. A string like "variable '{0}' of type '{1}' referenced from scope '{2}', but it is not defined"
  8954. </summary>
  8955. </member>
  8956. <member name="M:Microsoft.Scripting.Ast.Strings.CannotCloseOverByRef(System.Object,System.Object)">
  8957. <summary>
  8958. A string like "Cannot close over byref parameter '{0}' referenced in lambda '{1}'"
  8959. </summary>
  8960. </member>
  8961. <member name="M:Microsoft.Scripting.Ast.Strings.UnexpectedVarArgsCall(System.Object)">
  8962. <summary>
  8963. A string like "Unexpected VarArgs call to method '{0}'"
  8964. </summary>
  8965. </member>
  8966. <member name="M:Microsoft.Scripting.Ast.Strings.MustRewriteToSameNode(System.Object,System.Object,System.Object)">
  8967. <summary>
  8968. A string like "When called from '{0}', rewriting a node of type '{1}' must return a non-null value of the same type. Alternatively, override '{2}' and change it to not visit children of this type."
  8969. </summary>
  8970. </member>
  8971. <member name="M:Microsoft.Scripting.Ast.Strings.MustRewriteChildToSameType(System.Object,System.Object,System.Object)">
  8972. <summary>
  8973. A string like "Rewriting child expression from type '{0}' to type '{1}' is not allowed, because it would change the meaning of the operation. If this is intentional, override '{2}' and change it to allow this rewrite."
  8974. </summary>
  8975. </member>
  8976. <member name="M:Microsoft.Scripting.Ast.Strings.MustRewriteWithoutMethod(System.Object,System.Object)">
  8977. <summary>
  8978. A string like "Rewritten expression calls operator method '{0}', but the original node had no operator method. If this is is intentional, override '{1}' and change it to allow this rewrite."
  8979. </summary>
  8980. </member>
  8981. <member name="M:Microsoft.Scripting.Ast.Strings.InvalidNullValue(System.Object)">
  8982. <summary>
  8983. A string like "The value null is not of type '{0}' and cannot be used in this collection."
  8984. </summary>
  8985. </member>
  8986. <member name="M:Microsoft.Scripting.Ast.Strings.InvalidObjectType(System.Object,System.Object)">
  8987. <summary>
  8988. A string like "The value '{0}' is not of type '{1}' and cannot be used in this collection."
  8989. </summary>
  8990. </member>
  8991. <member name="M:Microsoft.Scripting.Ast.Strings.TryNotSupportedForMethodsWithRefArgs(System.Object)">
  8992. <summary>
  8993. A string like "TryExpression is not supported as an argument to method '{0}' because it has an argument with by-ref type. Construct the tree so the TryExpression is not nested inside of this expression."
  8994. </summary>
  8995. </member>
  8996. <member name="M:Microsoft.Scripting.Ast.Strings.TryNotSupportedForValueTypeInstances(System.Object)">
  8997. <summary>
  8998. A string like "TryExpression is not supported as a child expression when accessing a member on type '{0}' because it is a value type. Construct the tree so the TryExpression is not nested inside of this expression."
  8999. </summary>
  9000. </member>
  9001. <member name="M:Microsoft.Scripting.Ast.Strings.TestValueTypeDoesNotMatchComparisonMethodParameter(System.Object,System.Object)">
  9002. <summary>
  9003. A string like "Test value of type '{0}' cannot be used for the comparison method parameter of type '{1}'"
  9004. </summary>
  9005. </member>
  9006. <member name="M:Microsoft.Scripting.Ast.Strings.SwitchValueTypeDoesNotMatchComparisonMethodParameter(System.Object,System.Object)">
  9007. <summary>
  9008. A string like "Switch value of type '{0}' cannot be used for the comparison method parameter of type '{1}'"
  9009. </summary>
  9010. </member>
  9011. <member name="M:Microsoft.Scripting.Ast.Strings.InvalidMetaObjectCreated(System.Object)">
  9012. <summary>
  9013. A string like "An IDynamicMetaObjectProvider {0} created an invalid DynamicMetaObject instance."
  9014. </summary>
  9015. </member>
  9016. <member name="P:Microsoft.Scripting.Ast.Strings.MethodPreconditionViolated">
  9017. <summary>
  9018. A string like "Method precondition violated"
  9019. </summary>
  9020. </member>
  9021. <member name="P:Microsoft.Scripting.Ast.Strings.InvalidArgumentValue">
  9022. <summary>
  9023. A string like "Invalid argument value"
  9024. </summary>
  9025. </member>
  9026. <member name="P:Microsoft.Scripting.Ast.Strings.NonEmptyCollectionRequired">
  9027. <summary>
  9028. A string like "Non-empty collection required"
  9029. </summary>
  9030. </member>
  9031. <member name="P:Microsoft.Scripting.Ast.Strings.ArgCntMustBeGreaterThanNameCnt">
  9032. <summary>
  9033. A string like "Argument count must be greater than number of named arguments."
  9034. </summary>
  9035. </member>
  9036. <member name="P:Microsoft.Scripting.Ast.Strings.ReducibleMustOverrideReduce">
  9037. <summary>
  9038. A string like "reducible nodes must override Expression.Reduce()"
  9039. </summary>
  9040. </member>
  9041. <member name="P:Microsoft.Scripting.Ast.Strings.MustReduceToDifferent">
  9042. <summary>
  9043. A string like "node cannot reduce to itself or null"
  9044. </summary>
  9045. </member>
  9046. <member name="P:Microsoft.Scripting.Ast.Strings.ReducedNotCompatible">
  9047. <summary>
  9048. A string like "cannot assign from the reduced node type to the original node type"
  9049. </summary>
  9050. </member>
  9051. <member name="P:Microsoft.Scripting.Ast.Strings.SetterHasNoParams">
  9052. <summary>
  9053. A string like "Setter must have parameters."
  9054. </summary>
  9055. </member>
  9056. <member name="P:Microsoft.Scripting.Ast.Strings.PropertyCannotHaveRefType">
  9057. <summary>
  9058. A string like "Property cannot have a managed pointer type."
  9059. </summary>
  9060. </member>
  9061. <member name="P:Microsoft.Scripting.Ast.Strings.IndexesOfSetGetMustMatch">
  9062. <summary>
  9063. A string like "Indexing parameters of getter and setter must match."
  9064. </summary>
  9065. </member>
  9066. <member name="P:Microsoft.Scripting.Ast.Strings.AccessorsCannotHaveVarArgs">
  9067. <summary>
  9068. A string like "Accessor method should not have VarArgs."
  9069. </summary>
  9070. </member>
  9071. <member name="P:Microsoft.Scripting.Ast.Strings.AccessorsCannotHaveByRefArgs">
  9072. <summary>
  9073. A string like "Accessor indexes cannot be passed ByRef."
  9074. </summary>
  9075. </member>
  9076. <member name="P:Microsoft.Scripting.Ast.Strings.BoundsCannotBeLessThanOne">
  9077. <summary>
  9078. A string like "Bounds count cannot be less than 1"
  9079. </summary>
  9080. </member>
  9081. <member name="P:Microsoft.Scripting.Ast.Strings.TypeMustNotBeByRef">
  9082. <summary>
  9083. A string like "type must not be ByRef"
  9084. </summary>
  9085. </member>
  9086. <member name="P:Microsoft.Scripting.Ast.Strings.TypeDoesNotHaveConstructorForTheSignature">
  9087. <summary>
  9088. A string like "Type doesn't have constructor with a given signature"
  9089. </summary>
  9090. </member>
  9091. <member name="P:Microsoft.Scripting.Ast.Strings.CountCannotBeNegative">
  9092. <summary>
  9093. A string like "Count must be non-negative."
  9094. </summary>
  9095. </member>
  9096. <member name="P:Microsoft.Scripting.Ast.Strings.ArrayTypeMustBeArray">
  9097. <summary>
  9098. A string like "arrayType must be an array type"
  9099. </summary>
  9100. </member>
  9101. <member name="P:Microsoft.Scripting.Ast.Strings.SetterMustBeVoid">
  9102. <summary>
  9103. A string like "Setter should have void type."
  9104. </summary>
  9105. </member>
  9106. <member name="P:Microsoft.Scripting.Ast.Strings.PropertyTyepMustMatchSetter">
  9107. <summary>
  9108. A string like "Property type must match the value type of setter"
  9109. </summary>
  9110. </member>
  9111. <member name="P:Microsoft.Scripting.Ast.Strings.BothAccessorsMustBeStatic">
  9112. <summary>
  9113. A string like "Both accessors must be static."
  9114. </summary>
  9115. </member>
  9116. <member name="P:Microsoft.Scripting.Ast.Strings.OnlyStaticFieldsHaveNullInstance">
  9117. <summary>
  9118. A string like "Static field requires null instance, non-static field requires non-null instance."
  9119. </summary>
  9120. </member>
  9121. <member name="P:Microsoft.Scripting.Ast.Strings.OnlyStaticPropertiesHaveNullInstance">
  9122. <summary>
  9123. A string like "Static property requires null instance, non-static property requires non-null instance."
  9124. </summary>
  9125. </member>
  9126. <member name="P:Microsoft.Scripting.Ast.Strings.OnlyStaticMethodsHaveNullInstance">
  9127. <summary>
  9128. A string like "Static method requires null instance, non-static method requires non-null instance."
  9129. </summary>
  9130. </member>
  9131. <member name="P:Microsoft.Scripting.Ast.Strings.PropertyTypeCannotBeVoid">
  9132. <summary>
  9133. A string like "Property cannot have a void type."
  9134. </summary>
  9135. </member>
  9136. <member name="P:Microsoft.Scripting.Ast.Strings.InvalidUnboxType">
  9137. <summary>
  9138. A string like "Can only unbox from an object or interface type to a value type."
  9139. </summary>
  9140. </member>
  9141. <member name="P:Microsoft.Scripting.Ast.Strings.ExpressionMustBeReadable">
  9142. <summary>
  9143. A string like "Expression must be readable"
  9144. </summary>
  9145. </member>
  9146. <member name="P:Microsoft.Scripting.Ast.Strings.ExpressionMustBeWriteable">
  9147. <summary>
  9148. A string like "Expression must be writeable"
  9149. </summary>
  9150. </member>
  9151. <member name="P:Microsoft.Scripting.Ast.Strings.ArgumentMustNotHaveValueType">
  9152. <summary>
  9153. A string like "Argument must not have a value type."
  9154. </summary>
  9155. </member>
  9156. <member name="P:Microsoft.Scripting.Ast.Strings.MustBeReducible">
  9157. <summary>
  9158. A string like "must be reducible node"
  9159. </summary>
  9160. </member>
  9161. <member name="P:Microsoft.Scripting.Ast.Strings.AllTestValuesMustHaveSameType">
  9162. <summary>
  9163. A string like "All test values must have the same type."
  9164. </summary>
  9165. </member>
  9166. <member name="P:Microsoft.Scripting.Ast.Strings.AllCaseBodiesMustHaveSameType">
  9167. <summary>
  9168. A string like "All case bodies and the default body must have the same type."
  9169. </summary>
  9170. </member>
  9171. <member name="P:Microsoft.Scripting.Ast.Strings.DefaultBodyMustBeSupplied">
  9172. <summary>
  9173. A string like "Default body must be supplied if case bodies are not System.Void."
  9174. </summary>
  9175. </member>
  9176. <member name="P:Microsoft.Scripting.Ast.Strings.MethodBuilderDoesNotHaveTypeBuilder">
  9177. <summary>
  9178. A string like "MethodBuilder does not have a valid TypeBuilder"
  9179. </summary>
  9180. </member>
  9181. <member name="P:Microsoft.Scripting.Ast.Strings.TypeMustBeDerivedFromSystemDelegate">
  9182. <summary>
  9183. A string like "Type must be derived from System.Delegate"
  9184. </summary>
  9185. </member>
  9186. <member name="P:Microsoft.Scripting.Ast.Strings.ArgumentTypeCannotBeVoid">
  9187. <summary>
  9188. A string like "Argument type cannot be void"
  9189. </summary>
  9190. </member>
  9191. <member name="P:Microsoft.Scripting.Ast.Strings.LabelMustBeVoidOrHaveExpression">
  9192. <summary>
  9193. A string like "Label type must be System.Void if an expression is not supplied"
  9194. </summary>
  9195. </member>
  9196. <member name="P:Microsoft.Scripting.Ast.Strings.LabelTypeMustBeVoid">
  9197. <summary>
  9198. A string like "Type must be System.Void for this label argument"
  9199. </summary>
  9200. </member>
  9201. <member name="P:Microsoft.Scripting.Ast.Strings.QuotedExpressionMustBeLambda">
  9202. <summary>
  9203. A string like "Quoted expression must be a lambda"
  9204. </summary>
  9205. </member>
  9206. <member name="P:Microsoft.Scripting.Ast.Strings.StartEndMustBeOrdered">
  9207. <summary>
  9208. A string like "Start and End must be well ordered"
  9209. </summary>
  9210. </member>
  9211. <member name="P:Microsoft.Scripting.Ast.Strings.FaultCannotHaveCatchOrFinally">
  9212. <summary>
  9213. A string like "fault cannot be used with catch or finally clauses"
  9214. </summary>
  9215. </member>
  9216. <member name="P:Microsoft.Scripting.Ast.Strings.TryMustHaveCatchFinallyOrFault">
  9217. <summary>
  9218. A string like "try must have at least one catch, finally, or fault clause"
  9219. </summary>
  9220. </member>
  9221. <member name="P:Microsoft.Scripting.Ast.Strings.BodyOfCatchMustHaveSameTypeAsBodyOfTry">
  9222. <summary>
  9223. A string like "Body of catch must have the same type as body of try."
  9224. </summary>
  9225. </member>
  9226. <member name="P:Microsoft.Scripting.Ast.Strings.ConversionIsNotSupportedForArithmeticTypes">
  9227. <summary>
  9228. A string like "Conversion is not supported for arithmetic types without operator overloading."
  9229. </summary>
  9230. </member>
  9231. <member name="P:Microsoft.Scripting.Ast.Strings.ArgumentMustBeArray">
  9232. <summary>
  9233. A string like "Argument must be array"
  9234. </summary>
  9235. </member>
  9236. <member name="P:Microsoft.Scripting.Ast.Strings.ArgumentMustBeBoolean">
  9237. <summary>
  9238. A string like "Argument must be boolean"
  9239. </summary>
  9240. </member>
  9241. <member name="P:Microsoft.Scripting.Ast.Strings.ArgumentMustBeFieldInfoOrPropertInfo">
  9242. <summary>
  9243. A string like "Argument must be either a FieldInfo or PropertyInfo"
  9244. </summary>
  9245. </member>
  9246. <member name="P:Microsoft.Scripting.Ast.Strings.ArgumentMustBeFieldInfoOrPropertInfoOrMethod">
  9247. <summary>
  9248. A string like "Argument must be either a FieldInfo, PropertyInfo or MethodInfo"
  9249. </summary>
  9250. </member>
  9251. <member name="P:Microsoft.Scripting.Ast.Strings.ArgumentMustBeInstanceMember">
  9252. <summary>
  9253. A string like "Argument must be an instance member"
  9254. </summary>
  9255. </member>
  9256. <member name="P:Microsoft.Scripting.Ast.Strings.ArgumentMustBeInteger">
  9257. <summary>
  9258. A string like "Argument must be of an integer type"
  9259. </summary>
  9260. </member>
  9261. <member name="P:Microsoft.Scripting.Ast.Strings.ArgumentMustBeArrayIndexType">
  9262. <summary>
  9263. A string like "Argument for array index must be of type Int32"
  9264. </summary>
  9265. </member>
  9266. <member name="P:Microsoft.Scripting.Ast.Strings.ArgumentMustBeSingleDimensionalArrayType">
  9267. <summary>
  9268. A string like "Argument must be single dimensional array type"
  9269. </summary>
  9270. </member>
  9271. <member name="P:Microsoft.Scripting.Ast.Strings.ArgumentTypesMustMatch">
  9272. <summary>
  9273. A string like "Argument types do not match"
  9274. </summary>
  9275. </member>
  9276. <member name="P:Microsoft.Scripting.Ast.Strings.CoalesceUsedOnNonNullType">
  9277. <summary>
  9278. A string like "Coalesce used with type that cannot be null"
  9279. </summary>
  9280. </member>
  9281. <member name="P:Microsoft.Scripting.Ast.Strings.IncorrectNumberOfIndexes">
  9282. <summary>
  9283. A string like "Incorrect number of indexes"
  9284. </summary>
  9285. </member>
  9286. <member name="P:Microsoft.Scripting.Ast.Strings.IncorrectNumberOfLambdaArguments">
  9287. <summary>
  9288. A string like "Incorrect number of arguments supplied for lambda invocation"
  9289. </summary>
  9290. </member>
  9291. <member name="P:Microsoft.Scripting.Ast.Strings.IncorrectNumberOfLambdaDeclarationParameters">
  9292. <summary>
  9293. A string like "Incorrect number of parameters supplied for lambda declaration"
  9294. </summary>
  9295. </member>
  9296. <member name="P:Microsoft.Scripting.Ast.Strings.IncorrectNumberOfConstructorArguments">
  9297. <summary>
  9298. A string like "Incorrect number of arguments for constructor"
  9299. </summary>
  9300. </member>
  9301. <member name="P:Microsoft.Scripting.Ast.Strings.IncorrectNumberOfMembersForGivenConstructor">
  9302. <summary>
  9303. A string like " Incorrect number of members for constructor"
  9304. </summary>
  9305. </member>
  9306. <member name="P:Microsoft.Scripting.Ast.Strings.IncorrectNumberOfArgumentsForMembers">
  9307. <summary>
  9308. A string like "Incorrect number of arguments for the given members "
  9309. </summary>
  9310. </member>
  9311. <member name="P:Microsoft.Scripting.Ast.Strings.LambdaTypeMustBeDerivedFromSystemDelegate">
  9312. <summary>
  9313. A string like "Lambda type parameter must be derived from System.Delegate"
  9314. </summary>
  9315. </member>
  9316. <member name="P:Microsoft.Scripting.Ast.Strings.ListInitializerWithZeroMembers">
  9317. <summary>
  9318. A string like "List initializers must contain at least one initializer"
  9319. </summary>
  9320. </member>
  9321. <member name="P:Microsoft.Scripting.Ast.Strings.ElementInitializerMethodNotAdd">
  9322. <summary>
  9323. A string like "Element initializer method must be named 'Add'"
  9324. </summary>
  9325. </member>
  9326. <member name="P:Microsoft.Scripting.Ast.Strings.ElementInitializerMethodWithZeroArgs">
  9327. <summary>
  9328. A string like "Element initializer method must have at least 1 parameter"
  9329. </summary>
  9330. </member>
  9331. <member name="P:Microsoft.Scripting.Ast.Strings.ElementInitializerMethodStatic">
  9332. <summary>
  9333. A string like "Element initializer method must be an instance method"
  9334. </summary>
  9335. </member>
  9336. <member name="P:Microsoft.Scripting.Ast.Strings.UnexpectedCoalesceOperator">
  9337. <summary>
  9338. A string like "Unexpected coalesce operator."
  9339. </summary>
  9340. </member>
  9341. <member name="P:Microsoft.Scripting.Ast.Strings.UnhandledBinding">
  9342. <summary>
  9343. A string like "Unhandled binding "
  9344. </summary>
  9345. </member>
  9346. <member name="P:Microsoft.Scripting.Ast.Strings.UnknownBindingType">
  9347. <summary>
  9348. A string like "Unknown binding type"
  9349. </summary>
  9350. </member>
  9351. <member name="P:Microsoft.Scripting.Ast.Strings.IncorrectNumberOfTypeArgsForFunc">
  9352. <summary>
  9353. A string like "An incorrect number of type args were specified for the declaration of a Func type."
  9354. </summary>
  9355. </member>
  9356. <member name="P:Microsoft.Scripting.Ast.Strings.IncorrectNumberOfTypeArgsForAction">
  9357. <summary>
  9358. A string like "An incorrect number of type args were specified for the declaration of an Action type."
  9359. </summary>
  9360. </member>
  9361. <member name="P:Microsoft.Scripting.Ast.Strings.ArgumentCannotBeOfTypeVoid">
  9362. <summary>
  9363. A string like "Argument type cannot be System.Void."
  9364. </summary>
  9365. </member>
  9366. <member name="P:Microsoft.Scripting.Ast.Strings.NoOrInvalidRuleProduced">
  9367. <summary>
  9368. A string like "No or Invalid rule produced"
  9369. </summary>
  9370. </member>
  9371. <member name="P:Microsoft.Scripting.Ast.Strings.FirstArgumentMustBeCallSite">
  9372. <summary>
  9373. A string like "First argument of delegate must be CallSite"
  9374. </summary>
  9375. </member>
  9376. <member name="P:Microsoft.Scripting.Ast.Strings.BindingCannotBeNull">
  9377. <summary>
  9378. A string like "Bind cannot return null."
  9379. </summary>
  9380. </member>
  9381. <member name="P:Microsoft.Scripting.Ast.Strings.QueueEmpty">
  9382. <summary>
  9383. A string like "Queue empty."
  9384. </summary>
  9385. </member>
  9386. <member name="P:Microsoft.Scripting.Ast.Strings.ControlCannotLeaveFinally">
  9387. <summary>
  9388. A string like "Control cannot leave a finally block."
  9389. </summary>
  9390. </member>
  9391. <member name="P:Microsoft.Scripting.Ast.Strings.ControlCannotLeaveFilterTest">
  9392. <summary>
  9393. A string like "Control cannot leave a filter test."
  9394. </summary>
  9395. </member>
  9396. <member name="P:Microsoft.Scripting.Ast.Strings.ControlCannotEnterTry">
  9397. <summary>
  9398. A string like "Control cannot enter a try block."
  9399. </summary>
  9400. </member>
  9401. <member name="P:Microsoft.Scripting.Ast.Strings.ControlCannotEnterExpression">
  9402. <summary>
  9403. A string like "Control cannot enter an expression--only statements can be jumped into."
  9404. </summary>
  9405. </member>
  9406. <member name="P:Microsoft.Scripting.Ast.Strings.ExtensionNotReduced">
  9407. <summary>
  9408. A string like "Extension should have been reduced."
  9409. </summary>
  9410. </member>
  9411. <member name="P:Microsoft.Scripting.Ast.Strings.CannotCompileDynamic">
  9412. <summary>
  9413. A string like "Dynamic expressions are not supported by CompileToMethod. Instead, create an expression tree that uses System.Runtime.CompilerServices.CallSite."
  9414. </summary>
  9415. </member>
  9416. <member name="P:Microsoft.Scripting.Ast.Strings.InvalidOutputDir">
  9417. <summary>
  9418. A string like "Invalid output directory."
  9419. </summary>
  9420. </member>
  9421. <member name="P:Microsoft.Scripting.Ast.Strings.InvalidAsmNameOrExtension">
  9422. <summary>
  9423. A string like "Invalid assembly name or file extension."
  9424. </summary>
  9425. </member>
  9426. <member name="P:Microsoft.Scripting.Ast.Strings.CollectionReadOnly">
  9427. <summary>
  9428. A string like "Collection is read-only."
  9429. </summary>
  9430. </member>
  9431. <member name="P:Microsoft.Scripting.Ast.Strings.RethrowRequiresCatch">
  9432. <summary>
  9433. A string like "Rethrow statement is valid only inside a Catch block."
  9434. </summary>
  9435. </member>
  9436. <member name="P:Microsoft.Scripting.Ast.Strings.TryNotAllowedInFilter">
  9437. <summary>
  9438. A string like "Try expression is not allowed inside a filter body."
  9439. </summary>
  9440. </member>
  9441. <member name="P:Microsoft.Scripting.Ast.Strings.CollectionModifiedWhileEnumerating">
  9442. <summary>
  9443. A string like "Collection was modified; enumeration operation may not execute."
  9444. </summary>
  9445. </member>
  9446. <member name="P:Microsoft.Scripting.Ast.Strings.EnumerationIsDone">
  9447. <summary>
  9448. A string like "Enumeration has either not started or has already finished."
  9449. </summary>
  9450. </member>
  9451. <member name="P:Microsoft.Scripting.Ast.Strings.HomogenousAppDomainRequired">
  9452. <summary>
  9453. A string like "Dynamic operations can only be performed in homogenous AppDomain."
  9454. </summary>
  9455. </member>
  9456. <member name="P:Microsoft.Scripting.Ast.Strings.PdbGeneratorNeedsExpressionCompiler">
  9457. <summary>
  9458. A string like "DebugInfoGenerator created by CreatePdbGenerator can only be used with LambdaExpression.CompileToMethod."
  9459. </summary>
  9460. </member>
  9461. <member name="T:Microsoft.Scripting.Ast.Error">
  9462. <summary>
  9463. Strongly-typed and parameterized exception factory.
  9464. </summary>
  9465. </member>
  9466. <member name="M:Microsoft.Scripting.Ast.Error.ArgCntMustBeGreaterThanNameCnt">
  9467. <summary>
  9468. ArgumentException with message like "Argument count must be greater than number of named arguments."
  9469. </summary>
  9470. </member>
  9471. <member name="M:Microsoft.Scripting.Ast.Error.ReducibleMustOverrideReduce">
  9472. <summary>
  9473. ArgumentException with message like "reducible nodes must override Expression.Reduce()"
  9474. </summary>
  9475. </member>
  9476. <member name="M:Microsoft.Scripting.Ast.Error.MustReduceToDifferent">
  9477. <summary>
  9478. ArgumentException with message like "node cannot reduce to itself or null"
  9479. </summary>
  9480. </member>
  9481. <member name="M:Microsoft.Scripting.Ast.Error.ReducedNotCompatible">
  9482. <summary>
  9483. ArgumentException with message like "cannot assign from the reduced node type to the original node type"
  9484. </summary>
  9485. </member>
  9486. <member name="M:Microsoft.Scripting.Ast.Error.SetterHasNoParams">
  9487. <summary>
  9488. ArgumentException with message like "Setter must have parameters."
  9489. </summary>
  9490. </member>
  9491. <member name="M:Microsoft.Scripting.Ast.Error.PropertyCannotHaveRefType">
  9492. <summary>
  9493. ArgumentException with message like "Property cannot have a managed pointer type."
  9494. </summary>
  9495. </member>
  9496. <member name="M:Microsoft.Scripting.Ast.Error.IndexesOfSetGetMustMatch">
  9497. <summary>
  9498. ArgumentException with message like "Indexing parameters of getter and setter must match."
  9499. </summary>
  9500. </member>
  9501. <member name="M:Microsoft.Scripting.Ast.Error.AccessorsCannotHaveVarArgs">
  9502. <summary>
  9503. ArgumentException with message like "Accessor method should not have VarArgs."
  9504. </summary>
  9505. </member>
  9506. <member name="M:Microsoft.Scripting.Ast.Error.AccessorsCannotHaveByRefArgs">
  9507. <summary>
  9508. ArgumentException with message like "Accessor indexes cannot be passed ByRef."
  9509. </summary>
  9510. </member>
  9511. <member name="M:Microsoft.Scripting.Ast.Error.BoundsCannotBeLessThanOne">
  9512. <summary>
  9513. ArgumentException with message like "Bounds count cannot be less than 1"
  9514. </summary>
  9515. </member>
  9516. <member name="M:Microsoft.Scripting.Ast.Error.TypeMustNotBeByRef">
  9517. <summary>
  9518. ArgumentException with message like "type must not be ByRef"
  9519. </summary>
  9520. </member>
  9521. <member name="M:Microsoft.Scripting.Ast.Error.TypeDoesNotHaveConstructorForTheSignature">
  9522. <summary>
  9523. ArgumentException with message like "Type doesn't have constructor with a given signature"
  9524. </summary>
  9525. </member>
  9526. <member name="M:Microsoft.Scripting.Ast.Error.CountCannotBeNegative">
  9527. <summary>
  9528. ArgumentException with message like "Count must be non-negative."
  9529. </summary>
  9530. </member>
  9531. <member name="M:Microsoft.Scripting.Ast.Error.ArrayTypeMustBeArray">
  9532. <summary>
  9533. ArgumentException with message like "arrayType must be an array type"
  9534. </summary>
  9535. </member>
  9536. <member name="M:Microsoft.Scripting.Ast.Error.SetterMustBeVoid">
  9537. <summary>
  9538. ArgumentException with message like "Setter should have void type."
  9539. </summary>
  9540. </member>
  9541. <member name="M:Microsoft.Scripting.Ast.Error.PropertyTyepMustMatchSetter">
  9542. <summary>
  9543. ArgumentException with message like "Property type must match the value type of setter"
  9544. </summary>
  9545. </member>
  9546. <member name="M:Microsoft.Scripting.Ast.Error.BothAccessorsMustBeStatic">
  9547. <summary>
  9548. ArgumentException with message like "Both accessors must be static."
  9549. </summary>
  9550. </member>
  9551. <member name="M:Microsoft.Scripting.Ast.Error.OnlyStaticMethodsHaveNullInstance">
  9552. <summary>
  9553. ArgumentException with message like "Static method requires null instance, non-static method requires non-null instance."
  9554. </summary>
  9555. </member>
  9556. <member name="M:Microsoft.Scripting.Ast.Error.PropertyTypeCannotBeVoid">
  9557. <summary>
  9558. ArgumentException with message like "Property cannot have a void type."
  9559. </summary>
  9560. </member>
  9561. <member name="M:Microsoft.Scripting.Ast.Error.InvalidUnboxType">
  9562. <summary>
  9563. ArgumentException with message like "Can only unbox from an object or interface type to a value type."
  9564. </summary>
  9565. </member>
  9566. <member name="M:Microsoft.Scripting.Ast.Error.ArgumentMustNotHaveValueType">
  9567. <summary>
  9568. ArgumentException with message like "Argument must not have a value type."
  9569. </summary>
  9570. </member>
  9571. <member name="M:Microsoft.Scripting.Ast.Error.MustBeReducible">
  9572. <summary>
  9573. ArgumentException with message like "must be reducible node"
  9574. </summary>
  9575. </member>
  9576. <member name="M:Microsoft.Scripting.Ast.Error.DefaultBodyMustBeSupplied">
  9577. <summary>
  9578. ArgumentException with message like "Default body must be supplied if case bodies are not System.Void."
  9579. </summary>
  9580. </member>
  9581. <member name="M:Microsoft.Scripting.Ast.Error.MethodBuilderDoesNotHaveTypeBuilder">
  9582. <summary>
  9583. ArgumentException with message like "MethodBuilder does not have a valid TypeBuilder"
  9584. </summary>
  9585. </member>
  9586. <member name="M:Microsoft.Scripting.Ast.Error.TypeMustBeDerivedFromSystemDelegate">
  9587. <summary>
  9588. ArgumentException with message like "Type must be derived from System.Delegate"
  9589. </summary>
  9590. </member>
  9591. <member name="M:Microsoft.Scripting.Ast.Error.ArgumentTypeCannotBeVoid">
  9592. <summary>
  9593. ArgumentException with message like "Argument type cannot be void"
  9594. </summary>
  9595. </member>
  9596. <member name="M:Microsoft.Scripting.Ast.Error.LabelMustBeVoidOrHaveExpression">
  9597. <summary>
  9598. ArgumentException with message like "Label type must be System.Void if an expression is not supplied"
  9599. </summary>
  9600. </member>
  9601. <member name="M:Microsoft.Scripting.Ast.Error.LabelTypeMustBeVoid">
  9602. <summary>
  9603. ArgumentException with message like "Type must be System.Void for this label argument"
  9604. </summary>
  9605. </member>
  9606. <member name="M:Microsoft.Scripting.Ast.Error.QuotedExpressionMustBeLambda">
  9607. <summary>
  9608. ArgumentException with message like "Quoted expression must be a lambda"
  9609. </summary>
  9610. </member>
  9611. <member name="M:Microsoft.Scripting.Ast.Error.VariableMustNotBeByRef(System.Object,System.Object)">
  9612. <summary>
  9613. ArgumentException with message like "Variable '{0}' uses unsupported type '{1}'. Reference types are not supported for variables."
  9614. </summary>
  9615. </member>
  9616. <member name="M:Microsoft.Scripting.Ast.Error.DuplicateVariable(System.Object)">
  9617. <summary>
  9618. ArgumentException with message like "Found duplicate parameter '{0}'. Each ParameterExpression in the list must be a unique object."
  9619. </summary>
  9620. </member>
  9621. <member name="M:Microsoft.Scripting.Ast.Error.StartEndMustBeOrdered">
  9622. <summary>
  9623. ArgumentException with message like "Start and End must be well ordered"
  9624. </summary>
  9625. </member>
  9626. <member name="M:Microsoft.Scripting.Ast.Error.FaultCannotHaveCatchOrFinally">
  9627. <summary>
  9628. ArgumentException with message like "fault cannot be used with catch or finally clauses"
  9629. </summary>
  9630. </member>
  9631. <member name="M:Microsoft.Scripting.Ast.Error.TryMustHaveCatchFinallyOrFault">
  9632. <summary>
  9633. ArgumentException with message like "try must have at least one catch, finally, or fault clause"
  9634. </summary>
  9635. </member>
  9636. <member name="M:Microsoft.Scripting.Ast.Error.BodyOfCatchMustHaveSameTypeAsBodyOfTry">
  9637. <summary>
  9638. ArgumentException with message like "Body of catch must have the same type as body of try."
  9639. </summary>
  9640. </member>
  9641. <member name="M:Microsoft.Scripting.Ast.Error.ExtensionNodeMustOverrideProperty(System.Object)">
  9642. <summary>
  9643. InvalidOperationException with message like "Extension node must override the property {0}."
  9644. </summary>
  9645. </member>
  9646. <member name="M:Microsoft.Scripting.Ast.Error.UserDefinedOperatorMustBeStatic(System.Object)">
  9647. <summary>
  9648. ArgumentException with message like "User-defined operator method '{0}' must be static."
  9649. </summary>
  9650. </member>
  9651. <member name="M:Microsoft.Scripting.Ast.Error.UserDefinedOperatorMustNotBeVoid(System.Object)">
  9652. <summary>
  9653. ArgumentException with message like "User-defined operator method '{0}' must not be void."
  9654. </summary>
  9655. </member>
  9656. <member name="M:Microsoft.Scripting.Ast.Error.CoercionOperatorNotDefined(System.Object,System.Object)">
  9657. <summary>
  9658. InvalidOperationException with message like "No coercion operator is defined between types '{0}' and '{1}'."
  9659. </summary>
  9660. </member>
  9661. <member name="M:Microsoft.Scripting.Ast.Error.DynamicBinderResultNotAssignable(System.Object,System.Object,System.Object)">
  9662. <summary>
  9663. InvalidCastException with message like "The result type '{0}' of the dynamic binding produced by binder '{1}' is not compatible with the result type '{2}' expected by the call site."
  9664. </summary>
  9665. </member>
  9666. <member name="M:Microsoft.Scripting.Ast.Error.DynamicObjectResultNotAssignable(System.Object,System.Object,System.Object,System.Object)">
  9667. <summary>
  9668. InvalidCastException with message like "The result type '{0}' of the dynamic binding produced by the object with type '{1}' for the binder '{2}' is not compatible with the result type '{3}' expected by the call site."
  9669. </summary>
  9670. </member>
  9671. <member name="M:Microsoft.Scripting.Ast.Error.DynamicBindingNeedsRestrictions(System.Object,System.Object)">
  9672. <summary>
  9673. InvalidOperationException with message like "The result of the dynamic binding produced by the object with type '{0}' for the binder '{1}' needs at least one restriction."
  9674. </summary>
  9675. </member>
  9676. <member name="M:Microsoft.Scripting.Ast.Error.BinderNotCompatibleWithCallSite(System.Object,System.Object,System.Object)">
  9677. <summary>
  9678. InvalidOperationException with message like "The result type '{0}' of the binder '{1}' is not compatible with the result type '{2}' expected by the call site."
  9679. </summary>
  9680. </member>
  9681. <member name="M:Microsoft.Scripting.Ast.Error.UnaryOperatorNotDefined(System.Object,System.Object)">
  9682. <summary>
  9683. InvalidOperationException with message like "The unary operator {0} is not defined for the type '{1}'."
  9684. </summary>
  9685. </member>
  9686. <member name="M:Microsoft.Scripting.Ast.Error.BinaryOperatorNotDefined(System.Object,System.Object,System.Object)">
  9687. <summary>
  9688. InvalidOperationException with message like "The binary operator {0} is not defined for the types '{1}' and '{2}'."
  9689. </summary>
  9690. </member>
  9691. <member name="M:Microsoft.Scripting.Ast.Error.ReferenceEqualityNotDefined(System.Object,System.Object)">
  9692. <summary>
  9693. InvalidOperationException with message like "Reference equality is not defined for the types '{0}' and '{1}'."
  9694. </summary>
  9695. </member>
  9696. <member name="M:Microsoft.Scripting.Ast.Error.OperandTypesDoNotMatchParameters(System.Object,System.Object)">
  9697. <summary>
  9698. InvalidOperationException with message like "The operands for operator '{0}' do not match the parameters of method '{1}'."
  9699. </summary>
  9700. </member>
  9701. <member name="M:Microsoft.Scripting.Ast.Error.OverloadOperatorTypeDoesNotMatchConversionType(System.Object,System.Object)">
  9702. <summary>
  9703. InvalidOperationException with message like "The return type of overload method for operator '{0}' does not match the parameter type of conversion method '{1}'."
  9704. </summary>
  9705. </member>
  9706. <member name="M:Microsoft.Scripting.Ast.Error.ConversionIsNotSupportedForArithmeticTypes">
  9707. <summary>
  9708. InvalidOperationException with message like "Conversion is not supported for arithmetic types without operator overloading."
  9709. </summary>
  9710. </member>
  9711. <member name="M:Microsoft.Scripting.Ast.Error.ArgumentMustBeArray">
  9712. <summary>
  9713. ArgumentException with message like "Argument must be array"
  9714. </summary>
  9715. </member>
  9716. <member name="M:Microsoft.Scripting.Ast.Error.ArgumentMustBeBoolean">
  9717. <summary>
  9718. ArgumentException with message like "Argument must be boolean"
  9719. </summary>
  9720. </member>
  9721. <member name="M:Microsoft.Scripting.Ast.Error.EqualityMustReturnBoolean(System.Object)">
  9722. <summary>
  9723. ArgumentException with message like "The user-defined equality method '{0}' must return a boolean value."
  9724. </summary>
  9725. </member>
  9726. <member name="M:Microsoft.Scripting.Ast.Error.ArgumentMustBeFieldInfoOrPropertInfo">
  9727. <summary>
  9728. ArgumentException with message like "Argument must be either a FieldInfo or PropertyInfo"
  9729. </summary>
  9730. </member>
  9731. <member name="M:Microsoft.Scripting.Ast.Error.ArgumentMustBeFieldInfoOrPropertInfoOrMethod">
  9732. <summary>
  9733. ArgumentException with message like "Argument must be either a FieldInfo, PropertyInfo or MethodInfo"
  9734. </summary>
  9735. </member>
  9736. <member name="M:Microsoft.Scripting.Ast.Error.ArgumentMustBeInstanceMember">
  9737. <summary>
  9738. ArgumentException with message like "Argument must be an instance member"
  9739. </summary>
  9740. </member>
  9741. <member name="M:Microsoft.Scripting.Ast.Error.ArgumentMustBeInteger">
  9742. <summary>
  9743. ArgumentException with message like "Argument must be of an integer type"
  9744. </summary>
  9745. </member>
  9746. <member name="M:Microsoft.Scripting.Ast.Error.ArgumentMustBeArrayIndexType">
  9747. <summary>
  9748. ArgumentException with message like "Argument for array index must be of type Int32"
  9749. </summary>
  9750. </member>
  9751. <member name="M:Microsoft.Scripting.Ast.Error.ArgumentMustBeSingleDimensionalArrayType">
  9752. <summary>
  9753. ArgumentException with message like "Argument must be single dimensional array type"
  9754. </summary>
  9755. </member>
  9756. <member name="M:Microsoft.Scripting.Ast.Error.ArgumentTypesMustMatch">
  9757. <summary>
  9758. ArgumentException with message like "Argument types do not match"
  9759. </summary>
  9760. </member>
  9761. <member name="M:Microsoft.Scripting.Ast.Error.CannotAutoInitializeValueTypeElementThroughProperty(System.Object)">
  9762. <summary>
  9763. InvalidOperationException with message like "Cannot auto initialize elements of value type through property '{0}', use assignment instead"
  9764. </summary>
  9765. </member>
  9766. <member name="M:Microsoft.Scripting.Ast.Error.CannotAutoInitializeValueTypeMemberThroughProperty(System.Object)">
  9767. <summary>
  9768. InvalidOperationException with message like "Cannot auto initialize members of value type through property '{0}', use assignment instead"
  9769. </summary>
  9770. </member>
  9771. <member name="M:Microsoft.Scripting.Ast.Error.IncorrectTypeForTypeAs(System.Object)">
  9772. <summary>
  9773. ArgumentException with message like "The type used in TypeAs Expression must be of reference or nullable type, {0} is neither"
  9774. </summary>
  9775. </member>
  9776. <member name="M:Microsoft.Scripting.Ast.Error.CoalesceUsedOnNonNullType">
  9777. <summary>
  9778. InvalidOperationException with message like "Coalesce used with type that cannot be null"
  9779. </summary>
  9780. </member>
  9781. <member name="M:Microsoft.Scripting.Ast.Error.ExpressionTypeCannotInitializeArrayType(System.Object,System.Object)">
  9782. <summary>
  9783. InvalidOperationException with message like "An expression of type '{0}' cannot be used to initialize an array of type '{1}'"
  9784. </summary>
  9785. </member>
  9786. <member name="M:Microsoft.Scripting.Ast.Error.ExpressionTypeDoesNotMatchConstructorParameter(System.Object,System.Object)">
  9787. <summary>
  9788. ArgumentException with message like "Expression of type '{0}' cannot be used for constructor parameter of type '{1}'"
  9789. </summary>
  9790. </member>
  9791. <member name="M:Microsoft.Scripting.Ast.Error.ArgumentTypeDoesNotMatchMember(System.Object,System.Object)">
  9792. <summary>
  9793. ArgumentException with message like " Argument type '{0}' does not match the corresponding member type '{1}'"
  9794. </summary>
  9795. </member>
  9796. <member name="M:Microsoft.Scripting.Ast.Error.ArgumentMemberNotDeclOnType(System.Object,System.Object)">
  9797. <summary>
  9798. ArgumentException with message like " The member '{0}' is not declared on type '{1}' being created"
  9799. </summary>
  9800. </member>
  9801. <member name="M:Microsoft.Scripting.Ast.Error.ExpressionTypeDoesNotMatchMethodParameter(System.Object,System.Object,System.Object)">
  9802. <summary>
  9803. ArgumentException with message like "Expression of type '{0}' cannot be used for parameter of type '{1}' of method '{2}'"
  9804. </summary>
  9805. </member>
  9806. <member name="M:Microsoft.Scripting.Ast.Error.ExpressionTypeDoesNotMatchParameter(System.Object,System.Object)">
  9807. <summary>
  9808. ArgumentException with message like "Expression of type '{0}' cannot be used for parameter of type '{1}'"
  9809. </summary>
  9810. </member>
  9811. <member name="M:Microsoft.Scripting.Ast.Error.ExpressionTypeDoesNotMatchReturn(System.Object,System.Object)">
  9812. <summary>
  9813. ArgumentException with message like "Expression of type '{0}' cannot be used for return type '{1}'"
  9814. </summary>
  9815. </member>
  9816. <member name="M:Microsoft.Scripting.Ast.Error.ExpressionTypeDoesNotMatchAssignment(System.Object,System.Object)">
  9817. <summary>
  9818. ArgumentException with message like "Expression of type '{0}' cannot be used for assignment to type '{1}'"
  9819. </summary>
  9820. </member>
  9821. <member name="M:Microsoft.Scripting.Ast.Error.ExpressionTypeDoesNotMatchLabel(System.Object,System.Object)">
  9822. <summary>
  9823. ArgumentException with message like "Expression of type '{0}' cannot be used for label of type '{1}'"
  9824. </summary>
  9825. </member>
  9826. <member name="M:Microsoft.Scripting.Ast.Error.ExpressionTypeNotInvocable(System.Object)">
  9827. <summary>
  9828. ArgumentException with message like "Expression of type '{0}' cannot be invoked"
  9829. </summary>
  9830. </member>
  9831. <member name="M:Microsoft.Scripting.Ast.Error.FieldNotDefinedForType(System.Object,System.Object)">
  9832. <summary>
  9833. ArgumentException with message like "Field '{0}' is not defined for type '{1}'"
  9834. </summary>
  9835. </member>
  9836. <member name="M:Microsoft.Scripting.Ast.Error.InstanceFieldNotDefinedForType(System.Object,System.Object)">
  9837. <summary>
  9838. ArgumentException with message like "Instance field '{0}' is not defined for type '{1}'"
  9839. </summary>
  9840. </member>
  9841. <member name="M:Microsoft.Scripting.Ast.Error.FieldInfoNotDefinedForType(System.Object,System.Object,System.Object)">
  9842. <summary>
  9843. ArgumentException with message like "Field '{0}.{1}' is not defined for type '{2}'"
  9844. </summary>
  9845. </member>
  9846. <member name="M:Microsoft.Scripting.Ast.Error.IncorrectNumberOfIndexes">
  9847. <summary>
  9848. ArgumentException with message like "Incorrect number of indexes"
  9849. </summary>
  9850. </member>
  9851. <member name="M:Microsoft.Scripting.Ast.Error.IncorrectNumberOfLambdaArguments">
  9852. <summary>
  9853. InvalidOperationException with message like "Incorrect number of arguments supplied for lambda invocation"
  9854. </summary>
  9855. </member>
  9856. <member name="M:Microsoft.Scripting.Ast.Error.IncorrectNumberOfLambdaDeclarationParameters">
  9857. <summary>
  9858. ArgumentException with message like "Incorrect number of parameters supplied for lambda declaration"
  9859. </summary>
  9860. </member>
  9861. <member name="M:Microsoft.Scripting.Ast.Error.IncorrectNumberOfMethodCallArguments(System.Object)">
  9862. <summary>
  9863. ArgumentException with message like "Incorrect number of arguments supplied for call to method '{0}'"
  9864. </summary>
  9865. </member>
  9866. <member name="M:Microsoft.Scripting.Ast.Error.IncorrectNumberOfConstructorArguments">
  9867. <summary>
  9868. ArgumentException with message like "Incorrect number of arguments for constructor"
  9869. </summary>
  9870. </member>
  9871. <member name="M:Microsoft.Scripting.Ast.Error.IncorrectNumberOfMembersForGivenConstructor">
  9872. <summary>
  9873. ArgumentException with message like " Incorrect number of members for constructor"
  9874. </summary>
  9875. </member>
  9876. <member name="M:Microsoft.Scripting.Ast.Error.IncorrectNumberOfArgumentsForMembers">
  9877. <summary>
  9878. ArgumentException with message like "Incorrect number of arguments for the given members "
  9879. </summary>
  9880. </member>
  9881. <member name="M:Microsoft.Scripting.Ast.Error.LambdaTypeMustBeDerivedFromSystemDelegate">
  9882. <summary>
  9883. ArgumentException with message like "Lambda type parameter must be derived from System.Delegate"
  9884. </summary>
  9885. </member>
  9886. <member name="M:Microsoft.Scripting.Ast.Error.MemberNotFieldOrProperty(System.Object)">
  9887. <summary>
  9888. ArgumentException with message like "Member '{0}' not field or property"
  9889. </summary>
  9890. </member>
  9891. <member name="M:Microsoft.Scripting.Ast.Error.MethodContainsGenericParameters(System.Object)">
  9892. <summary>
  9893. ArgumentException with message like "Method {0} contains generic parameters"
  9894. </summary>
  9895. </member>
  9896. <member name="M:Microsoft.Scripting.Ast.Error.MethodIsGeneric(System.Object)">
  9897. <summary>
  9898. ArgumentException with message like "Method {0} is a generic method definition"
  9899. </summary>
  9900. </member>
  9901. <member name="M:Microsoft.Scripting.Ast.Error.MethodNotPropertyAccessor(System.Object,System.Object)">
  9902. <summary>
  9903. ArgumentException with message like "The method '{0}.{1}' is not a property accessor"
  9904. </summary>
  9905. </member>
  9906. <member name="M:Microsoft.Scripting.Ast.Error.PropertyDoesNotHaveGetter(System.Object)">
  9907. <summary>
  9908. ArgumentException with message like "The property '{0}' has no 'get' accessor"
  9909. </summary>
  9910. </member>
  9911. <member name="M:Microsoft.Scripting.Ast.Error.PropertyDoesNotHaveSetter(System.Object)">
  9912. <summary>
  9913. ArgumentException with message like "The property '{0}' has no 'set' accessor"
  9914. </summary>
  9915. </member>
  9916. <member name="M:Microsoft.Scripting.Ast.Error.PropertyDoesNotHaveAccessor(System.Object)">
  9917. <summary>
  9918. ArgumentException with message like "The property '{0}' has no 'get' or 'set' accessors"
  9919. </summary>
  9920. </member>
  9921. <member name="M:Microsoft.Scripting.Ast.Error.NotAMemberOfType(System.Object,System.Object)">
  9922. <summary>
  9923. ArgumentException with message like "'{0}' is not a member of type '{1}'"
  9924. </summary>
  9925. </member>
  9926. <member name="M:Microsoft.Scripting.Ast.Error.OperatorNotImplementedForType(System.Object,System.Object)">
  9927. <summary>
  9928. NotImplementedException with message like "The operator '{0}' is not implemented for type '{1}'"
  9929. </summary>
  9930. </member>
  9931. <member name="M:Microsoft.Scripting.Ast.Error.ParameterExpressionNotValidAsDelegate(System.Object,System.Object)">
  9932. <summary>
  9933. ArgumentException with message like "ParameterExpression of type '{0}' cannot be used for delegate parameter of type '{1}'"
  9934. </summary>
  9935. </member>
  9936. <member name="M:Microsoft.Scripting.Ast.Error.PropertyNotDefinedForType(System.Object,System.Object)">
  9937. <summary>
  9938. ArgumentException with message like "Property '{0}' is not defined for type '{1}'"
  9939. </summary>
  9940. </member>
  9941. <member name="M:Microsoft.Scripting.Ast.Error.InstancePropertyNotDefinedForType(System.Object,System.Object)">
  9942. <summary>
  9943. ArgumentException with message like "Instance property '{0}' is not defined for type '{1}'"
  9944. </summary>
  9945. </member>
  9946. <member name="M:Microsoft.Scripting.Ast.Error.InstancePropertyWithoutParameterNotDefinedForType(System.Object,System.Object)">
  9947. <summary>
  9948. ArgumentException with message like "Instance property '{0}' that takes no argument is not defined for type '{1}'"
  9949. </summary>
  9950. </member>
  9951. <member name="M:Microsoft.Scripting.Ast.Error.InstancePropertyWithSpecifiedParametersNotDefinedForType(System.Object,System.Object,System.Object)">
  9952. <summary>
  9953. ArgumentException with message like "Instance property '{0}{1}' is not defined for type '{2}'"
  9954. </summary>
  9955. </member>
  9956. <member name="M:Microsoft.Scripting.Ast.Error.InstanceAndMethodTypeMismatch(System.Object,System.Object,System.Object)">
  9957. <summary>
  9958. ArgumentException with message like "Method '{0}' declared on type '{1}' cannot be called with instance of type '{2}'"
  9959. </summary>
  9960. </member>
  9961. <member name="M:Microsoft.Scripting.Ast.Error.TypeContainsGenericParameters(System.Object)">
  9962. <summary>
  9963. ArgumentException with message like "Type {0} contains generic parameters"
  9964. </summary>
  9965. </member>
  9966. <member name="M:Microsoft.Scripting.Ast.Error.TypeIsGeneric(System.Object)">
  9967. <summary>
  9968. ArgumentException with message like "Type {0} is a generic type definition"
  9969. </summary>
  9970. </member>
  9971. <member name="M:Microsoft.Scripting.Ast.Error.TypeMissingDefaultConstructor(System.Object)">
  9972. <summary>
  9973. ArgumentException with message like "Type '{0}' does not have a default constructor"
  9974. </summary>
  9975. </member>
  9976. <member name="M:Microsoft.Scripting.Ast.Error.ListInitializerWithZeroMembers">
  9977. <summary>
  9978. ArgumentException with message like "List initializers must contain at least one initializer"
  9979. </summary>
  9980. </member>
  9981. <member name="M:Microsoft.Scripting.Ast.Error.ElementInitializerMethodNotAdd">
  9982. <summary>
  9983. ArgumentException with message like "Element initializer method must be named 'Add'"
  9984. </summary>
  9985. </member>
  9986. <member name="M:Microsoft.Scripting.Ast.Error.ElementInitializerMethodNoRefOutParam(System.Object,System.Object)">
  9987. <summary>
  9988. ArgumentException with message like "Parameter '{0}' of element initializer method '{1}' must not be a pass by reference parameter"
  9989. </summary>
  9990. </member>
  9991. <member name="M:Microsoft.Scripting.Ast.Error.ElementInitializerMethodWithZeroArgs">
  9992. <summary>
  9993. ArgumentException with message like "Element initializer method must have at least 1 parameter"
  9994. </summary>
  9995. </member>
  9996. <member name="M:Microsoft.Scripting.Ast.Error.ElementInitializerMethodStatic">
  9997. <summary>
  9998. ArgumentException with message like "Element initializer method must be an instance method"
  9999. </summary>
  10000. </member>
  10001. <member name="M:Microsoft.Scripting.Ast.Error.TypeNotIEnumerable(System.Object)">
  10002. <summary>
  10003. ArgumentException with message like "Type '{0}' is not IEnumerable"
  10004. </summary>
  10005. </member>
  10006. <member name="M:Microsoft.Scripting.Ast.Error.TypeParameterIsNotDelegate(System.Object)">
  10007. <summary>
  10008. InvalidOperationException with message like "Type parameter is {0}. Expected a delegate."
  10009. </summary>
  10010. </member>
  10011. <member name="M:Microsoft.Scripting.Ast.Error.UnexpectedCoalesceOperator">
  10012. <summary>
  10013. InvalidOperationException with message like "Unexpected coalesce operator."
  10014. </summary>
  10015. </member>
  10016. <member name="M:Microsoft.Scripting.Ast.Error.InvalidCast(System.Object,System.Object)">
  10017. <summary>
  10018. InvalidOperationException with message like "Cannot cast from type '{0}' to type '{1}"
  10019. </summary>
  10020. </member>
  10021. <member name="M:Microsoft.Scripting.Ast.Error.UnhandledBinary(System.Object)">
  10022. <summary>
  10023. ArgumentException with message like "Unhandled binary: {0}"
  10024. </summary>
  10025. </member>
  10026. <member name="M:Microsoft.Scripting.Ast.Error.UnhandledBinding">
  10027. <summary>
  10028. ArgumentException with message like "Unhandled binding "
  10029. </summary>
  10030. </member>
  10031. <member name="M:Microsoft.Scripting.Ast.Error.UnhandledBindingType(System.Object)">
  10032. <summary>
  10033. ArgumentException with message like "Unhandled Binding Type: {0}"
  10034. </summary>
  10035. </member>
  10036. <member name="M:Microsoft.Scripting.Ast.Error.UnhandledConvert(System.Object)">
  10037. <summary>
  10038. ArgumentException with message like "Unhandled convert: {0}"
  10039. </summary>
  10040. </member>
  10041. <member name="M:Microsoft.Scripting.Ast.Error.UnhandledExpressionType(System.Object)">
  10042. <summary>
  10043. ArgumentException with message like "Unhandled Expression Type: {0}"
  10044. </summary>
  10045. </member>
  10046. <member name="M:Microsoft.Scripting.Ast.Error.UnhandledUnary(System.Object)">
  10047. <summary>
  10048. ArgumentException with message like "Unhandled unary: {0}"
  10049. </summary>
  10050. </member>
  10051. <member name="M:Microsoft.Scripting.Ast.Error.UnknownBindingType">
  10052. <summary>
  10053. ArgumentException with message like "Unknown binding type"
  10054. </summary>
  10055. </member>
  10056. <member name="M:Microsoft.Scripting.Ast.Error.UserDefinedOpMustHaveConsistentTypes(System.Object,System.Object)">
  10057. <summary>
  10058. ArgumentException with message like "The user-defined operator method '{1}' for operator '{0}' must have identical parameter and return types."
  10059. </summary>
  10060. </member>
  10061. <member name="M:Microsoft.Scripting.Ast.Error.UserDefinedOpMustHaveValidReturnType(System.Object,System.Object)">
  10062. <summary>
  10063. ArgumentException with message like "The user-defined operator method '{1}' for operator '{0}' must return the same type as its parameter or a derived type."
  10064. </summary>
  10065. </member>
  10066. <member name="M:Microsoft.Scripting.Ast.Error.LogicalOperatorMustHaveBooleanOperators(System.Object,System.Object)">
  10067. <summary>
  10068. ArgumentException with message like "The user-defined operator method '{1}' for operator '{0}' must have associated boolean True and False operators."
  10069. </summary>
  10070. </member>
  10071. <member name="M:Microsoft.Scripting.Ast.Error.MethodDoesNotExistOnType(System.Object,System.Object)">
  10072. <summary>
  10073. InvalidOperationException with message like "No method '{0}' exists on type '{1}'."
  10074. </summary>
  10075. </member>
  10076. <member name="M:Microsoft.Scripting.Ast.Error.MethodWithArgsDoesNotExistOnType(System.Object,System.Object)">
  10077. <summary>
  10078. InvalidOperationException with message like "No method '{0}' on type '{1}' is compatible with the supplied arguments."
  10079. </summary>
  10080. </member>
  10081. <member name="M:Microsoft.Scripting.Ast.Error.GenericMethodWithArgsDoesNotExistOnType(System.Object,System.Object)">
  10082. <summary>
  10083. InvalidOperationException with message like "No generic method '{0}' on type '{1}' is compatible with the supplied type arguments and arguments. No type arguments should be provided if the method is non-generic. "
  10084. </summary>
  10085. </member>
  10086. <member name="M:Microsoft.Scripting.Ast.Error.MethodWithMoreThanOneMatch(System.Object,System.Object)">
  10087. <summary>
  10088. InvalidOperationException with message like "More than one method '{0}' on type '{1}' is compatible with the supplied arguments."
  10089. </summary>
  10090. </member>
  10091. <member name="M:Microsoft.Scripting.Ast.Error.PropertyWithMoreThanOneMatch(System.Object,System.Object)">
  10092. <summary>
  10093. InvalidOperationException with message like "More than one property '{0}' on type '{1}' is compatible with the supplied arguments."
  10094. </summary>
  10095. </member>
  10096. <member name="M:Microsoft.Scripting.Ast.Error.IncorrectNumberOfTypeArgsForFunc">
  10097. <summary>
  10098. ArgumentException with message like "An incorrect number of type args were specified for the declaration of a Func type."
  10099. </summary>
  10100. </member>
  10101. <member name="M:Microsoft.Scripting.Ast.Error.IncorrectNumberOfTypeArgsForAction">
  10102. <summary>
  10103. ArgumentException with message like "An incorrect number of type args were specified for the declaration of an Action type."
  10104. </summary>
  10105. </member>
  10106. <member name="M:Microsoft.Scripting.Ast.Error.ArgumentCannotBeOfTypeVoid">
  10107. <summary>
  10108. ArgumentException with message like "Argument type cannot be System.Void."
  10109. </summary>
  10110. </member>
  10111. <member name="M:Microsoft.Scripting.Ast.Error.AmbiguousMatchInExpandoObject(System.Object)">
  10112. <summary>
  10113. System.Reflection.AmbiguousMatchException with message like "More than one key matching '{0}' was found in the ExpandoObject."
  10114. </summary>
  10115. </member>
  10116. <member name="M:Microsoft.Scripting.Ast.Error.SameKeyExistsInExpando(System.Object)">
  10117. <summary>
  10118. ArgumentException with message like "An element with the same key '{0}' already exists in the ExpandoObject."
  10119. </summary>
  10120. </member>
  10121. <member name="M:Microsoft.Scripting.Ast.Error.KeyDoesNotExistInExpando(System.Object)">
  10122. <summary>
  10123. System.Collections.Generic.KeyNotFoundException with message like "The specified key '{0}' does not exist in the ExpandoObject."
  10124. </summary>
  10125. </member>
  10126. <member name="M:Microsoft.Scripting.Ast.Error.NoOrInvalidRuleProduced">
  10127. <summary>
  10128. InvalidOperationException with message like "No or Invalid rule produced"
  10129. </summary>
  10130. </member>
  10131. <member name="M:Microsoft.Scripting.Ast.Error.FirstArgumentMustBeCallSite">
  10132. <summary>
  10133. ArgumentException with message like "First argument of delegate must be CallSite"
  10134. </summary>
  10135. </member>
  10136. <member name="M:Microsoft.Scripting.Ast.Error.BindingCannotBeNull">
  10137. <summary>
  10138. InvalidOperationException with message like "Bind cannot return null."
  10139. </summary>
  10140. </member>
  10141. <member name="M:Microsoft.Scripting.Ast.Error.InvalidOperation(System.Object)">
  10142. <summary>
  10143. ArgumentException with message like "Invalid operation: '{0}'"
  10144. </summary>
  10145. </member>
  10146. <member name="M:Microsoft.Scripting.Ast.Error.OutOfRange(System.Object,System.Object)">
  10147. <summary>
  10148. ArgumentOutOfRangeException with message like "{0} must be greater than or equal to {1}"
  10149. </summary>
  10150. </member>
  10151. <member name="M:Microsoft.Scripting.Ast.Error.QueueEmpty">
  10152. <summary>
  10153. InvalidOperationException with message like "Queue empty."
  10154. </summary>
  10155. </member>
  10156. <member name="M:Microsoft.Scripting.Ast.Error.LabelTargetAlreadyDefined(System.Object)">
  10157. <summary>
  10158. InvalidOperationException with message like "Cannot redefine label '{0}' in an inner block."
  10159. </summary>
  10160. </member>
  10161. <member name="M:Microsoft.Scripting.Ast.Error.LabelTargetUndefined(System.Object)">
  10162. <summary>
  10163. InvalidOperationException with message like "Cannot jump to undefined label '{0}'."
  10164. </summary>
  10165. </member>
  10166. <member name="M:Microsoft.Scripting.Ast.Error.ControlCannotLeaveFinally">
  10167. <summary>
  10168. InvalidOperationException with message like "Control cannot leave a finally block."
  10169. </summary>
  10170. </member>
  10171. <member name="M:Microsoft.Scripting.Ast.Error.ControlCannotLeaveFilterTest">
  10172. <summary>
  10173. InvalidOperationException with message like "Control cannot leave a filter test."
  10174. </summary>
  10175. </member>
  10176. <member name="M:Microsoft.Scripting.Ast.Error.AmbiguousJump(System.Object)">
  10177. <summary>
  10178. InvalidOperationException with message like "Cannot jump to ambiguous label '{0}'."
  10179. </summary>
  10180. </member>
  10181. <member name="M:Microsoft.Scripting.Ast.Error.ControlCannotEnterTry">
  10182. <summary>
  10183. InvalidOperationException with message like "Control cannot enter a try block."
  10184. </summary>
  10185. </member>
  10186. <member name="M:Microsoft.Scripting.Ast.Error.ControlCannotEnterExpression">
  10187. <summary>
  10188. InvalidOperationException with message like "Control cannot enter an expression--only statements can be jumped into."
  10189. </summary>
  10190. </member>
  10191. <member name="M:Microsoft.Scripting.Ast.Error.NonLocalJumpWithValue(System.Object)">
  10192. <summary>
  10193. InvalidOperationException with message like "Cannot jump to non-local label '{0}' with a value. Only jumps to labels defined in outer blocks can pass values."
  10194. </summary>
  10195. </member>
  10196. <member name="M:Microsoft.Scripting.Ast.Error.ExtensionNotReduced">
  10197. <summary>
  10198. InvalidOperationException with message like "Extension should have been reduced."
  10199. </summary>
  10200. </member>
  10201. <member name="M:Microsoft.Scripting.Ast.Error.CannotCompileConstant(System.Object)">
  10202. <summary>
  10203. InvalidOperationException with message like "CompileToMethod cannot compile constant '{0}' because it is a non-trivial value, such as a live object. Instead, create an expression tree that can construct this value."
  10204. </summary>
  10205. </member>
  10206. <member name="M:Microsoft.Scripting.Ast.Error.CannotCompileDynamic">
  10207. <summary>
  10208. NotSupportedException with message like "Dynamic expressions are not supported by CompileToMethod. Instead, create an expression tree that uses System.Runtime.CompilerServices.CallSite."
  10209. </summary>
  10210. </member>
  10211. <member name="M:Microsoft.Scripting.Ast.Error.InvalidLvalue(System.Object)">
  10212. <summary>
  10213. InvalidOperationException with message like "Invalid lvalue for assignment: {0}."
  10214. </summary>
  10215. </member>
  10216. <member name="M:Microsoft.Scripting.Ast.Error.InvalidMemberType(System.Object)">
  10217. <summary>
  10218. InvalidOperationException with message like "Invalid member type: {0}."
  10219. </summary>
  10220. </member>
  10221. <member name="M:Microsoft.Scripting.Ast.Error.UnknownLiftType(System.Object)">
  10222. <summary>
  10223. InvalidOperationException with message like "unknown lift type: '{0}'."
  10224. </summary>
  10225. </member>
  10226. <member name="M:Microsoft.Scripting.Ast.Error.InvalidOutputDir">
  10227. <summary>
  10228. ArgumentException with message like "Invalid output directory."
  10229. </summary>
  10230. </member>
  10231. <member name="M:Microsoft.Scripting.Ast.Error.InvalidAsmNameOrExtension">
  10232. <summary>
  10233. ArgumentException with message like "Invalid assembly name or file extension."
  10234. </summary>
  10235. </member>
  10236. <member name="M:Microsoft.Scripting.Ast.Error.CollectionReadOnly">
  10237. <summary>
  10238. NotSupportedException with message like "Collection is read-only."
  10239. </summary>
  10240. </member>
  10241. <member name="M:Microsoft.Scripting.Ast.Error.IllegalNewGenericParams(System.Object)">
  10242. <summary>
  10243. ArgumentException with message like "Cannot create instance of {0} because it contains generic parameters"
  10244. </summary>
  10245. </member>
  10246. <member name="M:Microsoft.Scripting.Ast.Error.UndefinedVariable(System.Object,System.Object,System.Object)">
  10247. <summary>
  10248. InvalidOperationException with message like "variable '{0}' of type '{1}' referenced from scope '{2}', but it is not defined"
  10249. </summary>
  10250. </member>
  10251. <member name="M:Microsoft.Scripting.Ast.Error.CannotCloseOverByRef(System.Object,System.Object)">
  10252. <summary>
  10253. InvalidOperationException with message like "Cannot close over byref parameter '{0}' referenced in lambda '{1}'"
  10254. </summary>
  10255. </member>
  10256. <member name="M:Microsoft.Scripting.Ast.Error.UnexpectedVarArgsCall(System.Object)">
  10257. <summary>
  10258. InvalidOperationException with message like "Unexpected VarArgs call to method '{0}'"
  10259. </summary>
  10260. </member>
  10261. <member name="M:Microsoft.Scripting.Ast.Error.RethrowRequiresCatch">
  10262. <summary>
  10263. InvalidOperationException with message like "Rethrow statement is valid only inside a Catch block."
  10264. </summary>
  10265. </member>
  10266. <member name="M:Microsoft.Scripting.Ast.Error.TryNotAllowedInFilter">
  10267. <summary>
  10268. InvalidOperationException with message like "Try expression is not allowed inside a filter body."
  10269. </summary>
  10270. </member>
  10271. <member name="M:Microsoft.Scripting.Ast.Error.MustRewriteToSameNode(System.Object,System.Object,System.Object)">
  10272. <summary>
  10273. InvalidOperationException with message like "When called from '{0}', rewriting a node of type '{1}' must return a non-null value of the same type. Alternatively, override '{2}' and change it to not visit children of this type."
  10274. </summary>
  10275. </member>
  10276. <member name="M:Microsoft.Scripting.Ast.Error.MustRewriteChildToSameType(System.Object,System.Object,System.Object)">
  10277. <summary>
  10278. InvalidOperationException with message like "Rewriting child expression from type '{0}' to type '{1}' is not allowed, because it would change the meaning of the operation. If this is intentional, override '{2}' and change it to allow this rewrite."
  10279. </summary>
  10280. </member>
  10281. <member name="M:Microsoft.Scripting.Ast.Error.MustRewriteWithoutMethod(System.Object,System.Object)">
  10282. <summary>
  10283. InvalidOperationException with message like "Rewritten expression calls operator method '{0}', but the original node had no operator method. If this is is intentional, override '{1}' and change it to allow this rewrite."
  10284. </summary>
  10285. </member>
  10286. <member name="M:Microsoft.Scripting.Ast.Error.TryNotSupportedForMethodsWithRefArgs(System.Object)">
  10287. <summary>
  10288. NotSupportedException with message like "TryExpression is not supported as an argument to method '{0}' because it has an argument with by-ref type. Construct the tree so the TryExpression is not nested inside of this expression."
  10289. </summary>
  10290. </member>
  10291. <member name="M:Microsoft.Scripting.Ast.Error.TryNotSupportedForValueTypeInstances(System.Object)">
  10292. <summary>
  10293. NotSupportedException with message like "TryExpression is not supported as a child expression when accessing a member on type '{0}' because it is a value type. Construct the tree so the TryExpression is not nested inside of this expression."
  10294. </summary>
  10295. </member>
  10296. <member name="M:Microsoft.Scripting.Ast.Error.CollectionModifiedWhileEnumerating">
  10297. <summary>
  10298. InvalidOperationException with message like "Collection was modified; enumeration operation may not execute."
  10299. </summary>
  10300. </member>
  10301. <member name="M:Microsoft.Scripting.Ast.Error.EnumerationIsDone">
  10302. <summary>
  10303. InvalidOperationException with message like "Enumeration has either not started or has already finished."
  10304. </summary>
  10305. </member>
  10306. <member name="M:Microsoft.Scripting.Ast.Error.HomogenousAppDomainRequired">
  10307. <summary>
  10308. InvalidOperationException with message like "Dynamic operations can only be performed in homogenous AppDomain."
  10309. </summary>
  10310. </member>
  10311. <member name="M:Microsoft.Scripting.Ast.Error.TestValueTypeDoesNotMatchComparisonMethodParameter(System.Object,System.Object)">
  10312. <summary>
  10313. ArgumentException with message like "Test value of type '{0}' cannot be used for the comparison method parameter of type '{1}'"
  10314. </summary>
  10315. </member>
  10316. <member name="M:Microsoft.Scripting.Ast.Error.SwitchValueTypeDoesNotMatchComparisonMethodParameter(System.Object,System.Object)">
  10317. <summary>
  10318. ArgumentException with message like "Switch value of type '{0}' cannot be used for the comparison method parameter of type '{1}'"
  10319. </summary>
  10320. </member>
  10321. <member name="M:Microsoft.Scripting.Ast.Error.InvalidMetaObjectCreated(System.Object)">
  10322. <summary>
  10323. InvalidOperationException with message like "An IDynamicMetaObjectProvider {0} created an invalid DynamicMetaObject instance."
  10324. </summary>
  10325. </member>
  10326. <member name="M:Microsoft.Scripting.Ast.Error.PdbGeneratorNeedsExpressionCompiler">
  10327. <summary>
  10328. NotSupportedException with message like "DebugInfoGenerator created by CreatePdbGenerator can only be used with LambdaExpression.CompileToMethod."
  10329. </summary>
  10330. </member>
  10331. <member name="T:Microsoft.Scripting.Utils.Func`6">
  10332. <summary>
  10333. Encapsulates a method that has five parameters and returns a value of the type specified by the TResult parameter.
  10334. </summary>
  10335. <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
  10336. <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
  10337. <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
  10338. <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
  10339. <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
  10340. <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
  10341. <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
  10342. <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
  10343. <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
  10344. <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
  10345. <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
  10346. <returns>The return value of the method that this delegate encapsulates.</returns>
  10347. </member>
  10348. <member name="T:Microsoft.Scripting.Utils.Func`7">
  10349. <summary>
  10350. Encapsulates a method that has six parameters and returns a value of the type specified by the TResult parameter.
  10351. </summary>
  10352. <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
  10353. <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
  10354. <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
  10355. <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
  10356. <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
  10357. <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
  10358. <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
  10359. <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
  10360. <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
  10361. <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
  10362. <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
  10363. <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
  10364. <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
  10365. <returns>The return value of the method that this delegate encapsulates.</returns>
  10366. </member>
  10367. <member name="T:Microsoft.Scripting.Utils.Func`8">
  10368. <summary>
  10369. Encapsulates a method that has seven parameters and returns a value of the type specified by the TResult parameter.
  10370. </summary>
  10371. <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
  10372. <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
  10373. <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
  10374. <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
  10375. <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
  10376. <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
  10377. <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
  10378. <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
  10379. <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
  10380. <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
  10381. <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
  10382. <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
  10383. <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
  10384. <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
  10385. <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
  10386. <returns>The return value of the method that this delegate encapsulates.</returns>
  10387. </member>
  10388. <member name="T:Microsoft.Scripting.Utils.Func`9">
  10389. <summary>
  10390. Encapsulates a method that has eight parameters and returns a value of the type specified by the TResult parameter.
  10391. </summary>
  10392. <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
  10393. <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
  10394. <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
  10395. <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
  10396. <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
  10397. <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
  10398. <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
  10399. <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
  10400. <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
  10401. <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
  10402. <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
  10403. <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
  10404. <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
  10405. <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
  10406. <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
  10407. <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
  10408. <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
  10409. <returns>The return value of the method that this delegate encapsulates.</returns>
  10410. </member>
  10411. <member name="T:Microsoft.Scripting.Utils.Func`10">
  10412. <summary>
  10413. Encapsulates a method that has nine parameters and returns a value of the type specified by the TResult parameter.
  10414. </summary>
  10415. <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
  10416. <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
  10417. <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
  10418. <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
  10419. <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
  10420. <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
  10421. <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
  10422. <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
  10423. <typeparam name="T9">The type of the ninth parameter of the method that this delegate encapsulates.</typeparam>
  10424. <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
  10425. <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
  10426. <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
  10427. <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
  10428. <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
  10429. <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
  10430. <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
  10431. <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
  10432. <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
  10433. <param name="arg9">The ninth parameter of the method that this delegate encapsulates.</param>
  10434. <returns>The return value of the method that this delegate encapsulates.</returns>
  10435. </member>
  10436. <member name="T:Microsoft.Scripting.Utils.Func`11">
  10437. <summary>
  10438. Encapsulates a method that has ten parameters and returns a value of the type specified by the TResult parameter.
  10439. </summary>
  10440. <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
  10441. <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
  10442. <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
  10443. <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
  10444. <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
  10445. <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
  10446. <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
  10447. <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
  10448. <typeparam name="T9">The type of the ninth parameter of the method that this delegate encapsulates.</typeparam>
  10449. <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
  10450. <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
  10451. <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
  10452. <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
  10453. <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
  10454. <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
  10455. <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
  10456. <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
  10457. <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
  10458. <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
  10459. <param name="arg9">The ninth parameter of the method that this delegate encapsulates.</param>
  10460. <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
  10461. <returns>The return value of the method that this delegate encapsulates.</returns>
  10462. </member>
  10463. <member name="T:Microsoft.Scripting.Utils.Func`12">
  10464. <summary>
  10465. Encapsulates a method that has eleven parameters and returns a value of the type specified by the TResult parameter.
  10466. </summary>
  10467. <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
  10468. <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
  10469. <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
  10470. <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
  10471. <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
  10472. <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
  10473. <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
  10474. <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
  10475. <typeparam name="T9">The type of the ninth parameter of the method that this delegate encapsulates.</typeparam>
  10476. <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
  10477. <typeparam name="T11">The type of the eleventh parameter of the method that this delegate encapsulates.</typeparam>
  10478. <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
  10479. <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
  10480. <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
  10481. <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
  10482. <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
  10483. <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
  10484. <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
  10485. <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
  10486. <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
  10487. <param name="arg9">The ninth parameter of the method that this delegate encapsulates.</param>
  10488. <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
  10489. <param name="arg11">The eleventh parameter of the method that this delegate encapsulates.</param>
  10490. <returns>The return value of the method that this delegate encapsulates.</returns>
  10491. </member>
  10492. <member name="T:Microsoft.Scripting.Utils.Func`13">
  10493. <summary>
  10494. Encapsulates a method that has twelve parameters and returns a value of the type specified by the TResult parameter.
  10495. </summary>
  10496. <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
  10497. <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
  10498. <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
  10499. <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
  10500. <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
  10501. <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
  10502. <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
  10503. <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
  10504. <typeparam name="T9">The type of the ninth parameter of the method that this delegate encapsulates.</typeparam>
  10505. <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
  10506. <typeparam name="T11">The type of the eleventh parameter of the method that this delegate encapsulates.</typeparam>
  10507. <typeparam name="T12">The type of the twelfth parameter of the method that this delegate encapsulates.</typeparam>
  10508. <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
  10509. <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
  10510. <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
  10511. <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
  10512. <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
  10513. <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
  10514. <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
  10515. <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
  10516. <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
  10517. <param name="arg9">The ninth parameter of the method that this delegate encapsulates.</param>
  10518. <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
  10519. <param name="arg11">The eleventh parameter of the method that this delegate encapsulates.</param>
  10520. <param name="arg12">The twelfth parameter of the method that this delegate encapsulates.</param>
  10521. <returns>The return value of the method that this delegate encapsulates.</returns>
  10522. </member>
  10523. <member name="T:Microsoft.Scripting.Utils.Func`14">
  10524. <summary>
  10525. Encapsulates a method that has thirteen parameters and returns a value of the type specified by the TResult parameter.
  10526. </summary>
  10527. <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
  10528. <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
  10529. <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
  10530. <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
  10531. <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
  10532. <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
  10533. <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
  10534. <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
  10535. <typeparam name="T9">The type of the ninth parameter of the method that this delegate encapsulates.</typeparam>
  10536. <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
  10537. <typeparam name="T11">The type of the eleventh parameter of the method that this delegate encapsulates.</typeparam>
  10538. <typeparam name="T12">The type of the twelfth parameter of the method that this delegate encapsulates.</typeparam>
  10539. <typeparam name="T13">The type of the thirteenth parameter of the method that this delegate encapsulates.</typeparam>
  10540. <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
  10541. <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
  10542. <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
  10543. <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
  10544. <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
  10545. <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
  10546. <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
  10547. <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
  10548. <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
  10549. <param name="arg9">The ninth parameter of the method that this delegate encapsulates.</param>
  10550. <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
  10551. <param name="arg11">The eleventh parameter of the method that this delegate encapsulates.</param>
  10552. <param name="arg12">The twelfth parameter of the method that this delegate encapsulates.</param>
  10553. <param name="arg13">The thirteenth parameter of the method that this delegate encapsulates.</param>
  10554. <returns>The return value of the method that this delegate encapsulates.</returns>
  10555. </member>
  10556. <member name="T:Microsoft.Scripting.Utils.Func`15">
  10557. <summary>
  10558. Encapsulates a method that has fourteen parameters and returns a value of the type specified by the TResult parameter.
  10559. </summary>
  10560. <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
  10561. <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
  10562. <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
  10563. <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
  10564. <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
  10565. <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
  10566. <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
  10567. <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
  10568. <typeparam name="T9">The type of the ninth parameter of the method that this delegate encapsulates.</typeparam>
  10569. <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
  10570. <typeparam name="T11">The type of the eleventh parameter of the method that this delegate encapsulates.</typeparam>
  10571. <typeparam name="T12">The type of the twelfth parameter of the method that this delegate encapsulates.</typeparam>
  10572. <typeparam name="T13">The type of the thirteenth parameter of the method that this delegate encapsulates.</typeparam>
  10573. <typeparam name="T14">The type of the fourteenth parameter of the method that this delegate encapsulates.</typeparam>
  10574. <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
  10575. <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
  10576. <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
  10577. <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
  10578. <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
  10579. <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
  10580. <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
  10581. <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
  10582. <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
  10583. <param name="arg9">The ninth parameter of the method that this delegate encapsulates.</param>
  10584. <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
  10585. <param name="arg11">The eleventh parameter of the method that this delegate encapsulates.</param>
  10586. <param name="arg12">The twelfth parameter of the method that this delegate encapsulates.</param>
  10587. <param name="arg13">The thirteenth parameter of the method that this delegate encapsulates.</param>
  10588. <param name="arg14">The fourteenth parameter of the method that this delegate encapsulates.</param>
  10589. <returns>The return value of the method that this delegate encapsulates.</returns>
  10590. </member>
  10591. <member name="T:Microsoft.Scripting.Utils.Func`16">
  10592. <summary>
  10593. Encapsulates a method that has fifteen parameters and returns a value of the type specified by the TResult parameter.
  10594. </summary>
  10595. <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
  10596. <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
  10597. <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
  10598. <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
  10599. <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
  10600. <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
  10601. <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
  10602. <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
  10603. <typeparam name="T9">The type of the ninth parameter of the method that this delegate encapsulates.</typeparam>
  10604. <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
  10605. <typeparam name="T11">The type of the eleventh parameter of the method that this delegate encapsulates.</typeparam>
  10606. <typeparam name="T12">The type of the twelfth parameter of the method that this delegate encapsulates.</typeparam>
  10607. <typeparam name="T13">The type of the thirteenth parameter of the method that this delegate encapsulates.</typeparam>
  10608. <typeparam name="T14">The type of the fourteenth parameter of the method that this delegate encapsulates.</typeparam>
  10609. <typeparam name="T15">The type of the fifteenth parameter of the method that this delegate encapsulates.</typeparam>
  10610. <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
  10611. <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
  10612. <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
  10613. <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
  10614. <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
  10615. <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
  10616. <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
  10617. <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
  10618. <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
  10619. <param name="arg9">The ninth parameter of the method that this delegate encapsulates.</param>
  10620. <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
  10621. <param name="arg11">The eleventh parameter of the method that this delegate encapsulates.</param>
  10622. <param name="arg12">The twelfth parameter of the method that this delegate encapsulates.</param>
  10623. <param name="arg13">The thirteenth parameter of the method that this delegate encapsulates.</param>
  10624. <param name="arg14">The fourteenth parameter of the method that this delegate encapsulates.</param>
  10625. <param name="arg15">The fifteenth parameter of the method that this delegate encapsulates.</param>
  10626. <returns>The return value of the method that this delegate encapsulates.</returns>
  10627. </member>
  10628. <member name="T:Microsoft.Scripting.Utils.Func`17">
  10629. <summary>
  10630. Encapsulates a method that has sixteen parameters and returns a value of the type specified by the TResult parameter.
  10631. </summary>
  10632. <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
  10633. <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
  10634. <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
  10635. <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
  10636. <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
  10637. <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
  10638. <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
  10639. <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
  10640. <typeparam name="T9">The type of the ninth parameter of the method that this delegate encapsulates.</typeparam>
  10641. <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
  10642. <typeparam name="T11">The type of the eleventh parameter of the method that this delegate encapsulates.</typeparam>
  10643. <typeparam name="T12">The type of the twelfth parameter of the method that this delegate encapsulates.</typeparam>
  10644. <typeparam name="T13">The type of the thirteenth parameter of the method that this delegate encapsulates.</typeparam>
  10645. <typeparam name="T14">The type of the fourteenth parameter of the method that this delegate encapsulates.</typeparam>
  10646. <typeparam name="T15">The type of the fifteenth parameter of the method that this delegate encapsulates.</typeparam>
  10647. <typeparam name="T16">The type of the sixteenth parameter of the method that this delegate encapsulates.</typeparam>
  10648. <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
  10649. <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
  10650. <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
  10651. <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
  10652. <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
  10653. <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
  10654. <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
  10655. <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
  10656. <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
  10657. <param name="arg9">The ninth parameter of the method that this delegate encapsulates.</param>
  10658. <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
  10659. <param name="arg11">The eleventh parameter of the method that this delegate encapsulates.</param>
  10660. <param name="arg12">The twelfth parameter of the method that this delegate encapsulates.</param>
  10661. <param name="arg13">The thirteenth parameter of the method that this delegate encapsulates.</param>
  10662. <param name="arg14">The fourteenth parameter of the method that this delegate encapsulates.</param>
  10663. <param name="arg15">The fifteenth parameter of the method that this delegate encapsulates.</param>
  10664. <param name="arg16">The sixteenth parameter of the method that this delegate encapsulates.</param>
  10665. <returns>The return value of the method that this delegate encapsulates.</returns>
  10666. </member>
  10667. <member name="T:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1">
  10668. <summary>
  10669. The builder for read only collection.
  10670. </summary>
  10671. <typeparam name="T">The type of the collection element.</typeparam>
  10672. </member>
  10673. <member name="M:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1.#ctor">
  10674. <summary>
  10675. Constructs a ReadOnlyCollectionBuilder.
  10676. </summary>
  10677. </member>
  10678. <member name="M:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1.#ctor(System.Int32)">
  10679. <summary>
  10680. Constructs a ReadOnlyCollectionBuilder with a given initial capacity.
  10681. The contents are empty but builder will have reserved room for the given
  10682. number of elements before any reallocations are required.
  10683. </summary>
  10684. </member>
  10685. <member name="M:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
  10686. <summary>
  10687. Constructs a ReadOnlyCollectionBuilder, copying contents of the given collection.
  10688. </summary>
  10689. <param name="collection"></param>
  10690. </member>
  10691. <member name="M:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1.IndexOf(`0)">
  10692. <summary>
  10693. Returns the index of the first occurrence of a given value in the builder.
  10694. </summary>
  10695. <param name="item">An item to search for.</param>
  10696. <returns>The index of the first occurrence of an item.</returns>
  10697. </member>
  10698. <member name="M:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1.Insert(System.Int32,`0)">
  10699. <summary>
  10700. Inserts an item to the <see cref="T:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1"/> at the specified index.
  10701. </summary>
  10702. <param name="index">The zero-based index at which item should be inserted.</param>
  10703. <param name="item">The object to insert into the <see cref="T:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1"/>.</param>
  10704. </member>
  10705. <member name="M:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1.RemoveAt(System.Int32)">
  10706. <summary>
  10707. Removes the <see cref="T:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1"/> item at the specified index.
  10708. </summary>
  10709. <param name="index">The zero-based index of the item to remove.</param>
  10710. </member>
  10711. <member name="M:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1.Add(`0)">
  10712. <summary>
  10713. Adds an item to the <see cref="T:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1"/>.
  10714. </summary>
  10715. <param name="item">The object to add to the <see cref="T:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1"/>.</param>
  10716. </member>
  10717. <member name="M:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1.Clear">
  10718. <summary>
  10719. Removes all items from the <see cref="T:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1"/>.
  10720. </summary>
  10721. </member>
  10722. <member name="M:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1.Contains(`0)">
  10723. <summary>
  10724. Determines whether the <see cref="T:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1"/> contains a specific value
  10725. </summary>
  10726. <param name="item">the object to locate in the <see cref="T:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1"/>.</param>
  10727. <returns>true if item is found in the <see cref="T:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1"/>; otherwise, false.</returns>
  10728. </member>
  10729. <member name="M:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1.CopyTo(`0[],System.Int32)">
  10730. <summary>
  10731. Copies the elements of the <see cref="T:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1"/> to an <see cref="T:System.Array"/>,
  10732. starting at particular <see cref="T:System.Array"/> index.
  10733. </summary>
  10734. <param name="array">The one-dimensional <see cref="T:System.Array"/> that is the destination of the elements copied from <see cref="T:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1"/>.</param>
  10735. <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
  10736. </member>
  10737. <member name="M:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1.Remove(`0)">
  10738. <summary>
  10739. Removes the first occurrence of a specific object from the <see cref="T:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1"/>.
  10740. </summary>
  10741. <param name="item">The object to remove from the <see cref="T:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1"/>.</param>
  10742. <returns>true if item was successfully removed from the <see cref="T:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1"/>;
  10743. otherwise, false. This method also returns false if item is not found in the original <see cref="T:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1"/>.
  10744. </returns>
  10745. </member>
  10746. <member name="M:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1.GetEnumerator">
  10747. <summary>
  10748. Returns an enumerator that iterates through the collection.
  10749. </summary>
  10750. <returns>A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.</returns>
  10751. </member>
  10752. <member name="M:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1.Reverse">
  10753. <summary>
  10754. Reverses the order of the elements in the entire <see cref="T:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1"/>.
  10755. </summary>
  10756. </member>
  10757. <member name="M:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1.Reverse(System.Int32,System.Int32)">
  10758. <summary>
  10759. Reverses the order of the elements in the specified range.
  10760. </summary>
  10761. <param name="index">The zero-based starting index of the range to reverse.</param>
  10762. <param name="count">The number of elements in the range to reverse.</param>
  10763. </member>
  10764. <member name="M:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1.ToArray">
  10765. <summary>
  10766. Copies the elements of the <see cref="T:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1"/> to a new array.
  10767. </summary>
  10768. <returns>An array containing copies of the elements of the <see cref="T:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1"/>.</returns>
  10769. </member>
  10770. <member name="M:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1.ToReadOnlyCollection">
  10771. <summary>
  10772. Creates a <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1"/> containing all of the the elements of the <see cref="T:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1"/>,
  10773. avoiding copying the elements to the new array if possible. Resets the <see cref="T:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1"/> after the
  10774. <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1"/> has been created.
  10775. </summary>
  10776. <returns>A new instance of <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1"/>.</returns>
  10777. </member>
  10778. <member name="P:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1.Capacity">
  10779. <summary>
  10780. Gets and sets the capacity of this ReadOnlyCollectionBuilder
  10781. </summary>
  10782. </member>
  10783. <member name="P:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1.Count">
  10784. <summary>
  10785. Returns number of elements in the ReadOnlyCollectionBuilder.
  10786. </summary>
  10787. </member>
  10788. <member name="P:System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1.Item(System.Int32)">
  10789. <summary>
  10790. Gets or sets the element at the specified index.
  10791. </summary>
  10792. <param name="index">The zero-based index of the element to get or set.</param>
  10793. <returns>The element at the specified index.</returns>
  10794. </member>
  10795. <member name="M:System.Runtime.CompilerServices.TrueReadOnlyCollection`1.#ctor(`0[])">
  10796. <summary>
  10797. Creates instnace of TrueReadOnlyCollection, wrapping passed in array.
  10798. !!! DOES NOT COPY THE ARRAY !!!
  10799. </summary>
  10800. </member>
  10801. <member name="M:System.Dynamic.Utils.TypeExtensions.CreateDelegate(System.Reflection.MethodInfo,System.Type,System.Object)">
  10802. <summary>
  10803. Creates a closed delegate for the given (dynamic)method.
  10804. </summary>
  10805. </member>
  10806. <member name="M:System.Dynamic.Utils.TypeExtensions.MatchesArgumentTypes(System.Reflection.MethodInfo,System.Type[])">
  10807. <summary>
  10808. Returns true if the method's parameter types are reference assignable from
  10809. the argument types, otherwise false.
  10810. An example that can make the method return false is that
  10811. typeof(double).GetMethod("op_Equality", ..., new[] { typeof(double), typeof(int) })
  10812. returns a method with two double parameters, which doesn't match the provided
  10813. argument types.
  10814. </summary>
  10815. <returns></returns>
  10816. </member>
  10817. </members>
  10818. </doc>