System.Data.xml 414 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <masterdoc assembly="System.Data">
  3. <class name="InternalDataCollectionBase" namespace="System.Data">
  4. <constructor name="InternalDataCollectionBase" argnames="" />
  5. <property name="Count" propertytype="System.Int32" />
  6. <property name="IsReadOnly" propertytype="System.Boolean" />
  7. <property name="IsSynchronized" propertytype="System.Boolean" />
  8. <property name="SyncRoot" propertytype="System.Object" />
  9. <property name="List" propertytype="System.Collections.ArrayList" />
  10. <method name="GetEnumerator" argnames="" returntype="System.Collections.IEnumerator" />
  11. <method name="CopyTo(System.Array, System.Int32)" argnames="ar, index" returntype="System.Void" />
  12. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  13. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  14. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  15. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  16. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  17. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  18. </class>
  19. <class name="Constraint" namespace="System.Data">
  20. <constructor name="Constraint" argnames="" />
  21. <property name="ConstraintName" propertytype="System.String" />
  22. <property name="SchemaName" propertytype="System.String" />
  23. <property name="InCollection" propertytype="System.Boolean" />
  24. <property name="Table" propertytype="System.Data.DataTable" />
  25. <property name="ExtendedProperties" propertytype="System.Data.PropertyCollection" />
  26. <property name="_DataSet" propertytype="System.Data.DataSet" />
  27. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  28. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  29. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  30. <method name="ToString" argnames="" returntype="System.String" />
  31. <method name="CheckStateForProperty" argnames="" returntype="System.Void" />
  32. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  33. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  34. </class>
  35. <class name="ConstraintCollection" namespace="System.Data">
  36. <property name="List" propertytype="System.Collections.ArrayList" />
  37. <property name="Item" propertytype="System.Data.Constraint" />
  38. <property name="Table" propertytype="System.Data.DataTable" />
  39. <property name="Item" propertytype="System.Data.Constraint" />
  40. <property name="Count" inherited="System.Data.InternalDataCollectionBase" propertytype="System.Int32" />
  41. <property name="IsReadOnly" inherited="System.Data.InternalDataCollectionBase" propertytype="System.Boolean" />
  42. <property name="IsSynchronized" inherited="System.Data.InternalDataCollectionBase" propertytype="System.Boolean" />
  43. <property name="SyncRoot" inherited="System.Data.InternalDataCollectionBase" propertytype="System.Object" />
  44. <method name="OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs)" argnames="ccevent" returntype="System.Void" />
  45. <method name="IndexOf(System.String)" argnames="constraintName" returntype="System.Int32" />
  46. <method name="Add(System.String, System.Data.DataColumn[], System.Data.DataColumn[])" argnames="name, primaryKeyColumns, foreignKeyColumns" returntype="System.Data.Constraint" />
  47. <method name="Add(System.String, System.Data.DataColumn, System.Data.DataColumn)" argnames="name, primaryKeyColumn, foreignKeyColumn" returntype="System.Data.Constraint" />
  48. <method name="Add(System.String, System.Data.DataColumn, System.Boolean)" argnames="name, column, primaryKey" returntype="System.Data.Constraint" />
  49. <method name="Add(System.String, System.Data.DataColumn[], System.Boolean)" argnames="name, columns, primaryKey" returntype="System.Data.Constraint" />
  50. <method name="GetEnumerator" argnames="" inherited="System.Data.InternalDataCollectionBase" returntype="System.Collections.IEnumerator" />
  51. <method name="CopyTo(System.Array, System.Int32)" argnames="ar, index" inherited="System.Data.InternalDataCollectionBase" returntype="System.Void" />
  52. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  53. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  54. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  55. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  56. <method name="Add(System.Data.Constraint)" argnames="constraint" returntype="System.Void" />
  57. <method name="AddRange(System.Data.Constraint[])" argnames="constraints" returntype="System.Void" />
  58. <method name="CanRemove(System.Data.Constraint)" argnames="constraint" returntype="System.Boolean" />
  59. <method name="Clear" argnames="" returntype="System.Void" />
  60. <method name="Contains(System.String)" argnames="name" returntype="System.Boolean" />
  61. <method name="IndexOf(System.Data.Constraint)" argnames="constraint" returntype="System.Int32" />
  62. <method name="Remove(System.Data.Constraint)" argnames="constraint" returntype="System.Void" />
  63. <method name="RemoveAt(System.Int32)" argnames="index" returntype="System.Void" />
  64. <method name="Remove(System.String)" argnames="name" returntype="System.Void" />
  65. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  66. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  67. <event name="CollectionChanged" />
  68. </class>
  69. <class name="DataColumn" namespace="System.Data">
  70. <constructor name="DataColumn" argnames="" />
  71. <constructor name="DataColumn(System.String)" argnames="columnName" />
  72. <constructor name="DataColumn(System.String, System.Type)" argnames="columnName, dataType" />
  73. <constructor name="DataColumn(System.String, System.Type, System.String)" argnames="columnName, dataType, expr" />
  74. <constructor name="DataColumn(System.String, System.Type, System.String, System.Data.MappingType)" argnames="columnName, dataType, expr, type" />
  75. <property name="AllowDBNull" propertytype="System.Boolean" />
  76. <property name="AutoIncrement" propertytype="System.Boolean" />
  77. <property name="AutoIncrementSeed" propertytype="System.Int64" />
  78. <property name="AutoIncrementStep" propertytype="System.Int64" />
  79. <property name="Caption" propertytype="System.String" />
  80. <property name="ColumnName" propertytype="System.String" />
  81. <property name="EncodedColumnName" propertytype="System.String" />
  82. <property name="Prefix" propertytype="System.String" />
  83. <property name="Computed" propertytype="System.Boolean" />
  84. <property name="DataExpression" propertytype="System.Data.DataExpression" />
  85. <property name="DataType" propertytype="System.Type" />
  86. <property name="DefaultValue" propertytype="System.Object" />
  87. <property name="Expression" propertytype="System.String" />
  88. <property name="ExtendedProperties" propertytype="System.Data.PropertyCollection" />
  89. <property name="HasData" propertytype="System.Boolean" />
  90. <property name="MaxLength" propertytype="System.Int32" />
  91. <property name="Namespace" propertytype="System.String" />
  92. <property name="Ordinal" propertytype="System.Int32" />
  93. <property name="ReadOnly" propertytype="System.Boolean" />
  94. <property name="SortIndex" propertytype="System.Data.Index" />
  95. <property name="Table" propertytype="System.Data.DataTable" />
  96. <property name="Item" propertytype="System.Object" />
  97. <property name="Item" propertytype="System.Object" />
  98. <property name="Unique" propertytype="System.Boolean" />
  99. <property name="InternalUnique" propertytype="System.Boolean" />
  100. <property name="XmlDataType" propertytype="System.String" />
  101. <property name="SimpleType" propertytype="System.Data.SimpleType" />
  102. <property name="ColumnMapping" propertytype="System.Data.MappingType" />
  103. <property name="Description" propertytype="System.String" />
  104. <property name="Storage" propertytype="System.Data.Common.DataStorage" />
  105. <property name="Events" inherited="System.ComponentModel.MarshalByValueComponent" propertytype="System.ComponentModel.EventHandlerList" />
  106. <property name="Site" inherited="System.ComponentModel.MarshalByValueComponent" propertytype="System.ComponentModel.ISite" />
  107. <property name="Container" inherited="System.ComponentModel.MarshalByValueComponent" propertytype="System.ComponentModel.IContainer" />
  108. <property name="DesignMode" inherited="System.ComponentModel.MarshalByValueComponent" propertytype="System.Boolean" />
  109. <method name="GetService(System.Type)" argnames="service" inherited="System.ComponentModel.MarshalByValueComponent" returntype="System.Object" />
  110. <method name="Dispose" argnames="" inherited="System.ComponentModel.MarshalByValueComponent" returntype="System.Void" />
  111. <method name="Dispose(System.Boolean)" argnames="disposing" inherited="System.ComponentModel.MarshalByValueComponent" returntype="System.Void" />
  112. <method name="Finalize" argnames="" inherited="System.ComponentModel.MarshalByValueComponent" returntype="System.Void" />
  113. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  114. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  115. <method name="ToString" argnames="" returntype="System.String" />
  116. <method name="CheckUnique" argnames="" returntype="System.Void" />
  117. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  118. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  119. <event name="Disposed" inherited="System.ComponentModel.MarshalByValueComponent" />
  120. </class>
  121. <class name="DataColumnChangeEventArgs" namespace="System.Data">
  122. <constructor name="DataColumnChangeEventArgs(System.Data.DataRow, System.Data.DataColumn, System.Object)" argnames="row, column, value" />
  123. <property name="Column" propertytype="System.Data.DataColumn" />
  124. <property name="Row" propertytype="System.Data.DataRow" />
  125. <property name="ProposedValue" propertytype="System.Object" />
  126. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  127. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  128. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  129. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  130. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  131. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  132. </class>
  133. <class name="DataColumnCollection" namespace="System.Data">
  134. <property name="List" propertytype="System.Collections.ArrayList" />
  135. <property name="Item" propertytype="System.Data.DataColumn" />
  136. <property name="Item" propertytype="System.Data.DataColumn" />
  137. <property name="Item" propertytype="System.Data.DataColumn" />
  138. <property name="Count" inherited="System.Data.InternalDataCollectionBase" propertytype="System.Int32" />
  139. <property name="IsReadOnly" inherited="System.Data.InternalDataCollectionBase" propertytype="System.Boolean" />
  140. <property name="IsSynchronized" inherited="System.Data.InternalDataCollectionBase" propertytype="System.Boolean" />
  141. <property name="SyncRoot" inherited="System.Data.InternalDataCollectionBase" propertytype="System.Object" />
  142. <method name="OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs)" argnames="ccevent" returntype="System.Void" />
  143. <method name="IndexOf(System.Data.DataColumn)" argnames="column" returntype="System.Int32" />
  144. <method name="Add" argnames="" returntype="System.Data.DataColumn" />
  145. <method name="Add(System.String)" argnames="columnName" returntype="System.Data.DataColumn" />
  146. <method name="Add(System.String, System.Type)" argnames="columnName, type" returntype="System.Data.DataColumn" />
  147. <method name="Add(System.String, System.Type, System.String)" argnames="columnName, type, expression" returntype="System.Data.DataColumn" />
  148. <method name="GetEnumerator" argnames="" inherited="System.Data.InternalDataCollectionBase" returntype="System.Collections.IEnumerator" />
  149. <method name="CopyTo(System.Array, System.Int32)" argnames="ar, index" inherited="System.Data.InternalDataCollectionBase" returntype="System.Void" />
  150. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  151. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  152. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  153. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  154. <method name="Add(System.Data.DataColumn)" argnames="column" returntype="System.Void" />
  155. <method name="AddRange(System.Data.DataColumn[])" argnames="columns" returntype="System.Void" />
  156. <method name="CanRemove(System.Data.DataColumn)" argnames="column" returntype="System.Boolean" />
  157. <method name="Clear" argnames="" returntype="System.Void" />
  158. <method name="Contains(System.String)" argnames="name" returntype="System.Boolean" />
  159. <method name="IndexOf(System.String)" argnames="columnName" returntype="System.Int32" />
  160. <method name="Remove(System.Data.DataColumn)" argnames="column" returntype="System.Void" />
  161. <method name="RemoveAt(System.Int32)" argnames="index" returntype="System.Void" />
  162. <method name="Remove(System.String)" argnames="name" returntype="System.Void" />
  163. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  164. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  165. <event name="CollectionChanged" />
  166. </class>
  167. <class name="DataException" namespace="System.Data">
  168. <constructor name="DataException(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" />
  169. <constructor name="DataException" argnames="" />
  170. <constructor name="DataException(System.String)" argnames="s" />
  171. <constructor name="DataException(System.String, System.Exception)" argnames="s, innerException" />
  172. <property name="Message" inherited="System.Exception" propertytype="System.String" />
  173. <property name="InnerException" inherited="System.Exception" propertytype="System.Exception" />
  174. <property name="TargetSite" inherited="System.Exception" propertytype="System.Reflection.MethodBase" />
  175. <property name="StackTrace" inherited="System.Exception" propertytype="System.String" />
  176. <property name="HelpLink" inherited="System.Exception" propertytype="System.String" />
  177. <property name="Source" inherited="System.Exception" propertytype="System.String" />
  178. <property name="HResult" inherited="System.Exception" propertytype="System.Int32" />
  179. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.Exception" returntype="System.Void" />
  180. <method name="GetBaseException" argnames="" inherited="System.Exception" returntype="System.Exception" />
  181. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  182. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  183. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  184. <method name="ToString" argnames="" inherited="System.Exception" returntype="System.String" />
  185. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  186. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  187. </class>
  188. <class name="ConstraintException" namespace="System.Data">
  189. <constructor name="ConstraintException(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" />
  190. <constructor name="ConstraintException" argnames="" />
  191. <constructor name="ConstraintException(System.String)" argnames="s" />
  192. <property name="Message" inherited="System.Exception" propertytype="System.String" />
  193. <property name="InnerException" inherited="System.Exception" propertytype="System.Exception" />
  194. <property name="TargetSite" inherited="System.Exception" propertytype="System.Reflection.MethodBase" />
  195. <property name="StackTrace" inherited="System.Exception" propertytype="System.String" />
  196. <property name="HelpLink" inherited="System.Exception" propertytype="System.String" />
  197. <property name="Source" inherited="System.Exception" propertytype="System.String" />
  198. <property name="HResult" inherited="System.Exception" propertytype="System.Int32" />
  199. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.Exception" returntype="System.Void" />
  200. <method name="GetBaseException" argnames="" inherited="System.Exception" returntype="System.Exception" />
  201. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  202. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  203. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  204. <method name="ToString" argnames="" inherited="System.Exception" returntype="System.String" />
  205. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  206. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  207. </class>
  208. <class name="DeletedRowInaccessibleException" namespace="System.Data">
  209. <constructor name="DeletedRowInaccessibleException(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" />
  210. <constructor name="DeletedRowInaccessibleException" argnames="" />
  211. <constructor name="DeletedRowInaccessibleException(System.String)" argnames="s" />
  212. <property name="Message" inherited="System.Exception" propertytype="System.String" />
  213. <property name="InnerException" inherited="System.Exception" propertytype="System.Exception" />
  214. <property name="TargetSite" inherited="System.Exception" propertytype="System.Reflection.MethodBase" />
  215. <property name="StackTrace" inherited="System.Exception" propertytype="System.String" />
  216. <property name="HelpLink" inherited="System.Exception" propertytype="System.String" />
  217. <property name="Source" inherited="System.Exception" propertytype="System.String" />
  218. <property name="HResult" inherited="System.Exception" propertytype="System.Int32" />
  219. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.Exception" returntype="System.Void" />
  220. <method name="GetBaseException" argnames="" inherited="System.Exception" returntype="System.Exception" />
  221. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  222. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  223. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  224. <method name="ToString" argnames="" inherited="System.Exception" returntype="System.String" />
  225. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  226. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  227. </class>
  228. <class name="DuplicateNameException" namespace="System.Data">
  229. <constructor name="DuplicateNameException(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" />
  230. <constructor name="DuplicateNameException" argnames="" />
  231. <constructor name="DuplicateNameException(System.String)" argnames="s" />
  232. <property name="Message" inherited="System.Exception" propertytype="System.String" />
  233. <property name="InnerException" inherited="System.Exception" propertytype="System.Exception" />
  234. <property name="TargetSite" inherited="System.Exception" propertytype="System.Reflection.MethodBase" />
  235. <property name="StackTrace" inherited="System.Exception" propertytype="System.String" />
  236. <property name="HelpLink" inherited="System.Exception" propertytype="System.String" />
  237. <property name="Source" inherited="System.Exception" propertytype="System.String" />
  238. <property name="HResult" inherited="System.Exception" propertytype="System.Int32" />
  239. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.Exception" returntype="System.Void" />
  240. <method name="GetBaseException" argnames="" inherited="System.Exception" returntype="System.Exception" />
  241. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  242. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  243. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  244. <method name="ToString" argnames="" inherited="System.Exception" returntype="System.String" />
  245. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  246. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  247. </class>
  248. <class name="InRowChangingEventException" namespace="System.Data">
  249. <constructor name="InRowChangingEventException(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" />
  250. <constructor name="InRowChangingEventException" argnames="" />
  251. <constructor name="InRowChangingEventException(System.String)" argnames="s" />
  252. <property name="Message" inherited="System.Exception" propertytype="System.String" />
  253. <property name="InnerException" inherited="System.Exception" propertytype="System.Exception" />
  254. <property name="TargetSite" inherited="System.Exception" propertytype="System.Reflection.MethodBase" />
  255. <property name="StackTrace" inherited="System.Exception" propertytype="System.String" />
  256. <property name="HelpLink" inherited="System.Exception" propertytype="System.String" />
  257. <property name="Source" inherited="System.Exception" propertytype="System.String" />
  258. <property name="HResult" inherited="System.Exception" propertytype="System.Int32" />
  259. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.Exception" returntype="System.Void" />
  260. <method name="GetBaseException" argnames="" inherited="System.Exception" returntype="System.Exception" />
  261. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  262. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  263. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  264. <method name="ToString" argnames="" inherited="System.Exception" returntype="System.String" />
  265. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  266. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  267. </class>
  268. <class name="InvalidConstraintException" namespace="System.Data">
  269. <constructor name="InvalidConstraintException(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" />
  270. <constructor name="InvalidConstraintException" argnames="" />
  271. <constructor name="InvalidConstraintException(System.String)" argnames="s" />
  272. <property name="Message" inherited="System.Exception" propertytype="System.String" />
  273. <property name="InnerException" inherited="System.Exception" propertytype="System.Exception" />
  274. <property name="TargetSite" inherited="System.Exception" propertytype="System.Reflection.MethodBase" />
  275. <property name="StackTrace" inherited="System.Exception" propertytype="System.String" />
  276. <property name="HelpLink" inherited="System.Exception" propertytype="System.String" />
  277. <property name="Source" inherited="System.Exception" propertytype="System.String" />
  278. <property name="HResult" inherited="System.Exception" propertytype="System.Int32" />
  279. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.Exception" returntype="System.Void" />
  280. <method name="GetBaseException" argnames="" inherited="System.Exception" returntype="System.Exception" />
  281. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  282. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  283. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  284. <method name="ToString" argnames="" inherited="System.Exception" returntype="System.String" />
  285. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  286. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  287. </class>
  288. <class name="MissingPrimaryKeyException" namespace="System.Data">
  289. <constructor name="MissingPrimaryKeyException(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" />
  290. <constructor name="MissingPrimaryKeyException" argnames="" />
  291. <constructor name="MissingPrimaryKeyException(System.String)" argnames="s" />
  292. <property name="Message" inherited="System.Exception" propertytype="System.String" />
  293. <property name="InnerException" inherited="System.Exception" propertytype="System.Exception" />
  294. <property name="TargetSite" inherited="System.Exception" propertytype="System.Reflection.MethodBase" />
  295. <property name="StackTrace" inherited="System.Exception" propertytype="System.String" />
  296. <property name="HelpLink" inherited="System.Exception" propertytype="System.String" />
  297. <property name="Source" inherited="System.Exception" propertytype="System.String" />
  298. <property name="HResult" inherited="System.Exception" propertytype="System.Int32" />
  299. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.Exception" returntype="System.Void" />
  300. <method name="GetBaseException" argnames="" inherited="System.Exception" returntype="System.Exception" />
  301. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  302. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  303. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  304. <method name="ToString" argnames="" inherited="System.Exception" returntype="System.String" />
  305. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  306. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  307. </class>
  308. <class name="NoNullAllowedException" namespace="System.Data">
  309. <constructor name="NoNullAllowedException(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" />
  310. <constructor name="NoNullAllowedException" argnames="" />
  311. <constructor name="NoNullAllowedException(System.String)" argnames="s" />
  312. <property name="Message" inherited="System.Exception" propertytype="System.String" />
  313. <property name="InnerException" inherited="System.Exception" propertytype="System.Exception" />
  314. <property name="TargetSite" inherited="System.Exception" propertytype="System.Reflection.MethodBase" />
  315. <property name="StackTrace" inherited="System.Exception" propertytype="System.String" />
  316. <property name="HelpLink" inherited="System.Exception" propertytype="System.String" />
  317. <property name="Source" inherited="System.Exception" propertytype="System.String" />
  318. <property name="HResult" inherited="System.Exception" propertytype="System.Int32" />
  319. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.Exception" returntype="System.Void" />
  320. <method name="GetBaseException" argnames="" inherited="System.Exception" returntype="System.Exception" />
  321. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  322. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  323. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  324. <method name="ToString" argnames="" inherited="System.Exception" returntype="System.String" />
  325. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  326. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  327. </class>
  328. <class name="ReadOnlyException" namespace="System.Data">
  329. <constructor name="ReadOnlyException(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" />
  330. <constructor name="ReadOnlyException" argnames="" />
  331. <constructor name="ReadOnlyException(System.String)" argnames="s" />
  332. <property name="Message" inherited="System.Exception" propertytype="System.String" />
  333. <property name="InnerException" inherited="System.Exception" propertytype="System.Exception" />
  334. <property name="TargetSite" inherited="System.Exception" propertytype="System.Reflection.MethodBase" />
  335. <property name="StackTrace" inherited="System.Exception" propertytype="System.String" />
  336. <property name="HelpLink" inherited="System.Exception" propertytype="System.String" />
  337. <property name="Source" inherited="System.Exception" propertytype="System.String" />
  338. <property name="HResult" inherited="System.Exception" propertytype="System.Int32" />
  339. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.Exception" returntype="System.Void" />
  340. <method name="GetBaseException" argnames="" inherited="System.Exception" returntype="System.Exception" />
  341. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  342. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  343. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  344. <method name="ToString" argnames="" inherited="System.Exception" returntype="System.String" />
  345. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  346. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  347. </class>
  348. <class name="RowNotInTableException" namespace="System.Data">
  349. <constructor name="RowNotInTableException(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" />
  350. <constructor name="RowNotInTableException" argnames="" />
  351. <constructor name="RowNotInTableException(System.String)" argnames="s" />
  352. <property name="Message" inherited="System.Exception" propertytype="System.String" />
  353. <property name="InnerException" inherited="System.Exception" propertytype="System.Exception" />
  354. <property name="TargetSite" inherited="System.Exception" propertytype="System.Reflection.MethodBase" />
  355. <property name="StackTrace" inherited="System.Exception" propertytype="System.String" />
  356. <property name="HelpLink" inherited="System.Exception" propertytype="System.String" />
  357. <property name="Source" inherited="System.Exception" propertytype="System.String" />
  358. <property name="HResult" inherited="System.Exception" propertytype="System.Int32" />
  359. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.Exception" returntype="System.Void" />
  360. <method name="GetBaseException" argnames="" inherited="System.Exception" returntype="System.Exception" />
  361. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  362. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  363. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  364. <method name="ToString" argnames="" inherited="System.Exception" returntype="System.String" />
  365. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  366. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  367. </class>
  368. <class name="VersionNotFoundException" namespace="System.Data">
  369. <constructor name="VersionNotFoundException(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" />
  370. <constructor name="VersionNotFoundException" argnames="" />
  371. <constructor name="VersionNotFoundException(System.String)" argnames="s" />
  372. <property name="Message" inherited="System.Exception" propertytype="System.String" />
  373. <property name="InnerException" inherited="System.Exception" propertytype="System.Exception" />
  374. <property name="TargetSite" inherited="System.Exception" propertytype="System.Reflection.MethodBase" />
  375. <property name="StackTrace" inherited="System.Exception" propertytype="System.String" />
  376. <property name="HelpLink" inherited="System.Exception" propertytype="System.String" />
  377. <property name="Source" inherited="System.Exception" propertytype="System.String" />
  378. <property name="HResult" inherited="System.Exception" propertytype="System.Int32" />
  379. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.Exception" returntype="System.Void" />
  380. <method name="GetBaseException" argnames="" inherited="System.Exception" returntype="System.Exception" />
  381. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  382. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  383. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  384. <method name="ToString" argnames="" inherited="System.Exception" returntype="System.String" />
  385. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  386. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  387. </class>
  388. <class name="DataRelation" namespace="System.Data">
  389. <constructor name="DataRelation(System.String, System.Data.DataColumn, System.Data.DataColumn)" argnames="relationName, parentColumn, childColumn" />
  390. <constructor name="DataRelation(System.String, System.Data.DataColumn, System.Data.DataColumn, System.Boolean)" argnames="relationName, parentColumn, childColumn, createConstraints" />
  391. <constructor name="DataRelation(System.String, System.Data.DataColumn[], System.Data.DataColumn[])" argnames="relationName, parentColumns, childColumns" />
  392. <constructor name="DataRelation(System.String, System.Data.DataColumn[], System.Data.DataColumn[], System.Boolean)" argnames="relationName, parentColumns, childColumns, createConstraints" />
  393. <constructor name="DataRelation(System.String, System.String, System.String, System.String[], System.String[], System.Boolean)" argnames="relationName, parentTableName, childTableName, parentColumnNames, childColumnNames, nested" />
  394. <property name="ChildColumns" propertytype="System.Data.DataColumn[]" />
  395. <property name="ChildKey" propertytype="System.Data.DataKey" />
  396. <property name="ChildTable" propertytype="System.Data.DataTable" />
  397. <property name="DataSet" propertytype="System.Data.DataSet" />
  398. <property name="ParentColumnNames" propertytype="System.String[]" />
  399. <property name="ChildColumnNames" propertytype="System.String[]" />
  400. <property name="ParentColumns" propertytype="System.Data.DataColumn[]" />
  401. <property name="ParentKey" propertytype="System.Data.DataKey" />
  402. <property name="ParentTable" propertytype="System.Data.DataTable" />
  403. <property name="RelationName" propertytype="System.String" />
  404. <property name="Nested" propertytype="System.Boolean" />
  405. <property name="ParentKeyConstraint" propertytype="System.Data.UniqueConstraint" />
  406. <property name="ChildKeyConstraint" propertytype="System.Data.ForeignKeyConstraint" />
  407. <property name="ExtendedProperties" propertytype="System.Data.PropertyCollection" />
  408. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  409. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  410. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  411. <method name="ToString" argnames="" returntype="System.String" />
  412. <method name="CheckStateForProperty" argnames="" returntype="System.Void" />
  413. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  414. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  415. </class>
  416. <class name="DataRelationCollection" namespace="System.Data">
  417. <constructor name="DataRelationCollection" argnames="" />
  418. <property name="Item" propertytype="System.Data.DataRelation" />
  419. <property name="Item" propertytype="System.Data.DataRelation" />
  420. <property name="Count" inherited="System.Data.InternalDataCollectionBase" propertytype="System.Int32" />
  421. <property name="IsReadOnly" inherited="System.Data.InternalDataCollectionBase" propertytype="System.Boolean" />
  422. <property name="IsSynchronized" inherited="System.Data.InternalDataCollectionBase" propertytype="System.Boolean" />
  423. <property name="SyncRoot" inherited="System.Data.InternalDataCollectionBase" propertytype="System.Object" />
  424. <property name="List" inherited="System.Data.InternalDataCollectionBase" propertytype="System.Collections.ArrayList" />
  425. <method name="RemoveCore(System.Data.DataRelation)" argnames="relation" returntype="System.Void" />
  426. <method name="CanRemove(System.Data.DataRelation)" argnames="relation" returntype="System.Boolean" />
  427. <method name="OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs)" argnames="ccevent" returntype="System.Void" />
  428. <method name="GetDataSet" argnames="" returntype="System.Data.DataSet" />
  429. <method name="IndexOf(System.String)" argnames="relationName" returntype="System.Int32" />
  430. <method name="IndexOf(System.Data.DataRelation)" argnames="relation" returntype="System.Int32" />
  431. <method name="Contains(System.String)" argnames="name" returntype="System.Boolean" />
  432. <method name="Clear" argnames="" returntype="System.Void" />
  433. <method name="AddCore(System.Data.DataRelation)" argnames="relation" returntype="System.Void" />
  434. <method name="Add(System.Data.DataColumn, System.Data.DataColumn)" argnames="parentColumn, childColumn" returntype="System.Data.DataRelation" />
  435. <method name="Add(System.String, System.Data.DataColumn, System.Data.DataColumn, System.Boolean)" argnames="name, parentColumn, childColumn, createConstraints" returntype="System.Data.DataRelation" />
  436. <method name="Add(System.String, System.Data.DataColumn, System.Data.DataColumn)" argnames="name, parentColumn, childColumn" returntype="System.Data.DataRelation" />
  437. <method name="Add(System.Data.DataColumn[], System.Data.DataColumn[])" argnames="parentColumns, childColumns" returntype="System.Data.DataRelation" />
  438. <method name="Add(System.String, System.Data.DataColumn[], System.Data.DataColumn[], System.Boolean)" argnames="name, parentColumns, childColumns, createConstraints" returntype="System.Data.DataRelation" />
  439. <method name="Add(System.String, System.Data.DataColumn[], System.Data.DataColumn[])" argnames="name, parentColumns, childColumns" returntype="System.Data.DataRelation" />
  440. <method name="AddRange(System.Data.DataRelation[])" argnames="relations" returntype="System.Void" />
  441. <method name="GetEnumerator" argnames="" inherited="System.Data.InternalDataCollectionBase" returntype="System.Collections.IEnumerator" />
  442. <method name="CopyTo(System.Array, System.Int32)" argnames="ar, index" inherited="System.Data.InternalDataCollectionBase" returntype="System.Void" />
  443. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  444. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  445. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  446. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  447. <method name="Add(System.Data.DataRelation)" argnames="relation" returntype="System.Void" />
  448. <method name="Remove(System.Data.DataRelation)" argnames="relation" returntype="System.Void" />
  449. <method name="RemoveAt(System.Int32)" argnames="index" returntype="System.Void" />
  450. <method name="Remove(System.String)" argnames="name" returntype="System.Void" />
  451. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  452. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  453. <event name="CollectionChanged" />
  454. </class>
  455. <class name="DataRow" namespace="System.Data">
  456. <property name="Element" propertytype="System.Xml.XmlBoundElement" />
  457. <property name="RowError" propertytype="System.String" />
  458. <property name="RowState" propertytype="System.Data.DataRowState" />
  459. <property name="Table" propertytype="System.Data.DataTable" />
  460. <property name="Item" propertytype="System.Object" />
  461. <property name="Item" propertytype="System.Object" />
  462. <property name="Item" propertytype="System.Object" />
  463. <property name="Item" propertytype="System.Object" />
  464. <property name="Item" propertytype="System.Object" />
  465. <property name="Item" propertytype="System.Object" />
  466. <property name="ItemArray" propertytype="System.Object[]" />
  467. <property name="HasErrors" propertytype="System.Boolean" />
  468. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  469. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  470. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  471. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  472. <method name="AcceptChanges" argnames="" returntype="System.Void" />
  473. <method name="BeginEdit" argnames="" returntype="System.Void" />
  474. <method name="CancelEdit" argnames="" returntype="System.Void" />
  475. <method name="Delete" argnames="" returntype="System.Void" />
  476. <method name="EndEdit" argnames="" returntype="System.Void" />
  477. <method name="SetColumnError(System.Int32, System.String)" argnames="columnIndex, error" returntype="System.Void" />
  478. <method name="SetColumnError(System.String, System.String)" argnames="columnName, error" returntype="System.Void" />
  479. <method name="SetColumnError(System.Data.DataColumn, System.String)" argnames="column, error" returntype="System.Void" />
  480. <method name="GetColumnError(System.Int32)" argnames="columnIndex" returntype="System.String" />
  481. <method name="GetColumnError(System.String)" argnames="columnName" returntype="System.String" />
  482. <method name="GetColumnError(System.Data.DataColumn)" argnames="column" returntype="System.String" />
  483. <method name="ClearErrors" argnames="" returntype="System.Void" />
  484. <method name="GetColumnsInError" argnames="" returntype="System.Data.DataColumn[]" />
  485. <method name="GetChildRows(System.String)" argnames="relationName" returntype="System.Data.DataRow[]" />
  486. <method name="GetChildRows(System.String, System.Data.DataRowVersion)" argnames="relationName, version" returntype="System.Data.DataRow[]" />
  487. <method name="GetChildRows(System.Data.DataRelation)" argnames="relation" returntype="System.Data.DataRow[]" />
  488. <method name="GetChildRows(System.Data.DataRelation, System.Data.DataRowVersion)" argnames="relation, version" returntype="System.Data.DataRow[]" />
  489. <method name="GetParentRow(System.String)" argnames="relationName" returntype="System.Data.DataRow" />
  490. <method name="GetParentRow(System.String, System.Data.DataRowVersion)" argnames="relationName, version" returntype="System.Data.DataRow" />
  491. <method name="GetParentRow(System.Data.DataRelation)" argnames="relation" returntype="System.Data.DataRow" />
  492. <method name="GetParentRow(System.Data.DataRelation, System.Data.DataRowVersion)" argnames="relation, version" returntype="System.Data.DataRow" />
  493. <method name="GetParentRows(System.String)" argnames="relationName" returntype="System.Data.DataRow[]" />
  494. <method name="GetParentRows(System.String, System.Data.DataRowVersion)" argnames="relationName, version" returntype="System.Data.DataRow[]" />
  495. <method name="GetParentRows(System.Data.DataRelation)" argnames="relation" returntype="System.Data.DataRow[]" />
  496. <method name="GetParentRows(System.Data.DataRelation, System.Data.DataRowVersion)" argnames="relation, version" returntype="System.Data.DataRow[]" />
  497. <method name="HasVersion(System.Data.DataRowVersion)" argnames="version" returntype="System.Boolean" />
  498. <method name="IsNull(System.Int32)" argnames="columnIndex" returntype="System.Boolean" />
  499. <method name="IsNull(System.String)" argnames="columnName" returntype="System.Boolean" />
  500. <method name="IsNull(System.Data.DataColumn)" argnames="column" returntype="System.Boolean" />
  501. <method name="IsNull(System.Data.DataColumn, System.Data.DataRowVersion)" argnames="column, version" returntype="System.Boolean" />
  502. <method name="RejectChanges" argnames="" returntype="System.Void" />
  503. <method name="SetNull(System.Data.DataColumn)" argnames="column" returntype="System.Void" />
  504. <method name="SetParentRow(System.Data.DataRow)" argnames="parentRow" returntype="System.Void" />
  505. <method name="SetParentRow(System.Data.DataRow, System.Data.DataRelation)" argnames="parentRow, relation" returntype="System.Void" />
  506. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  507. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  508. </class>
  509. <class name="DataRowBuilder" namespace="System.Data">
  510. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  511. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  512. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  513. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  514. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  515. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  516. </class>
  517. <class name="DataRowChangeEventArgs" namespace="System.Data">
  518. <constructor name="DataRowChangeEventArgs(System.Data.DataRow, System.Data.DataRowAction)" argnames="row, action" />
  519. <property name="Row" propertytype="System.Data.DataRow" />
  520. <property name="Action" propertytype="System.Data.DataRowAction" />
  521. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  522. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  523. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  524. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  525. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  526. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  527. </class>
  528. <class name="DataRowCollection" namespace="System.Data">
  529. <property name="List" propertytype="System.Collections.ArrayList" />
  530. <property name="Item" propertytype="System.Data.DataRow" />
  531. <property name="Count" inherited="System.Data.InternalDataCollectionBase" propertytype="System.Int32" />
  532. <property name="IsReadOnly" inherited="System.Data.InternalDataCollectionBase" propertytype="System.Boolean" />
  533. <property name="IsSynchronized" inherited="System.Data.InternalDataCollectionBase" propertytype="System.Boolean" />
  534. <property name="SyncRoot" inherited="System.Data.InternalDataCollectionBase" propertytype="System.Object" />
  535. <method name="Add(System.Object[])" argnames="values" returntype="System.Data.DataRow" />
  536. <method name="GetEnumerator" argnames="" inherited="System.Data.InternalDataCollectionBase" returntype="System.Collections.IEnumerator" />
  537. <method name="CopyTo(System.Array, System.Int32)" argnames="ar, index" inherited="System.Data.InternalDataCollectionBase" returntype="System.Void" />
  538. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  539. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  540. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  541. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  542. <method name="Add(System.Data.DataRow)" argnames="row" returntype="System.Void" />
  543. <method name="InsertAt(System.Data.DataRow, System.Int32)" argnames="row, pos" returntype="System.Void" />
  544. <method name="Find(System.Object)" argnames="key" returntype="System.Data.DataRow" />
  545. <method name="Find(System.Object[])" argnames="keys" returntype="System.Data.DataRow" />
  546. <method name="Clear" argnames="" returntype="System.Void" />
  547. <method name="Contains(System.Object)" argnames="key" returntype="System.Boolean" />
  548. <method name="Contains(System.Object[])" argnames="keys" returntype="System.Boolean" />
  549. <method name="Remove(System.Data.DataRow)" argnames="row" returntype="System.Void" />
  550. <method name="RemoveAt(System.Int32)" argnames="index" returntype="System.Void" />
  551. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  552. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  553. </class>
  554. <class name="DataRowView" namespace="System.Data">
  555. <property name="DataView" propertytype="System.Data.DataView" />
  556. <property name="Index" propertytype="System.Int32" />
  557. <property name="Item" propertytype="System.Object" />
  558. <property name="Item" propertytype="System.Object" />
  559. <property name="Row" propertytype="System.Data.DataRow" />
  560. <property name="RowVersion" propertytype="System.Data.DataRowVersion" />
  561. <property name="IsNew" propertytype="System.Boolean" />
  562. <property name="IsEdit" propertytype="System.Boolean" />
  563. <method name="CancelEdit" argnames="" returntype="System.Void" />
  564. <method name="EndEdit" argnames="" returntype="System.Void" />
  565. <method name="BeginEdit" argnames="" returntype="System.Void" />
  566. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  567. <method name="GetHashCode" argnames="" returntype="System.Int32" />
  568. <method name="Equals(System.Object)" argnames="other" returntype="System.Boolean" />
  569. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  570. <method name="CreateChildView(System.Data.DataRelation)" argnames="relation" returntype="System.Data.DataView" />
  571. <method name="CreateChildView(System.String)" argnames="relationName" returntype="System.Data.DataView" />
  572. <method name="Delete" argnames="" returntype="System.Void" />
  573. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  574. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  575. </class>
  576. <class name="DataSet" namespace="System.Data">
  577. <constructor name="DataSet" argnames="" />
  578. <constructor name="DataSet(System.String)" argnames="dataSetName" />
  579. <constructor name="DataSet(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" />
  580. <property name="CaseSensitive" propertytype="System.Boolean" />
  581. <property name="DefaultViewManager" propertytype="System.Data.DataViewManager" />
  582. <property name="EnforceConstraints" propertytype="System.Boolean" />
  583. <property name="DataSetName" propertytype="System.String" />
  584. <property name="Namespace" propertytype="System.String" />
  585. <property name="RowDiffId" propertytype="System.Collections.Hashtable" />
  586. <property name="Prefix" propertytype="System.String" />
  587. <property name="ExtendedProperties" propertytype="System.Data.PropertyCollection" />
  588. <property name="HasErrors" propertytype="System.Boolean" />
  589. <property name="Locale" propertytype="System.Globalization.CultureInfo" />
  590. <property name="Site" propertytype="System.ComponentModel.ISite" />
  591. <property name="Relations" propertytype="System.Data.DataRelationCollection" />
  592. <property name="Tables" propertytype="System.Data.DataTableCollection" />
  593. <property name="FBoundToDocument" propertytype="System.Boolean" />
  594. <property name="Events" inherited="System.ComponentModel.MarshalByValueComponent" propertytype="System.ComponentModel.EventHandlerList" />
  595. <property name="Container" inherited="System.ComponentModel.MarshalByValueComponent" propertytype="System.ComponentModel.IContainer" />
  596. <property name="DesignMode" inherited="System.ComponentModel.MarshalByValueComponent" propertytype="System.Boolean" />
  597. <method name="EndInit" argnames="" returntype="System.Void" />
  598. <method name="BeginInit" argnames="" returntype="System.Void" />
  599. <method name="GetSchemaSerializable" argnames="" returntype="System.Xml.Schema.XmlSchema" />
  600. <method name="ReadXmlSerializable(System.Xml.XmlReader)" argnames="reader" returntype="System.Void" />
  601. <method name="Reset" argnames="" returntype="System.Void" />
  602. <method name="RejectChanges" argnames="" returntype="System.Void" />
  603. <method name="OnRemoveRelation(System.Data.DataRelation)" argnames="relation" returntype="System.Void" />
  604. <method name="OnRemoveTable(System.Data.DataTable)" argnames="table" returntype="System.Void" />
  605. <method name="Clone" argnames="" returntype="System.Data.DataSet" />
  606. <method name="ShouldSerializeTables" argnames="" returntype="System.Boolean" />
  607. <method name="ShouldSerializeRelations" argnames="" returntype="System.Boolean" />
  608. <method name="GetService(System.Type)" argnames="service" inherited="System.ComponentModel.MarshalByValueComponent" returntype="System.Object" />
  609. <method name="Dispose" argnames="" inherited="System.ComponentModel.MarshalByValueComponent" returntype="System.Void" />
  610. <method name="Dispose(System.Boolean)" argnames="disposing" inherited="System.ComponentModel.MarshalByValueComponent" returntype="System.Void" />
  611. <method name="Finalize" argnames="" inherited="System.ComponentModel.MarshalByValueComponent" returntype="System.Void" />
  612. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  613. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  614. <method name="ToString" argnames="" inherited="System.ComponentModel.MarshalByValueComponent" returntype="System.String" />
  615. <method name="AcceptChanges" argnames="" returntype="System.Void" />
  616. <method name="Clear" argnames="" returntype="System.Void" />
  617. <method name="Copy" argnames="" returntype="System.Data.DataSet" />
  618. <method name="GetChanges" argnames="" returntype="System.Data.DataSet" />
  619. <method name="GetChanges(System.Data.DataRowState)" argnames="rowStates" returntype="System.Data.DataSet" />
  620. <method name="GetSerializationData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" returntype="System.Void" />
  621. <method name="GetXml" argnames="" returntype="System.String" />
  622. <method name="GetXmlSchema" argnames="" returntype="System.String" />
  623. <method name="HasChanges" argnames="" returntype="System.Boolean" />
  624. <method name="HasChanges(System.Data.DataRowState)" argnames="rowStates" returntype="System.Boolean" />
  625. <method name="InferXmlSchema(System.Xml.XmlReader, System.String[])" argnames="reader, nsArray" returntype="System.Void" />
  626. <method name="InferXmlSchema(System.IO.Stream, System.String[])" argnames="stream, nsArray" returntype="System.Void" />
  627. <method name="InferXmlSchema(System.IO.TextReader, System.String[])" argnames="reader, nsArray" returntype="System.Void" />
  628. <method name="InferXmlSchema(System.String, System.String[])" argnames="fileName, nsArray" returntype="System.Void" />
  629. <method name="ReadXmlSchema(System.Xml.XmlReader)" argnames="reader" returntype="System.Void" />
  630. <method name="ReadXmlSchema(System.IO.Stream)" argnames="stream" returntype="System.Void" />
  631. <method name="ReadXmlSchema(System.IO.TextReader)" argnames="reader" returntype="System.Void" />
  632. <method name="ReadXmlSchema(System.String)" argnames="fileName" returntype="System.Void" />
  633. <method name="WriteXmlSchema(System.IO.Stream)" argnames="stream" returntype="System.Void" />
  634. <method name="WriteXmlSchema(System.IO.TextWriter)" argnames="writer" returntype="System.Void" />
  635. <method name="WriteXmlSchema(System.Xml.XmlWriter)" argnames="writer" returntype="System.Void" />
  636. <method name="WriteXmlSchema(System.String)" argnames="fileName" returntype="System.Void" />
  637. <method name="ReadXml(System.Xml.XmlReader)" argnames="reader" returntype="System.Data.XmlReadMode" />
  638. <method name="ReadXml(System.IO.Stream)" argnames="stream" returntype="System.Data.XmlReadMode" />
  639. <method name="ReadXml(System.IO.TextReader)" argnames="reader" returntype="System.Data.XmlReadMode" />
  640. <method name="ReadXml(System.String)" argnames="fileName" returntype="System.Data.XmlReadMode" />
  641. <method name="ReadXml(System.Xml.XmlReader, System.Data.XmlReadMode)" argnames="reader, mode" returntype="System.Data.XmlReadMode" />
  642. <method name="ReadXml(System.IO.Stream, System.Data.XmlReadMode)" argnames="stream, mode" returntype="System.Data.XmlReadMode" />
  643. <method name="ReadXml(System.IO.TextReader, System.Data.XmlReadMode)" argnames="reader, mode" returntype="System.Data.XmlReadMode" />
  644. <method name="ReadXml(System.String, System.Data.XmlReadMode)" argnames="fileName, mode" returntype="System.Data.XmlReadMode" />
  645. <method name="WriteXml(System.IO.Stream)" argnames="stream" returntype="System.Void" />
  646. <method name="WriteXml(System.IO.TextWriter)" argnames="writer" returntype="System.Void" />
  647. <method name="WriteXml(System.Xml.XmlWriter)" argnames="writer" returntype="System.Void" />
  648. <method name="WriteXml(System.String)" argnames="fileName" returntype="System.Void" />
  649. <method name="WriteXml(System.IO.Stream, System.Data.XmlWriteMode)" argnames="stream, mode" returntype="System.Void" />
  650. <method name="WriteXml(System.IO.TextWriter, System.Data.XmlWriteMode)" argnames="writer, mode" returntype="System.Void" />
  651. <method name="WriteXml(System.Xml.XmlWriter, System.Data.XmlWriteMode)" argnames="writer, mode" returntype="System.Void" />
  652. <method name="WriteXml(System.String, System.Data.XmlWriteMode)" argnames="fileName, mode" returntype="System.Void" />
  653. <method name="Merge(System.Data.DataSet)" argnames="dataSet" returntype="System.Void" />
  654. <method name="Merge(System.Data.DataSet, System.Boolean)" argnames="dataSet, preserveChanges" returntype="System.Void" />
  655. <method name="Merge(System.Data.DataSet, System.Boolean, System.Data.MissingSchemaAction)" argnames="dataSet, preserveChanges, missingSchemaAction" returntype="System.Void" />
  656. <method name="Merge(System.Data.DataTable)" argnames="table" returntype="System.Void" />
  657. <method name="Merge(System.Data.DataTable, System.Boolean, System.Data.MissingSchemaAction)" argnames="table, preserveChanges, missingSchemaAction" returntype="System.Void" />
  658. <method name="Merge(System.Data.DataRow[])" argnames="rows" returntype="System.Void" />
  659. <method name="Merge(System.Data.DataRow[], System.Boolean, System.Data.MissingSchemaAction)" argnames="rows, preserveChanges, missingSchemaAction" returntype="System.Void" />
  660. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  661. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  662. <event name="MergeFailed" />
  663. <event name="Disposed" inherited="System.ComponentModel.MarshalByValueComponent" />
  664. </class>
  665. <class name="DataSysDescriptionAttribute" namespace="System.Data">
  666. <constructor name="DataSysDescriptionAttribute(System.String)" argnames="description" />
  667. <property name="Description" propertytype="System.String" />
  668. <property name="DescriptionValue" inherited="System.ComponentModel.DescriptionAttribute" propertytype="System.String" />
  669. <property name="TypeId" inherited="System.Attribute" propertytype="System.Object" />
  670. <method name="IsDefaultAttribute" argnames="" inherited="System.Attribute" returntype="System.Boolean" />
  671. <method name="Match(System.Object)" argnames="obj" inherited="System.Attribute" returntype="System.Boolean" />
  672. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  673. <method name="GetHashCode" argnames="" inherited="System.ComponentModel.DescriptionAttribute" returntype="System.Int32" />
  674. <method name="Equals(System.Object)" argnames="obj" inherited="System.ComponentModel.DescriptionAttribute" returntype="System.Boolean" />
  675. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  676. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  677. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  678. </class>
  679. <class name="DataTableCollection" namespace="System.Data">
  680. <property name="List" propertytype="System.Collections.ArrayList" />
  681. <property name="Item" propertytype="System.Data.DataTable" />
  682. <property name="Item" propertytype="System.Data.DataTable" />
  683. <property name="Item" propertytype="System.Data.DataTable" />
  684. <property name="Count" inherited="System.Data.InternalDataCollectionBase" propertytype="System.Int32" />
  685. <property name="IsReadOnly" inherited="System.Data.InternalDataCollectionBase" propertytype="System.Boolean" />
  686. <property name="IsSynchronized" inherited="System.Data.InternalDataCollectionBase" propertytype="System.Boolean" />
  687. <property name="SyncRoot" inherited="System.Data.InternalDataCollectionBase" propertytype="System.Object" />
  688. <method name="OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs)" argnames="ccevent" returntype="System.Void" />
  689. <method name="IndexOf(System.String)" argnames="tableName" returntype="System.Int32" />
  690. <method name="IndexOf(System.Data.DataTable)" argnames="table" returntype="System.Int32" />
  691. <method name="Add" argnames="" returntype="System.Data.DataTable" />
  692. <method name="Add(System.String)" argnames="name" returntype="System.Data.DataTable" />
  693. <method name="Add(System.Data.DataTable)" argnames="table" returntype="System.Void" />
  694. <method name="GetEnumerator" argnames="" inherited="System.Data.InternalDataCollectionBase" returntype="System.Collections.IEnumerator" />
  695. <method name="CopyTo(System.Array, System.Int32)" argnames="ar, index" inherited="System.Data.InternalDataCollectionBase" returntype="System.Void" />
  696. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  697. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  698. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  699. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  700. <method name="AddRange(System.Data.DataTable[])" argnames="tables" returntype="System.Void" />
  701. <method name="CanRemove(System.Data.DataTable)" argnames="table" returntype="System.Boolean" />
  702. <method name="Clear" argnames="" returntype="System.Void" />
  703. <method name="Contains(System.String)" argnames="name" returntype="System.Boolean" />
  704. <method name="Remove(System.Data.DataTable)" argnames="table" returntype="System.Void" />
  705. <method name="RemoveAt(System.Int32)" argnames="index" returntype="System.Void" />
  706. <method name="Remove(System.String)" argnames="name" returntype="System.Void" />
  707. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  708. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  709. <event name="CollectionChanged" />
  710. <event name="CollectionChanging" />
  711. </class>
  712. <class name="DataView" namespace="System.Data">
  713. <constructor name="DataView" argnames="" />
  714. <constructor name="DataView(System.Data.DataTable)" argnames="table" />
  715. <constructor name="DataView(System.Data.DataTable, System.String, System.String, System.Data.DataViewRowState)" argnames="table, RowFilter, Sort, RowState" />
  716. <property name="AllowDelete" propertytype="System.Boolean" />
  717. <property name="ApplyDefaultSort" propertytype="System.Boolean" />
  718. <property name="AllowEdit" propertytype="System.Boolean" />
  719. <property name="AllowNew" propertytype="System.Boolean" />
  720. <property name="Count" propertytype="System.Int32" />
  721. <property name="DataViewManager" propertytype="System.Data.DataViewManager" />
  722. <property name="IsOpen" propertytype="System.Boolean" />
  723. <property name="RowFilter" propertytype="System.String" />
  724. <property name="RowStateFilter" propertytype="System.Data.DataViewRowState" />
  725. <property name="RowViewCache" propertytype="System.Data.DataRowView[]" />
  726. <property name="Sort" propertytype="System.String" />
  727. <property name="Table" propertytype="System.Data.DataTable" />
  728. <property name="Item" propertytype="System.Data.DataRowView" />
  729. <property name="Events" inherited="System.ComponentModel.MarshalByValueComponent" propertytype="System.ComponentModel.EventHandlerList" />
  730. <property name="Site" inherited="System.ComponentModel.MarshalByValueComponent" propertytype="System.ComponentModel.ISite" />
  731. <property name="Container" inherited="System.ComponentModel.MarshalByValueComponent" propertytype="System.ComponentModel.IContainer" />
  732. <property name="DesignMode" inherited="System.ComponentModel.MarshalByValueComponent" propertytype="System.Boolean" />
  733. <method name="EndInit" argnames="" returntype="System.Void" />
  734. <method name="BeginInit" argnames="" returntype="System.Void" />
  735. <method name="GetEnumerator" argnames="" returntype="System.Collections.IEnumerator" />
  736. <method name="CopyTo(System.Array, System.Int32)" argnames="array, index" returntype="System.Void" />
  737. <method name="ColumnCollectionChanged(System.Object, System.ComponentModel.CollectionChangeEventArgs)" argnames="sender, e" returntype="System.Void" />
  738. <method name="UpdateIndex(System.Boolean)" argnames="force" returntype="System.Void" />
  739. <method name="OnListChanged(System.ComponentModel.ListChangedEventArgs)" argnames="e" returntype="System.Void" />
  740. <method name="IndexListChanged(System.Object, System.ComponentModel.ListChangedEventArgs)" argnames="sender, e" returntype="System.Void" />
  741. <method name="AddNew" argnames="" returntype="System.Data.DataRowView" />
  742. <method name="GetService(System.Type)" argnames="service" inherited="System.ComponentModel.MarshalByValueComponent" returntype="System.Object" />
  743. <method name="Dispose" argnames="" inherited="System.ComponentModel.MarshalByValueComponent" returntype="System.Void" />
  744. <method name="Dispose(System.Boolean)" argnames="disposing" returntype="System.Void" />
  745. <method name="Finalize" argnames="" inherited="System.ComponentModel.MarshalByValueComponent" returntype="System.Void" />
  746. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  747. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  748. <method name="ToString" argnames="" inherited="System.ComponentModel.MarshalByValueComponent" returntype="System.String" />
  749. <method name="Close" argnames="" returntype="System.Void" />
  750. <method name="Delete(System.Int32)" argnames="index" returntype="System.Void" />
  751. <method name="Find(System.Object)" argnames="key" returntype="System.Int32" />
  752. <method name="Find(System.Object[])" argnames="key" returntype="System.Int32" />
  753. <method name="FindRows(System.Object)" argnames="key" returntype="System.Data.DataRowView[]" />
  754. <method name="FindRows(System.Object[])" argnames="key" returntype="System.Data.DataRowView[]" />
  755. <method name="Open" argnames="" returntype="System.Void" />
  756. <method name="Reset" argnames="" returntype="System.Void" />
  757. <method name="UpdateIndex" argnames="" returntype="System.Void" />
  758. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  759. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  760. <event name="ListChanged" />
  761. <event name="Disposed" inherited="System.ComponentModel.MarshalByValueComponent" />
  762. </class>
  763. <class name="DataViewManager" namespace="System.Data">
  764. <constructor name="DataViewManager" argnames="" />
  765. <constructor name="DataViewManager(System.Data.DataSet)" argnames="dataSet" />
  766. <property name="DataSet" propertytype="System.Data.DataSet" />
  767. <property name="DataViewSettings" propertytype="System.Data.DataViewSettingCollection" />
  768. <property name="DataViewSettingCollectionString" propertytype="System.String" />
  769. <property name="Events" inherited="System.ComponentModel.MarshalByValueComponent" propertytype="System.ComponentModel.EventHandlerList" />
  770. <property name="Site" inherited="System.ComponentModel.MarshalByValueComponent" propertytype="System.ComponentModel.ISite" />
  771. <property name="Container" inherited="System.ComponentModel.MarshalByValueComponent" propertytype="System.ComponentModel.IContainer" />
  772. <property name="DesignMode" inherited="System.ComponentModel.MarshalByValueComponent" propertytype="System.Boolean" />
  773. <method name="RelationCollectionChanged(System.Object, System.ComponentModel.CollectionChangeEventArgs)" argnames="sender, e" returntype="System.Void" />
  774. <method name="TableCollectionChanged(System.Object, System.ComponentModel.CollectionChangeEventArgs)" argnames="sender, e" returntype="System.Void" />
  775. <method name="OnListChanged(System.ComponentModel.ListChangedEventArgs)" argnames="e" returntype="System.Void" />
  776. <method name="GetService(System.Type)" argnames="service" inherited="System.ComponentModel.MarshalByValueComponent" returntype="System.Object" />
  777. <method name="Dispose" argnames="" inherited="System.ComponentModel.MarshalByValueComponent" returntype="System.Void" />
  778. <method name="Dispose(System.Boolean)" argnames="disposing" inherited="System.ComponentModel.MarshalByValueComponent" returntype="System.Void" />
  779. <method name="Finalize" argnames="" inherited="System.ComponentModel.MarshalByValueComponent" returntype="System.Void" />
  780. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  781. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  782. <method name="ToString" argnames="" inherited="System.ComponentModel.MarshalByValueComponent" returntype="System.String" />
  783. <method name="CreateDataView(System.Data.DataTable)" argnames="table" returntype="System.Data.DataView" />
  784. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  785. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  786. <event name="ListChanged" />
  787. <event name="Disposed" inherited="System.ComponentModel.MarshalByValueComponent" />
  788. </class>
  789. <class name="DataViewSetting" namespace="System.Data">
  790. <property name="ApplyDefaultSort" propertytype="System.Boolean" />
  791. <property name="DataViewManager" propertytype="System.Data.DataViewManager" />
  792. <property name="Table" propertytype="System.Data.DataTable" />
  793. <property name="RowFilter" propertytype="System.String" />
  794. <property name="RowStateFilter" propertytype="System.Data.DataViewRowState" />
  795. <property name="Sort" propertytype="System.String" />
  796. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  797. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  798. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  799. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  800. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  801. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  802. </class>
  803. <class name="DataViewSettingCollection" namespace="System.Data">
  804. <property name="Item" propertytype="System.Data.DataViewSetting" />
  805. <property name="Item" propertytype="System.Data.DataViewSetting" />
  806. <property name="Item" propertytype="System.Data.DataViewSetting" />
  807. <property name="Count" propertytype="System.Int32" />
  808. <property name="IsReadOnly" propertytype="System.Boolean" />
  809. <property name="IsSynchronized" propertytype="System.Boolean" />
  810. <property name="SyncRoot" propertytype="System.Object" />
  811. <method name="GetEnumerator" argnames="" returntype="System.Collections.IEnumerator" />
  812. <method name="CopyTo(System.Array, System.Int32)" argnames="ar, index" returntype="System.Void" />
  813. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  814. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  815. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  816. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  817. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  818. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  819. </class>
  820. <class name="ForeignKeyConstraint" namespace="System.Data">
  821. <constructor name="ForeignKeyConstraint(System.Data.DataColumn, System.Data.DataColumn)" argnames="parentColumn, childColumn" />
  822. <constructor name="ForeignKeyConstraint(System.String, System.Data.DataColumn, System.Data.DataColumn)" argnames="constraintName, parentColumn, childColumn" />
  823. <constructor name="ForeignKeyConstraint(System.Data.DataColumn[], System.Data.DataColumn[])" argnames="parentColumns, childColumns" />
  824. <constructor name="ForeignKeyConstraint(System.String, System.Data.DataColumn[], System.Data.DataColumn[])" argnames="constraintName, parentColumns, childColumns" />
  825. <constructor name="ForeignKeyConstraint(System.String, System.String, System.String[], System.String[], System.Data.AcceptRejectRule, System.Data.Rule, System.Data.Rule)" argnames="constraintName, parentTableName, parentColumnNames, childColumnNames, acceptRejectRule, deleteRule, updateRule" />
  826. <property name="ChildKey" propertytype="System.Data.DataKey" />
  827. <property name="Columns" propertytype="System.Data.DataColumn[]" />
  828. <property name="Table" propertytype="System.Data.DataTable" />
  829. <property name="ParentColumnNames" propertytype="System.String[]" />
  830. <property name="ChildColumnNames" propertytype="System.String[]" />
  831. <property name="AcceptRejectRule" propertytype="System.Data.AcceptRejectRule" />
  832. <property name="DeleteRule" propertytype="System.Data.Rule" />
  833. <property name="RelatedColumns" propertytype="System.Data.DataColumn[]" />
  834. <property name="ParentKey" propertytype="System.Data.DataKey" />
  835. <property name="RelatedTable" propertytype="System.Data.DataTable" />
  836. <property name="UpdateRule" propertytype="System.Data.Rule" />
  837. <property name="ConstraintName" inherited="System.Data.Constraint" propertytype="System.String" />
  838. <property name="ExtendedProperties" inherited="System.Data.Constraint" propertytype="System.Data.PropertyCollection" />
  839. <property name="_DataSet" inherited="System.Data.Constraint" propertytype="System.Data.DataSet" />
  840. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  841. <method name="GetHashCode" argnames="" returntype="System.Int32" />
  842. <method name="Equals(System.Object)" argnames="key" returntype="System.Boolean" />
  843. <method name="ToString" argnames="" inherited="System.Data.Constraint" returntype="System.String" />
  844. <method name="CheckStateForProperty" argnames="" inherited="System.Data.Constraint" returntype="System.Void" />
  845. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  846. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  847. </class>
  848. <class name="MergeFailedEventArgs" namespace="System.Data">
  849. <constructor name="MergeFailedEventArgs(System.Data.DataTable, System.String)" argnames="table, conflict" />
  850. <property name="Table" propertytype="System.Data.DataTable" />
  851. <property name="Conflict" propertytype="System.String" />
  852. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  853. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  854. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  855. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  856. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  857. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  858. </class>
  859. <class name="PropertyCollection" namespace="System.Data">
  860. <constructor name="PropertyCollection" argnames="" />
  861. <property name="hcp" inherited="System.Collections.Hashtable" propertytype="System.Collections.IHashCodeProvider" />
  862. <property name="comparer" inherited="System.Collections.Hashtable" propertytype="System.Collections.IComparer" />
  863. <property name="Item" inherited="System.Collections.Hashtable" propertytype="System.Object" />
  864. <property name="IsReadOnly" inherited="System.Collections.Hashtable" propertytype="System.Boolean" />
  865. <property name="IsFixedSize" inherited="System.Collections.Hashtable" propertytype="System.Boolean" />
  866. <property name="IsSynchronized" inherited="System.Collections.Hashtable" propertytype="System.Boolean" />
  867. <property name="Keys" inherited="System.Collections.Hashtable" propertytype="System.Collections.ICollection" />
  868. <property name="Values" inherited="System.Collections.Hashtable" propertytype="System.Collections.ICollection" />
  869. <property name="SyncRoot" inherited="System.Collections.Hashtable" propertytype="System.Object" />
  870. <property name="Count" inherited="System.Collections.Hashtable" propertytype="System.Int32" />
  871. <method name="Clone" argnames="" inherited="System.Collections.Hashtable" returntype="System.Object" />
  872. <method name="OnDeserialization(System.Object)" argnames="sender" inherited="System.Collections.Hashtable" returntype="System.Void" />
  873. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.Collections.Hashtable" returntype="System.Void" />
  874. <method name="CopyTo(System.Array, System.Int32)" argnames="array, arrayIndex" inherited="System.Collections.Hashtable" returntype="System.Void" />
  875. <method name="Remove(System.Object)" argnames="key" inherited="System.Collections.Hashtable" returntype="System.Void" />
  876. <method name="GetEnumerator" argnames="" inherited="System.Collections.Hashtable" returntype="System.Collections.IDictionaryEnumerator" />
  877. <method name="Clear" argnames="" inherited="System.Collections.Hashtable" returntype="System.Void" />
  878. <method name="Add(System.Object, System.Object)" argnames="key, value" inherited="System.Collections.Hashtable" returntype="System.Void" />
  879. <method name="Contains(System.Object)" argnames="key" inherited="System.Collections.Hashtable" returntype="System.Boolean" />
  880. <method name="KeyEquals(System.Object, System.Object)" argnames="item, key" inherited="System.Collections.Hashtable" returntype="System.Boolean" />
  881. <method name="GetHash(System.Object)" argnames="key" inherited="System.Collections.Hashtable" returntype="System.Int32" />
  882. <method name="ContainsValue(System.Object)" argnames="value" inherited="System.Collections.Hashtable" returntype="System.Boolean" />
  883. <method name="ContainsKey(System.Object)" argnames="key" inherited="System.Collections.Hashtable" returntype="System.Boolean" />
  884. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  885. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  886. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  887. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  888. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  889. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  890. </class>
  891. <class name="UniqueConstraint" namespace="System.Data">
  892. <constructor name="UniqueConstraint(System.String, System.Data.DataColumn)" argnames="name, column" />
  893. <constructor name="UniqueConstraint(System.Data.DataColumn)" argnames="column" />
  894. <constructor name="UniqueConstraint(System.String, System.Data.DataColumn[])" argnames="name, columns" />
  895. <constructor name="UniqueConstraint(System.Data.DataColumn[])" argnames="columns" />
  896. <constructor name="UniqueConstraint(System.String, System.String[], System.Boolean)" argnames="name, columnNames, isPrimaryKey" />
  897. <constructor name="UniqueConstraint(System.String, System.Data.DataColumn, System.Boolean)" argnames="name, column, isPrimaryKey" />
  898. <constructor name="UniqueConstraint(System.Data.DataColumn, System.Boolean)" argnames="column, isPrimaryKey" />
  899. <constructor name="UniqueConstraint(System.String, System.Data.DataColumn[], System.Boolean)" argnames="name, columns, isPrimaryKey" />
  900. <constructor name="UniqueConstraint(System.Data.DataColumn[], System.Boolean)" argnames="columns, isPrimaryKey" />
  901. <property name="ColumnNames" propertytype="System.String[]" />
  902. <property name="Columns" propertytype="System.Data.DataColumn[]" />
  903. <property name="IsPrimaryKey" propertytype="System.Boolean" />
  904. <property name="InCollection" propertytype="System.Boolean" />
  905. <property name="Key" propertytype="System.Data.DataKey" />
  906. <property name="Table" propertytype="System.Data.DataTable" />
  907. <property name="ConstraintName" inherited="System.Data.Constraint" propertytype="System.String" />
  908. <property name="ExtendedProperties" inherited="System.Data.Constraint" propertytype="System.Data.PropertyCollection" />
  909. <property name="_DataSet" inherited="System.Data.Constraint" propertytype="System.Data.DataSet" />
  910. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  911. <method name="GetHashCode" argnames="" returntype="System.Int32" />
  912. <method name="Equals(System.Object)" argnames="key2" returntype="System.Boolean" />
  913. <method name="ToString" argnames="" inherited="System.Data.Constraint" returntype="System.String" />
  914. <method name="CheckStateForProperty" argnames="" inherited="System.Data.Constraint" returntype="System.Void" />
  915. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  916. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  917. </class>
  918. <class name="DBConcurrencyException" namespace="System.Data">
  919. <constructor name="DBConcurrencyException(System.String)" argnames="message" />
  920. <constructor name="DBConcurrencyException(System.String, System.Exception)" argnames="message, inner" />
  921. <property name="Row" propertytype="System.Data.DataRow" />
  922. <property name="Message" inherited="System.Exception" propertytype="System.String" />
  923. <property name="InnerException" inherited="System.Exception" propertytype="System.Exception" />
  924. <property name="TargetSite" inherited="System.Exception" propertytype="System.Reflection.MethodBase" />
  925. <property name="StackTrace" inherited="System.Exception" propertytype="System.String" />
  926. <property name="HelpLink" inherited="System.Exception" propertytype="System.String" />
  927. <property name="Source" inherited="System.Exception" propertytype="System.String" />
  928. <property name="HResult" inherited="System.Exception" propertytype="System.Int32" />
  929. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="si, context" returntype="System.Void" />
  930. <method name="GetBaseException" argnames="" inherited="System.Exception" returntype="System.Exception" />
  931. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  932. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  933. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  934. <method name="ToString" argnames="" inherited="System.Exception" returntype="System.String" />
  935. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  936. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  937. </class>
  938. <class name="FillErrorEventArgs" namespace="System.Data">
  939. <constructor name="FillErrorEventArgs(System.Data.DataTable, System.Object[])" argnames="dataTable, values" />
  940. <property name="Continue" propertytype="System.Boolean" />
  941. <property name="DataTable" propertytype="System.Data.DataTable" />
  942. <property name="Errors" propertytype="System.Exception" />
  943. <property name="Values" propertytype="System.Object[]" />
  944. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  945. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  946. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  947. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  948. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  949. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  950. </class>
  951. <class name="StateChangeEventArgs" namespace="System.Data">
  952. <constructor name="StateChangeEventArgs(System.Data.ConnectionState, System.Data.ConnectionState)" argnames="originalState, currentState" />
  953. <property name="CurrentState" propertytype="System.Data.ConnectionState" />
  954. <property name="OriginalState" propertytype="System.Data.ConnectionState" />
  955. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  956. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  957. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  958. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  959. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  960. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  961. </class>
  962. <class name="DataTable" namespace="System.Data">
  963. <constructor name="DataTable" argnames="" />
  964. <constructor name="DataTable(System.String)" argnames="tableName" />
  965. <constructor name="DataTable(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" />
  966. <property name="LiveIndexes" propertytype="System.Collections.ArrayList" />
  967. <property name="CaseSensitive" propertytype="System.Boolean" />
  968. <property name="ChildRelations" propertytype="System.Data.DataRelationCollection" />
  969. <property name="Columns" propertytype="System.Data.DataColumnCollection" />
  970. <property name="Constraints" propertytype="System.Data.ConstraintCollection" />
  971. <property name="DataSet" propertytype="System.Data.DataSet" />
  972. <property name="DefaultView" propertytype="System.Data.DataView" />
  973. <property name="DisplayExpression" propertytype="System.String" />
  974. <property name="EnforceConstraints" propertytype="System.Boolean" />
  975. <property name="ExtendedProperties" propertytype="System.Data.PropertyCollection" />
  976. <property name="HasErrors" propertytype="System.Boolean" />
  977. <property name="Locale" propertytype="System.Globalization.CultureInfo" />
  978. <property name="MinimumCapacity" propertytype="System.Int32" />
  979. <property name="RecordCapacity" propertytype="System.Int32" />
  980. <property name="ElementColumnCount" propertytype="System.Int32" />
  981. <property name="ParentRelations" propertytype="System.Data.DataRelationCollection" />
  982. <property name="MergingData" propertytype="System.Boolean" />
  983. <property name="nestedParentRelation" propertytype="System.Data.DataRelation" />
  984. <property name="SchemaLoading" propertytype="System.Boolean" />
  985. <property name="PrimaryKey" propertytype="System.Data.DataColumn[]" />
  986. <property name="Rows" propertytype="System.Data.DataRowCollection" />
  987. <property name="TableName" propertytype="System.String" />
  988. <property name="EncodedTableName" propertytype="System.String" />
  989. <property name="Namespace" propertytype="System.String" />
  990. <property name="Prefix" propertytype="System.String" />
  991. <property name="XmlText" propertytype="System.Data.DataColumn" />
  992. <property name="MaxOccurs" propertytype="System.Decimal" />
  993. <property name="MinOccurs" propertytype="System.Decimal" />
  994. <property name="Site" propertytype="System.ComponentModel.ISite" />
  995. <property name="Events" inherited="System.ComponentModel.MarshalByValueComponent" propertytype="System.ComponentModel.EventHandlerList" />
  996. <property name="Container" inherited="System.ComponentModel.MarshalByValueComponent" propertytype="System.ComponentModel.IContainer" />
  997. <property name="DesignMode" inherited="System.ComponentModel.MarshalByValueComponent" propertytype="System.Boolean" />
  998. <method name="EndInit" argnames="" returntype="System.Void" />
  999. <method name="BeginInit" argnames="" returntype="System.Void" />
  1000. <method name="Reset" argnames="" returntype="System.Void" />
  1001. <method name="OnRowDeleted(System.Data.DataRowChangeEventArgs)" argnames="e" returntype="System.Void" />
  1002. <method name="OnRowDeleting(System.Data.DataRowChangeEventArgs)" argnames="e" returntype="System.Void" />
  1003. <method name="OnRowChanging(System.Data.DataRowChangeEventArgs)" argnames="e" returntype="System.Void" />
  1004. <method name="OnRowChanged(System.Data.DataRowChangeEventArgs)" argnames="e" returntype="System.Void" />
  1005. <method name="OnColumnChanged(System.Data.DataColumnChangeEventArgs)" argnames="e" returntype="System.Void" />
  1006. <method name="OnColumnChanging(System.Data.DataColumnChangeEventArgs)" argnames="e" returntype="System.Void" />
  1007. <method name="GetRowType" argnames="" returntype="System.Type" />
  1008. <method name="NewRowFromBuilder(System.Data.DataRowBuilder)" argnames="builder" returntype="System.Data.DataRow" />
  1009. <method name="Clone" argnames="" returntype="System.Data.DataTable" />
  1010. <method name="CreateInstance" argnames="" returntype="System.Data.DataTable" />
  1011. <method name="GetService(System.Type)" argnames="service" inherited="System.ComponentModel.MarshalByValueComponent" returntype="System.Object" />
  1012. <method name="Dispose" argnames="" inherited="System.ComponentModel.MarshalByValueComponent" returntype="System.Void" />
  1013. <method name="Dispose(System.Boolean)" argnames="disposing" inherited="System.ComponentModel.MarshalByValueComponent" returntype="System.Void" />
  1014. <method name="Finalize" argnames="" inherited="System.ComponentModel.MarshalByValueComponent" returntype="System.Void" />
  1015. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  1016. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  1017. <method name="ToString" argnames="" returntype="System.String" />
  1018. <method name="AcceptChanges" argnames="" returntype="System.Void" />
  1019. <method name="Copy" argnames="" returntype="System.Data.DataTable" />
  1020. <method name="Clear" argnames="" returntype="System.Void" />
  1021. <method name="Compute(System.String, System.String)" argnames="expression, filter" returntype="System.Object" />
  1022. <method name="GetChanges" argnames="" returntype="System.Data.DataTable" />
  1023. <method name="GetChanges(System.Data.DataRowState)" argnames="rowStates" returntype="System.Data.DataTable" />
  1024. <method name="GetErrors" argnames="" returntype="System.Data.DataRow[]" />
  1025. <method name="ImportRow(System.Data.DataRow)" argnames="row" returntype="System.Void" />
  1026. <method name="NewRow" argnames="" returntype="System.Data.DataRow" />
  1027. <method name="RejectChanges" argnames="" returntype="System.Void" />
  1028. <method name="Select" argnames="" returntype="System.Data.DataRow[]" />
  1029. <method name="Select(System.String)" argnames="filterExpression" returntype="System.Data.DataRow[]" />
  1030. <method name="Select(System.String, System.String)" argnames="filterExpression, sort" returntype="System.Data.DataRow[]" />
  1031. <method name="Select(System.String, System.String, System.Data.DataViewRowState)" argnames="filterExpression, sort, recordStates" returntype="System.Data.DataRow[]" />
  1032. <method name="BeginLoadData" argnames="" returntype="System.Void" />
  1033. <method name="EndLoadData" argnames="" returntype="System.Void" />
  1034. <method name="LoadDataRow(System.Object[], System.Boolean)" argnames="values, fAcceptChanges" returntype="System.Data.DataRow" />
  1035. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1036. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1037. <event name="ColumnChanging" />
  1038. <event name="ColumnChanged" />
  1039. <event name="RowChanged" />
  1040. <event name="RowChanging" />
  1041. <event name="RowDeleting" />
  1042. <event name="RowDeleted" />
  1043. <event name="Disposed" inherited="System.ComponentModel.MarshalByValueComponent" />
  1044. </class>
  1045. <class name="InvalidExpressionException" namespace="System.Data">
  1046. <constructor name="InvalidExpressionException(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" />
  1047. <constructor name="InvalidExpressionException" argnames="" />
  1048. <constructor name="InvalidExpressionException(System.String)" argnames="s" />
  1049. <property name="Message" inherited="System.Exception" propertytype="System.String" />
  1050. <property name="InnerException" inherited="System.Exception" propertytype="System.Exception" />
  1051. <property name="TargetSite" inherited="System.Exception" propertytype="System.Reflection.MethodBase" />
  1052. <property name="StackTrace" inherited="System.Exception" propertytype="System.String" />
  1053. <property name="HelpLink" inherited="System.Exception" propertytype="System.String" />
  1054. <property name="Source" inherited="System.Exception" propertytype="System.String" />
  1055. <property name="HResult" inherited="System.Exception" propertytype="System.Int32" />
  1056. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.Exception" returntype="System.Void" />
  1057. <method name="GetBaseException" argnames="" inherited="System.Exception" returntype="System.Exception" />
  1058. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1059. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  1060. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  1061. <method name="ToString" argnames="" inherited="System.Exception" returntype="System.String" />
  1062. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1063. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1064. </class>
  1065. <class name="EvaluateException" namespace="System.Data">
  1066. <constructor name="EvaluateException(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" />
  1067. <constructor name="EvaluateException" argnames="" />
  1068. <constructor name="EvaluateException(System.String)" argnames="s" />
  1069. <property name="Message" inherited="System.Exception" propertytype="System.String" />
  1070. <property name="InnerException" inherited="System.Exception" propertytype="System.Exception" />
  1071. <property name="TargetSite" inherited="System.Exception" propertytype="System.Reflection.MethodBase" />
  1072. <property name="StackTrace" inherited="System.Exception" propertytype="System.String" />
  1073. <property name="HelpLink" inherited="System.Exception" propertytype="System.String" />
  1074. <property name="Source" inherited="System.Exception" propertytype="System.String" />
  1075. <property name="HResult" inherited="System.Exception" propertytype="System.Int32" />
  1076. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.Exception" returntype="System.Void" />
  1077. <method name="GetBaseException" argnames="" inherited="System.Exception" returntype="System.Exception" />
  1078. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1079. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  1080. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  1081. <method name="ToString" argnames="" inherited="System.Exception" returntype="System.String" />
  1082. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1083. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1084. </class>
  1085. <class name="SyntaxErrorException" namespace="System.Data">
  1086. <constructor name="SyntaxErrorException(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" />
  1087. <constructor name="SyntaxErrorException" argnames="" />
  1088. <constructor name="SyntaxErrorException(System.String)" argnames="s" />
  1089. <property name="Message" inherited="System.Exception" propertytype="System.String" />
  1090. <property name="InnerException" inherited="System.Exception" propertytype="System.Exception" />
  1091. <property name="TargetSite" inherited="System.Exception" propertytype="System.Reflection.MethodBase" />
  1092. <property name="StackTrace" inherited="System.Exception" propertytype="System.String" />
  1093. <property name="HelpLink" inherited="System.Exception" propertytype="System.String" />
  1094. <property name="Source" inherited="System.Exception" propertytype="System.String" />
  1095. <property name="HResult" inherited="System.Exception" propertytype="System.Int32" />
  1096. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.Exception" returntype="System.Void" />
  1097. <method name="GetBaseException" argnames="" inherited="System.Exception" returntype="System.Exception" />
  1098. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1099. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  1100. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  1101. <method name="ToString" argnames="" inherited="System.Exception" returntype="System.String" />
  1102. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1103. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1104. </class>
  1105. <class name="StrongTypingException" namespace="System.Data">
  1106. <constructor name="StrongTypingException(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" />
  1107. <constructor name="StrongTypingException" argnames="" />
  1108. <constructor name="StrongTypingException(System.String, System.Exception)" argnames="s, innerException" />
  1109. <property name="Message" inherited="System.Exception" propertytype="System.String" />
  1110. <property name="InnerException" inherited="System.Exception" propertytype="System.Exception" />
  1111. <property name="TargetSite" inherited="System.Exception" propertytype="System.Reflection.MethodBase" />
  1112. <property name="StackTrace" inherited="System.Exception" propertytype="System.String" />
  1113. <property name="HelpLink" inherited="System.Exception" propertytype="System.String" />
  1114. <property name="Source" inherited="System.Exception" propertytype="System.String" />
  1115. <property name="HResult" inherited="System.Exception" propertytype="System.Int32" />
  1116. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.Exception" returntype="System.Void" />
  1117. <method name="GetBaseException" argnames="" inherited="System.Exception" returntype="System.Exception" />
  1118. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1119. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  1120. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  1121. <method name="ToString" argnames="" inherited="System.Exception" returntype="System.String" />
  1122. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1123. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1124. </class>
  1125. <class name="TypedDataSetGeneratorException" namespace="System.Data">
  1126. <constructor name="TypedDataSetGeneratorException(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" />
  1127. <constructor name="TypedDataSetGeneratorException" argnames="" />
  1128. <constructor name="TypedDataSetGeneratorException(System.Collections.ArrayList)" argnames="list" />
  1129. <property name="ErrorList" propertytype="System.Collections.ArrayList" />
  1130. <property name="Message" inherited="System.Exception" propertytype="System.String" />
  1131. <property name="InnerException" inherited="System.Exception" propertytype="System.Exception" />
  1132. <property name="TargetSite" inherited="System.Exception" propertytype="System.Reflection.MethodBase" />
  1133. <property name="StackTrace" inherited="System.Exception" propertytype="System.String" />
  1134. <property name="HelpLink" inherited="System.Exception" propertytype="System.String" />
  1135. <property name="Source" inherited="System.Exception" propertytype="System.String" />
  1136. <property name="HResult" inherited="System.Exception" propertytype="System.Int32" />
  1137. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" returntype="System.Void" />
  1138. <method name="GetBaseException" argnames="" inherited="System.Exception" returntype="System.Exception" />
  1139. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1140. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  1141. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  1142. <method name="ToString" argnames="" inherited="System.Exception" returntype="System.String" />
  1143. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1144. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1145. </class>
  1146. <class name="TypedDataSetGenerator" namespace="System.Data">
  1147. <constructor name="TypedDataSetGenerator" argnames="" />
  1148. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1149. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  1150. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  1151. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  1152. <method name="Generate(System.Data.DataSet, System.CodeDom.CodeNamespace, System.CodeDom.Compiler.ICodeGenerator)" argnames="dataSet, codeNamespace, codeGen" returntype="System.Void" />
  1153. <method name="GenerateIdName(System.String, System.CodeDom.Compiler.ICodeGenerator)" argnames="name, codeGen" returntype="System.String" />
  1154. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1155. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1156. </class>
  1157. <interface name="IColumnMapping" namespace="System.Data">
  1158. <property name="DataSetColumn" propertytype="System.String" />
  1159. <property name="SourceColumn" propertytype="System.String" />
  1160. </interface>
  1161. <interface name="IColumnMappingCollection" namespace="System.Data">
  1162. <property name="Item" propertytype="System.Object" />
  1163. <method name="RemoveAt(System.String)" argnames="sourceColumnName" returntype="System.Void" />
  1164. <method name="IndexOf(System.String)" argnames="sourceColumnName" returntype="System.Int32" />
  1165. <method name="GetByDataSetColumn(System.String)" argnames="dataSetColumnName" returntype="System.Data.IColumnMapping" />
  1166. <method name="Contains(System.String)" argnames="sourceColumnName" returntype="System.Boolean" />
  1167. <method name="Add(System.String, System.String)" argnames="sourceColumnName, dataSetColumnName" returntype="System.Data.IColumnMapping" />
  1168. </interface>
  1169. <interface name="IDataParameter" namespace="System.Data">
  1170. <property name="DbType" propertytype="System.Data.DbType" />
  1171. <property name="Direction" propertytype="System.Data.ParameterDirection" />
  1172. <property name="IsNullable" propertytype="System.Boolean" />
  1173. <property name="ParameterName" propertytype="System.String" />
  1174. <property name="SourceColumn" propertytype="System.String" />
  1175. <property name="SourceVersion" propertytype="System.Data.DataRowVersion" />
  1176. <property name="Value" propertytype="System.Object" />
  1177. </interface>
  1178. <interface name="IDataParameterCollection" namespace="System.Data">
  1179. <property name="Item" propertytype="System.Object" />
  1180. <method name="RemoveAt(System.String)" argnames="parameterName" returntype="System.Void" />
  1181. <method name="IndexOf(System.String)" argnames="parameterName" returntype="System.Int32" />
  1182. <method name="Contains(System.String)" argnames="parameterName" returntype="System.Boolean" />
  1183. </interface>
  1184. <interface name="IDataRecord" namespace="System.Data">
  1185. <property name="FieldCount" propertytype="System.Int32" />
  1186. <property name="Item" propertytype="System.Object" />
  1187. <property name="Item" propertytype="System.Object" />
  1188. <method name="IsDBNull(System.Int32)" argnames="i" returntype="System.Boolean" />
  1189. <method name="GetData(System.Int32)" argnames="i" returntype="System.Data.IDataReader" />
  1190. <method name="GetDateTime(System.Int32)" argnames="i" returntype="System.DateTime" />
  1191. <method name="GetDecimal(System.Int32)" argnames="i" returntype="System.Decimal" />
  1192. <method name="GetString(System.Int32)" argnames="i" returntype="System.String" />
  1193. <method name="GetDouble(System.Int32)" argnames="i" returntype="System.Double" />
  1194. <method name="GetFloat(System.Int32)" argnames="i" returntype="System.Single" />
  1195. <method name="GetInt64(System.Int32)" argnames="i" returntype="System.Int64" />
  1196. <method name="GetInt32(System.Int32)" argnames="i" returntype="System.Int32" />
  1197. <method name="GetInt16(System.Int32)" argnames="i" returntype="System.Int16" />
  1198. <method name="GetGuid(System.Int32)" argnames="i" returntype="System.Guid" />
  1199. <method name="GetChars(System.Int32, System.Int64, System.Char[], System.Int32, System.Int32)" argnames="i, fieldoffset, buffer, bufferoffset, length" returntype="System.Int64" />
  1200. <method name="GetChar(System.Int32)" argnames="i" returntype="System.Char" />
  1201. <method name="GetBytes(System.Int32, System.Int64, System.Byte[], System.Int32, System.Int32)" argnames="i, fieldOffset, buffer, bufferoffset, length" returntype="System.Int64" />
  1202. <method name="GetByte(System.Int32)" argnames="i" returntype="System.Byte" />
  1203. <method name="GetBoolean(System.Int32)" argnames="i" returntype="System.Boolean" />
  1204. <method name="GetOrdinal(System.String)" argnames="name" returntype="System.Int32" />
  1205. <method name="GetValues(System.Object[])" argnames="values" returntype="System.Int32" />
  1206. <method name="GetValue(System.Int32)" argnames="i" returntype="System.Object" />
  1207. <method name="GetFieldType(System.Int32)" argnames="i" returntype="System.Type" />
  1208. <method name="GetDataTypeName(System.Int32)" argnames="i" returntype="System.String" />
  1209. <method name="GetName(System.Int32)" argnames="i" returntype="System.String" />
  1210. </interface>
  1211. <interface name="IDataReader" namespace="System.Data">
  1212. <property name="Depth" propertytype="System.Int32" />
  1213. <property name="IsClosed" propertytype="System.Boolean" />
  1214. <property name="RecordsAffected" propertytype="System.Int32" />
  1215. <method name="GetSchemaTable" argnames="" returntype="System.Data.DataTable" />
  1216. <method name="Read" argnames="" returntype="System.Boolean" />
  1217. <method name="NextResult" argnames="" returntype="System.Boolean" />
  1218. <method name="Close" argnames="" returntype="System.Void" />
  1219. </interface>
  1220. <interface name="IDataAdapter" namespace="System.Data">
  1221. <property name="MissingMappingAction" propertytype="System.Data.MissingMappingAction" />
  1222. <property name="MissingSchemaAction" propertytype="System.Data.MissingSchemaAction" />
  1223. <property name="TableMappings" propertytype="System.Data.ITableMappingCollection" />
  1224. <method name="Update(System.Data.DataSet)" argnames="dataSet" returntype="System.Int32" />
  1225. <method name="GetFillParameters" argnames="" returntype="System.Data.IDataParameter[]" />
  1226. <method name="Fill(System.Data.DataSet)" argnames="dataSet" returntype="System.Int32" />
  1227. <method name="FillSchema(System.Data.DataSet, System.Data.SchemaType)" argnames="dataSet, schemaType" returntype="System.Data.DataTable[]" />
  1228. </interface>
  1229. <interface name="IDbCommand" namespace="System.Data">
  1230. <property name="Connection" propertytype="System.Data.IDbConnection" />
  1231. <property name="Transaction" propertytype="System.Data.IDbTransaction" />
  1232. <property name="CommandText" propertytype="System.String" />
  1233. <property name="CommandTimeout" propertytype="System.Int32" />
  1234. <property name="CommandType" propertytype="System.Data.CommandType" />
  1235. <property name="Parameters" propertytype="System.Data.IDataParameterCollection" />
  1236. <property name="UpdatedRowSource" propertytype="System.Data.UpdateRowSource" />
  1237. <method name="ExecuteScalar" argnames="" returntype="System.Object" />
  1238. <method name="ExecuteReader(System.Data.CommandBehavior)" argnames="behavior" returntype="System.Data.IDataReader" />
  1239. <method name="ExecuteReader" argnames="" returntype="System.Data.IDataReader" />
  1240. <method name="ExecuteNonQuery" argnames="" returntype="System.Int32" />
  1241. <method name="CreateParameter" argnames="" returntype="System.Data.IDbDataParameter" />
  1242. <method name="Cancel" argnames="" returntype="System.Void" />
  1243. <method name="Prepare" argnames="" returntype="System.Void" />
  1244. </interface>
  1245. <interface name="IDbConnection" namespace="System.Data">
  1246. <property name="ConnectionString" propertytype="System.String" />
  1247. <property name="ConnectionTimeout" propertytype="System.Int32" />
  1248. <property name="Database" propertytype="System.String" />
  1249. <property name="State" propertytype="System.Data.ConnectionState" />
  1250. <method name="Open" argnames="" returntype="System.Void" />
  1251. <method name="CreateCommand" argnames="" returntype="System.Data.IDbCommand" />
  1252. <method name="ChangeDatabase(System.String)" argnames="databaseName" returntype="System.Void" />
  1253. <method name="Close" argnames="" returntype="System.Void" />
  1254. <method name="BeginTransaction(System.Data.IsolationLevel)" argnames="il" returntype="System.Data.IDbTransaction" />
  1255. <method name="BeginTransaction" argnames="" returntype="System.Data.IDbTransaction" />
  1256. </interface>
  1257. <interface name="IDbDataAdapter" namespace="System.Data">
  1258. <property name="SelectCommand" propertytype="System.Data.IDbCommand" />
  1259. <property name="InsertCommand" propertytype="System.Data.IDbCommand" />
  1260. <property name="UpdateCommand" propertytype="System.Data.IDbCommand" />
  1261. <property name="DeleteCommand" propertytype="System.Data.IDbCommand" />
  1262. </interface>
  1263. <interface name="IDbDataParameter" namespace="System.Data">
  1264. <property name="Precision" propertytype="System.Byte" />
  1265. <property name="Scale" propertytype="System.Byte" />
  1266. <property name="Size" propertytype="System.Int32" />
  1267. </interface>
  1268. <interface name="IDbTransaction" namespace="System.Data">
  1269. <property name="Connection" propertytype="System.Data.IDbConnection" />
  1270. <property name="IsolationLevel" propertytype="System.Data.IsolationLevel" />
  1271. <method name="Rollback" argnames="" returntype="System.Void" />
  1272. <method name="Commit" argnames="" returntype="System.Void" />
  1273. </interface>
  1274. <interface name="ITableMapping" namespace="System.Data">
  1275. <property name="ColumnMappings" propertytype="System.Data.IColumnMappingCollection" />
  1276. <property name="DataSetTable" propertytype="System.String" />
  1277. <property name="SourceTable" propertytype="System.String" />
  1278. </interface>
  1279. <interface name="ITableMappingCollection" namespace="System.Data">
  1280. <property name="Item" propertytype="System.Object" />
  1281. <method name="RemoveAt(System.String)" argnames="sourceTableName" returntype="System.Void" />
  1282. <method name="IndexOf(System.String)" argnames="sourceTableName" returntype="System.Int32" />
  1283. <method name="GetByDataSetTable(System.String)" argnames="dataSetTableName" returntype="System.Data.ITableMapping" />
  1284. <method name="Contains(System.String)" argnames="sourceTableName" returntype="System.Boolean" />
  1285. <method name="Add(System.String, System.String)" argnames="sourceTableName, dataSetTableName" returntype="System.Data.ITableMapping" />
  1286. </interface>
  1287. <delegate name="DataColumnChangeEventHandler" namespace="System.Data">
  1288. <constructor name="DataColumnChangeEventHandler(System.Object, System.IntPtr)" argnames="object, method" />
  1289. <property name="Method" inherited="System.Delegate" propertytype="System.Reflection.MethodInfo" />
  1290. <property name="Target" inherited="System.Delegate" propertytype="System.Object" />
  1291. <method name="EndInvoke(System.IAsyncResult)" argnames="result" returntype="System.Void" />
  1292. <method name="BeginInvoke(System.Object, System.Data.DataColumnChangeEventArgs, System.AsyncCallback, System.Object)" argnames="sender, e, callback, object" returntype="System.IAsyncResult" />
  1293. <method name="Invoke(System.Object, System.Data.DataColumnChangeEventArgs)" argnames="sender, e" returntype="System.Void" />
  1294. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.MulticastDelegate" returntype="System.Void" />
  1295. <method name="Clone" argnames="" inherited="System.Delegate" returntype="System.Object" />
  1296. <method name="RemoveImpl(System.Delegate)" argnames="value" inherited="System.MulticastDelegate" returntype="System.Delegate" />
  1297. <method name="CombineImpl(System.Delegate)" argnames="follow" inherited="System.MulticastDelegate" returntype="System.Delegate" />
  1298. <method name="GetMethodImpl" argnames="" inherited="System.Delegate" returntype="System.Reflection.MethodInfo" />
  1299. <method name="GetInvocationList" argnames="" inherited="System.MulticastDelegate" returntype="System.Delegate[]" />
  1300. <method name="DynamicInvokeImpl(System.Object[])" argnames="args" inherited="System.MulticastDelegate" returntype="System.Object" />
  1301. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1302. <method name="GetHashCode" argnames="" inherited="System.MulticastDelegate" returntype="System.Int32" />
  1303. <method name="Equals(System.Object)" argnames="obj" inherited="System.MulticastDelegate" returntype="System.Boolean" />
  1304. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  1305. <method name="DynamicInvoke(System.Object[])" argnames="args" inherited="System.Delegate" returntype="System.Object" />
  1306. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1307. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1308. </delegate>
  1309. <delegate name="DataRowChangeEventHandler" namespace="System.Data">
  1310. <constructor name="DataRowChangeEventHandler(System.Object, System.IntPtr)" argnames="object, method" />
  1311. <property name="Method" inherited="System.Delegate" propertytype="System.Reflection.MethodInfo" />
  1312. <property name="Target" inherited="System.Delegate" propertytype="System.Object" />
  1313. <method name="EndInvoke(System.IAsyncResult)" argnames="result" returntype="System.Void" />
  1314. <method name="BeginInvoke(System.Object, System.Data.DataRowChangeEventArgs, System.AsyncCallback, System.Object)" argnames="sender, e, callback, object" returntype="System.IAsyncResult" />
  1315. <method name="Invoke(System.Object, System.Data.DataRowChangeEventArgs)" argnames="sender, e" returntype="System.Void" />
  1316. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.MulticastDelegate" returntype="System.Void" />
  1317. <method name="Clone" argnames="" inherited="System.Delegate" returntype="System.Object" />
  1318. <method name="RemoveImpl(System.Delegate)" argnames="value" inherited="System.MulticastDelegate" returntype="System.Delegate" />
  1319. <method name="CombineImpl(System.Delegate)" argnames="follow" inherited="System.MulticastDelegate" returntype="System.Delegate" />
  1320. <method name="GetMethodImpl" argnames="" inherited="System.Delegate" returntype="System.Reflection.MethodInfo" />
  1321. <method name="GetInvocationList" argnames="" inherited="System.MulticastDelegate" returntype="System.Delegate[]" />
  1322. <method name="DynamicInvokeImpl(System.Object[])" argnames="args" inherited="System.MulticastDelegate" returntype="System.Object" />
  1323. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1324. <method name="GetHashCode" argnames="" inherited="System.MulticastDelegate" returntype="System.Int32" />
  1325. <method name="Equals(System.Object)" argnames="obj" inherited="System.MulticastDelegate" returntype="System.Boolean" />
  1326. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  1327. <method name="DynamicInvoke(System.Object[])" argnames="args" inherited="System.Delegate" returntype="System.Object" />
  1328. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1329. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1330. </delegate>
  1331. <delegate name="FillErrorEventHandler" namespace="System.Data">
  1332. <constructor name="FillErrorEventHandler(System.Object, System.IntPtr)" argnames="object, method" />
  1333. <property name="Method" inherited="System.Delegate" propertytype="System.Reflection.MethodInfo" />
  1334. <property name="Target" inherited="System.Delegate" propertytype="System.Object" />
  1335. <method name="EndInvoke(System.IAsyncResult)" argnames="result" returntype="System.Void" />
  1336. <method name="BeginInvoke(System.Object, System.Data.FillErrorEventArgs, System.AsyncCallback, System.Object)" argnames="sender, e, callback, object" returntype="System.IAsyncResult" />
  1337. <method name="Invoke(System.Object, System.Data.FillErrorEventArgs)" argnames="sender, e" returntype="System.Void" />
  1338. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.MulticastDelegate" returntype="System.Void" />
  1339. <method name="Clone" argnames="" inherited="System.Delegate" returntype="System.Object" />
  1340. <method name="RemoveImpl(System.Delegate)" argnames="value" inherited="System.MulticastDelegate" returntype="System.Delegate" />
  1341. <method name="CombineImpl(System.Delegate)" argnames="follow" inherited="System.MulticastDelegate" returntype="System.Delegate" />
  1342. <method name="GetMethodImpl" argnames="" inherited="System.Delegate" returntype="System.Reflection.MethodInfo" />
  1343. <method name="GetInvocationList" argnames="" inherited="System.MulticastDelegate" returntype="System.Delegate[]" />
  1344. <method name="DynamicInvokeImpl(System.Object[])" argnames="args" inherited="System.MulticastDelegate" returntype="System.Object" />
  1345. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1346. <method name="GetHashCode" argnames="" inherited="System.MulticastDelegate" returntype="System.Int32" />
  1347. <method name="Equals(System.Object)" argnames="obj" inherited="System.MulticastDelegate" returntype="System.Boolean" />
  1348. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  1349. <method name="DynamicInvoke(System.Object[])" argnames="args" inherited="System.Delegate" returntype="System.Object" />
  1350. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1351. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1352. </delegate>
  1353. <delegate name="MergeFailedEventHandler" namespace="System.Data">
  1354. <constructor name="MergeFailedEventHandler(System.Object, System.IntPtr)" argnames="object, method" />
  1355. <property name="Method" inherited="System.Delegate" propertytype="System.Reflection.MethodInfo" />
  1356. <property name="Target" inherited="System.Delegate" propertytype="System.Object" />
  1357. <method name="EndInvoke(System.IAsyncResult)" argnames="result" returntype="System.Void" />
  1358. <method name="BeginInvoke(System.Object, System.Data.MergeFailedEventArgs, System.AsyncCallback, System.Object)" argnames="sender, e, callback, object" returntype="System.IAsyncResult" />
  1359. <method name="Invoke(System.Object, System.Data.MergeFailedEventArgs)" argnames="sender, e" returntype="System.Void" />
  1360. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.MulticastDelegate" returntype="System.Void" />
  1361. <method name="Clone" argnames="" inherited="System.Delegate" returntype="System.Object" />
  1362. <method name="RemoveImpl(System.Delegate)" argnames="value" inherited="System.MulticastDelegate" returntype="System.Delegate" />
  1363. <method name="CombineImpl(System.Delegate)" argnames="follow" inherited="System.MulticastDelegate" returntype="System.Delegate" />
  1364. <method name="GetMethodImpl" argnames="" inherited="System.Delegate" returntype="System.Reflection.MethodInfo" />
  1365. <method name="GetInvocationList" argnames="" inherited="System.MulticastDelegate" returntype="System.Delegate[]" />
  1366. <method name="DynamicInvokeImpl(System.Object[])" argnames="args" inherited="System.MulticastDelegate" returntype="System.Object" />
  1367. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1368. <method name="GetHashCode" argnames="" inherited="System.MulticastDelegate" returntype="System.Int32" />
  1369. <method name="Equals(System.Object)" argnames="obj" inherited="System.MulticastDelegate" returntype="System.Boolean" />
  1370. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  1371. <method name="DynamicInvoke(System.Object[])" argnames="args" inherited="System.Delegate" returntype="System.Object" />
  1372. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1373. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1374. </delegate>
  1375. <delegate name="StateChangeEventHandler" namespace="System.Data">
  1376. <constructor name="StateChangeEventHandler(System.Object, System.IntPtr)" argnames="object, method" />
  1377. <property name="Method" inherited="System.Delegate" propertytype="System.Reflection.MethodInfo" />
  1378. <property name="Target" inherited="System.Delegate" propertytype="System.Object" />
  1379. <method name="EndInvoke(System.IAsyncResult)" argnames="result" returntype="System.Void" />
  1380. <method name="BeginInvoke(System.Object, System.Data.StateChangeEventArgs, System.AsyncCallback, System.Object)" argnames="sender, e, callback, object" returntype="System.IAsyncResult" />
  1381. <method name="Invoke(System.Object, System.Data.StateChangeEventArgs)" argnames="sender, e" returntype="System.Void" />
  1382. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.MulticastDelegate" returntype="System.Void" />
  1383. <method name="Clone" argnames="" inherited="System.Delegate" returntype="System.Object" />
  1384. <method name="RemoveImpl(System.Delegate)" argnames="value" inherited="System.MulticastDelegate" returntype="System.Delegate" />
  1385. <method name="CombineImpl(System.Delegate)" argnames="follow" inherited="System.MulticastDelegate" returntype="System.Delegate" />
  1386. <method name="GetMethodImpl" argnames="" inherited="System.Delegate" returntype="System.Reflection.MethodInfo" />
  1387. <method name="GetInvocationList" argnames="" inherited="System.MulticastDelegate" returntype="System.Delegate[]" />
  1388. <method name="DynamicInvokeImpl(System.Object[])" argnames="args" inherited="System.MulticastDelegate" returntype="System.Object" />
  1389. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1390. <method name="GetHashCode" argnames="" inherited="System.MulticastDelegate" returntype="System.Int32" />
  1391. <method name="Equals(System.Object)" argnames="obj" inherited="System.MulticastDelegate" returntype="System.Boolean" />
  1392. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  1393. <method name="DynamicInvoke(System.Object[])" argnames="args" inherited="System.Delegate" returntype="System.Object" />
  1394. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1395. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1396. </delegate>
  1397. <enum name="AcceptRejectRule" namespace="System.Data">
  1398. <field name="None" />
  1399. <field name="Cascade" />
  1400. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  1401. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  1402. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  1403. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  1404. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1405. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  1406. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  1407. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  1408. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  1409. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1410. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1411. </enum>
  1412. <enum name="CommandBehavior" namespace="System.Data">
  1413. <field name="Default" />
  1414. <field name="SingleResult" />
  1415. <field name="SchemaOnly" />
  1416. <field name="KeyInfo" />
  1417. <field name="SingleRow" />
  1418. <field name="SequentialAccess" />
  1419. <field name="CloseConnection" />
  1420. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  1421. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  1422. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  1423. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  1424. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1425. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  1426. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  1427. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  1428. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  1429. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1430. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1431. </enum>
  1432. <enum name="CommandType" namespace="System.Data">
  1433. <field name="Text" />
  1434. <field name="StoredProcedure" />
  1435. <field name="TableDirect" />
  1436. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  1437. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  1438. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  1439. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  1440. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1441. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  1442. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  1443. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  1444. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  1445. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1446. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1447. </enum>
  1448. <enum name="ConnectionState" namespace="System.Data">
  1449. <field name="Closed" />
  1450. <field name="Open" />
  1451. <field name="Connecting" />
  1452. <field name="Executing" />
  1453. <field name="Fetching" />
  1454. <field name="Broken" />
  1455. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  1456. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  1457. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  1458. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  1459. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1460. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  1461. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  1462. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  1463. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  1464. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1465. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1466. </enum>
  1467. <enum name="DataRowAction" namespace="System.Data">
  1468. <field name="Nothing" />
  1469. <field name="Delete" />
  1470. <field name="Change" />
  1471. <field name="Rollback" />
  1472. <field name="Commit" />
  1473. <field name="Add" />
  1474. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  1475. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  1476. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  1477. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  1478. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1479. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  1480. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  1481. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  1482. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  1483. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1484. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1485. </enum>
  1486. <enum name="DataRowState" namespace="System.Data">
  1487. <field name="Detached" />
  1488. <field name="Unchanged" />
  1489. <field name="Added" />
  1490. <field name="Deleted" />
  1491. <field name="Modified" />
  1492. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  1493. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  1494. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  1495. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  1496. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1497. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  1498. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  1499. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  1500. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  1501. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1502. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1503. </enum>
  1504. <enum name="DataRowVersion" namespace="System.Data">
  1505. <field name="Original" />
  1506. <field name="Current" />
  1507. <field name="Proposed" />
  1508. <field name="Default" />
  1509. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  1510. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  1511. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  1512. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  1513. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1514. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  1515. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  1516. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  1517. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  1518. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1519. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1520. </enum>
  1521. <enum name="DataViewRowState" namespace="System.Data">
  1522. <field name="None" />
  1523. <field name="Unchanged" />
  1524. <field name="Added" />
  1525. <field name="Deleted" />
  1526. <field name="ModifiedCurrent" />
  1527. <field name="ModifiedOriginal" />
  1528. <field name="OriginalRows" />
  1529. <field name="CurrentRows" />
  1530. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  1531. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  1532. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  1533. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  1534. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1535. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  1536. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  1537. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  1538. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  1539. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1540. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1541. </enum>
  1542. <enum name="DbType" namespace="System.Data">
  1543. <field name="AnsiString" />
  1544. <field name="Binary" />
  1545. <field name="Byte" />
  1546. <field name="Boolean" />
  1547. <field name="Currency" />
  1548. <field name="Date" />
  1549. <field name="DateTime" />
  1550. <field name="Decimal" />
  1551. <field name="Double" />
  1552. <field name="Guid" />
  1553. <field name="Int16" />
  1554. <field name="Int32" />
  1555. <field name="Int64" />
  1556. <field name="Object" />
  1557. <field name="SByte" />
  1558. <field name="Single" />
  1559. <field name="String" />
  1560. <field name="Time" />
  1561. <field name="UInt16" />
  1562. <field name="UInt32" />
  1563. <field name="UInt64" />
  1564. <field name="VarNumeric" />
  1565. <field name="AnsiStringFixedLength" />
  1566. <field name="StringFixedLength" />
  1567. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  1568. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  1569. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  1570. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  1571. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1572. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  1573. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  1574. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  1575. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  1576. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1577. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1578. </enum>
  1579. <enum name="IsolationLevel" namespace="System.Data">
  1580. <field name="Unspecified" />
  1581. <field name="Chaos" />
  1582. <field name="ReadUncommitted" />
  1583. <field name="ReadCommitted" />
  1584. <field name="RepeatableRead" />
  1585. <field name="Serializable" />
  1586. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  1587. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  1588. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  1589. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  1590. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1591. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  1592. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  1593. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  1594. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  1595. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1596. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1597. </enum>
  1598. <enum name="MappingType" namespace="System.Data">
  1599. <field name="Element" />
  1600. <field name="Attribute" />
  1601. <field name="SimpleContent" />
  1602. <field name="Hidden" />
  1603. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  1604. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  1605. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  1606. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  1607. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1608. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  1609. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  1610. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  1611. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  1612. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1613. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1614. </enum>
  1615. <enum name="MissingMappingAction" namespace="System.Data">
  1616. <field name="Passthrough" />
  1617. <field name="Ignore" />
  1618. <field name="Error" />
  1619. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  1620. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  1621. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  1622. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  1623. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1624. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  1625. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  1626. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  1627. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  1628. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1629. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1630. </enum>
  1631. <enum name="MissingSchemaAction" namespace="System.Data">
  1632. <field name="Add" />
  1633. <field name="Ignore" />
  1634. <field name="Error" />
  1635. <field name="AddWithKey" />
  1636. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  1637. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  1638. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  1639. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  1640. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1641. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  1642. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  1643. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  1644. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  1645. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1646. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1647. </enum>
  1648. <enum name="ParameterDirection" namespace="System.Data">
  1649. <field name="Input" />
  1650. <field name="Output" />
  1651. <field name="InputOutput" />
  1652. <field name="ReturnValue" />
  1653. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  1654. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  1655. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  1656. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  1657. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1658. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  1659. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  1660. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  1661. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  1662. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1663. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1664. </enum>
  1665. <enum name="PropertyAttributes" namespace="System.Data">
  1666. <field name="NotSupported" />
  1667. <field name="Required" />
  1668. <field name="Optional" />
  1669. <field name="Read" />
  1670. <field name="Write" />
  1671. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  1672. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  1673. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  1674. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  1675. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1676. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  1677. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  1678. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  1679. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  1680. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1681. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1682. </enum>
  1683. <enum name="Rule" namespace="System.Data">
  1684. <field name="None" />
  1685. <field name="Cascade" />
  1686. <field name="SetNull" />
  1687. <field name="SetDefault" />
  1688. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  1689. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  1690. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  1691. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  1692. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1693. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  1694. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  1695. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  1696. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  1697. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1698. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1699. </enum>
  1700. <enum name="SchemaType" namespace="System.Data">
  1701. <field name="Source" />
  1702. <field name="Mapped" />
  1703. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  1704. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  1705. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  1706. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  1707. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1708. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  1709. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  1710. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  1711. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  1712. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1713. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1714. </enum>
  1715. <enum name="SqlDbType" namespace="System.Data">
  1716. <field name="BigInt" />
  1717. <field name="Binary" />
  1718. <field name="Bit" />
  1719. <field name="Char" />
  1720. <field name="DateTime" />
  1721. <field name="Decimal" />
  1722. <field name="Float" />
  1723. <field name="Image" />
  1724. <field name="Int" />
  1725. <field name="Money" />
  1726. <field name="NChar" />
  1727. <field name="NText" />
  1728. <field name="NVarChar" />
  1729. <field name="Real" />
  1730. <field name="UniqueIdentifier" />
  1731. <field name="SmallDateTime" />
  1732. <field name="SmallInt" />
  1733. <field name="SmallMoney" />
  1734. <field name="Text" />
  1735. <field name="Timestamp" />
  1736. <field name="TinyInt" />
  1737. <field name="VarBinary" />
  1738. <field name="VarChar" />
  1739. <field name="Variant" />
  1740. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  1741. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  1742. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  1743. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  1744. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1745. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  1746. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  1747. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  1748. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  1749. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1750. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1751. </enum>
  1752. <enum name="StatementType" namespace="System.Data">
  1753. <field name="Select" />
  1754. <field name="Insert" />
  1755. <field name="Update" />
  1756. <field name="Delete" />
  1757. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  1758. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  1759. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  1760. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  1761. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1762. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  1763. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  1764. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  1765. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  1766. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1767. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1768. </enum>
  1769. <enum name="UpdateRowSource" namespace="System.Data">
  1770. <field name="None" />
  1771. <field name="OutputParameters" />
  1772. <field name="FirstReturnedRecord" />
  1773. <field name="Both" />
  1774. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  1775. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  1776. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  1777. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  1778. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1779. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  1780. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  1781. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  1782. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  1783. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1784. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1785. </enum>
  1786. <enum name="UpdateStatus" namespace="System.Data">
  1787. <field name="Continue" />
  1788. <field name="ErrorsOccurred" />
  1789. <field name="SkipCurrentRow" />
  1790. <field name="SkipAllRemainingRows" />
  1791. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  1792. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  1793. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  1794. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  1795. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1796. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  1797. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  1798. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  1799. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  1800. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1801. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1802. </enum>
  1803. <enum name="XmlReadMode" namespace="System.Data">
  1804. <field name="Auto" />
  1805. <field name="ReadSchema" />
  1806. <field name="IgnoreSchema" />
  1807. <field name="InferSchema" />
  1808. <field name="DiffGram" />
  1809. <field name="Fragment" />
  1810. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  1811. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  1812. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  1813. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  1814. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1815. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  1816. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  1817. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  1818. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  1819. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1820. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1821. </enum>
  1822. <enum name="XmlWriteMode" namespace="System.Data">
  1823. <field name="WriteSchema" />
  1824. <field name="IgnoreSchema" />
  1825. <field name="DiffGram" />
  1826. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  1827. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  1828. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  1829. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  1830. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1831. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  1832. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  1833. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  1834. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  1835. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1836. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1837. </enum>
  1838. <class name="DataAdapter" namespace="System.Data.Common">
  1839. <constructor name="DataAdapter" argnames="" />
  1840. <property name="AcceptChangesDuringFill" propertytype="System.Boolean" />
  1841. <property name="ContinueUpdateOnError" propertytype="System.Boolean" />
  1842. <property name="MissingMappingAction" propertytype="System.Data.MissingMappingAction" />
  1843. <property name="MissingSchemaAction" propertytype="System.Data.MissingSchemaAction" />
  1844. <property name="TableMappings" propertytype="System.Data.Common.DataTableMappingCollection" />
  1845. <property name="Events" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.EventHandlerList" />
  1846. <property name="Site" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.ISite" />
  1847. <property name="Container" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.IContainer" />
  1848. <property name="DesignMode" inherited="System.ComponentModel.Component" propertytype="System.Boolean" />
  1849. <method name="Update(System.Data.DataSet)" argnames="dataSet" returntype="System.Int32" />
  1850. <method name="GetFillParameters" argnames="" returntype="System.Data.IDataParameter[]" />
  1851. <method name="Fill(System.Data.DataSet)" argnames="dataSet" returntype="System.Int32" />
  1852. <method name="FillSchema(System.Data.DataSet, System.Data.SchemaType)" argnames="dataSet, schemaType" returntype="System.Data.DataTable[]" />
  1853. <method name="CreateTableMappings" argnames="" returntype="System.Data.Common.DataTableMappingCollection" />
  1854. <method name="CloneInternals" argnames="" returntype="System.Data.Common.DataAdapter" />
  1855. <method name="ShouldSerializeTableMappings" argnames="" returntype="System.Boolean" />
  1856. <method name="Dispose" argnames="" inherited="System.ComponentModel.Component" returntype="System.Void" />
  1857. <method name="GetService(System.Type)" argnames="service" inherited="System.ComponentModel.Component" returntype="System.Object" />
  1858. <method name="Dispose(System.Boolean)" argnames="disposing" returntype="System.Void" />
  1859. <method name="CreateObjRef(System.Type)" argnames="requestedType" inherited="System.MarshalByRefObject" returntype="System.Runtime.Remoting.ObjRef" />
  1860. <method name="InitializeLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  1861. <method name="GetLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  1862. <method name="Finalize" argnames="" inherited="System.ComponentModel.Component" returntype="System.Void" />
  1863. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  1864. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  1865. <method name="ToString" argnames="" inherited="System.ComponentModel.Component" returntype="System.String" />
  1866. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1867. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1868. <event name="Disposed" inherited="System.ComponentModel.Component" />
  1869. </class>
  1870. <class name="DataColumnMapping" namespace="System.Data.Common">
  1871. <constructor name="DataColumnMapping" argnames="" />
  1872. <constructor name="DataColumnMapping(System.String, System.String)" argnames="sourceColumn, dataSetColumn" />
  1873. <property name="DataSetColumn" propertytype="System.String" />
  1874. <property name="Parent" propertytype="System.Data.Common.DataColumnMappingCollection" />
  1875. <property name="SourceColumn" propertytype="System.String" />
  1876. <method name="CreateObjRef(System.Type)" argnames="requestedType" inherited="System.MarshalByRefObject" returntype="System.Runtime.Remoting.ObjRef" />
  1877. <method name="InitializeLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  1878. <method name="GetLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  1879. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1880. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  1881. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  1882. <method name="ToString" argnames="" returntype="System.String" />
  1883. <method name="GetDataColumnBySchemaAction(System.Data.DataTable, System.Type, System.Data.MissingSchemaAction)" argnames="dataTable, dataType, schemaAction" returntype="System.Data.DataColumn" />
  1884. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1885. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1886. </class>
  1887. <class name="DataColumnMappingCollection" namespace="System.Data.Common">
  1888. <constructor name="DataColumnMappingCollection" argnames="" />
  1889. <property name="Count" propertytype="System.Int32" />
  1890. <property name="ItemType" propertytype="System.Type" />
  1891. <property name="Item" propertytype="System.Data.Common.DataColumnMapping" />
  1892. <property name="Item" propertytype="System.Data.Common.DataColumnMapping" />
  1893. <method name="GetEnumerator" argnames="" returntype="System.Collections.IEnumerator" />
  1894. <method name="CopyTo(System.Array, System.Int32)" argnames="array, index" returntype="System.Void" />
  1895. <method name="RemoveAt(System.Int32)" argnames="index" returntype="System.Void" />
  1896. <method name="Remove(System.Object)" argnames="value" returntype="System.Void" />
  1897. <method name="Insert(System.Int32, System.Object)" argnames="index, value" returntype="System.Void" />
  1898. <method name="IndexOf(System.Object)" argnames="value" returntype="System.Int32" />
  1899. <method name="Clear" argnames="" returntype="System.Void" />
  1900. <method name="Contains(System.Object)" argnames="value" returntype="System.Boolean" />
  1901. <method name="Add(System.Object)" argnames="value" returntype="System.Int32" />
  1902. <method name="RemoveAt(System.String)" argnames="sourceColumn" returntype="System.Void" />
  1903. <method name="IndexOf(System.String)" argnames="sourceColumn" returntype="System.Int32" />
  1904. <method name="Contains(System.String)" argnames="value" returntype="System.Boolean" />
  1905. <method name="CreateObjRef(System.Type)" argnames="requestedType" inherited="System.MarshalByRefObject" returntype="System.Runtime.Remoting.ObjRef" />
  1906. <method name="InitializeLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  1907. <method name="GetLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  1908. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1909. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  1910. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  1911. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  1912. <method name="Add(System.String, System.String)" argnames="sourceColumn, dataSetColumn" returntype="System.Data.Common.DataColumnMapping" />
  1913. <method name="AddRange(System.Data.Common.DataColumnMapping[])" argnames="values" returntype="System.Void" />
  1914. <method name="GetByDataSetColumn(System.String)" argnames="value" returntype="System.Data.Common.DataColumnMapping" />
  1915. <method name="IndexOfDataSetColumn(System.String)" argnames="dataSetColumn" returntype="System.Int32" />
  1916. <method name="GetColumnMappingBySchemaAction(System.Data.Common.DataColumnMappingCollection, System.String, System.Data.MissingMappingAction)" argnames="columnMappings, sourceColumn, mappingAction" returntype="System.Data.Common.DataColumnMapping" />
  1917. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1918. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1919. </class>
  1920. <class name="DataTableMapping" namespace="System.Data.Common">
  1921. <constructor name="DataTableMapping" argnames="" />
  1922. <constructor name="DataTableMapping(System.String, System.String)" argnames="sourceTable, dataSetTable" />
  1923. <constructor name="DataTableMapping(System.String, System.String, System.Data.Common.DataColumnMapping[])" argnames="sourceTable, dataSetTable, columnMappings" />
  1924. <property name="ColumnMappings" propertytype="System.Data.Common.DataColumnMappingCollection" />
  1925. <property name="DataSetTable" propertytype="System.String" />
  1926. <property name="Parent" propertytype="System.Data.Common.DataTableMappingCollection" />
  1927. <property name="SourceTable" propertytype="System.String" />
  1928. <method name="CreateObjRef(System.Type)" argnames="requestedType" inherited="System.MarshalByRefObject" returntype="System.Runtime.Remoting.ObjRef" />
  1929. <method name="InitializeLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  1930. <method name="GetLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  1931. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1932. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  1933. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  1934. <method name="ToString" argnames="" returntype="System.String" />
  1935. <method name="GetColumnMappingBySchemaAction(System.String, System.Data.MissingMappingAction)" argnames="sourceColumn, mappingAction" returntype="System.Data.Common.DataColumnMapping" />
  1936. <method name="GetDataTableBySchemaAction(System.Data.DataSet, System.Data.MissingSchemaAction)" argnames="dataSet, schemaAction" returntype="System.Data.DataTable" />
  1937. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1938. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1939. </class>
  1940. <class name="DataTableMappingCollection" namespace="System.Data.Common">
  1941. <constructor name="DataTableMappingCollection" argnames="" />
  1942. <property name="Count" propertytype="System.Int32" />
  1943. <property name="ItemType" propertytype="System.Type" />
  1944. <property name="Item" propertytype="System.Data.Common.DataTableMapping" />
  1945. <property name="Item" propertytype="System.Data.Common.DataTableMapping" />
  1946. <method name="GetEnumerator" argnames="" returntype="System.Collections.IEnumerator" />
  1947. <method name="CopyTo(System.Array, System.Int32)" argnames="array, index" returntype="System.Void" />
  1948. <method name="RemoveAt(System.Int32)" argnames="index" returntype="System.Void" />
  1949. <method name="Remove(System.Object)" argnames="value" returntype="System.Void" />
  1950. <method name="Insert(System.Int32, System.Object)" argnames="index, value" returntype="System.Void" />
  1951. <method name="IndexOf(System.Object)" argnames="value" returntype="System.Int32" />
  1952. <method name="Clear" argnames="" returntype="System.Void" />
  1953. <method name="Contains(System.Object)" argnames="value" returntype="System.Boolean" />
  1954. <method name="Add(System.Object)" argnames="value" returntype="System.Int32" />
  1955. <method name="RemoveAt(System.String)" argnames="sourceTable" returntype="System.Void" />
  1956. <method name="IndexOf(System.String)" argnames="sourceTable" returntype="System.Int32" />
  1957. <method name="Contains(System.String)" argnames="value" returntype="System.Boolean" />
  1958. <method name="CreateObjRef(System.Type)" argnames="requestedType" inherited="System.MarshalByRefObject" returntype="System.Runtime.Remoting.ObjRef" />
  1959. <method name="InitializeLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  1960. <method name="GetLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  1961. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  1962. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  1963. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  1964. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  1965. <method name="AddRange(System.Data.Common.DataTableMapping[])" argnames="values" returntype="System.Void" />
  1966. <method name="Add(System.String, System.String)" argnames="sourceTable, dataSetTable" returntype="System.Data.Common.DataTableMapping" />
  1967. <method name="GetByDataSetTable(System.String)" argnames="dataSetTable" returntype="System.Data.Common.DataTableMapping" />
  1968. <method name="IndexOfDataSetTable(System.String)" argnames="dataSetTable" returntype="System.Int32" />
  1969. <method name="GetTableMappingBySchemaAction(System.Data.Common.DataTableMappingCollection, System.String, System.String, System.Data.MissingMappingAction)" argnames="tableMappings, sourceTable, dataSetTable, mappingAction" returntype="System.Data.Common.DataTableMapping" />
  1970. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  1971. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  1972. </class>
  1973. <class name="DbDataAdapter" namespace="System.Data.Common">
  1974. <constructor name="DbDataAdapter" argnames="" />
  1975. <field name="DefaultSourceTableName" />
  1976. <property name="DeleteCommand" propertytype="System.Data.IDbCommand" />
  1977. <property name="InsertCommand" propertytype="System.Data.IDbCommand" />
  1978. <property name="SelectCommand" propertytype="System.Data.IDbCommand" />
  1979. <property name="UpdateCommand" propertytype="System.Data.IDbCommand" />
  1980. <property name="UpdateMappingAction" propertytype="System.Data.MissingMappingAction" />
  1981. <property name="UpdateSchemaAction" propertytype="System.Data.MissingSchemaAction" />
  1982. <property name="AcceptChangesDuringFill" inherited="System.Data.Common.DataAdapter" propertytype="System.Boolean" />
  1983. <property name="ContinueUpdateOnError" inherited="System.Data.Common.DataAdapter" propertytype="System.Boolean" />
  1984. <property name="MissingMappingAction" inherited="System.Data.Common.DataAdapter" propertytype="System.Data.MissingMappingAction" />
  1985. <property name="MissingSchemaAction" inherited="System.Data.Common.DataAdapter" propertytype="System.Data.MissingSchemaAction" />
  1986. <property name="TableMappings" inherited="System.Data.Common.DataAdapter" propertytype="System.Data.Common.DataTableMappingCollection" />
  1987. <property name="Events" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.EventHandlerList" />
  1988. <property name="Site" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.ISite" />
  1989. <property name="Container" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.IContainer" />
  1990. <property name="DesignMode" inherited="System.ComponentModel.Component" propertytype="System.Boolean" />
  1991. <method name="Update(System.Data.DataRow[], System.Data.Common.DataTableMapping)" argnames="dataRows, tableMapping" returntype="System.Int32" />
  1992. <method name="OnRowUpdating(System.Data.Common.RowUpdatingEventArgs)" argnames="value" returntype="System.Void" />
  1993. <method name="OnRowUpdated(System.Data.Common.RowUpdatedEventArgs)" argnames="value" returntype="System.Void" />
  1994. <method name="OnFillError(System.Data.FillErrorEventArgs)" argnames="value" returntype="System.Void" />
  1995. <method name="Fill(System.Data.DataTable, System.Data.IDataReader)" argnames="dataTable, dataReader" returntype="System.Int32" />
  1996. <method name="Fill(System.Data.DataSet, System.String, System.Data.IDataReader, System.Int32, System.Int32)" argnames="dataSet, srcTable, dataReader, startRecord, maxRecords" returntype="System.Int32" />
  1997. <method name="Fill(System.Data.DataTable, System.Data.IDbCommand, System.Data.CommandBehavior)" argnames="dataTable, command, behavior" returntype="System.Int32" />
  1998. <method name="Fill(System.Data.DataSet, System.Int32, System.Int32, System.String, System.Data.IDbCommand, System.Data.CommandBehavior)" argnames="dataSet, startRecord, maxRecords, srcTable, command, behavior" returntype="System.Int32" />
  1999. <method name="FillSchema(System.Data.DataTable, System.Data.SchemaType, System.Data.IDbCommand, System.Data.CommandBehavior)" argnames="dataTable, schemaType, command, behavior" returntype="System.Data.DataTable" />
  2000. <method name="FillSchema(System.Data.DataSet, System.Data.SchemaType, System.Data.IDbCommand, System.String, System.Data.CommandBehavior)" argnames="dataSet, schemaType, command, srcTable, behavior" returntype="System.Data.DataTable[]" />
  2001. <method name="CreateRowUpdatingEvent(System.Data.DataRow, System.Data.IDbCommand, System.Data.StatementType, System.Data.Common.DataTableMapping)" argnames="dataRow, command, statementType, tableMapping" returntype="System.Data.Common.RowUpdatingEventArgs" />
  2002. <method name="CreateRowUpdatedEvent(System.Data.DataRow, System.Data.IDbCommand, System.Data.StatementType, System.Data.Common.DataTableMapping)" argnames="dataRow, command, statementType, tableMapping" returntype="System.Data.Common.RowUpdatedEventArgs" />
  2003. <method name="Update(System.Data.DataSet)" argnames="dataSet" returntype="System.Int32" />
  2004. <method name="GetFillParameters" argnames="" returntype="System.Data.IDataParameter[]" />
  2005. <method name="Fill(System.Data.DataSet)" argnames="dataSet" returntype="System.Int32" />
  2006. <method name="FillSchema(System.Data.DataSet, System.Data.SchemaType)" argnames="dataSet, schemaType" returntype="System.Data.DataTable[]" />
  2007. <method name="CreateTableMappings" argnames="" inherited="System.Data.Common.DataAdapter" returntype="System.Data.Common.DataTableMappingCollection" />
  2008. <method name="CloneInternals" argnames="" inherited="System.Data.Common.DataAdapter" returntype="System.Data.Common.DataAdapter" />
  2009. <method name="ShouldSerializeTableMappings" argnames="" inherited="System.Data.Common.DataAdapter" returntype="System.Boolean" />
  2010. <method name="Dispose" argnames="" inherited="System.ComponentModel.Component" returntype="System.Void" />
  2011. <method name="GetService(System.Type)" argnames="service" inherited="System.ComponentModel.Component" returntype="System.Object" />
  2012. <method name="Dispose(System.Boolean)" argnames="disposing" returntype="System.Void" />
  2013. <method name="CreateObjRef(System.Type)" argnames="requestedType" inherited="System.MarshalByRefObject" returntype="System.Runtime.Remoting.ObjRef" />
  2014. <method name="InitializeLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  2015. <method name="GetLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  2016. <method name="Finalize" argnames="" inherited="System.ComponentModel.Component" returntype="System.Void" />
  2017. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2018. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2019. <method name="ToString" argnames="" inherited="System.ComponentModel.Component" returntype="System.String" />
  2020. <method name="FillSchema(System.Data.DataTable, System.Data.SchemaType)" argnames="dataTable, schemaType" returntype="System.Data.DataTable" />
  2021. <method name="FillSchema(System.Data.DataSet, System.Data.SchemaType, System.String)" argnames="dataSet, schemaType, srcTable" returntype="System.Data.DataTable[]" />
  2022. <method name="Fill(System.Data.DataTable)" argnames="dataTable" returntype="System.Int32" />
  2023. <method name="Fill(System.Data.DataSet, System.String)" argnames="dataSet, srcTable" returntype="System.Int32" />
  2024. <method name="Fill(System.Data.DataSet, System.Int32, System.Int32, System.String)" argnames="dataSet, startRecord, maxRecords, srcTable" returntype="System.Int32" />
  2025. <method name="Update(System.Data.DataRow[])" argnames="dataRows" returntype="System.Int32" />
  2026. <method name="Update(System.Data.DataTable)" argnames="dataTable" returntype="System.Int32" />
  2027. <method name="Update(System.Data.DataSet, System.String)" argnames="dataSet, srcTable" returntype="System.Int32" />
  2028. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2029. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2030. <event name="FillError" />
  2031. <event name="Disposed" inherited="System.ComponentModel.Component" />
  2032. </class>
  2033. <class name="DbDataRecord" namespace="System.Data.Common">
  2034. <property name="FieldCount" propertytype="System.Int32" />
  2035. <property name="Item" propertytype="System.Object" />
  2036. <property name="Item" propertytype="System.Object" />
  2037. <method name="IsDBNull(System.Int32)" argnames="i" returntype="System.Boolean" />
  2038. <method name="GetData(System.Int32)" argnames="i" returntype="System.Data.IDataReader" />
  2039. <method name="GetDateTime(System.Int32)" argnames="i" returntype="System.DateTime" />
  2040. <method name="GetDecimal(System.Int32)" argnames="i" returntype="System.Decimal" />
  2041. <method name="GetString(System.Int32)" argnames="i" returntype="System.String" />
  2042. <method name="GetDouble(System.Int32)" argnames="i" returntype="System.Double" />
  2043. <method name="GetFloat(System.Int32)" argnames="i" returntype="System.Single" />
  2044. <method name="GetInt64(System.Int32)" argnames="i" returntype="System.Int64" />
  2045. <method name="GetInt32(System.Int32)" argnames="i" returntype="System.Int32" />
  2046. <method name="GetInt16(System.Int32)" argnames="i" returntype="System.Int16" />
  2047. <method name="GetGuid(System.Int32)" argnames="i" returntype="System.Guid" />
  2048. <method name="GetChars(System.Int32, System.Int64, System.Char[], System.Int32, System.Int32)" argnames="i, dataIndex, buffer, bufferIndex, length" returntype="System.Int64" />
  2049. <method name="GetChar(System.Int32)" argnames="i" returntype="System.Char" />
  2050. <method name="GetBytes(System.Int32, System.Int64, System.Byte[], System.Int32, System.Int32)" argnames="i, dataIndex, buffer, bufferIndex, length" returntype="System.Int64" />
  2051. <method name="GetByte(System.Int32)" argnames="i" returntype="System.Byte" />
  2052. <method name="GetBoolean(System.Int32)" argnames="i" returntype="System.Boolean" />
  2053. <method name="GetOrdinal(System.String)" argnames="name" returntype="System.Int32" />
  2054. <method name="GetValues(System.Object[])" argnames="values" returntype="System.Int32" />
  2055. <method name="GetValue(System.Int32)" argnames="i" returntype="System.Object" />
  2056. <method name="GetFieldType(System.Int32)" argnames="i" returntype="System.Type" />
  2057. <method name="GetDataTypeName(System.Int32)" argnames="i" returntype="System.String" />
  2058. <method name="GetName(System.Int32)" argnames="i" returntype="System.String" />
  2059. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2060. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2061. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2062. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  2063. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2064. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2065. </class>
  2066. <class name="DbEnumerator" namespace="System.Data.Common">
  2067. <constructor name="DbEnumerator(System.Data.IDataReader)" argnames="reader" />
  2068. <constructor name="DbEnumerator(System.Data.IDataReader, System.Boolean)" argnames="reader, closeReader" />
  2069. <property name="Current" propertytype="System.Object" />
  2070. <method name="Reset" argnames="" returntype="System.Void" />
  2071. <method name="MoveNext" argnames="" returntype="System.Boolean" />
  2072. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2073. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2074. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2075. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  2076. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2077. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2078. </class>
  2079. <class name="RowUpdatedEventArgs" namespace="System.Data.Common">
  2080. <constructor name="RowUpdatedEventArgs(System.Data.DataRow, System.Data.IDbCommand, System.Data.StatementType, System.Data.Common.DataTableMapping)" argnames="dataRow, command, statementType, tableMapping" />
  2081. <property name="Command" propertytype="System.Data.IDbCommand" />
  2082. <property name="StatementType" propertytype="System.Data.StatementType" />
  2083. <property name="Errors" propertytype="System.Exception" />
  2084. <property name="RecordsAffected" propertytype="System.Int32" />
  2085. <property name="Row" propertytype="System.Data.DataRow" />
  2086. <property name="Status" propertytype="System.Data.UpdateStatus" />
  2087. <property name="TableMapping" propertytype="System.Data.Common.DataTableMapping" />
  2088. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2089. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2090. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2091. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  2092. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2093. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2094. </class>
  2095. <class name="RowUpdatingEventArgs" namespace="System.Data.Common">
  2096. <constructor name="RowUpdatingEventArgs(System.Data.DataRow, System.Data.IDbCommand, System.Data.StatementType, System.Data.Common.DataTableMapping)" argnames="dataRow, command, statementType, tableMapping" />
  2097. <property name="Command" propertytype="System.Data.IDbCommand" />
  2098. <property name="StatementType" propertytype="System.Data.StatementType" />
  2099. <property name="Errors" propertytype="System.Exception" />
  2100. <property name="Row" propertytype="System.Data.DataRow" />
  2101. <property name="Status" propertytype="System.Data.UpdateStatus" />
  2102. <property name="TableMapping" propertytype="System.Data.Common.DataTableMapping" />
  2103. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2104. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2105. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2106. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  2107. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2108. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2109. </class>
  2110. <class name="DBDataPermission" namespace="System.Data.Common">
  2111. <constructor name="DBDataPermission" argnames="" />
  2112. <constructor name="DBDataPermission(System.Security.Permissions.PermissionState)" argnames="state" />
  2113. <constructor name="DBDataPermission(System.Security.Permissions.PermissionState, System.Boolean)" argnames="state, allowBlankPassword" />
  2114. <property name="AllowBlankPassword" propertytype="System.Boolean" />
  2115. <method name="IsUnrestricted" argnames="" returntype="System.Boolean" />
  2116. <method name="CreateInstance" argnames="" returntype="System.Data.Common.DBDataPermission" />
  2117. <method name="PermitOnly" argnames="" inherited="System.Security.CodeAccessPermission" returntype="System.Void" />
  2118. <method name="Deny" argnames="" inherited="System.Security.CodeAccessPermission" returntype="System.Void" />
  2119. <method name="Assert" argnames="" inherited="System.Security.CodeAccessPermission" returntype="System.Void" />
  2120. <method name="FromXml(System.Security.SecurityElement)" argnames="securityElement" returntype="System.Void" />
  2121. <method name="ToXml" argnames="" returntype="System.Security.SecurityElement" />
  2122. <method name="Demand" argnames="" inherited="System.Security.CodeAccessPermission" returntype="System.Void" />
  2123. <method name="IsSubsetOf(System.Security.IPermission)" argnames="target" returntype="System.Boolean" />
  2124. <method name="Union(System.Security.IPermission)" argnames="target" returntype="System.Security.IPermission" />
  2125. <method name="Intersect(System.Security.IPermission)" argnames="target" returntype="System.Security.IPermission" />
  2126. <method name="Copy" argnames="" returntype="System.Security.IPermission" />
  2127. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2128. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2129. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2130. <method name="ToString" argnames="" inherited="System.Security.CodeAccessPermission" returntype="System.String" />
  2131. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2132. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2133. </class>
  2134. <class name="DBDataPermissionAttribute" namespace="System.Data.Common">
  2135. <constructor name="DBDataPermissionAttribute(System.Security.Permissions.SecurityAction)" argnames="action" />
  2136. <property name="AllowBlankPassword" propertytype="System.Boolean" />
  2137. <property name="Action" inherited="System.Security.Permissions.SecurityAttribute" propertytype="System.Security.Permissions.SecurityAction" />
  2138. <property name="Unrestricted" inherited="System.Security.Permissions.SecurityAttribute" propertytype="System.Boolean" />
  2139. <property name="TypeId" inherited="System.Attribute" propertytype="System.Object" />
  2140. <method name="CreatePermission" argnames="" inherited="System.Security.Permissions.SecurityAttribute" returntype="System.Security.IPermission" />
  2141. <method name="IsDefaultAttribute" argnames="" inherited="System.Attribute" returntype="System.Boolean" />
  2142. <method name="Match(System.Object)" argnames="obj" inherited="System.Attribute" returntype="System.Boolean" />
  2143. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2144. <method name="GetHashCode" argnames="" inherited="System.Attribute" returntype="System.Int32" />
  2145. <method name="Equals(System.Object)" argnames="obj" inherited="System.Attribute" returntype="System.Boolean" />
  2146. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  2147. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2148. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2149. </class>
  2150. <class name="OleDbDataReader" namespace="System.Data.OleDb">
  2151. <property name="Depth" propertytype="System.Int32" />
  2152. <property name="FieldCount" propertytype="System.Int32" />
  2153. <property name="IsClosed" propertytype="System.Boolean" />
  2154. <property name="RecordsAffected" propertytype="System.Int32" />
  2155. <property name="Item" propertytype="System.Object" />
  2156. <property name="Item" propertytype="System.Object" />
  2157. <method name="IsDBNull(System.Int32)" argnames="ordinal" returntype="System.Boolean" />
  2158. <method name="GetDateTime(System.Int32)" argnames="ordinal" returntype="System.DateTime" />
  2159. <method name="GetDecimal(System.Int32)" argnames="ordinal" returntype="System.Decimal" />
  2160. <method name="GetString(System.Int32)" argnames="ordinal" returntype="System.String" />
  2161. <method name="GetDouble(System.Int32)" argnames="ordinal" returntype="System.Double" />
  2162. <method name="GetFloat(System.Int32)" argnames="ordinal" returntype="System.Single" />
  2163. <method name="GetInt64(System.Int32)" argnames="ordinal" returntype="System.Int64" />
  2164. <method name="GetInt32(System.Int32)" argnames="ordinal" returntype="System.Int32" />
  2165. <method name="GetInt16(System.Int32)" argnames="ordinal" returntype="System.Int16" />
  2166. <method name="GetGuid(System.Int32)" argnames="ordinal" returntype="System.Guid" />
  2167. <method name="GetChars(System.Int32, System.Int64, System.Char[], System.Int32, System.Int32)" argnames="ordinal, dataIndex, buffer, bufferIndex, length" returntype="System.Int64" />
  2168. <method name="GetChar(System.Int32)" argnames="ordinal" returntype="System.Char" />
  2169. <method name="GetBytes(System.Int32, System.Int64, System.Byte[], System.Int32, System.Int32)" argnames="ordinal, dataIndex, buffer, bufferIndex, length" returntype="System.Int64" />
  2170. <method name="GetByte(System.Int32)" argnames="ordinal" returntype="System.Byte" />
  2171. <method name="GetBoolean(System.Int32)" argnames="ordinal" returntype="System.Boolean" />
  2172. <method name="GetOrdinal(System.String)" argnames="name" returntype="System.Int32" />
  2173. <method name="GetValues(System.Object[])" argnames="values" returntype="System.Int32" />
  2174. <method name="GetValue(System.Int32)" argnames="ordinal" returntype="System.Object" />
  2175. <method name="GetFieldType(System.Int32)" argnames="index" returntype="System.Type" />
  2176. <method name="GetDataTypeName(System.Int32)" argnames="index" returntype="System.String" />
  2177. <method name="GetName(System.Int32)" argnames="index" returntype="System.String" />
  2178. <method name="GetSchemaTable" argnames="" returntype="System.Data.DataTable" />
  2179. <method name="Read" argnames="" returntype="System.Boolean" />
  2180. <method name="NextResult" argnames="" returntype="System.Boolean" />
  2181. <method name="Close" argnames="" returntype="System.Void" />
  2182. <method name="CreateObjRef(System.Type)" argnames="requestedType" inherited="System.MarshalByRefObject" returntype="System.Runtime.Remoting.ObjRef" />
  2183. <method name="InitializeLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  2184. <method name="GetLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  2185. <method name="Finalize" argnames="" returntype="System.Void" />
  2186. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2187. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2188. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  2189. <method name="GetData(System.Int32)" argnames="ordinal" returntype="System.Data.OleDb.OleDbDataReader" />
  2190. <method name="GetTimeSpan(System.Int32)" argnames="ordinal" returntype="System.TimeSpan" />
  2191. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2192. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2193. </class>
  2194. <class name="OleDbError" namespace="System.Data.OleDb">
  2195. <property name="Message" propertytype="System.String" />
  2196. <property name="NativeError" propertytype="System.Int32" />
  2197. <property name="Source" propertytype="System.String" />
  2198. <property name="SQLState" propertytype="System.String" />
  2199. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2200. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2201. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2202. <method name="ToString" argnames="" returntype="System.String" />
  2203. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2204. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2205. </class>
  2206. <class name="OleDbErrorCollection" namespace="System.Data.OleDb">
  2207. <property name="Count" propertytype="System.Int32" />
  2208. <property name="Item" propertytype="System.Data.OleDb.OleDbError" />
  2209. <method name="GetEnumerator" argnames="" returntype="System.Collections.IEnumerator" />
  2210. <method name="CopyTo(System.Array, System.Int32)" argnames="array, index" returntype="System.Void" />
  2211. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2212. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2213. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2214. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  2215. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2216. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2217. </class>
  2218. <class name="OleDbException" namespace="System.Data.OleDb">
  2219. <property name="ErrorCode" propertytype="System.Int32" />
  2220. <property name="Errors" propertytype="System.Data.OleDb.OleDbErrorCollection" />
  2221. <property name="Message" propertytype="System.String" />
  2222. <property name="Source" propertytype="System.String" />
  2223. <property name="InnerException" inherited="System.Exception" propertytype="System.Exception" />
  2224. <property name="TargetSite" inherited="System.Exception" propertytype="System.Reflection.MethodBase" />
  2225. <property name="StackTrace" inherited="System.Exception" propertytype="System.String" />
  2226. <property name="HelpLink" inherited="System.Exception" propertytype="System.String" />
  2227. <property name="HResult" inherited="System.Exception" propertytype="System.Int32" />
  2228. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="si, context" returntype="System.Void" />
  2229. <method name="GetBaseException" argnames="" inherited="System.Exception" returntype="System.Exception" />
  2230. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2231. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2232. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2233. <method name="ToString" argnames="" inherited="System.Exception" returntype="System.String" />
  2234. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2235. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2236. </class>
  2237. <class name="OleDbInfoMessageEventArgs" namespace="System.Data.OleDb">
  2238. <property name="ErrorCode" propertytype="System.Int32" />
  2239. <property name="Errors" propertytype="System.Data.OleDb.OleDbErrorCollection" />
  2240. <property name="Message" propertytype="System.String" />
  2241. <property name="Source" propertytype="System.String" />
  2242. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2243. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2244. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2245. <method name="ToString" argnames="" returntype="System.String" />
  2246. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2247. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2248. </class>
  2249. <class name="OleDbParameterCollection" namespace="System.Data.OleDb">
  2250. <property name="Count" propertytype="System.Int32" />
  2251. <property name="ItemType" propertytype="System.Type" />
  2252. <property name="Item" propertytype="System.Data.OleDb.OleDbParameter" />
  2253. <property name="Item" propertytype="System.Data.OleDb.OleDbParameter" />
  2254. <method name="GetEnumerator" argnames="" returntype="System.Collections.IEnumerator" />
  2255. <method name="CopyTo(System.Array, System.Int32)" argnames="array, index" returntype="System.Void" />
  2256. <method name="RemoveAt(System.Int32)" argnames="index" returntype="System.Void" />
  2257. <method name="Remove(System.Object)" argnames="value" returntype="System.Void" />
  2258. <method name="Insert(System.Int32, System.Object)" argnames="index, value" returntype="System.Void" />
  2259. <method name="IndexOf(System.Object)" argnames="value" returntype="System.Int32" />
  2260. <method name="Clear" argnames="" returntype="System.Void" />
  2261. <method name="Contains(System.Object)" argnames="value" returntype="System.Boolean" />
  2262. <method name="Add(System.Object)" argnames="value" returntype="System.Int32" />
  2263. <method name="RemoveAt(System.String)" argnames="parameterName" returntype="System.Void" />
  2264. <method name="IndexOf(System.String)" argnames="parameterName" returntype="System.Int32" />
  2265. <method name="Contains(System.String)" argnames="value" returntype="System.Boolean" />
  2266. <method name="CreateObjRef(System.Type)" argnames="requestedType" inherited="System.MarshalByRefObject" returntype="System.Runtime.Remoting.ObjRef" />
  2267. <method name="InitializeLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  2268. <method name="GetLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  2269. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2270. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2271. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2272. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  2273. <method name="Add(System.Data.OleDb.OleDbParameter)" argnames="value" returntype="System.Data.OleDb.OleDbParameter" />
  2274. <method name="Add(System.String, System.Object)" argnames="parameterName, value" returntype="System.Data.OleDb.OleDbParameter" />
  2275. <method name="Add(System.String, System.Data.OleDb.OleDbType)" argnames="parameterName, oleDbType" returntype="System.Data.OleDb.OleDbParameter" />
  2276. <method name="Add(System.String, System.Data.OleDb.OleDbType, System.Int32)" argnames="parameterName, oleDbType, size" returntype="System.Data.OleDb.OleDbParameter" />
  2277. <method name="Add(System.String, System.Data.OleDb.OleDbType, System.Int32, System.String)" argnames="parameterName, oleDbType, size, sourceColumn" returntype="System.Data.OleDb.OleDbParameter" />
  2278. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2279. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2280. </class>
  2281. <class name="OleDbSchemaGuid" namespace="System.Data.OleDb">
  2282. <constructor name="OleDbSchemaGuid" argnames="" />
  2283. <field name="Tables_Info" />
  2284. <field name="Trustee" />
  2285. <field name="Assertions" />
  2286. <field name="Catalogs" />
  2287. <field name="Character_Sets" />
  2288. <field name="Collations" />
  2289. <field name="Columns" />
  2290. <field name="Check_Constraints" />
  2291. <field name="Constraint_Column_Usage" />
  2292. <field name="Constraint_Table_Usage" />
  2293. <field name="Key_Column_Usage" />
  2294. <field name="Referential_Constraints" />
  2295. <field name="Table_Constraints" />
  2296. <field name="Column_Domain_Usage" />
  2297. <field name="Indexes" />
  2298. <field name="Column_Privileges" />
  2299. <field name="Table_Privileges" />
  2300. <field name="Usage_Privileges" />
  2301. <field name="Procedures" />
  2302. <field name="Schemata" />
  2303. <field name="Sql_Languages" />
  2304. <field name="Statistics" />
  2305. <field name="Tables" />
  2306. <field name="Translations" />
  2307. <field name="Provider_Types" />
  2308. <field name="Views" />
  2309. <field name="View_Column_Usage" />
  2310. <field name="View_Table_Usage" />
  2311. <field name="Procedure_Parameters" />
  2312. <field name="Foreign_Keys" />
  2313. <field name="Primary_Keys" />
  2314. <field name="Procedure_Columns" />
  2315. <field name="Table_Statistics" />
  2316. <field name="Check_Constraints_By_Table" />
  2317. <field name="DbInfoLiterals" />
  2318. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2319. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2320. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2321. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  2322. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2323. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2324. </class>
  2325. <class name="OleDbTransaction" namespace="System.Data.OleDb">
  2326. <property name="Connection" propertytype="System.Data.OleDb.OleDbConnection" />
  2327. <property name="IsolationLevel" propertytype="System.Data.IsolationLevel" />
  2328. <method name="Rollback" argnames="" returntype="System.Void" />
  2329. <method name="Commit" argnames="" returntype="System.Void" />
  2330. <method name="CreateObjRef(System.Type)" argnames="requestedType" inherited="System.MarshalByRefObject" returntype="System.Runtime.Remoting.ObjRef" />
  2331. <method name="InitializeLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  2332. <method name="GetLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  2333. <method name="Finalize" argnames="" returntype="System.Void" />
  2334. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2335. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2336. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  2337. <method name="Begin(System.Data.IsolationLevel)" argnames="isolevel" returntype="System.Data.OleDb.OleDbTransaction" />
  2338. <method name="Begin" argnames="" returntype="System.Data.OleDb.OleDbTransaction" />
  2339. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2340. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2341. </class>
  2342. <class name="OleDbCommand" namespace="System.Data.OleDb">
  2343. <constructor name="OleDbCommand" argnames="" />
  2344. <constructor name="OleDbCommand(System.String)" argnames="cmdText" />
  2345. <constructor name="OleDbCommand(System.String, System.Data.OleDb.OleDbConnection)" argnames="cmdText, connection" />
  2346. <constructor name="OleDbCommand(System.String, System.Data.OleDb.OleDbConnection, System.Data.OleDb.OleDbTransaction)" argnames="cmdText, connection, transaction" />
  2347. <property name="CommandText" propertytype="System.String" />
  2348. <property name="CommandTimeout" propertytype="System.Int32" />
  2349. <property name="CommandType" propertytype="System.Data.CommandType" />
  2350. <property name="Connection" propertytype="System.Data.OleDb.OleDbConnection" />
  2351. <property name="DesignTimeVisible" propertytype="System.Boolean" />
  2352. <property name="IsClosed" propertytype="System.Boolean" />
  2353. <property name="Parameters" propertytype="System.Data.OleDb.OleDbParameterCollection" />
  2354. <property name="Transaction" propertytype="System.Data.OleDb.OleDbTransaction" />
  2355. <property name="UpdatedRowSource" propertytype="System.Data.UpdateRowSource" />
  2356. <property name="Events" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.EventHandlerList" />
  2357. <property name="Site" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.ISite" />
  2358. <property name="Container" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.IContainer" />
  2359. <property name="DesignMode" inherited="System.ComponentModel.Component" propertytype="System.Boolean" />
  2360. <method name="ExecuteScalar" argnames="" returntype="System.Object" />
  2361. <method name="ExecuteNonQuery" argnames="" returntype="System.Int32" />
  2362. <method name="Cancel" argnames="" returntype="System.Void" />
  2363. <method name="Prepare" argnames="" returntype="System.Void" />
  2364. <method name="Dispose" argnames="" inherited="System.ComponentModel.Component" returntype="System.Void" />
  2365. <method name="GetService(System.Type)" argnames="service" inherited="System.ComponentModel.Component" returntype="System.Object" />
  2366. <method name="Dispose(System.Boolean)" argnames="disposing" returntype="System.Void" />
  2367. <method name="CreateObjRef(System.Type)" argnames="requestedType" inherited="System.MarshalByRefObject" returntype="System.Runtime.Remoting.ObjRef" />
  2368. <method name="InitializeLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  2369. <method name="GetLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  2370. <method name="Finalize" argnames="" inherited="System.ComponentModel.Component" returntype="System.Void" />
  2371. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2372. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2373. <method name="ToString" argnames="" inherited="System.ComponentModel.Component" returntype="System.String" />
  2374. <method name="CreateParameter" argnames="" returntype="System.Data.OleDb.OleDbParameter" />
  2375. <method name="ExecuteReader" argnames="" returntype="System.Data.OleDb.OleDbDataReader" />
  2376. <method name="ExecuteReader(System.Data.CommandBehavior)" argnames="behavior" returntype="System.Data.OleDb.OleDbDataReader" />
  2377. <method name="ResetCommandTimeout" argnames="" returntype="System.Void" />
  2378. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2379. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2380. <event name="Disposed" inherited="System.ComponentModel.Component" />
  2381. </class>
  2382. <class name="OleDbCommandBuilder" namespace="System.Data.OleDb">
  2383. <constructor name="OleDbCommandBuilder" argnames="" />
  2384. <constructor name="OleDbCommandBuilder(System.Data.OleDb.OleDbDataAdapter)" argnames="adapter" />
  2385. <property name="DataAdapter" propertytype="System.Data.OleDb.OleDbDataAdapter" />
  2386. <property name="QuotePrefix" propertytype="System.String" />
  2387. <property name="QuoteSuffix" propertytype="System.String" />
  2388. <property name="Events" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.EventHandlerList" />
  2389. <property name="Site" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.ISite" />
  2390. <property name="Container" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.IContainer" />
  2391. <property name="DesignMode" inherited="System.ComponentModel.Component" propertytype="System.Boolean" />
  2392. <method name="Dispose" argnames="" inherited="System.ComponentModel.Component" returntype="System.Void" />
  2393. <method name="GetService(System.Type)" argnames="service" inherited="System.ComponentModel.Component" returntype="System.Object" />
  2394. <method name="Dispose(System.Boolean)" argnames="disposing" returntype="System.Void" />
  2395. <method name="CreateObjRef(System.Type)" argnames="requestedType" inherited="System.MarshalByRefObject" returntype="System.Runtime.Remoting.ObjRef" />
  2396. <method name="InitializeLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  2397. <method name="GetLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  2398. <method name="Finalize" argnames="" inherited="System.ComponentModel.Component" returntype="System.Void" />
  2399. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2400. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2401. <method name="ToString" argnames="" inherited="System.ComponentModel.Component" returntype="System.String" />
  2402. <method name="GetInsertCommand" argnames="" returntype="System.Data.OleDb.OleDbCommand" />
  2403. <method name="GetUpdateCommand" argnames="" returntype="System.Data.OleDb.OleDbCommand" />
  2404. <method name="GetDeleteCommand" argnames="" returntype="System.Data.OleDb.OleDbCommand" />
  2405. <method name="RefreshSchema" argnames="" returntype="System.Void" />
  2406. <method name="DeriveParameters(System.Data.OleDb.OleDbCommand)" argnames="command" returntype="System.Void" />
  2407. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2408. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2409. <event name="Disposed" inherited="System.ComponentModel.Component" />
  2410. </class>
  2411. <class name="OleDbConnection" namespace="System.Data.OleDb">
  2412. <constructor name="OleDbConnection" argnames="" />
  2413. <constructor name="OleDbConnection(System.String)" argnames="connectionString" />
  2414. <property name="ConnectionString" propertytype="System.String" />
  2415. <property name="ConnectionTimeout" propertytype="System.Int32" />
  2416. <property name="Database" propertytype="System.String" />
  2417. <property name="DataSource" propertytype="System.String" />
  2418. <property name="Provider" propertytype="System.String" />
  2419. <property name="ServerVersion" propertytype="System.String" />
  2420. <property name="State" propertytype="System.Data.ConnectionState" />
  2421. <property name="StateInternal" propertytype="System.Data.ConnectionState" />
  2422. <property name="Events" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.EventHandlerList" />
  2423. <property name="Site" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.ISite" />
  2424. <property name="Container" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.IContainer" />
  2425. <property name="DesignMode" inherited="System.ComponentModel.Component" propertytype="System.Boolean" />
  2426. <method name="Open" argnames="" returntype="System.Void" />
  2427. <method name="ChangeDatabase(System.String)" argnames="value" returntype="System.Void" />
  2428. <method name="Close" argnames="" returntype="System.Void" />
  2429. <method name="Dispose" argnames="" inherited="System.ComponentModel.Component" returntype="System.Void" />
  2430. <method name="GetService(System.Type)" argnames="service" inherited="System.ComponentModel.Component" returntype="System.Object" />
  2431. <method name="Dispose(System.Boolean)" argnames="disposing" returntype="System.Void" />
  2432. <method name="CreateObjRef(System.Type)" argnames="requestedType" inherited="System.MarshalByRefObject" returntype="System.Runtime.Remoting.ObjRef" />
  2433. <method name="InitializeLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  2434. <method name="GetLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  2435. <method name="Finalize" argnames="" inherited="System.ComponentModel.Component" returntype="System.Void" />
  2436. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2437. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2438. <method name="ToString" argnames="" inherited="System.ComponentModel.Component" returntype="System.String" />
  2439. <method name="BeginTransaction(System.Data.IsolationLevel)" argnames="isolationLevel" returntype="System.Data.OleDb.OleDbTransaction" />
  2440. <method name="BeginTransaction" argnames="" returntype="System.Data.OleDb.OleDbTransaction" />
  2441. <method name="CreateCommand" argnames="" returntype="System.Data.OleDb.OleDbCommand" />
  2442. <method name="GetOleDbSchemaTable(System.Guid, System.Object[])" argnames="schema, restrictions" returntype="System.Data.DataTable" />
  2443. <method name="ReleaseObjectPool" argnames="" returntype="System.Void" />
  2444. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2445. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2446. <event name="InfoMessage" />
  2447. <event name="StateChange" />
  2448. <event name="Disposed" inherited="System.ComponentModel.Component" />
  2449. </class>
  2450. <class name="OleDbDataAdapter" namespace="System.Data.OleDb">
  2451. <constructor name="OleDbDataAdapter" argnames="" />
  2452. <constructor name="OleDbDataAdapter(System.Data.OleDb.OleDbCommand)" argnames="selectCommand" />
  2453. <constructor name="OleDbDataAdapter(System.String, System.String)" argnames="selectCommandText, selectConnectionString" />
  2454. <constructor name="OleDbDataAdapter(System.String, System.Data.OleDb.OleDbConnection)" argnames="selectCommandText, selectConnection" />
  2455. <property name="DeleteCommand" propertytype="System.Data.OleDb.OleDbCommand" />
  2456. <property name="InsertCommand" propertytype="System.Data.OleDb.OleDbCommand" />
  2457. <property name="SelectCommand" propertytype="System.Data.OleDb.OleDbCommand" />
  2458. <property name="UpdateCommand" propertytype="System.Data.OleDb.OleDbCommand" />
  2459. <property name="AcceptChangesDuringFill" inherited="System.Data.Common.DataAdapter" propertytype="System.Boolean" />
  2460. <property name="ContinueUpdateOnError" inherited="System.Data.Common.DataAdapter" propertytype="System.Boolean" />
  2461. <property name="MissingMappingAction" inherited="System.Data.Common.DataAdapter" propertytype="System.Data.MissingMappingAction" />
  2462. <property name="MissingSchemaAction" inherited="System.Data.Common.DataAdapter" propertytype="System.Data.MissingSchemaAction" />
  2463. <property name="TableMappings" inherited="System.Data.Common.DataAdapter" propertytype="System.Data.Common.DataTableMappingCollection" />
  2464. <property name="Events" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.EventHandlerList" />
  2465. <property name="Site" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.ISite" />
  2466. <property name="Container" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.IContainer" />
  2467. <property name="DesignMode" inherited="System.ComponentModel.Component" propertytype="System.Boolean" />
  2468. <method name="Update(System.Data.DataRow[], System.Data.Common.DataTableMapping)" argnames="dataRows, tableMapping" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  2469. <method name="OnRowUpdating(System.Data.Common.RowUpdatingEventArgs)" argnames="value" returntype="System.Void" />
  2470. <method name="OnRowUpdated(System.Data.Common.RowUpdatedEventArgs)" argnames="value" returntype="System.Void" />
  2471. <method name="OnFillError(System.Data.FillErrorEventArgs)" argnames="value" inherited="System.Data.Common.DbDataAdapter" returntype="System.Void" />
  2472. <method name="Fill(System.Data.DataTable, System.Data.IDataReader)" argnames="dataTable, dataReader" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  2473. <method name="Fill(System.Data.DataSet, System.String, System.Data.IDataReader, System.Int32, System.Int32)" argnames="dataSet, srcTable, dataReader, startRecord, maxRecords" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  2474. <method name="Fill(System.Data.DataTable, System.Data.IDbCommand, System.Data.CommandBehavior)" argnames="dataTable, command, behavior" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  2475. <method name="Fill(System.Data.DataSet, System.Int32, System.Int32, System.String, System.Data.IDbCommand, System.Data.CommandBehavior)" argnames="dataSet, startRecord, maxRecords, srcTable, command, behavior" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  2476. <method name="FillSchema(System.Data.DataTable, System.Data.SchemaType, System.Data.IDbCommand, System.Data.CommandBehavior)" argnames="dataTable, schemaType, command, behavior" inherited="System.Data.Common.DbDataAdapter" returntype="System.Data.DataTable" />
  2477. <method name="FillSchema(System.Data.DataSet, System.Data.SchemaType, System.Data.IDbCommand, System.String, System.Data.CommandBehavior)" argnames="dataSet, schemaType, command, srcTable, behavior" inherited="System.Data.Common.DbDataAdapter" returntype="System.Data.DataTable[]" />
  2478. <method name="CreateRowUpdatingEvent(System.Data.DataRow, System.Data.IDbCommand, System.Data.StatementType, System.Data.Common.DataTableMapping)" argnames="dataRow, command, statementType, tableMapping" returntype="System.Data.Common.RowUpdatingEventArgs" />
  2479. <method name="CreateRowUpdatedEvent(System.Data.DataRow, System.Data.IDbCommand, System.Data.StatementType, System.Data.Common.DataTableMapping)" argnames="dataRow, command, statementType, tableMapping" returntype="System.Data.Common.RowUpdatedEventArgs" />
  2480. <method name="Update(System.Data.DataSet)" argnames="dataSet" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  2481. <method name="GetFillParameters" argnames="" inherited="System.Data.Common.DbDataAdapter" returntype="System.Data.IDataParameter[]" />
  2482. <method name="Fill(System.Data.DataSet)" argnames="dataSet" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  2483. <method name="FillSchema(System.Data.DataSet, System.Data.SchemaType)" argnames="dataSet, schemaType" inherited="System.Data.Common.DbDataAdapter" returntype="System.Data.DataTable[]" />
  2484. <method name="CreateTableMappings" argnames="" inherited="System.Data.Common.DataAdapter" returntype="System.Data.Common.DataTableMappingCollection" />
  2485. <method name="CloneInternals" argnames="" inherited="System.Data.Common.DataAdapter" returntype="System.Data.Common.DataAdapter" />
  2486. <method name="ShouldSerializeTableMappings" argnames="" inherited="System.Data.Common.DataAdapter" returntype="System.Boolean" />
  2487. <method name="Dispose" argnames="" inherited="System.ComponentModel.Component" returntype="System.Void" />
  2488. <method name="GetService(System.Type)" argnames="service" inherited="System.ComponentModel.Component" returntype="System.Object" />
  2489. <method name="Dispose(System.Boolean)" argnames="disposing" inherited="System.Data.Common.DbDataAdapter" returntype="System.Void" />
  2490. <method name="CreateObjRef(System.Type)" argnames="requestedType" inherited="System.MarshalByRefObject" returntype="System.Runtime.Remoting.ObjRef" />
  2491. <method name="InitializeLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  2492. <method name="GetLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  2493. <method name="Finalize" argnames="" inherited="System.ComponentModel.Component" returntype="System.Void" />
  2494. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2495. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2496. <method name="ToString" argnames="" inherited="System.ComponentModel.Component" returntype="System.String" />
  2497. <method name="Fill(System.Data.DataTable, System.Object)" argnames="dataTable, ADODBRecordSet" returntype="System.Int32" />
  2498. <method name="Fill(System.Data.DataSet, System.Object, System.String)" argnames="dataSet, ADODBRecordSet, srcTable" returntype="System.Int32" />
  2499. <method name="FillSchema(System.Data.DataTable, System.Data.SchemaType)" argnames="dataTable, schemaType" inherited="System.Data.Common.DbDataAdapter" returntype="System.Data.DataTable" />
  2500. <method name="FillSchema(System.Data.DataSet, System.Data.SchemaType, System.String)" argnames="dataSet, schemaType, srcTable" inherited="System.Data.Common.DbDataAdapter" returntype="System.Data.DataTable[]" />
  2501. <method name="Fill(System.Data.DataTable)" argnames="dataTable" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  2502. <method name="Fill(System.Data.DataSet, System.String)" argnames="dataSet, srcTable" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  2503. <method name="Fill(System.Data.DataSet, System.Int32, System.Int32, System.String)" argnames="dataSet, startRecord, maxRecords, srcTable" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  2504. <method name="Update(System.Data.DataRow[])" argnames="dataRows" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  2505. <method name="Update(System.Data.DataTable)" argnames="dataTable" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  2506. <method name="Update(System.Data.DataSet, System.String)" argnames="dataSet, srcTable" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  2507. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2508. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2509. <event name="RowUpdated" />
  2510. <event name="RowUpdating" />
  2511. <event name="FillError" inherited="System.Data.Common.DbDataAdapter" />
  2512. <event name="Disposed" inherited="System.ComponentModel.Component" />
  2513. </class>
  2514. <class name="OleDbParameter" namespace="System.Data.OleDb">
  2515. <constructor name="OleDbParameter" argnames="" />
  2516. <constructor name="OleDbParameter(System.String, System.Object)" argnames="name, value" />
  2517. <constructor name="OleDbParameter(System.String, System.Data.OleDb.OleDbType)" argnames="name, dataType" />
  2518. <constructor name="OleDbParameter(System.String, System.Data.OleDb.OleDbType, System.Int32)" argnames="name, dataType, size" />
  2519. <constructor name="OleDbParameter(System.String, System.Data.OleDb.OleDbType, System.Int32, System.String)" argnames="name, dataType, size, srcColumn" />
  2520. <constructor name="OleDbParameter(System.String, System.Data.OleDb.OleDbType, System.Int32, System.Data.ParameterDirection, System.Boolean, System.Byte, System.Byte, System.String, System.Data.DataRowVersion, System.Object)" argnames="parameterName, dbType, size, direction, isNullable, precision, scale, srcColumn, srcVersion, value" />
  2521. <property name="DbType" propertytype="System.Data.DbType" />
  2522. <property name="Direction" propertytype="System.Data.ParameterDirection" />
  2523. <property name="IsNullable" propertytype="System.Boolean" />
  2524. <property name="OleDbType" propertytype="System.Data.OleDb.OleDbType" />
  2525. <property name="NativeDBType" propertytype="System.Data.OleDb.NativeDBType" />
  2526. <property name="ParameterName" propertytype="System.String" />
  2527. <property name="Parent" propertytype="System.Data.OleDb.OleDbParameterCollection" />
  2528. <property name="Precision" propertytype="System.Byte" />
  2529. <property name="Scale" propertytype="System.Byte" />
  2530. <property name="Size" propertytype="System.Int32" />
  2531. <property name="SourceColumn" propertytype="System.String" />
  2532. <property name="SourceVersion" propertytype="System.Data.DataRowVersion" />
  2533. <property name="Value" propertytype="System.Object" />
  2534. <method name="CreateObjRef(System.Type)" argnames="requestedType" inherited="System.MarshalByRefObject" returntype="System.Runtime.Remoting.ObjRef" />
  2535. <method name="InitializeLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  2536. <method name="GetLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  2537. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2538. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2539. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2540. <method name="ToString" argnames="" returntype="System.String" />
  2541. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2542. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2543. </class>
  2544. <class name="OleDbRowUpdatedEventArgs" namespace="System.Data.OleDb">
  2545. <constructor name="OleDbRowUpdatedEventArgs(System.Data.DataRow, System.Data.IDbCommand, System.Data.StatementType, System.Data.Common.DataTableMapping)" argnames="dataRow, command, statementType, tableMapping" />
  2546. <property name="Command" propertytype="System.Data.OleDb.OleDbCommand" />
  2547. <property name="Command" inherited="System.Data.Common.RowUpdatedEventArgs" propertytype="System.Data.IDbCommand" />
  2548. <property name="StatementType" inherited="System.Data.Common.RowUpdatedEventArgs" propertytype="System.Data.StatementType" />
  2549. <property name="Errors" inherited="System.Data.Common.RowUpdatedEventArgs" propertytype="System.Exception" />
  2550. <property name="RecordsAffected" inherited="System.Data.Common.RowUpdatedEventArgs" propertytype="System.Int32" />
  2551. <property name="Row" inherited="System.Data.Common.RowUpdatedEventArgs" propertytype="System.Data.DataRow" />
  2552. <property name="Status" inherited="System.Data.Common.RowUpdatedEventArgs" propertytype="System.Data.UpdateStatus" />
  2553. <property name="TableMapping" inherited="System.Data.Common.RowUpdatedEventArgs" propertytype="System.Data.Common.DataTableMapping" />
  2554. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2555. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2556. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2557. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  2558. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2559. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2560. </class>
  2561. <class name="OleDbRowUpdatingEventArgs" namespace="System.Data.OleDb">
  2562. <constructor name="OleDbRowUpdatingEventArgs(System.Data.DataRow, System.Data.IDbCommand, System.Data.StatementType, System.Data.Common.DataTableMapping)" argnames="dataRow, command, statementType, tableMapping" />
  2563. <property name="Command" propertytype="System.Data.OleDb.OleDbCommand" />
  2564. <property name="Command" inherited="System.Data.Common.RowUpdatingEventArgs" propertytype="System.Data.IDbCommand" />
  2565. <property name="StatementType" inherited="System.Data.Common.RowUpdatingEventArgs" propertytype="System.Data.StatementType" />
  2566. <property name="Errors" inherited="System.Data.Common.RowUpdatingEventArgs" propertytype="System.Exception" />
  2567. <property name="Row" inherited="System.Data.Common.RowUpdatingEventArgs" propertytype="System.Data.DataRow" />
  2568. <property name="Status" inherited="System.Data.Common.RowUpdatingEventArgs" propertytype="System.Data.UpdateStatus" />
  2569. <property name="TableMapping" inherited="System.Data.Common.RowUpdatingEventArgs" propertytype="System.Data.Common.DataTableMapping" />
  2570. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2571. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2572. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2573. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  2574. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2575. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2576. </class>
  2577. <class name="OleDbPermission" namespace="System.Data.OleDb">
  2578. <constructor name="OleDbPermission" argnames="" />
  2579. <constructor name="OleDbPermission(System.Security.Permissions.PermissionState)" argnames="state" />
  2580. <constructor name="OleDbPermission(System.Security.Permissions.PermissionState, System.Boolean)" argnames="state, allowBlankPassword" />
  2581. <property name="Provider" propertytype="System.String" />
  2582. <property name="AllowBlankPassword" inherited="System.Data.Common.DBDataPermission" propertytype="System.Boolean" />
  2583. <method name="IsUnrestricted" argnames="" inherited="System.Data.Common.DBDataPermission" returntype="System.Boolean" />
  2584. <method name="CreateInstance" argnames="" returntype="System.Data.Common.DBDataPermission" />
  2585. <method name="PermitOnly" argnames="" inherited="System.Security.CodeAccessPermission" returntype="System.Void" />
  2586. <method name="Deny" argnames="" inherited="System.Security.CodeAccessPermission" returntype="System.Void" />
  2587. <method name="Assert" argnames="" inherited="System.Security.CodeAccessPermission" returntype="System.Void" />
  2588. <method name="FromXml(System.Security.SecurityElement)" argnames="securityElement" returntype="System.Void" />
  2589. <method name="ToXml" argnames="" returntype="System.Security.SecurityElement" />
  2590. <method name="Demand" argnames="" inherited="System.Security.CodeAccessPermission" returntype="System.Void" />
  2591. <method name="IsSubsetOf(System.Security.IPermission)" argnames="target" returntype="System.Boolean" />
  2592. <method name="Union(System.Security.IPermission)" argnames="target" returntype="System.Security.IPermission" />
  2593. <method name="Intersect(System.Security.IPermission)" argnames="target" returntype="System.Security.IPermission" />
  2594. <method name="Copy" argnames="" returntype="System.Security.IPermission" />
  2595. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2596. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2597. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2598. <method name="ToString" argnames="" inherited="System.Security.CodeAccessPermission" returntype="System.String" />
  2599. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2600. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2601. </class>
  2602. <class name="OleDbPermissionAttribute" namespace="System.Data.OleDb">
  2603. <constructor name="OleDbPermissionAttribute(System.Security.Permissions.SecurityAction)" argnames="action" />
  2604. <property name="Provider" propertytype="System.String" />
  2605. <property name="AllowBlankPassword" inherited="System.Data.Common.DBDataPermissionAttribute" propertytype="System.Boolean" />
  2606. <property name="Action" inherited="System.Security.Permissions.SecurityAttribute" propertytype="System.Security.Permissions.SecurityAction" />
  2607. <property name="Unrestricted" inherited="System.Security.Permissions.SecurityAttribute" propertytype="System.Boolean" />
  2608. <property name="TypeId" inherited="System.Attribute" propertytype="System.Object" />
  2609. <method name="CreatePermission" argnames="" returntype="System.Security.IPermission" />
  2610. <method name="IsDefaultAttribute" argnames="" inherited="System.Attribute" returntype="System.Boolean" />
  2611. <method name="Match(System.Object)" argnames="obj" inherited="System.Attribute" returntype="System.Boolean" />
  2612. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2613. <method name="GetHashCode" argnames="" inherited="System.Attribute" returntype="System.Int32" />
  2614. <method name="Equals(System.Object)" argnames="obj" inherited="System.Attribute" returntype="System.Boolean" />
  2615. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  2616. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2617. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2618. </class>
  2619. <delegate name="OleDbInfoMessageEventHandler" namespace="System.Data.OleDb">
  2620. <constructor name="OleDbInfoMessageEventHandler(System.Object, System.IntPtr)" argnames="object, method" />
  2621. <property name="Method" inherited="System.Delegate" propertytype="System.Reflection.MethodInfo" />
  2622. <property name="Target" inherited="System.Delegate" propertytype="System.Object" />
  2623. <method name="EndInvoke(System.IAsyncResult)" argnames="result" returntype="System.Void" />
  2624. <method name="BeginInvoke(System.Object, System.Data.OleDb.OleDbInfoMessageEventArgs, System.AsyncCallback, System.Object)" argnames="sender, e, callback, object" returntype="System.IAsyncResult" />
  2625. <method name="Invoke(System.Object, System.Data.OleDb.OleDbInfoMessageEventArgs)" argnames="sender, e" returntype="System.Void" />
  2626. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.MulticastDelegate" returntype="System.Void" />
  2627. <method name="Clone" argnames="" inherited="System.Delegate" returntype="System.Object" />
  2628. <method name="RemoveImpl(System.Delegate)" argnames="value" inherited="System.MulticastDelegate" returntype="System.Delegate" />
  2629. <method name="CombineImpl(System.Delegate)" argnames="follow" inherited="System.MulticastDelegate" returntype="System.Delegate" />
  2630. <method name="GetMethodImpl" argnames="" inherited="System.Delegate" returntype="System.Reflection.MethodInfo" />
  2631. <method name="GetInvocationList" argnames="" inherited="System.MulticastDelegate" returntype="System.Delegate[]" />
  2632. <method name="DynamicInvokeImpl(System.Object[])" argnames="args" inherited="System.MulticastDelegate" returntype="System.Object" />
  2633. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2634. <method name="GetHashCode" argnames="" inherited="System.MulticastDelegate" returntype="System.Int32" />
  2635. <method name="Equals(System.Object)" argnames="obj" inherited="System.MulticastDelegate" returntype="System.Boolean" />
  2636. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  2637. <method name="DynamicInvoke(System.Object[])" argnames="args" inherited="System.Delegate" returntype="System.Object" />
  2638. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2639. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2640. </delegate>
  2641. <delegate name="OleDbRowUpdatedEventHandler" namespace="System.Data.OleDb">
  2642. <constructor name="OleDbRowUpdatedEventHandler(System.Object, System.IntPtr)" argnames="object, method" />
  2643. <property name="Method" inherited="System.Delegate" propertytype="System.Reflection.MethodInfo" />
  2644. <property name="Target" inherited="System.Delegate" propertytype="System.Object" />
  2645. <method name="EndInvoke(System.IAsyncResult)" argnames="result" returntype="System.Void" />
  2646. <method name="BeginInvoke(System.Object, System.Data.OleDb.OleDbRowUpdatedEventArgs, System.AsyncCallback, System.Object)" argnames="sender, e, callback, object" returntype="System.IAsyncResult" />
  2647. <method name="Invoke(System.Object, System.Data.OleDb.OleDbRowUpdatedEventArgs)" argnames="sender, e" returntype="System.Void" />
  2648. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.MulticastDelegate" returntype="System.Void" />
  2649. <method name="Clone" argnames="" inherited="System.Delegate" returntype="System.Object" />
  2650. <method name="RemoveImpl(System.Delegate)" argnames="value" inherited="System.MulticastDelegate" returntype="System.Delegate" />
  2651. <method name="CombineImpl(System.Delegate)" argnames="follow" inherited="System.MulticastDelegate" returntype="System.Delegate" />
  2652. <method name="GetMethodImpl" argnames="" inherited="System.Delegate" returntype="System.Reflection.MethodInfo" />
  2653. <method name="GetInvocationList" argnames="" inherited="System.MulticastDelegate" returntype="System.Delegate[]" />
  2654. <method name="DynamicInvokeImpl(System.Object[])" argnames="args" inherited="System.MulticastDelegate" returntype="System.Object" />
  2655. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2656. <method name="GetHashCode" argnames="" inherited="System.MulticastDelegate" returntype="System.Int32" />
  2657. <method name="Equals(System.Object)" argnames="obj" inherited="System.MulticastDelegate" returntype="System.Boolean" />
  2658. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  2659. <method name="DynamicInvoke(System.Object[])" argnames="args" inherited="System.Delegate" returntype="System.Object" />
  2660. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2661. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2662. </delegate>
  2663. <delegate name="OleDbRowUpdatingEventHandler" namespace="System.Data.OleDb">
  2664. <constructor name="OleDbRowUpdatingEventHandler(System.Object, System.IntPtr)" argnames="object, method" />
  2665. <property name="Method" inherited="System.Delegate" propertytype="System.Reflection.MethodInfo" />
  2666. <property name="Target" inherited="System.Delegate" propertytype="System.Object" />
  2667. <method name="EndInvoke(System.IAsyncResult)" argnames="result" returntype="System.Void" />
  2668. <method name="BeginInvoke(System.Object, System.Data.OleDb.OleDbRowUpdatingEventArgs, System.AsyncCallback, System.Object)" argnames="sender, e, callback, object" returntype="System.IAsyncResult" />
  2669. <method name="Invoke(System.Object, System.Data.OleDb.OleDbRowUpdatingEventArgs)" argnames="sender, e" returntype="System.Void" />
  2670. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.MulticastDelegate" returntype="System.Void" />
  2671. <method name="Clone" argnames="" inherited="System.Delegate" returntype="System.Object" />
  2672. <method name="RemoveImpl(System.Delegate)" argnames="value" inherited="System.MulticastDelegate" returntype="System.Delegate" />
  2673. <method name="CombineImpl(System.Delegate)" argnames="follow" inherited="System.MulticastDelegate" returntype="System.Delegate" />
  2674. <method name="GetMethodImpl" argnames="" inherited="System.Delegate" returntype="System.Reflection.MethodInfo" />
  2675. <method name="GetInvocationList" argnames="" inherited="System.MulticastDelegate" returntype="System.Delegate[]" />
  2676. <method name="DynamicInvokeImpl(System.Object[])" argnames="args" inherited="System.MulticastDelegate" returntype="System.Object" />
  2677. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2678. <method name="GetHashCode" argnames="" inherited="System.MulticastDelegate" returntype="System.Int32" />
  2679. <method name="Equals(System.Object)" argnames="obj" inherited="System.MulticastDelegate" returntype="System.Boolean" />
  2680. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  2681. <method name="DynamicInvoke(System.Object[])" argnames="args" inherited="System.Delegate" returntype="System.Object" />
  2682. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2683. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2684. </delegate>
  2685. <enum name="OleDbLiteral" namespace="System.Data.OleDb">
  2686. <field name="Invalid" />
  2687. <field name="Binary_Literal" />
  2688. <field name="Catalog_Name" />
  2689. <field name="Catalog_Separator" />
  2690. <field name="Char_Literal" />
  2691. <field name="Column_Alias" />
  2692. <field name="Column_Name" />
  2693. <field name="Correlation_Name" />
  2694. <field name="Cursor_Name" />
  2695. <field name="Escape_Percent_Prefix" />
  2696. <field name="Escape_Underscore_Prefix" />
  2697. <field name="Index_Name" />
  2698. <field name="Like_Percent" />
  2699. <field name="Like_Underscore" />
  2700. <field name="Procedure_Name" />
  2701. <field name="Quote_Prefix" />
  2702. <field name="Schema_Name" />
  2703. <field name="Table_Name" />
  2704. <field name="Text_Command" />
  2705. <field name="User_Name" />
  2706. <field name="View_Name" />
  2707. <field name="Cube_Name" />
  2708. <field name="Dimension_Name" />
  2709. <field name="Hierarchy_Name" />
  2710. <field name="Level_Name" />
  2711. <field name="Member_Name" />
  2712. <field name="Property_Name" />
  2713. <field name="Schema_Separator" />
  2714. <field name="Quote_Suffix" />
  2715. <field name="Escape_Percent_Suffix" />
  2716. <field name="Escape_Underscore_Suffix" />
  2717. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  2718. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  2719. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  2720. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  2721. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2722. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  2723. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  2724. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  2725. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  2726. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2727. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2728. </enum>
  2729. <enum name="OleDbType" namespace="System.Data.OleDb">
  2730. <field name="BigInt" />
  2731. <field name="Binary" />
  2732. <field name="Boolean" />
  2733. <field name="BSTR" />
  2734. <field name="Char" />
  2735. <field name="Currency" />
  2736. <field name="Date" />
  2737. <field name="DBDate" />
  2738. <field name="DBTime" />
  2739. <field name="DBTimeStamp" />
  2740. <field name="Decimal" />
  2741. <field name="Double" />
  2742. <field name="Empty" />
  2743. <field name="Error" />
  2744. <field name="Filetime" />
  2745. <field name="Guid" />
  2746. <field name="IDispatch" />
  2747. <field name="Integer" />
  2748. <field name="IUnknown" />
  2749. <field name="LongVarBinary" />
  2750. <field name="LongVarChar" />
  2751. <field name="LongVarWChar" />
  2752. <field name="Numeric" />
  2753. <field name="PropVariant" />
  2754. <field name="Single" />
  2755. <field name="SmallInt" />
  2756. <field name="TinyInt" />
  2757. <field name="UnsignedBigInt" />
  2758. <field name="UnsignedInt" />
  2759. <field name="UnsignedSmallInt" />
  2760. <field name="UnsignedTinyInt" />
  2761. <field name="VarBinary" />
  2762. <field name="VarChar" />
  2763. <field name="Variant" />
  2764. <field name="VarNumeric" />
  2765. <field name="VarWChar" />
  2766. <field name="WChar" />
  2767. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  2768. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  2769. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  2770. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  2771. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2772. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  2773. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  2774. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  2775. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  2776. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2777. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2778. </enum>
  2779. <class name="Counter" namespace="System.Data.SqlClient">
  2780. <constructor name="Counter" argnames="" />
  2781. <property name="Value" propertytype="System.Int64" />
  2782. <property name="IsQueued" propertytype="System.Boolean" />
  2783. <property name="IsInError" propertytype="System.Boolean" />
  2784. <property name="WaitCount" propertytype="System.Int32" />
  2785. <property name="FreeCount" propertytype="System.Int32" />
  2786. <property name="TotalCount" propertytype="System.Int32" />
  2787. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2788. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2789. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2790. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  2791. <method name="Modify(System.Int64)" argnames="add" returntype="System.Void" />
  2792. <method name="TryUpdate(System.Int64, System.Data.SqlClient.ConnectionPool.Counter)" argnames="newval, clone" returntype="System.Boolean" />
  2793. <method name="Clone" argnames="" returntype="System.Data.SqlClient.ConnectionPool+Counter" />
  2794. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2795. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2796. </class>
  2797. <class name="SqlDataReader" namespace="System.Data.SqlClient">
  2798. <property name="Depth" propertytype="System.Int32" />
  2799. <property name="FieldCount" propertytype="System.Int32" />
  2800. <property name="Item" propertytype="System.Object" />
  2801. <property name="Item" propertytype="System.Object" />
  2802. <property name="HasMoreRows" propertytype="System.Boolean" />
  2803. <property name="HasMoreResults" propertytype="System.Boolean" />
  2804. <property name="IsClosed" propertytype="System.Boolean" />
  2805. <property name="RecordsAffected" propertytype="System.Int32" />
  2806. <property name="BrowseModeInfoConsumed" propertytype="System.Boolean" />
  2807. <property name="MetaData" propertytype="System.Data.SqlClient._SqlMetaData[]" />
  2808. <property name="TableNames" propertytype="System.String[]" />
  2809. <property name="TableNamesShilohSP1" propertytype="System.String[][]" />
  2810. <property name="SetOptionsOFF" propertytype="System.String" />
  2811. <property name="Behavior" propertytype="System.Data.CommandBehavior" />
  2812. <method name="IsDBNull(System.Int32)" argnames="i" returntype="System.Boolean" />
  2813. <method name="GetData(System.Int32)" argnames="i" returntype="System.Data.IDataReader" />
  2814. <method name="GetDateTime(System.Int32)" argnames="i" returntype="System.DateTime" />
  2815. <method name="GetDecimal(System.Int32)" argnames="i" returntype="System.Decimal" />
  2816. <method name="GetString(System.Int32)" argnames="i" returntype="System.String" />
  2817. <method name="GetDouble(System.Int32)" argnames="i" returntype="System.Double" />
  2818. <method name="GetFloat(System.Int32)" argnames="i" returntype="System.Single" />
  2819. <method name="GetInt64(System.Int32)" argnames="i" returntype="System.Int64" />
  2820. <method name="GetInt32(System.Int32)" argnames="i" returntype="System.Int32" />
  2821. <method name="GetInt16(System.Int32)" argnames="i" returntype="System.Int16" />
  2822. <method name="GetGuid(System.Int32)" argnames="i" returntype="System.Guid" />
  2823. <method name="GetChars(System.Int32, System.Int64, System.Char[], System.Int32, System.Int32)" argnames="i, dataIndex, buffer, bufferIndex, length" returntype="System.Int64" />
  2824. <method name="GetChar(System.Int32)" argnames="i" returntype="System.Char" />
  2825. <method name="GetBytes(System.Int32, System.Int64, System.Byte[], System.Int32, System.Int32)" argnames="i, dataIndex, buffer, bufferIndex, length" returntype="System.Int64" />
  2826. <method name="GetByte(System.Int32)" argnames="i" returntype="System.Byte" />
  2827. <method name="GetBoolean(System.Int32)" argnames="i" returntype="System.Boolean" />
  2828. <method name="GetOrdinal(System.String)" argnames="name" returntype="System.Int32" />
  2829. <method name="GetValues(System.Object[])" argnames="values" returntype="System.Int32" />
  2830. <method name="GetValue(System.Int32)" argnames="i" returntype="System.Object" />
  2831. <method name="GetFieldType(System.Int32)" argnames="i" returntype="System.Type" />
  2832. <method name="GetDataTypeName(System.Int32)" argnames="i" returntype="System.String" />
  2833. <method name="GetName(System.Int32)" argnames="i" returntype="System.String" />
  2834. <method name="GetSchemaTable" argnames="" returntype="System.Data.DataTable" />
  2835. <method name="Read" argnames="" returntype="System.Boolean" />
  2836. <method name="NextResult" argnames="" returntype="System.Boolean" />
  2837. <method name="Close" argnames="" returntype="System.Void" />
  2838. <method name="CreateObjRef(System.Type)" argnames="requestedType" inherited="System.MarshalByRefObject" returntype="System.Runtime.Remoting.ObjRef" />
  2839. <method name="InitializeLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  2840. <method name="GetLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  2841. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2842. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2843. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2844. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  2845. <method name="GetSqlBoolean(System.Int32)" argnames="i" returntype="System.Data.SqlTypes.SqlBoolean" />
  2846. <method name="GetSqlBinary(System.Int32)" argnames="i" returntype="System.Data.SqlTypes.SqlBinary" />
  2847. <method name="GetSqlByte(System.Int32)" argnames="i" returntype="System.Data.SqlTypes.SqlByte" />
  2848. <method name="GetSqlInt16(System.Int32)" argnames="i" returntype="System.Data.SqlTypes.SqlInt16" />
  2849. <method name="GetSqlInt32(System.Int32)" argnames="i" returntype="System.Data.SqlTypes.SqlInt32" />
  2850. <method name="GetSqlInt64(System.Int32)" argnames="i" returntype="System.Data.SqlTypes.SqlInt64" />
  2851. <method name="GetSqlSingle(System.Int32)" argnames="i" returntype="System.Data.SqlTypes.SqlSingle" />
  2852. <method name="GetSqlDouble(System.Int32)" argnames="i" returntype="System.Data.SqlTypes.SqlDouble" />
  2853. <method name="GetSqlString(System.Int32)" argnames="i" returntype="System.Data.SqlTypes.SqlString" />
  2854. <method name="GetSqlMoney(System.Int32)" argnames="i" returntype="System.Data.SqlTypes.SqlMoney" />
  2855. <method name="GetSqlDecimal(System.Int32)" argnames="i" returntype="System.Data.SqlTypes.SqlDecimal" />
  2856. <method name="GetSqlDateTime(System.Int32)" argnames="i" returntype="System.Data.SqlTypes.SqlDateTime" />
  2857. <method name="GetSqlGuid(System.Int32)" argnames="i" returntype="System.Data.SqlTypes.SqlGuid" />
  2858. <method name="GetSqlValue(System.Int32)" argnames="i" returntype="System.Object" />
  2859. <method name="GetSqlValues(System.Object[])" argnames="values" returntype="System.Int32" />
  2860. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2861. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2862. </class>
  2863. <class name="SqlError" namespace="System.Data.SqlClient">
  2864. <property name="Source" propertytype="System.String" />
  2865. <property name="Number" propertytype="System.Int32" />
  2866. <property name="State" propertytype="System.Byte" />
  2867. <property name="Class" propertytype="System.Byte" />
  2868. <property name="Server" propertytype="System.String" />
  2869. <property name="Message" propertytype="System.String" />
  2870. <property name="Procedure" propertytype="System.String" />
  2871. <property name="LineNumber" propertytype="System.Int32" />
  2872. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2873. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2874. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2875. <method name="ToString" argnames="" returntype="System.String" />
  2876. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2877. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2878. </class>
  2879. <class name="SqlErrorCollection" namespace="System.Data.SqlClient">
  2880. <property name="Count" propertytype="System.Int32" />
  2881. <property name="Item" propertytype="System.Data.SqlClient.SqlError" />
  2882. <method name="GetEnumerator" argnames="" returntype="System.Collections.IEnumerator" />
  2883. <method name="CopyTo(System.Array, System.Int32)" argnames="array, index" returntype="System.Void" />
  2884. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2885. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2886. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2887. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  2888. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2889. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2890. </class>
  2891. <class name="SqlException" namespace="System.Data.SqlClient">
  2892. <property name="Errors" propertytype="System.Data.SqlClient.SqlErrorCollection" />
  2893. <property name="Class" propertytype="System.Byte" />
  2894. <property name="LineNumber" propertytype="System.Int32" />
  2895. <property name="Message" propertytype="System.String" />
  2896. <property name="Number" propertytype="System.Int32" />
  2897. <property name="Procedure" propertytype="System.String" />
  2898. <property name="Server" propertytype="System.String" />
  2899. <property name="State" propertytype="System.Byte" />
  2900. <property name="Source" propertytype="System.String" />
  2901. <property name="InnerException" inherited="System.Exception" propertytype="System.Exception" />
  2902. <property name="TargetSite" inherited="System.Exception" propertytype="System.Reflection.MethodBase" />
  2903. <property name="StackTrace" inherited="System.Exception" propertytype="System.String" />
  2904. <property name="HelpLink" inherited="System.Exception" propertytype="System.String" />
  2905. <property name="HResult" inherited="System.Exception" propertytype="System.Int32" />
  2906. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="si, context" returntype="System.Void" />
  2907. <method name="GetBaseException" argnames="" inherited="System.Exception" returntype="System.Exception" />
  2908. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2909. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2910. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2911. <method name="ToString" argnames="" inherited="System.Exception" returntype="System.String" />
  2912. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2913. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2914. </class>
  2915. <class name="SqlInfoMessageEventArgs" namespace="System.Data.SqlClient">
  2916. <property name="Errors" propertytype="System.Data.SqlClient.SqlErrorCollection" />
  2917. <property name="Message" propertytype="System.String" />
  2918. <property name="Source" propertytype="System.String" />
  2919. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2920. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2921. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2922. <method name="ToString" argnames="" returntype="System.String" />
  2923. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2924. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2925. </class>
  2926. <class name="SqlParameterCollection" namespace="System.Data.SqlClient">
  2927. <property name="Count" propertytype="System.Int32" />
  2928. <property name="ItemType" propertytype="System.Type" />
  2929. <property name="Item" propertytype="System.Data.SqlClient.SqlParameter" />
  2930. <property name="Item" propertytype="System.Data.SqlClient.SqlParameter" />
  2931. <method name="GetEnumerator" argnames="" returntype="System.Collections.IEnumerator" />
  2932. <method name="CopyTo(System.Array, System.Int32)" argnames="array, index" returntype="System.Void" />
  2933. <method name="RemoveAt(System.Int32)" argnames="index" returntype="System.Void" />
  2934. <method name="Remove(System.Object)" argnames="value" returntype="System.Void" />
  2935. <method name="Insert(System.Int32, System.Object)" argnames="index, value" returntype="System.Void" />
  2936. <method name="IndexOf(System.Object)" argnames="value" returntype="System.Int32" />
  2937. <method name="Clear" argnames="" returntype="System.Void" />
  2938. <method name="Contains(System.Object)" argnames="value" returntype="System.Boolean" />
  2939. <method name="Add(System.Object)" argnames="value" returntype="System.Int32" />
  2940. <method name="RemoveAt(System.String)" argnames="parameterName" returntype="System.Void" />
  2941. <method name="IndexOf(System.String)" argnames="parameterName" returntype="System.Int32" />
  2942. <method name="Contains(System.String)" argnames="value" returntype="System.Boolean" />
  2943. <method name="CreateObjRef(System.Type)" argnames="requestedType" inherited="System.MarshalByRefObject" returntype="System.Runtime.Remoting.ObjRef" />
  2944. <method name="InitializeLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  2945. <method name="GetLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  2946. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2947. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2948. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2949. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  2950. <method name="Add(System.Data.SqlClient.SqlParameter)" argnames="value" returntype="System.Data.SqlClient.SqlParameter" />
  2951. <method name="Add(System.String, System.Object)" argnames="parameterName, value" returntype="System.Data.SqlClient.SqlParameter" />
  2952. <method name="Add(System.String, System.Data.SqlDbType)" argnames="parameterName, sqlDbType" returntype="System.Data.SqlClient.SqlParameter" />
  2953. <method name="Add(System.String, System.Data.SqlDbType, System.Int32)" argnames="parameterName, sqlDbType, size" returntype="System.Data.SqlClient.SqlParameter" />
  2954. <method name="Add(System.String, System.Data.SqlDbType, System.Int32, System.String)" argnames="parameterName, sqlDbType, size, sourceColumn" returntype="System.Data.SqlClient.SqlParameter" />
  2955. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2956. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2957. </class>
  2958. <class name="SqlTransaction" namespace="System.Data.SqlClient">
  2959. <property name="Connection" propertytype="System.Data.SqlClient.SqlConnection" />
  2960. <property name="IsolationLevel" propertytype="System.Data.IsolationLevel" />
  2961. <method name="Dispose" argnames="" returntype="System.Void" />
  2962. <method name="Rollback" argnames="" returntype="System.Void" />
  2963. <method name="Commit" argnames="" returntype="System.Void" />
  2964. <method name="CreateObjRef(System.Type)" argnames="requestedType" inherited="System.MarshalByRefObject" returntype="System.Runtime.Remoting.ObjRef" />
  2965. <method name="InitializeLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  2966. <method name="GetLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  2967. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  2968. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  2969. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  2970. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  2971. <method name="Rollback(System.String)" argnames="transactionName" returntype="System.Void" />
  2972. <method name="Save(System.String)" argnames="savePointName" returntype="System.Void" />
  2973. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  2974. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  2975. </class>
  2976. <class name="SqlCommand" namespace="System.Data.SqlClient">
  2977. <constructor name="SqlCommand" argnames="" />
  2978. <constructor name="SqlCommand(System.String)" argnames="cmdText" />
  2979. <constructor name="SqlCommand(System.String, System.Data.SqlClient.SqlConnection)" argnames="cmdText, connection" />
  2980. <constructor name="SqlCommand(System.String, System.Data.SqlClient.SqlConnection, System.Data.SqlClient.SqlTransaction)" argnames="cmdText, connection, transaction" />
  2981. <property name="Connection" propertytype="System.Data.SqlClient.SqlConnection" />
  2982. <property name="Transaction" propertytype="System.Data.SqlClient.SqlTransaction" />
  2983. <property name="CommandText" propertytype="System.String" />
  2984. <property name="CommandType" propertytype="System.Data.CommandType" />
  2985. <property name="CommandTimeout" propertytype="System.Int32" />
  2986. <property name="DesignTimeVisible" propertytype="System.Boolean" />
  2987. <property name="Parameters" propertytype="System.Data.SqlClient.SqlParameterCollection" />
  2988. <property name="UpdatedRowSource" propertytype="System.Data.UpdateRowSource" />
  2989. <property name="MetaData" propertytype="System.Data.SqlClient._SqlMetaData[]" />
  2990. <property name="IsPrepared" propertytype="System.Boolean" />
  2991. <property name="IsDirty" propertytype="System.Boolean" />
  2992. <property name="RecordsAffected" propertytype="System.Int32" />
  2993. <property name="Events" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.EventHandlerList" />
  2994. <property name="Site" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.ISite" />
  2995. <property name="Container" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.IContainer" />
  2996. <property name="DesignMode" inherited="System.ComponentModel.Component" propertytype="System.Boolean" />
  2997. <method name="ExecuteScalar" argnames="" returntype="System.Object" />
  2998. <method name="ExecuteNonQuery" argnames="" returntype="System.Int32" />
  2999. <method name="Cancel" argnames="" returntype="System.Void" />
  3000. <method name="Prepare" argnames="" returntype="System.Void" />
  3001. <method name="Dispose" argnames="" inherited="System.ComponentModel.Component" returntype="System.Void" />
  3002. <method name="GetService(System.Type)" argnames="service" inherited="System.ComponentModel.Component" returntype="System.Object" />
  3003. <method name="Dispose(System.Boolean)" argnames="disposing" inherited="System.ComponentModel.Component" returntype="System.Void" />
  3004. <method name="CreateObjRef(System.Type)" argnames="requestedType" inherited="System.MarshalByRefObject" returntype="System.Runtime.Remoting.ObjRef" />
  3005. <method name="InitializeLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  3006. <method name="GetLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  3007. <method name="Finalize" argnames="" inherited="System.ComponentModel.Component" returntype="System.Void" />
  3008. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  3009. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  3010. <method name="ToString" argnames="" inherited="System.ComponentModel.Component" returntype="System.String" />
  3011. <method name="ResetCommandTimeout" argnames="" returntype="System.Void" />
  3012. <method name="CreateParameter" argnames="" returntype="System.Data.SqlClient.SqlParameter" />
  3013. <method name="ExecuteXmlReader" argnames="" returntype="System.Xml.XmlReader" />
  3014. <method name="ExecuteReader" argnames="" returntype="System.Data.SqlClient.SqlDataReader" />
  3015. <method name="ExecuteReader(System.Data.CommandBehavior)" argnames="behavior" returntype="System.Data.SqlClient.SqlDataReader" />
  3016. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3017. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3018. <event name="Disposed" inherited="System.ComponentModel.Component" />
  3019. </class>
  3020. <class name="SqlCommandBuilder" namespace="System.Data.SqlClient">
  3021. <constructor name="SqlCommandBuilder" argnames="" />
  3022. <constructor name="SqlCommandBuilder(System.Data.SqlClient.SqlDataAdapter)" argnames="adapter" />
  3023. <property name="DataAdapter" propertytype="System.Data.SqlClient.SqlDataAdapter" />
  3024. <property name="QuotePrefix" propertytype="System.String" />
  3025. <property name="QuoteSuffix" propertytype="System.String" />
  3026. <property name="Events" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.EventHandlerList" />
  3027. <property name="Site" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.ISite" />
  3028. <property name="Container" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.IContainer" />
  3029. <property name="DesignMode" inherited="System.ComponentModel.Component" propertytype="System.Boolean" />
  3030. <method name="Dispose" argnames="" inherited="System.ComponentModel.Component" returntype="System.Void" />
  3031. <method name="GetService(System.Type)" argnames="service" inherited="System.ComponentModel.Component" returntype="System.Object" />
  3032. <method name="Dispose(System.Boolean)" argnames="disposing" returntype="System.Void" />
  3033. <method name="CreateObjRef(System.Type)" argnames="requestedType" inherited="System.MarshalByRefObject" returntype="System.Runtime.Remoting.ObjRef" />
  3034. <method name="InitializeLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  3035. <method name="GetLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  3036. <method name="Finalize" argnames="" inherited="System.ComponentModel.Component" returntype="System.Void" />
  3037. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  3038. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  3039. <method name="ToString" argnames="" inherited="System.ComponentModel.Component" returntype="System.String" />
  3040. <method name="DeriveParameters(System.Data.SqlClient.SqlCommand)" argnames="command" returntype="System.Void" />
  3041. <method name="GetInsertCommand" argnames="" returntype="System.Data.SqlClient.SqlCommand" />
  3042. <method name="GetUpdateCommand" argnames="" returntype="System.Data.SqlClient.SqlCommand" />
  3043. <method name="GetDeleteCommand" argnames="" returntype="System.Data.SqlClient.SqlCommand" />
  3044. <method name="RefreshSchema" argnames="" returntype="System.Void" />
  3045. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3046. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3047. <event name="Disposed" inherited="System.ComponentModel.Component" />
  3048. </class>
  3049. <class name="SqlDataAdapter" namespace="System.Data.SqlClient">
  3050. <constructor name="SqlDataAdapter" argnames="" />
  3051. <constructor name="SqlDataAdapter(System.Data.SqlClient.SqlCommand)" argnames="selectCommand" />
  3052. <constructor name="SqlDataAdapter(System.String, System.String)" argnames="selectCommandText, selectConnectionString" />
  3053. <constructor name="SqlDataAdapter(System.String, System.Data.SqlClient.SqlConnection)" argnames="selectCommandText, selectConnection" />
  3054. <property name="DeleteCommand" propertytype="System.Data.SqlClient.SqlCommand" />
  3055. <property name="InsertCommand" propertytype="System.Data.SqlClient.SqlCommand" />
  3056. <property name="SelectCommand" propertytype="System.Data.SqlClient.SqlCommand" />
  3057. <property name="UpdateCommand" propertytype="System.Data.SqlClient.SqlCommand" />
  3058. <property name="AcceptChangesDuringFill" inherited="System.Data.Common.DataAdapter" propertytype="System.Boolean" />
  3059. <property name="ContinueUpdateOnError" inherited="System.Data.Common.DataAdapter" propertytype="System.Boolean" />
  3060. <property name="MissingMappingAction" inherited="System.Data.Common.DataAdapter" propertytype="System.Data.MissingMappingAction" />
  3061. <property name="MissingSchemaAction" inherited="System.Data.Common.DataAdapter" propertytype="System.Data.MissingSchemaAction" />
  3062. <property name="TableMappings" inherited="System.Data.Common.DataAdapter" propertytype="System.Data.Common.DataTableMappingCollection" />
  3063. <property name="Events" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.EventHandlerList" />
  3064. <property name="Site" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.ISite" />
  3065. <property name="Container" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.IContainer" />
  3066. <property name="DesignMode" inherited="System.ComponentModel.Component" propertytype="System.Boolean" />
  3067. <method name="Update(System.Data.DataRow[], System.Data.Common.DataTableMapping)" argnames="dataRows, tableMapping" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  3068. <method name="OnRowUpdating(System.Data.Common.RowUpdatingEventArgs)" argnames="value" returntype="System.Void" />
  3069. <method name="OnRowUpdated(System.Data.Common.RowUpdatedEventArgs)" argnames="value" returntype="System.Void" />
  3070. <method name="OnFillError(System.Data.FillErrorEventArgs)" argnames="value" inherited="System.Data.Common.DbDataAdapter" returntype="System.Void" />
  3071. <method name="Fill(System.Data.DataTable, System.Data.IDataReader)" argnames="dataTable, dataReader" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  3072. <method name="Fill(System.Data.DataSet, System.String, System.Data.IDataReader, System.Int32, System.Int32)" argnames="dataSet, srcTable, dataReader, startRecord, maxRecords" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  3073. <method name="Fill(System.Data.DataTable, System.Data.IDbCommand, System.Data.CommandBehavior)" argnames="dataTable, command, behavior" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  3074. <method name="Fill(System.Data.DataSet, System.Int32, System.Int32, System.String, System.Data.IDbCommand, System.Data.CommandBehavior)" argnames="dataSet, startRecord, maxRecords, srcTable, command, behavior" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  3075. <method name="FillSchema(System.Data.DataTable, System.Data.SchemaType, System.Data.IDbCommand, System.Data.CommandBehavior)" argnames="dataTable, schemaType, command, behavior" inherited="System.Data.Common.DbDataAdapter" returntype="System.Data.DataTable" />
  3076. <method name="FillSchema(System.Data.DataSet, System.Data.SchemaType, System.Data.IDbCommand, System.String, System.Data.CommandBehavior)" argnames="dataSet, schemaType, command, srcTable, behavior" inherited="System.Data.Common.DbDataAdapter" returntype="System.Data.DataTable[]" />
  3077. <method name="CreateRowUpdatingEvent(System.Data.DataRow, System.Data.IDbCommand, System.Data.StatementType, System.Data.Common.DataTableMapping)" argnames="dataRow, command, statementType, tableMapping" returntype="System.Data.Common.RowUpdatingEventArgs" />
  3078. <method name="CreateRowUpdatedEvent(System.Data.DataRow, System.Data.IDbCommand, System.Data.StatementType, System.Data.Common.DataTableMapping)" argnames="dataRow, command, statementType, tableMapping" returntype="System.Data.Common.RowUpdatedEventArgs" />
  3079. <method name="Update(System.Data.DataSet)" argnames="dataSet" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  3080. <method name="GetFillParameters" argnames="" inherited="System.Data.Common.DbDataAdapter" returntype="System.Data.IDataParameter[]" />
  3081. <method name="Fill(System.Data.DataSet)" argnames="dataSet" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  3082. <method name="FillSchema(System.Data.DataSet, System.Data.SchemaType)" argnames="dataSet, schemaType" inherited="System.Data.Common.DbDataAdapter" returntype="System.Data.DataTable[]" />
  3083. <method name="CreateTableMappings" argnames="" inherited="System.Data.Common.DataAdapter" returntype="System.Data.Common.DataTableMappingCollection" />
  3084. <method name="CloneInternals" argnames="" inherited="System.Data.Common.DataAdapter" returntype="System.Data.Common.DataAdapter" />
  3085. <method name="ShouldSerializeTableMappings" argnames="" inherited="System.Data.Common.DataAdapter" returntype="System.Boolean" />
  3086. <method name="Dispose" argnames="" inherited="System.ComponentModel.Component" returntype="System.Void" />
  3087. <method name="GetService(System.Type)" argnames="service" inherited="System.ComponentModel.Component" returntype="System.Object" />
  3088. <method name="Dispose(System.Boolean)" argnames="disposing" inherited="System.Data.Common.DbDataAdapter" returntype="System.Void" />
  3089. <method name="CreateObjRef(System.Type)" argnames="requestedType" inherited="System.MarshalByRefObject" returntype="System.Runtime.Remoting.ObjRef" />
  3090. <method name="InitializeLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  3091. <method name="GetLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  3092. <method name="Finalize" argnames="" inherited="System.ComponentModel.Component" returntype="System.Void" />
  3093. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  3094. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  3095. <method name="ToString" argnames="" inherited="System.ComponentModel.Component" returntype="System.String" />
  3096. <method name="FillSchema(System.Data.DataTable, System.Data.SchemaType)" argnames="dataTable, schemaType" inherited="System.Data.Common.DbDataAdapter" returntype="System.Data.DataTable" />
  3097. <method name="FillSchema(System.Data.DataSet, System.Data.SchemaType, System.String)" argnames="dataSet, schemaType, srcTable" inherited="System.Data.Common.DbDataAdapter" returntype="System.Data.DataTable[]" />
  3098. <method name="Fill(System.Data.DataTable)" argnames="dataTable" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  3099. <method name="Fill(System.Data.DataSet, System.String)" argnames="dataSet, srcTable" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  3100. <method name="Fill(System.Data.DataSet, System.Int32, System.Int32, System.String)" argnames="dataSet, startRecord, maxRecords, srcTable" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  3101. <method name="Update(System.Data.DataRow[])" argnames="dataRows" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  3102. <method name="Update(System.Data.DataTable)" argnames="dataTable" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  3103. <method name="Update(System.Data.DataSet, System.String)" argnames="dataSet, srcTable" inherited="System.Data.Common.DbDataAdapter" returntype="System.Int32" />
  3104. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3105. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3106. <event name="RowUpdated" />
  3107. <event name="RowUpdating" />
  3108. <event name="FillError" inherited="System.Data.Common.DbDataAdapter" />
  3109. <event name="Disposed" inherited="System.ComponentModel.Component" />
  3110. </class>
  3111. <class name="SqlParameter" namespace="System.Data.SqlClient">
  3112. <constructor name="SqlParameter" argnames="" />
  3113. <constructor name="SqlParameter(System.String, System.Object)" argnames="parameterName, value" />
  3114. <constructor name="SqlParameter(System.String, System.Data.SqlDbType)" argnames="parameterName, dbType" />
  3115. <constructor name="SqlParameter(System.String, System.Data.SqlDbType, System.Int32)" argnames="parameterName, dbType, size" />
  3116. <constructor name="SqlParameter(System.String, System.Data.SqlDbType, System.Int32, System.String)" argnames="parameterName, dbType, size, sourceColumn" />
  3117. <constructor name="SqlParameter(System.String, System.Data.SqlDbType, System.Int32, System.Data.ParameterDirection, System.Boolean, System.Byte, System.Byte, System.String, System.Data.DataRowVersion, System.Object)" argnames="parameterName, dbType, size, direction, isNullable, precision, scale, sourceColumn, sourceVersion, value" />
  3118. <property name="DbType" propertytype="System.Data.DbType" />
  3119. <property name="SqlDbType" propertytype="System.Data.SqlDbType" />
  3120. <property name="Direction" propertytype="System.Data.ParameterDirection" />
  3121. <property name="IsNullable" propertytype="System.Boolean" />
  3122. <property name="Offset" propertytype="System.Int32" />
  3123. <property name="ParameterName" propertytype="System.String" />
  3124. <property name="Parent" propertytype="System.Data.SqlClient.SqlParameterCollection" />
  3125. <property name="Precision" propertytype="System.Byte" />
  3126. <property name="Scale" propertytype="System.Byte" />
  3127. <property name="Size" propertytype="System.Int32" />
  3128. <property name="SourceColumn" propertytype="System.String" />
  3129. <property name="SourceVersion" propertytype="System.Data.DataRowVersion" />
  3130. <property name="Value" propertytype="System.Object" />
  3131. <property name="TdsType" propertytype="System.Byte" />
  3132. <property name="Collation" propertytype="System.Data.SqlClient.SqlCollation" />
  3133. <property name="ActualSize" propertytype="System.Int32" />
  3134. <property name="Suppress" propertytype="System.Boolean" />
  3135. <property name="CoercedValue" propertytype="System.Object" />
  3136. <method name="CreateObjRef(System.Type)" argnames="requestedType" inherited="System.MarshalByRefObject" returntype="System.Runtime.Remoting.ObjRef" />
  3137. <method name="InitializeLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  3138. <method name="GetLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  3139. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  3140. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  3141. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  3142. <method name="ToString" argnames="" returntype="System.String" />
  3143. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3144. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3145. </class>
  3146. <class name="SqlRowUpdatedEventArgs" namespace="System.Data.SqlClient">
  3147. <constructor name="SqlRowUpdatedEventArgs(System.Data.DataRow, System.Data.IDbCommand, System.Data.StatementType, System.Data.Common.DataTableMapping)" argnames="row, command, statementType, tableMapping" />
  3148. <property name="Command" propertytype="System.Data.SqlClient.SqlCommand" />
  3149. <property name="Command" inherited="System.Data.Common.RowUpdatedEventArgs" propertytype="System.Data.IDbCommand" />
  3150. <property name="StatementType" inherited="System.Data.Common.RowUpdatedEventArgs" propertytype="System.Data.StatementType" />
  3151. <property name="Errors" inherited="System.Data.Common.RowUpdatedEventArgs" propertytype="System.Exception" />
  3152. <property name="RecordsAffected" inherited="System.Data.Common.RowUpdatedEventArgs" propertytype="System.Int32" />
  3153. <property name="Row" inherited="System.Data.Common.RowUpdatedEventArgs" propertytype="System.Data.DataRow" />
  3154. <property name="Status" inherited="System.Data.Common.RowUpdatedEventArgs" propertytype="System.Data.UpdateStatus" />
  3155. <property name="TableMapping" inherited="System.Data.Common.RowUpdatedEventArgs" propertytype="System.Data.Common.DataTableMapping" />
  3156. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  3157. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  3158. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  3159. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  3160. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3161. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3162. </class>
  3163. <class name="SqlRowUpdatingEventArgs" namespace="System.Data.SqlClient">
  3164. <constructor name="SqlRowUpdatingEventArgs(System.Data.DataRow, System.Data.IDbCommand, System.Data.StatementType, System.Data.Common.DataTableMapping)" argnames="row, command, statementType, tableMapping" />
  3165. <property name="Command" propertytype="System.Data.SqlClient.SqlCommand" />
  3166. <property name="Command" inherited="System.Data.Common.RowUpdatingEventArgs" propertytype="System.Data.IDbCommand" />
  3167. <property name="StatementType" inherited="System.Data.Common.RowUpdatingEventArgs" propertytype="System.Data.StatementType" />
  3168. <property name="Errors" inherited="System.Data.Common.RowUpdatingEventArgs" propertytype="System.Exception" />
  3169. <property name="Row" inherited="System.Data.Common.RowUpdatingEventArgs" propertytype="System.Data.DataRow" />
  3170. <property name="Status" inherited="System.Data.Common.RowUpdatingEventArgs" propertytype="System.Data.UpdateStatus" />
  3171. <property name="TableMapping" inherited="System.Data.Common.RowUpdatingEventArgs" propertytype="System.Data.Common.DataTableMapping" />
  3172. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  3173. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  3174. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  3175. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  3176. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3177. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3178. </class>
  3179. <class name="SqlClientPermission" namespace="System.Data.SqlClient">
  3180. <constructor name="SqlClientPermission" argnames="" />
  3181. <constructor name="SqlClientPermission(System.Security.Permissions.PermissionState)" argnames="state" />
  3182. <constructor name="SqlClientPermission(System.Security.Permissions.PermissionState, System.Boolean)" argnames="state, allowBlankPassword" />
  3183. <property name="AllowBlankPassword" inherited="System.Data.Common.DBDataPermission" propertytype="System.Boolean" />
  3184. <method name="IsUnrestricted" argnames="" inherited="System.Data.Common.DBDataPermission" returntype="System.Boolean" />
  3185. <method name="CreateInstance" argnames="" returntype="System.Data.Common.DBDataPermission" />
  3186. <method name="PermitOnly" argnames="" inherited="System.Security.CodeAccessPermission" returntype="System.Void" />
  3187. <method name="Deny" argnames="" inherited="System.Security.CodeAccessPermission" returntype="System.Void" />
  3188. <method name="Assert" argnames="" inherited="System.Security.CodeAccessPermission" returntype="System.Void" />
  3189. <method name="FromXml(System.Security.SecurityElement)" argnames="securityElement" inherited="System.Data.Common.DBDataPermission" returntype="System.Void" />
  3190. <method name="ToXml" argnames="" inherited="System.Data.Common.DBDataPermission" returntype="System.Security.SecurityElement" />
  3191. <method name="Demand" argnames="" inherited="System.Security.CodeAccessPermission" returntype="System.Void" />
  3192. <method name="IsSubsetOf(System.Security.IPermission)" argnames="target" inherited="System.Data.Common.DBDataPermission" returntype="System.Boolean" />
  3193. <method name="Union(System.Security.IPermission)" argnames="target" inherited="System.Data.Common.DBDataPermission" returntype="System.Security.IPermission" />
  3194. <method name="Intersect(System.Security.IPermission)" argnames="target" inherited="System.Data.Common.DBDataPermission" returntype="System.Security.IPermission" />
  3195. <method name="Copy" argnames="" inherited="System.Data.Common.DBDataPermission" returntype="System.Security.IPermission" />
  3196. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  3197. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  3198. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  3199. <method name="ToString" argnames="" inherited="System.Security.CodeAccessPermission" returntype="System.String" />
  3200. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3201. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3202. </class>
  3203. <class name="SqlClientPermissionAttribute" namespace="System.Data.SqlClient">
  3204. <constructor name="SqlClientPermissionAttribute(System.Security.Permissions.SecurityAction)" argnames="action" />
  3205. <property name="AllowBlankPassword" inherited="System.Data.Common.DBDataPermissionAttribute" propertytype="System.Boolean" />
  3206. <property name="Action" inherited="System.Security.Permissions.SecurityAttribute" propertytype="System.Security.Permissions.SecurityAction" />
  3207. <property name="Unrestricted" inherited="System.Security.Permissions.SecurityAttribute" propertytype="System.Boolean" />
  3208. <property name="TypeId" inherited="System.Attribute" propertytype="System.Object" />
  3209. <method name="CreatePermission" argnames="" returntype="System.Security.IPermission" />
  3210. <method name="IsDefaultAttribute" argnames="" inherited="System.Attribute" returntype="System.Boolean" />
  3211. <method name="Match(System.Object)" argnames="obj" inherited="System.Attribute" returntype="System.Boolean" />
  3212. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  3213. <method name="GetHashCode" argnames="" inherited="System.Attribute" returntype="System.Int32" />
  3214. <method name="Equals(System.Object)" argnames="obj" inherited="System.Attribute" returntype="System.Boolean" />
  3215. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  3216. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3217. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3218. </class>
  3219. <class name="SqlConnection" namespace="System.Data.SqlClient">
  3220. <constructor name="SqlConnection" argnames="" />
  3221. <constructor name="SqlConnection(System.String)" argnames="connectionString" />
  3222. <property name="ConnectionString" propertytype="System.String" />
  3223. <property name="ConnectionTimeout" propertytype="System.Int32" />
  3224. <property name="Database" propertytype="System.String" />
  3225. <property name="DataSource" propertytype="System.String" />
  3226. <property name="PacketSize" propertytype="System.Int32" />
  3227. <property name="WorkstationId" propertytype="System.String" />
  3228. <property name="ServerVersion" propertytype="System.String" />
  3229. <property name="State" propertytype="System.Data.ConnectionState" />
  3230. <property name="IsClosing" propertytype="System.Boolean" />
  3231. <property name="IsShiloh" propertytype="System.Boolean" />
  3232. <property name="LocalTransaction" propertytype="System.Data.SqlClient.SqlTransaction" />
  3233. <property name="Parser" propertytype="System.Data.SqlClient.TdsParser" />
  3234. <property name="Reader" propertytype="System.Data.SqlClient.SqlDataReader" />
  3235. <property name="Events" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.EventHandlerList" />
  3236. <property name="Site" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.ISite" />
  3237. <property name="Container" inherited="System.ComponentModel.Component" propertytype="System.ComponentModel.IContainer" />
  3238. <property name="DesignMode" inherited="System.ComponentModel.Component" propertytype="System.Boolean" />
  3239. <method name="Open" argnames="" returntype="System.Void" />
  3240. <method name="ChangeDatabase(System.String)" argnames="database" returntype="System.Void" />
  3241. <method name="Close" argnames="" returntype="System.Void" />
  3242. <method name="Dispose" argnames="" inherited="System.ComponentModel.Component" returntype="System.Void" />
  3243. <method name="GetService(System.Type)" argnames="service" inherited="System.ComponentModel.Component" returntype="System.Object" />
  3244. <method name="Dispose(System.Boolean)" argnames="disposing" returntype="System.Void" />
  3245. <method name="CreateObjRef(System.Type)" argnames="requestedType" inherited="System.MarshalByRefObject" returntype="System.Runtime.Remoting.ObjRef" />
  3246. <method name="InitializeLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  3247. <method name="GetLifetimeService" argnames="" inherited="System.MarshalByRefObject" returntype="System.Object" />
  3248. <method name="Finalize" argnames="" inherited="System.ComponentModel.Component" returntype="System.Void" />
  3249. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  3250. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  3251. <method name="ToString" argnames="" inherited="System.ComponentModel.Component" returntype="System.String" />
  3252. <method name="BeginTransaction" argnames="" returntype="System.Data.SqlClient.SqlTransaction" />
  3253. <method name="BeginTransaction(System.Data.IsolationLevel)" argnames="iso" returntype="System.Data.SqlClient.SqlTransaction" />
  3254. <method name="BeginTransaction(System.String)" argnames="transactionName" returntype="System.Data.SqlClient.SqlTransaction" />
  3255. <method name="BeginTransaction(System.Data.IsolationLevel, System.String)" argnames="iso, transactionName" returntype="System.Data.SqlClient.SqlTransaction" />
  3256. <method name="CreateCommand" argnames="" returntype="System.Data.SqlClient.SqlCommand" />
  3257. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3258. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3259. <event name="InfoMessage" />
  3260. <event name="StateChange" />
  3261. <event name="Disposed" inherited="System.ComponentModel.Component" />
  3262. </class>
  3263. <class name="SQLDebugging" namespace="System.Data.SqlClient">
  3264. <constructor name="SQLDebugging" argnames="" />
  3265. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  3266. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  3267. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  3268. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  3269. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3270. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3271. </class>
  3272. <delegate name="SqlInfoMessageEventHandler" namespace="System.Data.SqlClient">
  3273. <constructor name="SqlInfoMessageEventHandler(System.Object, System.IntPtr)" argnames="object, method" />
  3274. <property name="Method" inherited="System.Delegate" propertytype="System.Reflection.MethodInfo" />
  3275. <property name="Target" inherited="System.Delegate" propertytype="System.Object" />
  3276. <method name="EndInvoke(System.IAsyncResult)" argnames="result" returntype="System.Void" />
  3277. <method name="BeginInvoke(System.Object, System.Data.SqlClient.SqlInfoMessageEventArgs, System.AsyncCallback, System.Object)" argnames="sender, e, callback, object" returntype="System.IAsyncResult" />
  3278. <method name="Invoke(System.Object, System.Data.SqlClient.SqlInfoMessageEventArgs)" argnames="sender, e" returntype="System.Void" />
  3279. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.MulticastDelegate" returntype="System.Void" />
  3280. <method name="Clone" argnames="" inherited="System.Delegate" returntype="System.Object" />
  3281. <method name="RemoveImpl(System.Delegate)" argnames="value" inherited="System.MulticastDelegate" returntype="System.Delegate" />
  3282. <method name="CombineImpl(System.Delegate)" argnames="follow" inherited="System.MulticastDelegate" returntype="System.Delegate" />
  3283. <method name="GetMethodImpl" argnames="" inherited="System.Delegate" returntype="System.Reflection.MethodInfo" />
  3284. <method name="GetInvocationList" argnames="" inherited="System.MulticastDelegate" returntype="System.Delegate[]" />
  3285. <method name="DynamicInvokeImpl(System.Object[])" argnames="args" inherited="System.MulticastDelegate" returntype="System.Object" />
  3286. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  3287. <method name="GetHashCode" argnames="" inherited="System.MulticastDelegate" returntype="System.Int32" />
  3288. <method name="Equals(System.Object)" argnames="obj" inherited="System.MulticastDelegate" returntype="System.Boolean" />
  3289. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  3290. <method name="DynamicInvoke(System.Object[])" argnames="args" inherited="System.Delegate" returntype="System.Object" />
  3291. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3292. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3293. </delegate>
  3294. <delegate name="SqlRowUpdatedEventHandler" namespace="System.Data.SqlClient">
  3295. <constructor name="SqlRowUpdatedEventHandler(System.Object, System.IntPtr)" argnames="object, method" />
  3296. <property name="Method" inherited="System.Delegate" propertytype="System.Reflection.MethodInfo" />
  3297. <property name="Target" inherited="System.Delegate" propertytype="System.Object" />
  3298. <method name="EndInvoke(System.IAsyncResult)" argnames="result" returntype="System.Void" />
  3299. <method name="BeginInvoke(System.Object, System.Data.SqlClient.SqlRowUpdatedEventArgs, System.AsyncCallback, System.Object)" argnames="sender, e, callback, object" returntype="System.IAsyncResult" />
  3300. <method name="Invoke(System.Object, System.Data.SqlClient.SqlRowUpdatedEventArgs)" argnames="sender, e" returntype="System.Void" />
  3301. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.MulticastDelegate" returntype="System.Void" />
  3302. <method name="Clone" argnames="" inherited="System.Delegate" returntype="System.Object" />
  3303. <method name="RemoveImpl(System.Delegate)" argnames="value" inherited="System.MulticastDelegate" returntype="System.Delegate" />
  3304. <method name="CombineImpl(System.Delegate)" argnames="follow" inherited="System.MulticastDelegate" returntype="System.Delegate" />
  3305. <method name="GetMethodImpl" argnames="" inherited="System.Delegate" returntype="System.Reflection.MethodInfo" />
  3306. <method name="GetInvocationList" argnames="" inherited="System.MulticastDelegate" returntype="System.Delegate[]" />
  3307. <method name="DynamicInvokeImpl(System.Object[])" argnames="args" inherited="System.MulticastDelegate" returntype="System.Object" />
  3308. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  3309. <method name="GetHashCode" argnames="" inherited="System.MulticastDelegate" returntype="System.Int32" />
  3310. <method name="Equals(System.Object)" argnames="obj" inherited="System.MulticastDelegate" returntype="System.Boolean" />
  3311. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  3312. <method name="DynamicInvoke(System.Object[])" argnames="args" inherited="System.Delegate" returntype="System.Object" />
  3313. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3314. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3315. </delegate>
  3316. <delegate name="SqlRowUpdatingEventHandler" namespace="System.Data.SqlClient">
  3317. <constructor name="SqlRowUpdatingEventHandler(System.Object, System.IntPtr)" argnames="object, method" />
  3318. <property name="Method" inherited="System.Delegate" propertytype="System.Reflection.MethodInfo" />
  3319. <property name="Target" inherited="System.Delegate" propertytype="System.Object" />
  3320. <method name="EndInvoke(System.IAsyncResult)" argnames="result" returntype="System.Void" />
  3321. <method name="BeginInvoke(System.Object, System.Data.SqlClient.SqlRowUpdatingEventArgs, System.AsyncCallback, System.Object)" argnames="sender, e, callback, object" returntype="System.IAsyncResult" />
  3322. <method name="Invoke(System.Object, System.Data.SqlClient.SqlRowUpdatingEventArgs)" argnames="sender, e" returntype="System.Void" />
  3323. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.MulticastDelegate" returntype="System.Void" />
  3324. <method name="Clone" argnames="" inherited="System.Delegate" returntype="System.Object" />
  3325. <method name="RemoveImpl(System.Delegate)" argnames="value" inherited="System.MulticastDelegate" returntype="System.Delegate" />
  3326. <method name="CombineImpl(System.Delegate)" argnames="follow" inherited="System.MulticastDelegate" returntype="System.Delegate" />
  3327. <method name="GetMethodImpl" argnames="" inherited="System.Delegate" returntype="System.Reflection.MethodInfo" />
  3328. <method name="GetInvocationList" argnames="" inherited="System.MulticastDelegate" returntype="System.Delegate[]" />
  3329. <method name="DynamicInvokeImpl(System.Object[])" argnames="args" inherited="System.MulticastDelegate" returntype="System.Object" />
  3330. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  3331. <method name="GetHashCode" argnames="" inherited="System.MulticastDelegate" returntype="System.Int32" />
  3332. <method name="Equals(System.Object)" argnames="obj" inherited="System.MulticastDelegate" returntype="System.Boolean" />
  3333. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  3334. <method name="DynamicInvoke(System.Object[])" argnames="args" inherited="System.Delegate" returntype="System.Object" />
  3335. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3336. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3337. </delegate>
  3338. <class name="SqlTypeException" namespace="System.Data.SqlTypes">
  3339. <constructor name="SqlTypeException(System.String)" argnames="message" />
  3340. <constructor name="SqlTypeException(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="si, sc" />
  3341. <property name="Message" inherited="System.Exception" propertytype="System.String" />
  3342. <property name="InnerException" inherited="System.Exception" propertytype="System.Exception" />
  3343. <property name="TargetSite" inherited="System.Exception" propertytype="System.Reflection.MethodBase" />
  3344. <property name="StackTrace" inherited="System.Exception" propertytype="System.String" />
  3345. <property name="HelpLink" inherited="System.Exception" propertytype="System.String" />
  3346. <property name="Source" inherited="System.Exception" propertytype="System.String" />
  3347. <property name="HResult" inherited="System.Exception" propertytype="System.Int32" />
  3348. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.Exception" returntype="System.Void" />
  3349. <method name="GetBaseException" argnames="" inherited="System.Exception" returntype="System.Exception" />
  3350. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  3351. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  3352. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  3353. <method name="ToString" argnames="" inherited="System.Exception" returntype="System.String" />
  3354. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3355. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3356. </class>
  3357. <class name="SqlNullValueException" namespace="System.Data.SqlTypes">
  3358. <constructor name="SqlNullValueException" argnames="" />
  3359. <constructor name="SqlNullValueException(System.String)" argnames="message" />
  3360. <property name="Message" inherited="System.Exception" propertytype="System.String" />
  3361. <property name="InnerException" inherited="System.Exception" propertytype="System.Exception" />
  3362. <property name="TargetSite" inherited="System.Exception" propertytype="System.Reflection.MethodBase" />
  3363. <property name="StackTrace" inherited="System.Exception" propertytype="System.String" />
  3364. <property name="HelpLink" inherited="System.Exception" propertytype="System.String" />
  3365. <property name="Source" inherited="System.Exception" propertytype="System.String" />
  3366. <property name="HResult" inherited="System.Exception" propertytype="System.Int32" />
  3367. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.Exception" returntype="System.Void" />
  3368. <method name="GetBaseException" argnames="" inherited="System.Exception" returntype="System.Exception" />
  3369. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  3370. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  3371. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  3372. <method name="ToString" argnames="" inherited="System.Exception" returntype="System.String" />
  3373. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3374. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3375. </class>
  3376. <class name="SqlTruncateException" namespace="System.Data.SqlTypes">
  3377. <constructor name="SqlTruncateException" argnames="" />
  3378. <constructor name="SqlTruncateException(System.String)" argnames="message" />
  3379. <property name="Message" inherited="System.Exception" propertytype="System.String" />
  3380. <property name="InnerException" inherited="System.Exception" propertytype="System.Exception" />
  3381. <property name="TargetSite" inherited="System.Exception" propertytype="System.Reflection.MethodBase" />
  3382. <property name="StackTrace" inherited="System.Exception" propertytype="System.String" />
  3383. <property name="HelpLink" inherited="System.Exception" propertytype="System.String" />
  3384. <property name="Source" inherited="System.Exception" propertytype="System.String" />
  3385. <property name="HResult" inherited="System.Exception" propertytype="System.Int32" />
  3386. <method name="GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)" argnames="info, context" inherited="System.Exception" returntype="System.Void" />
  3387. <method name="GetBaseException" argnames="" inherited="System.Exception" returntype="System.Exception" />
  3388. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  3389. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  3390. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  3391. <method name="ToString" argnames="" inherited="System.Exception" returntype="System.String" />
  3392. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3393. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3394. </class>
  3395. <interface name="INullable" namespace="System.Data.SqlTypes">
  3396. <property name="IsNull" propertytype="System.Boolean" />
  3397. </interface>
  3398. <struct name="SqlBinary" namespace="System.Data.SqlTypes">
  3399. <constructor name="SqlBinary(System.Byte[])" argnames="value" />
  3400. <field name="Null" />
  3401. <property name="IsNull" propertytype="System.Boolean" />
  3402. <property name="Value" propertytype="System.Byte[]" />
  3403. <property name="Item" propertytype="System.Byte" />
  3404. <property name="Length" propertytype="System.Int32" />
  3405. <method name="CompareTo(System.Object)" argnames="value" returntype="System.Int32" />
  3406. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  3407. <method name="GetHashCode" argnames="" returntype="System.Int32" />
  3408. <method name="Equals(System.Object)" argnames="value" returntype="System.Boolean" />
  3409. <method name="ToString" argnames="" returntype="System.String" />
  3410. <method name="Concat(System.Data.SqlTypes.SqlBinary, System.Data.SqlTypes.SqlBinary)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBinary" />
  3411. <method name="Equals(System.Data.SqlTypes.SqlBinary, System.Data.SqlTypes.SqlBinary)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3412. <method name="NotEquals(System.Data.SqlTypes.SqlBinary, System.Data.SqlTypes.SqlBinary)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3413. <method name="LessThan(System.Data.SqlTypes.SqlBinary, System.Data.SqlTypes.SqlBinary)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3414. <method name="GreaterThan(System.Data.SqlTypes.SqlBinary, System.Data.SqlTypes.SqlBinary)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3415. <method name="LessThanOrEqual(System.Data.SqlTypes.SqlBinary, System.Data.SqlTypes.SqlBinary)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3416. <method name="GreaterThanOrEqual(System.Data.SqlTypes.SqlBinary, System.Data.SqlTypes.SqlBinary)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3417. <method name="ToSqlGuid" argnames="" returntype="System.Data.SqlTypes.SqlGuid" />
  3418. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3419. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3420. <operator name="op_Implicit(System.Byte[])" argnames="x" />
  3421. <operator name="op_Explicit(System.Data.SqlTypes.SqlBinary)" argnames="x" />
  3422. <operator name="op_Addition(System.Data.SqlTypes.SqlBinary, System.Data.SqlTypes.SqlBinary)" argnames="x, y" />
  3423. <operator name="op_Explicit(System.Data.SqlTypes.SqlGuid)" argnames="x" />
  3424. <operator name="op_Equality(System.Data.SqlTypes.SqlBinary, System.Data.SqlTypes.SqlBinary)" argnames="x, y" />
  3425. <operator name="op_Inequality(System.Data.SqlTypes.SqlBinary, System.Data.SqlTypes.SqlBinary)" argnames="x, y" />
  3426. <operator name="op_LessThan(System.Data.SqlTypes.SqlBinary, System.Data.SqlTypes.SqlBinary)" argnames="x, y" />
  3427. <operator name="op_GreaterThan(System.Data.SqlTypes.SqlBinary, System.Data.SqlTypes.SqlBinary)" argnames="x, y" />
  3428. <operator name="op_LessThanOrEqual(System.Data.SqlTypes.SqlBinary, System.Data.SqlTypes.SqlBinary)" argnames="x, y" />
  3429. <operator name="op_GreaterThanOrEqual(System.Data.SqlTypes.SqlBinary, System.Data.SqlTypes.SqlBinary)" argnames="x, y" />
  3430. </struct>
  3431. <struct name="SqlBoolean" namespace="System.Data.SqlTypes">
  3432. <constructor name="SqlBoolean(System.Boolean)" argnames="value" />
  3433. <constructor name="SqlBoolean(System.Int32)" argnames="value" />
  3434. <field name="True" />
  3435. <field name="False" />
  3436. <field name="Null" />
  3437. <field name="Zero" />
  3438. <field name="One" />
  3439. <property name="IsNull" propertytype="System.Boolean" />
  3440. <property name="Value" propertytype="System.Boolean" />
  3441. <property name="IsTrue" propertytype="System.Boolean" />
  3442. <property name="IsFalse" propertytype="System.Boolean" />
  3443. <property name="ByteValue" propertytype="System.Byte" />
  3444. <method name="CompareTo(System.Object)" argnames="value" returntype="System.Int32" />
  3445. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  3446. <method name="GetHashCode" argnames="" returntype="System.Int32" />
  3447. <method name="Equals(System.Object)" argnames="value" returntype="System.Boolean" />
  3448. <method name="ToString" argnames="" returntype="System.String" />
  3449. <method name="Parse(System.String)" argnames="s" returntype="System.Data.SqlTypes.SqlBoolean" />
  3450. <method name="OnesComplement(System.Data.SqlTypes.SqlBoolean)" argnames="x" returntype="System.Data.SqlTypes.SqlBoolean" />
  3451. <method name="And(System.Data.SqlTypes.SqlBoolean, System.Data.SqlTypes.SqlBoolean)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3452. <method name="Or(System.Data.SqlTypes.SqlBoolean, System.Data.SqlTypes.SqlBoolean)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3453. <method name="Xor(System.Data.SqlTypes.SqlBoolean, System.Data.SqlTypes.SqlBoolean)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3454. <method name="Equals(System.Data.SqlTypes.SqlBoolean, System.Data.SqlTypes.SqlBoolean)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3455. <method name="NotEquals(System.Data.SqlTypes.SqlBoolean, System.Data.SqlTypes.SqlBoolean)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3456. <method name="ToSqlByte" argnames="" returntype="System.Data.SqlTypes.SqlByte" />
  3457. <method name="ToSqlDouble" argnames="" returntype="System.Data.SqlTypes.SqlDouble" />
  3458. <method name="ToSqlInt16" argnames="" returntype="System.Data.SqlTypes.SqlInt16" />
  3459. <method name="ToSqlInt32" argnames="" returntype="System.Data.SqlTypes.SqlInt32" />
  3460. <method name="ToSqlInt64" argnames="" returntype="System.Data.SqlTypes.SqlInt64" />
  3461. <method name="ToSqlMoney" argnames="" returntype="System.Data.SqlTypes.SqlMoney" />
  3462. <method name="ToSqlDecimal" argnames="" returntype="System.Data.SqlTypes.SqlDecimal" />
  3463. <method name="ToSqlSingle" argnames="" returntype="System.Data.SqlTypes.SqlSingle" />
  3464. <method name="ToSqlString" argnames="" returntype="System.Data.SqlTypes.SqlString" />
  3465. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3466. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3467. <operator name="op_Implicit(System.Boolean)" argnames="x" />
  3468. <operator name="op_Explicit(System.Data.SqlTypes.SqlBoolean)" argnames="x" />
  3469. <operator name="op_LogicalNot(System.Data.SqlTypes.SqlBoolean)" argnames="x" />
  3470. <operator name="op_True(System.Data.SqlTypes.SqlBoolean)" argnames="x" />
  3471. <operator name="op_False(System.Data.SqlTypes.SqlBoolean)" argnames="x" />
  3472. <operator name="op_BitwiseAnd(System.Data.SqlTypes.SqlBoolean, System.Data.SqlTypes.SqlBoolean)" argnames="x, y" />
  3473. <operator name="op_BitwiseOr(System.Data.SqlTypes.SqlBoolean, System.Data.SqlTypes.SqlBoolean)" argnames="x, y" />
  3474. <operator name="op_OnesComplement(System.Data.SqlTypes.SqlBoolean)" argnames="x" />
  3475. <operator name="op_ExclusiveOr(System.Data.SqlTypes.SqlBoolean, System.Data.SqlTypes.SqlBoolean)" argnames="x, y" />
  3476. <operator name="op_Explicit(System.Data.SqlTypes.SqlByte)" argnames="x" />
  3477. <operator name="op_Explicit(System.Data.SqlTypes.SqlInt16)" argnames="x" />
  3478. <operator name="op_Explicit(System.Data.SqlTypes.SqlInt32)" argnames="x" />
  3479. <operator name="op_Explicit(System.Data.SqlTypes.SqlInt64)" argnames="x" />
  3480. <operator name="op_Explicit(System.Data.SqlTypes.SqlDouble)" argnames="x" />
  3481. <operator name="op_Explicit(System.Data.SqlTypes.SqlSingle)" argnames="x" />
  3482. <operator name="op_Explicit(System.Data.SqlTypes.SqlMoney)" argnames="x" />
  3483. <operator name="op_Explicit(System.Data.SqlTypes.SqlDecimal)" argnames="x" />
  3484. <operator name="op_Explicit(System.Data.SqlTypes.SqlString)" argnames="x" />
  3485. <operator name="op_Equality(System.Data.SqlTypes.SqlBoolean, System.Data.SqlTypes.SqlBoolean)" argnames="x, y" />
  3486. <operator name="op_Inequality(System.Data.SqlTypes.SqlBoolean, System.Data.SqlTypes.SqlBoolean)" argnames="x, y" />
  3487. </struct>
  3488. <struct name="SqlByte" namespace="System.Data.SqlTypes">
  3489. <constructor name="SqlByte(System.Byte)" argnames="value" />
  3490. <field name="Null" />
  3491. <field name="Zero" />
  3492. <field name="MinValue" />
  3493. <field name="MaxValue" />
  3494. <property name="IsNull" propertytype="System.Boolean" />
  3495. <property name="Value" propertytype="System.Byte" />
  3496. <method name="CompareTo(System.Object)" argnames="value" returntype="System.Int32" />
  3497. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  3498. <method name="GetHashCode" argnames="" returntype="System.Int32" />
  3499. <method name="Equals(System.Object)" argnames="value" returntype="System.Boolean" />
  3500. <method name="ToString" argnames="" returntype="System.String" />
  3501. <method name="Parse(System.String)" argnames="s" returntype="System.Data.SqlTypes.SqlByte" />
  3502. <method name="OnesComplement(System.Data.SqlTypes.SqlByte)" argnames="x" returntype="System.Data.SqlTypes.SqlByte" />
  3503. <method name="Add(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" returntype="System.Data.SqlTypes.SqlByte" />
  3504. <method name="Subtract(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" returntype="System.Data.SqlTypes.SqlByte" />
  3505. <method name="Multiply(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" returntype="System.Data.SqlTypes.SqlByte" />
  3506. <method name="Divide(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" returntype="System.Data.SqlTypes.SqlByte" />
  3507. <method name="Mod(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" returntype="System.Data.SqlTypes.SqlByte" />
  3508. <method name="BitwiseAnd(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" returntype="System.Data.SqlTypes.SqlByte" />
  3509. <method name="BitwiseOr(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" returntype="System.Data.SqlTypes.SqlByte" />
  3510. <method name="Xor(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" returntype="System.Data.SqlTypes.SqlByte" />
  3511. <method name="Equals(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3512. <method name="NotEquals(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3513. <method name="LessThan(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3514. <method name="GreaterThan(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3515. <method name="LessThanOrEqual(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3516. <method name="GreaterThanOrEqual(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3517. <method name="ToSqlBoolean" argnames="" returntype="System.Data.SqlTypes.SqlBoolean" />
  3518. <method name="ToSqlDouble" argnames="" returntype="System.Data.SqlTypes.SqlDouble" />
  3519. <method name="ToSqlInt16" argnames="" returntype="System.Data.SqlTypes.SqlInt16" />
  3520. <method name="ToSqlInt32" argnames="" returntype="System.Data.SqlTypes.SqlInt32" />
  3521. <method name="ToSqlInt64" argnames="" returntype="System.Data.SqlTypes.SqlInt64" />
  3522. <method name="ToSqlMoney" argnames="" returntype="System.Data.SqlTypes.SqlMoney" />
  3523. <method name="ToSqlDecimal" argnames="" returntype="System.Data.SqlTypes.SqlDecimal" />
  3524. <method name="ToSqlSingle" argnames="" returntype="System.Data.SqlTypes.SqlSingle" />
  3525. <method name="ToSqlString" argnames="" returntype="System.Data.SqlTypes.SqlString" />
  3526. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3527. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3528. <operator name="op_Implicit(System.Byte)" argnames="x" />
  3529. <operator name="op_Explicit(System.Data.SqlTypes.SqlByte)" argnames="x" />
  3530. <operator name="op_OnesComplement(System.Data.SqlTypes.SqlByte)" argnames="x" />
  3531. <operator name="op_Addition(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" />
  3532. <operator name="op_Subtraction(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" />
  3533. <operator name="op_Multiply(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" />
  3534. <operator name="op_Division(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" />
  3535. <operator name="op_Modulus(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" />
  3536. <operator name="op_BitwiseAnd(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" />
  3537. <operator name="op_BitwiseOr(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" />
  3538. <operator name="op_ExclusiveOr(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" />
  3539. <operator name="op_Explicit(System.Data.SqlTypes.SqlBoolean)" argnames="x" />
  3540. <operator name="op_Explicit(System.Data.SqlTypes.SqlMoney)" argnames="x" />
  3541. <operator name="op_Explicit(System.Data.SqlTypes.SqlInt16)" argnames="x" />
  3542. <operator name="op_Explicit(System.Data.SqlTypes.SqlInt32)" argnames="x" />
  3543. <operator name="op_Explicit(System.Data.SqlTypes.SqlInt64)" argnames="x" />
  3544. <operator name="op_Explicit(System.Data.SqlTypes.SqlSingle)" argnames="x" />
  3545. <operator name="op_Explicit(System.Data.SqlTypes.SqlDouble)" argnames="x" />
  3546. <operator name="op_Explicit(System.Data.SqlTypes.SqlDecimal)" argnames="x" />
  3547. <operator name="op_Explicit(System.Data.SqlTypes.SqlString)" argnames="x" />
  3548. <operator name="op_Equality(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" />
  3549. <operator name="op_Inequality(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" />
  3550. <operator name="op_LessThan(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" />
  3551. <operator name="op_GreaterThan(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" />
  3552. <operator name="op_LessThanOrEqual(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" />
  3553. <operator name="op_GreaterThanOrEqual(System.Data.SqlTypes.SqlByte, System.Data.SqlTypes.SqlByte)" argnames="x, y" />
  3554. </struct>
  3555. <struct name="SqlDateTime" namespace="System.Data.SqlTypes">
  3556. <constructor name="SqlDateTime(System.DateTime)" argnames="value" />
  3557. <constructor name="SqlDateTime(System.Int32, System.Int32, System.Int32)" argnames="year, month, day" />
  3558. <constructor name="SqlDateTime(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)" argnames="year, month, day, hour, minute, second" />
  3559. <constructor name="SqlDateTime(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Double)" argnames="year, month, day, hour, minute, second, millisecond" />
  3560. <constructor name="SqlDateTime(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)" argnames="year, month, day, hour, minute, second, bilisecond" />
  3561. <constructor name="SqlDateTime(System.Int32, System.Int32)" argnames="dayTicks, timeTicks" />
  3562. <field name="SQLTicksPerSecond" />
  3563. <field name="SQLTicksPerMinute" />
  3564. <field name="SQLTicksPerHour" />
  3565. <field name="MinValue" />
  3566. <field name="MaxValue" />
  3567. <field name="Null" />
  3568. <property name="IsNull" propertytype="System.Boolean" />
  3569. <property name="Value" propertytype="System.DateTime" />
  3570. <property name="DayTicks" propertytype="System.Int32" />
  3571. <property name="TimeTicks" propertytype="System.Int32" />
  3572. <method name="CompareTo(System.Object)" argnames="value" returntype="System.Int32" />
  3573. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  3574. <method name="GetHashCode" argnames="" returntype="System.Int32" />
  3575. <method name="Equals(System.Object)" argnames="value" returntype="System.Boolean" />
  3576. <method name="ToString" argnames="" returntype="System.String" />
  3577. <method name="Parse(System.String)" argnames="s" returntype="System.Data.SqlTypes.SqlDateTime" />
  3578. <method name="Equals(System.Data.SqlTypes.SqlDateTime, System.Data.SqlTypes.SqlDateTime)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3579. <method name="NotEquals(System.Data.SqlTypes.SqlDateTime, System.Data.SqlTypes.SqlDateTime)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3580. <method name="LessThan(System.Data.SqlTypes.SqlDateTime, System.Data.SqlTypes.SqlDateTime)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3581. <method name="GreaterThan(System.Data.SqlTypes.SqlDateTime, System.Data.SqlTypes.SqlDateTime)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3582. <method name="LessThanOrEqual(System.Data.SqlTypes.SqlDateTime, System.Data.SqlTypes.SqlDateTime)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3583. <method name="GreaterThanOrEqual(System.Data.SqlTypes.SqlDateTime, System.Data.SqlTypes.SqlDateTime)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3584. <method name="ToSqlString" argnames="" returntype="System.Data.SqlTypes.SqlString" />
  3585. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3586. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3587. <operator name="op_Implicit(System.DateTime)" argnames="value" />
  3588. <operator name="op_Explicit(System.Data.SqlTypes.SqlDateTime)" argnames="x" />
  3589. <operator name="op_Addition(System.Data.SqlTypes.SqlDateTime, System.TimeSpan)" argnames="x, t" />
  3590. <operator name="op_Subtraction(System.Data.SqlTypes.SqlDateTime, System.TimeSpan)" argnames="x, t" />
  3591. <operator name="op_Explicit(System.Data.SqlTypes.SqlString)" argnames="x" />
  3592. <operator name="op_Equality(System.Data.SqlTypes.SqlDateTime, System.Data.SqlTypes.SqlDateTime)" argnames="x, y" />
  3593. <operator name="op_Inequality(System.Data.SqlTypes.SqlDateTime, System.Data.SqlTypes.SqlDateTime)" argnames="x, y" />
  3594. <operator name="op_LessThan(System.Data.SqlTypes.SqlDateTime, System.Data.SqlTypes.SqlDateTime)" argnames="x, y" />
  3595. <operator name="op_GreaterThan(System.Data.SqlTypes.SqlDateTime, System.Data.SqlTypes.SqlDateTime)" argnames="x, y" />
  3596. <operator name="op_LessThanOrEqual(System.Data.SqlTypes.SqlDateTime, System.Data.SqlTypes.SqlDateTime)" argnames="x, y" />
  3597. <operator name="op_GreaterThanOrEqual(System.Data.SqlTypes.SqlDateTime, System.Data.SqlTypes.SqlDateTime)" argnames="x, y" />
  3598. </struct>
  3599. <struct name="SqlDouble" namespace="System.Data.SqlTypes">
  3600. <constructor name="SqlDouble(System.Double)" argnames="value" />
  3601. <field name="Null" />
  3602. <field name="Zero" />
  3603. <field name="MinValue" />
  3604. <field name="MaxValue" />
  3605. <property name="IsNull" propertytype="System.Boolean" />
  3606. <property name="Value" propertytype="System.Double" />
  3607. <method name="CompareTo(System.Object)" argnames="value" returntype="System.Int32" />
  3608. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  3609. <method name="GetHashCode" argnames="" returntype="System.Int32" />
  3610. <method name="Equals(System.Object)" argnames="value" returntype="System.Boolean" />
  3611. <method name="ToString" argnames="" returntype="System.String" />
  3612. <method name="Parse(System.String)" argnames="s" returntype="System.Data.SqlTypes.SqlDouble" />
  3613. <method name="Add(System.Data.SqlTypes.SqlDouble, System.Data.SqlTypes.SqlDouble)" argnames="x, y" returntype="System.Data.SqlTypes.SqlDouble" />
  3614. <method name="Subtract(System.Data.SqlTypes.SqlDouble, System.Data.SqlTypes.SqlDouble)" argnames="x, y" returntype="System.Data.SqlTypes.SqlDouble" />
  3615. <method name="Multiply(System.Data.SqlTypes.SqlDouble, System.Data.SqlTypes.SqlDouble)" argnames="x, y" returntype="System.Data.SqlTypes.SqlDouble" />
  3616. <method name="Divide(System.Data.SqlTypes.SqlDouble, System.Data.SqlTypes.SqlDouble)" argnames="x, y" returntype="System.Data.SqlTypes.SqlDouble" />
  3617. <method name="Equals(System.Data.SqlTypes.SqlDouble, System.Data.SqlTypes.SqlDouble)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3618. <method name="NotEquals(System.Data.SqlTypes.SqlDouble, System.Data.SqlTypes.SqlDouble)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3619. <method name="LessThan(System.Data.SqlTypes.SqlDouble, System.Data.SqlTypes.SqlDouble)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3620. <method name="GreaterThan(System.Data.SqlTypes.SqlDouble, System.Data.SqlTypes.SqlDouble)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3621. <method name="LessThanOrEqual(System.Data.SqlTypes.SqlDouble, System.Data.SqlTypes.SqlDouble)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3622. <method name="GreaterThanOrEqual(System.Data.SqlTypes.SqlDouble, System.Data.SqlTypes.SqlDouble)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3623. <method name="ToSqlBoolean" argnames="" returntype="System.Data.SqlTypes.SqlBoolean" />
  3624. <method name="ToSqlByte" argnames="" returntype="System.Data.SqlTypes.SqlByte" />
  3625. <method name="ToSqlInt16" argnames="" returntype="System.Data.SqlTypes.SqlInt16" />
  3626. <method name="ToSqlInt32" argnames="" returntype="System.Data.SqlTypes.SqlInt32" />
  3627. <method name="ToSqlInt64" argnames="" returntype="System.Data.SqlTypes.SqlInt64" />
  3628. <method name="ToSqlMoney" argnames="" returntype="System.Data.SqlTypes.SqlMoney" />
  3629. <method name="ToSqlDecimal" argnames="" returntype="System.Data.SqlTypes.SqlDecimal" />
  3630. <method name="ToSqlSingle" argnames="" returntype="System.Data.SqlTypes.SqlSingle" />
  3631. <method name="ToSqlString" argnames="" returntype="System.Data.SqlTypes.SqlString" />
  3632. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3633. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3634. <operator name="op_Implicit(System.Double)" argnames="x" />
  3635. <operator name="op_Explicit(System.Data.SqlTypes.SqlDouble)" argnames="x" />
  3636. <operator name="op_UnaryNegation(System.Data.SqlTypes.SqlDouble)" argnames="x" />
  3637. <operator name="op_Addition(System.Data.SqlTypes.SqlDouble, System.Data.SqlTypes.SqlDouble)" argnames="x, y" />
  3638. <operator name="op_Subtraction(System.Data.SqlTypes.SqlDouble, System.Data.SqlTypes.SqlDouble)" argnames="x, y" />
  3639. <operator name="op_Multiply(System.Data.SqlTypes.SqlDouble, System.Data.SqlTypes.SqlDouble)" argnames="x, y" />
  3640. <operator name="op_Division(System.Data.SqlTypes.SqlDouble, System.Data.SqlTypes.SqlDouble)" argnames="x, y" />
  3641. <operator name="op_Explicit(System.Data.SqlTypes.SqlBoolean)" argnames="x" />
  3642. <operator name="op_Implicit(System.Data.SqlTypes.SqlByte)" argnames="x" />
  3643. <operator name="op_Implicit(System.Data.SqlTypes.SqlInt16)" argnames="x" />
  3644. <operator name="op_Implicit(System.Data.SqlTypes.SqlInt32)" argnames="x" />
  3645. <operator name="op_Implicit(System.Data.SqlTypes.SqlInt64)" argnames="x" />
  3646. <operator name="op_Implicit(System.Data.SqlTypes.SqlSingle)" argnames="x" />
  3647. <operator name="op_Implicit(System.Data.SqlTypes.SqlMoney)" argnames="x" />
  3648. <operator name="op_Implicit(System.Data.SqlTypes.SqlDecimal)" argnames="x" />
  3649. <operator name="op_Explicit(System.Data.SqlTypes.SqlString)" argnames="x" />
  3650. <operator name="op_Equality(System.Data.SqlTypes.SqlDouble, System.Data.SqlTypes.SqlDouble)" argnames="x, y" />
  3651. <operator name="op_Inequality(System.Data.SqlTypes.SqlDouble, System.Data.SqlTypes.SqlDouble)" argnames="x, y" />
  3652. <operator name="op_LessThan(System.Data.SqlTypes.SqlDouble, System.Data.SqlTypes.SqlDouble)" argnames="x, y" />
  3653. <operator name="op_GreaterThan(System.Data.SqlTypes.SqlDouble, System.Data.SqlTypes.SqlDouble)" argnames="x, y" />
  3654. <operator name="op_LessThanOrEqual(System.Data.SqlTypes.SqlDouble, System.Data.SqlTypes.SqlDouble)" argnames="x, y" />
  3655. <operator name="op_GreaterThanOrEqual(System.Data.SqlTypes.SqlDouble, System.Data.SqlTypes.SqlDouble)" argnames="x, y" />
  3656. </struct>
  3657. <struct name="SqlGuid" namespace="System.Data.SqlTypes">
  3658. <constructor name="SqlGuid(System.Byte[])" argnames="value" />
  3659. <constructor name="SqlGuid(System.String)" argnames="s" />
  3660. <constructor name="SqlGuid(System.Guid)" argnames="g" />
  3661. <constructor name="SqlGuid(System.Int32, System.Int16, System.Int16, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte)" argnames="a, b, c, d, e, f, g, h, i, j, k" />
  3662. <field name="Null" />
  3663. <property name="IsNull" propertytype="System.Boolean" />
  3664. <property name="Value" propertytype="System.Guid" />
  3665. <method name="CompareTo(System.Object)" argnames="value" returntype="System.Int32" />
  3666. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  3667. <method name="GetHashCode" argnames="" returntype="System.Int32" />
  3668. <method name="Equals(System.Object)" argnames="value" returntype="System.Boolean" />
  3669. <method name="ToString" argnames="" returntype="System.String" />
  3670. <method name="ToByteArray" argnames="" returntype="System.Byte[]" />
  3671. <method name="Parse(System.String)" argnames="s" returntype="System.Data.SqlTypes.SqlGuid" />
  3672. <method name="Equals(System.Data.SqlTypes.SqlGuid, System.Data.SqlTypes.SqlGuid)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3673. <method name="NotEquals(System.Data.SqlTypes.SqlGuid, System.Data.SqlTypes.SqlGuid)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3674. <method name="LessThan(System.Data.SqlTypes.SqlGuid, System.Data.SqlTypes.SqlGuid)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3675. <method name="GreaterThan(System.Data.SqlTypes.SqlGuid, System.Data.SqlTypes.SqlGuid)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3676. <method name="LessThanOrEqual(System.Data.SqlTypes.SqlGuid, System.Data.SqlTypes.SqlGuid)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3677. <method name="GreaterThanOrEqual(System.Data.SqlTypes.SqlGuid, System.Data.SqlTypes.SqlGuid)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3678. <method name="ToSqlString" argnames="" returntype="System.Data.SqlTypes.SqlString" />
  3679. <method name="ToSqlBinary" argnames="" returntype="System.Data.SqlTypes.SqlBinary" />
  3680. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3681. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3682. <operator name="op_Implicit(System.Guid)" argnames="x" />
  3683. <operator name="op_Explicit(System.Data.SqlTypes.SqlGuid)" argnames="x" />
  3684. <operator name="op_Explicit(System.Data.SqlTypes.SqlString)" argnames="x" />
  3685. <operator name="op_Explicit(System.Data.SqlTypes.SqlBinary)" argnames="x" />
  3686. <operator name="op_Equality(System.Data.SqlTypes.SqlGuid, System.Data.SqlTypes.SqlGuid)" argnames="x, y" />
  3687. <operator name="op_Inequality(System.Data.SqlTypes.SqlGuid, System.Data.SqlTypes.SqlGuid)" argnames="x, y" />
  3688. <operator name="op_LessThan(System.Data.SqlTypes.SqlGuid, System.Data.SqlTypes.SqlGuid)" argnames="x, y" />
  3689. <operator name="op_GreaterThan(System.Data.SqlTypes.SqlGuid, System.Data.SqlTypes.SqlGuid)" argnames="x, y" />
  3690. <operator name="op_LessThanOrEqual(System.Data.SqlTypes.SqlGuid, System.Data.SqlTypes.SqlGuid)" argnames="x, y" />
  3691. <operator name="op_GreaterThanOrEqual(System.Data.SqlTypes.SqlGuid, System.Data.SqlTypes.SqlGuid)" argnames="x, y" />
  3692. </struct>
  3693. <struct name="SqlInt16" namespace="System.Data.SqlTypes">
  3694. <constructor name="SqlInt16(System.Int16)" argnames="value" />
  3695. <field name="Null" />
  3696. <field name="Zero" />
  3697. <field name="MinValue" />
  3698. <field name="MaxValue" />
  3699. <property name="IsNull" propertytype="System.Boolean" />
  3700. <property name="Value" propertytype="System.Int16" />
  3701. <method name="CompareTo(System.Object)" argnames="value" returntype="System.Int32" />
  3702. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  3703. <method name="GetHashCode" argnames="" returntype="System.Int32" />
  3704. <method name="Equals(System.Object)" argnames="value" returntype="System.Boolean" />
  3705. <method name="ToString" argnames="" returntype="System.String" />
  3706. <method name="Parse(System.String)" argnames="s" returntype="System.Data.SqlTypes.SqlInt16" />
  3707. <method name="OnesComplement(System.Data.SqlTypes.SqlInt16)" argnames="x" returntype="System.Data.SqlTypes.SqlInt16" />
  3708. <method name="Add(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" returntype="System.Data.SqlTypes.SqlInt16" />
  3709. <method name="Subtract(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" returntype="System.Data.SqlTypes.SqlInt16" />
  3710. <method name="Multiply(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" returntype="System.Data.SqlTypes.SqlInt16" />
  3711. <method name="Divide(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" returntype="System.Data.SqlTypes.SqlInt16" />
  3712. <method name="Mod(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" returntype="System.Data.SqlTypes.SqlInt16" />
  3713. <method name="BitwiseAnd(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" returntype="System.Data.SqlTypes.SqlInt16" />
  3714. <method name="BitwiseOr(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" returntype="System.Data.SqlTypes.SqlInt16" />
  3715. <method name="Xor(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" returntype="System.Data.SqlTypes.SqlInt16" />
  3716. <method name="Equals(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3717. <method name="NotEquals(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3718. <method name="LessThan(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3719. <method name="GreaterThan(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3720. <method name="LessThanOrEqual(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3721. <method name="GreaterThanOrEqual(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3722. <method name="ToSqlBoolean" argnames="" returntype="System.Data.SqlTypes.SqlBoolean" />
  3723. <method name="ToSqlByte" argnames="" returntype="System.Data.SqlTypes.SqlByte" />
  3724. <method name="ToSqlDouble" argnames="" returntype="System.Data.SqlTypes.SqlDouble" />
  3725. <method name="ToSqlInt32" argnames="" returntype="System.Data.SqlTypes.SqlInt32" />
  3726. <method name="ToSqlInt64" argnames="" returntype="System.Data.SqlTypes.SqlInt64" />
  3727. <method name="ToSqlMoney" argnames="" returntype="System.Data.SqlTypes.SqlMoney" />
  3728. <method name="ToSqlDecimal" argnames="" returntype="System.Data.SqlTypes.SqlDecimal" />
  3729. <method name="ToSqlSingle" argnames="" returntype="System.Data.SqlTypes.SqlSingle" />
  3730. <method name="ToSqlString" argnames="" returntype="System.Data.SqlTypes.SqlString" />
  3731. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3732. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3733. <operator name="op_Implicit(System.Int16)" argnames="x" />
  3734. <operator name="op_Explicit(System.Data.SqlTypes.SqlInt16)" argnames="x" />
  3735. <operator name="op_UnaryNegation(System.Data.SqlTypes.SqlInt16)" argnames="x" />
  3736. <operator name="op_OnesComplement(System.Data.SqlTypes.SqlInt16)" argnames="x" />
  3737. <operator name="op_Addition(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" />
  3738. <operator name="op_Subtraction(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" />
  3739. <operator name="op_Multiply(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" />
  3740. <operator name="op_Division(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" />
  3741. <operator name="op_Modulus(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" />
  3742. <operator name="op_BitwiseAnd(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" />
  3743. <operator name="op_BitwiseOr(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" />
  3744. <operator name="op_ExclusiveOr(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" />
  3745. <operator name="op_Explicit(System.Data.SqlTypes.SqlBoolean)" argnames="x" />
  3746. <operator name="op_Implicit(System.Data.SqlTypes.SqlByte)" argnames="x" />
  3747. <operator name="op_Explicit(System.Data.SqlTypes.SqlInt32)" argnames="x" />
  3748. <operator name="op_Explicit(System.Data.SqlTypes.SqlInt64)" argnames="x" />
  3749. <operator name="op_Explicit(System.Data.SqlTypes.SqlSingle)" argnames="x" />
  3750. <operator name="op_Explicit(System.Data.SqlTypes.SqlDouble)" argnames="x" />
  3751. <operator name="op_Explicit(System.Data.SqlTypes.SqlMoney)" argnames="x" />
  3752. <operator name="op_Explicit(System.Data.SqlTypes.SqlDecimal)" argnames="x" />
  3753. <operator name="op_Explicit(System.Data.SqlTypes.SqlString)" argnames="x" />
  3754. <operator name="op_Equality(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" />
  3755. <operator name="op_Inequality(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" />
  3756. <operator name="op_LessThan(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" />
  3757. <operator name="op_GreaterThan(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" />
  3758. <operator name="op_LessThanOrEqual(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" />
  3759. <operator name="op_GreaterThanOrEqual(System.Data.SqlTypes.SqlInt16, System.Data.SqlTypes.SqlInt16)" argnames="x, y" />
  3760. </struct>
  3761. <struct name="SqlInt32" namespace="System.Data.SqlTypes">
  3762. <constructor name="SqlInt32(System.Int32)" argnames="value" />
  3763. <field name="Null" />
  3764. <field name="Zero" />
  3765. <field name="MinValue" />
  3766. <field name="MaxValue" />
  3767. <property name="IsNull" propertytype="System.Boolean" />
  3768. <property name="Value" propertytype="System.Int32" />
  3769. <method name="CompareTo(System.Object)" argnames="value" returntype="System.Int32" />
  3770. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  3771. <method name="GetHashCode" argnames="" returntype="System.Int32" />
  3772. <method name="Equals(System.Object)" argnames="value" returntype="System.Boolean" />
  3773. <method name="ToString" argnames="" returntype="System.String" />
  3774. <method name="Parse(System.String)" argnames="s" returntype="System.Data.SqlTypes.SqlInt32" />
  3775. <method name="OnesComplement(System.Data.SqlTypes.SqlInt32)" argnames="x" returntype="System.Data.SqlTypes.SqlInt32" />
  3776. <method name="Add(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" returntype="System.Data.SqlTypes.SqlInt32" />
  3777. <method name="Subtract(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" returntype="System.Data.SqlTypes.SqlInt32" />
  3778. <method name="Multiply(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" returntype="System.Data.SqlTypes.SqlInt32" />
  3779. <method name="Divide(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" returntype="System.Data.SqlTypes.SqlInt32" />
  3780. <method name="Mod(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" returntype="System.Data.SqlTypes.SqlInt32" />
  3781. <method name="BitwiseAnd(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" returntype="System.Data.SqlTypes.SqlInt32" />
  3782. <method name="BitwiseOr(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" returntype="System.Data.SqlTypes.SqlInt32" />
  3783. <method name="Xor(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" returntype="System.Data.SqlTypes.SqlInt32" />
  3784. <method name="Equals(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3785. <method name="NotEquals(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3786. <method name="LessThan(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3787. <method name="GreaterThan(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3788. <method name="LessThanOrEqual(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3789. <method name="GreaterThanOrEqual(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3790. <method name="ToSqlBoolean" argnames="" returntype="System.Data.SqlTypes.SqlBoolean" />
  3791. <method name="ToSqlByte" argnames="" returntype="System.Data.SqlTypes.SqlByte" />
  3792. <method name="ToSqlDouble" argnames="" returntype="System.Data.SqlTypes.SqlDouble" />
  3793. <method name="ToSqlInt16" argnames="" returntype="System.Data.SqlTypes.SqlInt16" />
  3794. <method name="ToSqlInt64" argnames="" returntype="System.Data.SqlTypes.SqlInt64" />
  3795. <method name="ToSqlMoney" argnames="" returntype="System.Data.SqlTypes.SqlMoney" />
  3796. <method name="ToSqlDecimal" argnames="" returntype="System.Data.SqlTypes.SqlDecimal" />
  3797. <method name="ToSqlSingle" argnames="" returntype="System.Data.SqlTypes.SqlSingle" />
  3798. <method name="ToSqlString" argnames="" returntype="System.Data.SqlTypes.SqlString" />
  3799. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3800. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3801. <operator name="op_Implicit(System.Int32)" argnames="x" />
  3802. <operator name="op_Explicit(System.Data.SqlTypes.SqlInt32)" argnames="x" />
  3803. <operator name="op_UnaryNegation(System.Data.SqlTypes.SqlInt32)" argnames="x" />
  3804. <operator name="op_OnesComplement(System.Data.SqlTypes.SqlInt32)" argnames="x" />
  3805. <operator name="op_Addition(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" />
  3806. <operator name="op_Subtraction(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" />
  3807. <operator name="op_Multiply(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" />
  3808. <operator name="op_Division(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" />
  3809. <operator name="op_Modulus(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" />
  3810. <operator name="op_BitwiseAnd(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" />
  3811. <operator name="op_BitwiseOr(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" />
  3812. <operator name="op_ExclusiveOr(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" />
  3813. <operator name="op_Explicit(System.Data.SqlTypes.SqlBoolean)" argnames="x" />
  3814. <operator name="op_Implicit(System.Data.SqlTypes.SqlByte)" argnames="x" />
  3815. <operator name="op_Implicit(System.Data.SqlTypes.SqlInt16)" argnames="x" />
  3816. <operator name="op_Explicit(System.Data.SqlTypes.SqlInt64)" argnames="x" />
  3817. <operator name="op_Explicit(System.Data.SqlTypes.SqlSingle)" argnames="x" />
  3818. <operator name="op_Explicit(System.Data.SqlTypes.SqlDouble)" argnames="x" />
  3819. <operator name="op_Explicit(System.Data.SqlTypes.SqlMoney)" argnames="x" />
  3820. <operator name="op_Explicit(System.Data.SqlTypes.SqlDecimal)" argnames="x" />
  3821. <operator name="op_Explicit(System.Data.SqlTypes.SqlString)" argnames="x" />
  3822. <operator name="op_Equality(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" />
  3823. <operator name="op_Inequality(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" />
  3824. <operator name="op_LessThan(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" />
  3825. <operator name="op_GreaterThan(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" />
  3826. <operator name="op_LessThanOrEqual(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" />
  3827. <operator name="op_GreaterThanOrEqual(System.Data.SqlTypes.SqlInt32, System.Data.SqlTypes.SqlInt32)" argnames="x, y" />
  3828. </struct>
  3829. <struct name="SqlInt64" namespace="System.Data.SqlTypes">
  3830. <constructor name="SqlInt64(System.Int64)" argnames="value" />
  3831. <field name="Null" />
  3832. <field name="Zero" />
  3833. <field name="MinValue" />
  3834. <field name="MaxValue" />
  3835. <property name="IsNull" propertytype="System.Boolean" />
  3836. <property name="Value" propertytype="System.Int64" />
  3837. <method name="CompareTo(System.Object)" argnames="value" returntype="System.Int32" />
  3838. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  3839. <method name="GetHashCode" argnames="" returntype="System.Int32" />
  3840. <method name="Equals(System.Object)" argnames="value" returntype="System.Boolean" />
  3841. <method name="ToString" argnames="" returntype="System.String" />
  3842. <method name="Parse(System.String)" argnames="s" returntype="System.Data.SqlTypes.SqlInt64" />
  3843. <method name="OnesComplement(System.Data.SqlTypes.SqlInt64)" argnames="x" returntype="System.Data.SqlTypes.SqlInt64" />
  3844. <method name="Add(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" returntype="System.Data.SqlTypes.SqlInt64" />
  3845. <method name="Subtract(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" returntype="System.Data.SqlTypes.SqlInt64" />
  3846. <method name="Multiply(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" returntype="System.Data.SqlTypes.SqlInt64" />
  3847. <method name="Divide(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" returntype="System.Data.SqlTypes.SqlInt64" />
  3848. <method name="Mod(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" returntype="System.Data.SqlTypes.SqlInt64" />
  3849. <method name="BitwiseAnd(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" returntype="System.Data.SqlTypes.SqlInt64" />
  3850. <method name="BitwiseOr(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" returntype="System.Data.SqlTypes.SqlInt64" />
  3851. <method name="Xor(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" returntype="System.Data.SqlTypes.SqlInt64" />
  3852. <method name="Equals(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3853. <method name="NotEquals(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3854. <method name="LessThan(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3855. <method name="GreaterThan(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3856. <method name="LessThanOrEqual(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3857. <method name="GreaterThanOrEqual(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3858. <method name="ToSqlBoolean" argnames="" returntype="System.Data.SqlTypes.SqlBoolean" />
  3859. <method name="ToSqlByte" argnames="" returntype="System.Data.SqlTypes.SqlByte" />
  3860. <method name="ToSqlDouble" argnames="" returntype="System.Data.SqlTypes.SqlDouble" />
  3861. <method name="ToSqlInt16" argnames="" returntype="System.Data.SqlTypes.SqlInt16" />
  3862. <method name="ToSqlInt32" argnames="" returntype="System.Data.SqlTypes.SqlInt32" />
  3863. <method name="ToSqlMoney" argnames="" returntype="System.Data.SqlTypes.SqlMoney" />
  3864. <method name="ToSqlDecimal" argnames="" returntype="System.Data.SqlTypes.SqlDecimal" />
  3865. <method name="ToSqlSingle" argnames="" returntype="System.Data.SqlTypes.SqlSingle" />
  3866. <method name="ToSqlString" argnames="" returntype="System.Data.SqlTypes.SqlString" />
  3867. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3868. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3869. <operator name="op_Implicit(System.Int64)" argnames="x" />
  3870. <operator name="op_Explicit(System.Data.SqlTypes.SqlInt64)" argnames="x" />
  3871. <operator name="op_UnaryNegation(System.Data.SqlTypes.SqlInt64)" argnames="x" />
  3872. <operator name="op_OnesComplement(System.Data.SqlTypes.SqlInt64)" argnames="x" />
  3873. <operator name="op_Addition(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" />
  3874. <operator name="op_Subtraction(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" />
  3875. <operator name="op_Multiply(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" />
  3876. <operator name="op_Division(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" />
  3877. <operator name="op_Modulus(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" />
  3878. <operator name="op_BitwiseAnd(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" />
  3879. <operator name="op_BitwiseOr(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" />
  3880. <operator name="op_ExclusiveOr(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" />
  3881. <operator name="op_Explicit(System.Data.SqlTypes.SqlBoolean)" argnames="x" />
  3882. <operator name="op_Implicit(System.Data.SqlTypes.SqlByte)" argnames="x" />
  3883. <operator name="op_Implicit(System.Data.SqlTypes.SqlInt16)" argnames="x" />
  3884. <operator name="op_Implicit(System.Data.SqlTypes.SqlInt32)" argnames="x" />
  3885. <operator name="op_Explicit(System.Data.SqlTypes.SqlSingle)" argnames="x" />
  3886. <operator name="op_Explicit(System.Data.SqlTypes.SqlDouble)" argnames="x" />
  3887. <operator name="op_Explicit(System.Data.SqlTypes.SqlMoney)" argnames="x" />
  3888. <operator name="op_Explicit(System.Data.SqlTypes.SqlDecimal)" argnames="x" />
  3889. <operator name="op_Explicit(System.Data.SqlTypes.SqlString)" argnames="x" />
  3890. <operator name="op_Equality(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" />
  3891. <operator name="op_Inequality(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" />
  3892. <operator name="op_LessThan(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" />
  3893. <operator name="op_GreaterThan(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" />
  3894. <operator name="op_LessThanOrEqual(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" />
  3895. <operator name="op_GreaterThanOrEqual(System.Data.SqlTypes.SqlInt64, System.Data.SqlTypes.SqlInt64)" argnames="x, y" />
  3896. </struct>
  3897. <struct name="SqlMoney" namespace="System.Data.SqlTypes">
  3898. <constructor name="SqlMoney(System.Int32)" argnames="value" />
  3899. <constructor name="SqlMoney(System.Int64)" argnames="value" />
  3900. <constructor name="SqlMoney(System.Decimal)" argnames="value" />
  3901. <constructor name="SqlMoney(System.Double)" argnames="value" />
  3902. <field name="Null" />
  3903. <field name="Zero" />
  3904. <field name="MinValue" />
  3905. <field name="MaxValue" />
  3906. <property name="IsNull" propertytype="System.Boolean" />
  3907. <property name="Value" propertytype="System.Decimal" />
  3908. <method name="CompareTo(System.Object)" argnames="value" returntype="System.Int32" />
  3909. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  3910. <method name="GetHashCode" argnames="" returntype="System.Int32" />
  3911. <method name="Equals(System.Object)" argnames="value" returntype="System.Boolean" />
  3912. <method name="ToString" argnames="" returntype="System.String" />
  3913. <method name="ToDecimal" argnames="" returntype="System.Decimal" />
  3914. <method name="ToInt64" argnames="" returntype="System.Int64" />
  3915. <method name="ToInt32" argnames="" returntype="System.Int32" />
  3916. <method name="ToDouble" argnames="" returntype="System.Double" />
  3917. <method name="Parse(System.String)" argnames="s" returntype="System.Data.SqlTypes.SqlMoney" />
  3918. <method name="Add(System.Data.SqlTypes.SqlMoney, System.Data.SqlTypes.SqlMoney)" argnames="x, y" returntype="System.Data.SqlTypes.SqlMoney" />
  3919. <method name="Subtract(System.Data.SqlTypes.SqlMoney, System.Data.SqlTypes.SqlMoney)" argnames="x, y" returntype="System.Data.SqlTypes.SqlMoney" />
  3920. <method name="Multiply(System.Data.SqlTypes.SqlMoney, System.Data.SqlTypes.SqlMoney)" argnames="x, y" returntype="System.Data.SqlTypes.SqlMoney" />
  3921. <method name="Divide(System.Data.SqlTypes.SqlMoney, System.Data.SqlTypes.SqlMoney)" argnames="x, y" returntype="System.Data.SqlTypes.SqlMoney" />
  3922. <method name="Equals(System.Data.SqlTypes.SqlMoney, System.Data.SqlTypes.SqlMoney)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3923. <method name="NotEquals(System.Data.SqlTypes.SqlMoney, System.Data.SqlTypes.SqlMoney)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3924. <method name="LessThan(System.Data.SqlTypes.SqlMoney, System.Data.SqlTypes.SqlMoney)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3925. <method name="GreaterThan(System.Data.SqlTypes.SqlMoney, System.Data.SqlTypes.SqlMoney)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3926. <method name="LessThanOrEqual(System.Data.SqlTypes.SqlMoney, System.Data.SqlTypes.SqlMoney)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3927. <method name="GreaterThanOrEqual(System.Data.SqlTypes.SqlMoney, System.Data.SqlTypes.SqlMoney)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3928. <method name="ToSqlBoolean" argnames="" returntype="System.Data.SqlTypes.SqlBoolean" />
  3929. <method name="ToSqlByte" argnames="" returntype="System.Data.SqlTypes.SqlByte" />
  3930. <method name="ToSqlDouble" argnames="" returntype="System.Data.SqlTypes.SqlDouble" />
  3931. <method name="ToSqlInt16" argnames="" returntype="System.Data.SqlTypes.SqlInt16" />
  3932. <method name="ToSqlInt32" argnames="" returntype="System.Data.SqlTypes.SqlInt32" />
  3933. <method name="ToSqlInt64" argnames="" returntype="System.Data.SqlTypes.SqlInt64" />
  3934. <method name="ToSqlDecimal" argnames="" returntype="System.Data.SqlTypes.SqlDecimal" />
  3935. <method name="ToSqlSingle" argnames="" returntype="System.Data.SqlTypes.SqlSingle" />
  3936. <method name="ToSqlString" argnames="" returntype="System.Data.SqlTypes.SqlString" />
  3937. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  3938. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  3939. <operator name="op_Implicit(System.Decimal)" argnames="x" />
  3940. <operator name="op_Explicit(System.Data.SqlTypes.SqlMoney)" argnames="x" />
  3941. <operator name="op_UnaryNegation(System.Data.SqlTypes.SqlMoney)" argnames="x" />
  3942. <operator name="op_Addition(System.Data.SqlTypes.SqlMoney, System.Data.SqlTypes.SqlMoney)" argnames="x, y" />
  3943. <operator name="op_Subtraction(System.Data.SqlTypes.SqlMoney, System.Data.SqlTypes.SqlMoney)" argnames="x, y" />
  3944. <operator name="op_Multiply(System.Data.SqlTypes.SqlMoney, System.Data.SqlTypes.SqlMoney)" argnames="x, y" />
  3945. <operator name="op_Division(System.Data.SqlTypes.SqlMoney, System.Data.SqlTypes.SqlMoney)" argnames="x, y" />
  3946. <operator name="op_Explicit(System.Data.SqlTypes.SqlBoolean)" argnames="x" />
  3947. <operator name="op_Implicit(System.Data.SqlTypes.SqlByte)" argnames="x" />
  3948. <operator name="op_Implicit(System.Data.SqlTypes.SqlInt16)" argnames="x" />
  3949. <operator name="op_Implicit(System.Data.SqlTypes.SqlInt32)" argnames="x" />
  3950. <operator name="op_Implicit(System.Data.SqlTypes.SqlInt64)" argnames="x" />
  3951. <operator name="op_Explicit(System.Data.SqlTypes.SqlSingle)" argnames="x" />
  3952. <operator name="op_Explicit(System.Data.SqlTypes.SqlDouble)" argnames="x" />
  3953. <operator name="op_Explicit(System.Data.SqlTypes.SqlDecimal)" argnames="x" />
  3954. <operator name="op_Explicit(System.Data.SqlTypes.SqlString)" argnames="x" />
  3955. <operator name="op_Equality(System.Data.SqlTypes.SqlMoney, System.Data.SqlTypes.SqlMoney)" argnames="x, y" />
  3956. <operator name="op_Inequality(System.Data.SqlTypes.SqlMoney, System.Data.SqlTypes.SqlMoney)" argnames="x, y" />
  3957. <operator name="op_LessThan(System.Data.SqlTypes.SqlMoney, System.Data.SqlTypes.SqlMoney)" argnames="x, y" />
  3958. <operator name="op_GreaterThan(System.Data.SqlTypes.SqlMoney, System.Data.SqlTypes.SqlMoney)" argnames="x, y" />
  3959. <operator name="op_LessThanOrEqual(System.Data.SqlTypes.SqlMoney, System.Data.SqlTypes.SqlMoney)" argnames="x, y" />
  3960. <operator name="op_GreaterThanOrEqual(System.Data.SqlTypes.SqlMoney, System.Data.SqlTypes.SqlMoney)" argnames="x, y" />
  3961. </struct>
  3962. <struct name="SqlDecimal" namespace="System.Data.SqlTypes">
  3963. <constructor name="SqlDecimal(System.Decimal)" argnames="value" />
  3964. <constructor name="SqlDecimal(System.Int32)" argnames="value" />
  3965. <constructor name="SqlDecimal(System.Int64)" argnames="value" />
  3966. <constructor name="SqlDecimal(System.Byte, System.Byte, System.Boolean, System.Int32[])" argnames="bPrecision, bScale, fPositive, bits" />
  3967. <constructor name="SqlDecimal(System.Byte, System.Byte, System.Boolean, System.Int32, System.Int32, System.Int32, System.Int32)" argnames="bPrecision, bScale, fPositive, data1, data2, data3, data4" />
  3968. <constructor name="SqlDecimal(System.Double)" argnames="dVal" />
  3969. <field name="MaxPrecision" />
  3970. <field name="MaxScale" />
  3971. <field name="Null" />
  3972. <field name="MinValue" />
  3973. <field name="MaxValue" />
  3974. <property name="IsNull" propertytype="System.Boolean" />
  3975. <property name="Value" propertytype="System.Decimal" />
  3976. <property name="IsPositive" propertytype="System.Boolean" />
  3977. <property name="Precision" propertytype="System.Byte" />
  3978. <property name="Scale" propertytype="System.Byte" />
  3979. <property name="Data" propertytype="System.Int32[]" />
  3980. <property name="BinData" propertytype="System.Byte[]" />
  3981. <method name="CompareTo(System.Object)" argnames="value" returntype="System.Int32" />
  3982. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  3983. <method name="GetHashCode" argnames="" returntype="System.Int32" />
  3984. <method name="Equals(System.Object)" argnames="value" returntype="System.Boolean" />
  3985. <method name="ToString" argnames="" returntype="System.String" />
  3986. <method name="Parse(System.String)" argnames="s" returntype="System.Data.SqlTypes.SqlDecimal" />
  3987. <method name="ToDouble" argnames="" returntype="System.Double" />
  3988. <method name="AdjustScale(System.Data.SqlTypes.SqlDecimal, System.Int32, System.Boolean)" argnames="n, digits, fRound" returntype="System.Data.SqlTypes.SqlDecimal" />
  3989. <method name="ConvertToPrecScale(System.Data.SqlTypes.SqlDecimal, System.Int32, System.Int32)" argnames="n, precision, scale" returntype="System.Data.SqlTypes.SqlDecimal" />
  3990. <method name="Add(System.Data.SqlTypes.SqlDecimal, System.Data.SqlTypes.SqlDecimal)" argnames="x, y" returntype="System.Data.SqlTypes.SqlDecimal" />
  3991. <method name="Subtract(System.Data.SqlTypes.SqlDecimal, System.Data.SqlTypes.SqlDecimal)" argnames="x, y" returntype="System.Data.SqlTypes.SqlDecimal" />
  3992. <method name="Multiply(System.Data.SqlTypes.SqlDecimal, System.Data.SqlTypes.SqlDecimal)" argnames="x, y" returntype="System.Data.SqlTypes.SqlDecimal" />
  3993. <method name="Divide(System.Data.SqlTypes.SqlDecimal, System.Data.SqlTypes.SqlDecimal)" argnames="x, y" returntype="System.Data.SqlTypes.SqlDecimal" />
  3994. <method name="Equals(System.Data.SqlTypes.SqlDecimal, System.Data.SqlTypes.SqlDecimal)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3995. <method name="NotEquals(System.Data.SqlTypes.SqlDecimal, System.Data.SqlTypes.SqlDecimal)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3996. <method name="LessThan(System.Data.SqlTypes.SqlDecimal, System.Data.SqlTypes.SqlDecimal)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3997. <method name="GreaterThan(System.Data.SqlTypes.SqlDecimal, System.Data.SqlTypes.SqlDecimal)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3998. <method name="LessThanOrEqual(System.Data.SqlTypes.SqlDecimal, System.Data.SqlTypes.SqlDecimal)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  3999. <method name="GreaterThanOrEqual(System.Data.SqlTypes.SqlDecimal, System.Data.SqlTypes.SqlDecimal)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  4000. <method name="ToSqlBoolean" argnames="" returntype="System.Data.SqlTypes.SqlBoolean" />
  4001. <method name="ToSqlByte" argnames="" returntype="System.Data.SqlTypes.SqlByte" />
  4002. <method name="ToSqlDouble" argnames="" returntype="System.Data.SqlTypes.SqlDouble" />
  4003. <method name="ToSqlInt16" argnames="" returntype="System.Data.SqlTypes.SqlInt16" />
  4004. <method name="ToSqlInt32" argnames="" returntype="System.Data.SqlTypes.SqlInt32" />
  4005. <method name="ToSqlInt64" argnames="" returntype="System.Data.SqlTypes.SqlInt64" />
  4006. <method name="ToSqlMoney" argnames="" returntype="System.Data.SqlTypes.SqlMoney" />
  4007. <method name="ToSqlSingle" argnames="" returntype="System.Data.SqlTypes.SqlSingle" />
  4008. <method name="ToSqlString" argnames="" returntype="System.Data.SqlTypes.SqlString" />
  4009. <method name="Abs(System.Data.SqlTypes.SqlDecimal)" argnames="n" returntype="System.Data.SqlTypes.SqlDecimal" />
  4010. <method name="Ceiling(System.Data.SqlTypes.SqlDecimal)" argnames="n" returntype="System.Data.SqlTypes.SqlDecimal" />
  4011. <method name="Floor(System.Data.SqlTypes.SqlDecimal)" argnames="n" returntype="System.Data.SqlTypes.SqlDecimal" />
  4012. <method name="Sign(System.Data.SqlTypes.SqlDecimal)" argnames="n" returntype="System.Data.SqlTypes.SqlInt32" />
  4013. <method name="Round(System.Data.SqlTypes.SqlDecimal, System.Int32)" argnames="n, position" returntype="System.Data.SqlTypes.SqlDecimal" />
  4014. <method name="Truncate(System.Data.SqlTypes.SqlDecimal, System.Int32)" argnames="n, position" returntype="System.Data.SqlTypes.SqlDecimal" />
  4015. <method name="Power(System.Data.SqlTypes.SqlDecimal, System.Double)" argnames="n, exp" returntype="System.Data.SqlTypes.SqlDecimal" />
  4016. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  4017. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  4018. <operator name="op_Implicit(System.Decimal)" argnames="x" />
  4019. <operator name="op_Explicit(System.Data.SqlTypes.SqlDecimal)" argnames="x" />
  4020. <operator name="op_UnaryNegation(System.Data.SqlTypes.SqlDecimal)" argnames="x" />
  4021. <operator name="op_Addition(System.Data.SqlTypes.SqlDecimal, System.Data.SqlTypes.SqlDecimal)" argnames="x, y" />
  4022. <operator name="op_Subtraction(System.Data.SqlTypes.SqlDecimal, System.Data.SqlTypes.SqlDecimal)" argnames="x, y" />
  4023. <operator name="op_Multiply(System.Data.SqlTypes.SqlDecimal, System.Data.SqlTypes.SqlDecimal)" argnames="x, y" />
  4024. <operator name="op_Division(System.Data.SqlTypes.SqlDecimal, System.Data.SqlTypes.SqlDecimal)" argnames="x, y" />
  4025. <operator name="op_Explicit(System.Data.SqlTypes.SqlBoolean)" argnames="x" />
  4026. <operator name="op_Implicit(System.Data.SqlTypes.SqlByte)" argnames="x" />
  4027. <operator name="op_Implicit(System.Data.SqlTypes.SqlInt16)" argnames="x" />
  4028. <operator name="op_Implicit(System.Data.SqlTypes.SqlInt32)" argnames="x" />
  4029. <operator name="op_Implicit(System.Data.SqlTypes.SqlInt64)" argnames="x" />
  4030. <operator name="op_Implicit(System.Data.SqlTypes.SqlMoney)" argnames="x" />
  4031. <operator name="op_Explicit(System.Data.SqlTypes.SqlSingle)" argnames="x" />
  4032. <operator name="op_Explicit(System.Data.SqlTypes.SqlDouble)" argnames="x" />
  4033. <operator name="op_Explicit(System.Data.SqlTypes.SqlString)" argnames="x" />
  4034. <operator name="op_Equality(System.Data.SqlTypes.SqlDecimal, System.Data.SqlTypes.SqlDecimal)" argnames="x, y" />
  4035. <operator name="op_Inequality(System.Data.SqlTypes.SqlDecimal, System.Data.SqlTypes.SqlDecimal)" argnames="x, y" />
  4036. <operator name="op_LessThan(System.Data.SqlTypes.SqlDecimal, System.Data.SqlTypes.SqlDecimal)" argnames="x, y" />
  4037. <operator name="op_GreaterThan(System.Data.SqlTypes.SqlDecimal, System.Data.SqlTypes.SqlDecimal)" argnames="x, y" />
  4038. <operator name="op_LessThanOrEqual(System.Data.SqlTypes.SqlDecimal, System.Data.SqlTypes.SqlDecimal)" argnames="x, y" />
  4039. <operator name="op_GreaterThanOrEqual(System.Data.SqlTypes.SqlDecimal, System.Data.SqlTypes.SqlDecimal)" argnames="x, y" />
  4040. </struct>
  4041. <struct name="SqlSingle" namespace="System.Data.SqlTypes">
  4042. <constructor name="SqlSingle(System.Single)" argnames="value" />
  4043. <constructor name="SqlSingle(System.Double)" argnames="value" />
  4044. <field name="Null" />
  4045. <field name="Zero" />
  4046. <field name="MinValue" />
  4047. <field name="MaxValue" />
  4048. <property name="IsNull" propertytype="System.Boolean" />
  4049. <property name="Value" propertytype="System.Single" />
  4050. <method name="CompareTo(System.Object)" argnames="value" returntype="System.Int32" />
  4051. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  4052. <method name="GetHashCode" argnames="" returntype="System.Int32" />
  4053. <method name="Equals(System.Object)" argnames="value" returntype="System.Boolean" />
  4054. <method name="ToString" argnames="" returntype="System.String" />
  4055. <method name="Parse(System.String)" argnames="s" returntype="System.Data.SqlTypes.SqlSingle" />
  4056. <method name="Add(System.Data.SqlTypes.SqlSingle, System.Data.SqlTypes.SqlSingle)" argnames="x, y" returntype="System.Data.SqlTypes.SqlSingle" />
  4057. <method name="Subtract(System.Data.SqlTypes.SqlSingle, System.Data.SqlTypes.SqlSingle)" argnames="x, y" returntype="System.Data.SqlTypes.SqlSingle" />
  4058. <method name="Multiply(System.Data.SqlTypes.SqlSingle, System.Data.SqlTypes.SqlSingle)" argnames="x, y" returntype="System.Data.SqlTypes.SqlSingle" />
  4059. <method name="Divide(System.Data.SqlTypes.SqlSingle, System.Data.SqlTypes.SqlSingle)" argnames="x, y" returntype="System.Data.SqlTypes.SqlSingle" />
  4060. <method name="Equals(System.Data.SqlTypes.SqlSingle, System.Data.SqlTypes.SqlSingle)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  4061. <method name="NotEquals(System.Data.SqlTypes.SqlSingle, System.Data.SqlTypes.SqlSingle)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  4062. <method name="LessThan(System.Data.SqlTypes.SqlSingle, System.Data.SqlTypes.SqlSingle)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  4063. <method name="GreaterThan(System.Data.SqlTypes.SqlSingle, System.Data.SqlTypes.SqlSingle)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  4064. <method name="LessThanOrEqual(System.Data.SqlTypes.SqlSingle, System.Data.SqlTypes.SqlSingle)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  4065. <method name="GreaterThanOrEqual(System.Data.SqlTypes.SqlSingle, System.Data.SqlTypes.SqlSingle)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  4066. <method name="ToSqlBoolean" argnames="" returntype="System.Data.SqlTypes.SqlBoolean" />
  4067. <method name="ToSqlByte" argnames="" returntype="System.Data.SqlTypes.SqlByte" />
  4068. <method name="ToSqlDouble" argnames="" returntype="System.Data.SqlTypes.SqlDouble" />
  4069. <method name="ToSqlInt16" argnames="" returntype="System.Data.SqlTypes.SqlInt16" />
  4070. <method name="ToSqlInt32" argnames="" returntype="System.Data.SqlTypes.SqlInt32" />
  4071. <method name="ToSqlInt64" argnames="" returntype="System.Data.SqlTypes.SqlInt64" />
  4072. <method name="ToSqlMoney" argnames="" returntype="System.Data.SqlTypes.SqlMoney" />
  4073. <method name="ToSqlDecimal" argnames="" returntype="System.Data.SqlTypes.SqlDecimal" />
  4074. <method name="ToSqlString" argnames="" returntype="System.Data.SqlTypes.SqlString" />
  4075. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  4076. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  4077. <operator name="op_Implicit(System.Single)" argnames="x" />
  4078. <operator name="op_Explicit(System.Data.SqlTypes.SqlSingle)" argnames="x" />
  4079. <operator name="op_UnaryNegation(System.Data.SqlTypes.SqlSingle)" argnames="x" />
  4080. <operator name="op_Addition(System.Data.SqlTypes.SqlSingle, System.Data.SqlTypes.SqlSingle)" argnames="x, y" />
  4081. <operator name="op_Subtraction(System.Data.SqlTypes.SqlSingle, System.Data.SqlTypes.SqlSingle)" argnames="x, y" />
  4082. <operator name="op_Multiply(System.Data.SqlTypes.SqlSingle, System.Data.SqlTypes.SqlSingle)" argnames="x, y" />
  4083. <operator name="op_Division(System.Data.SqlTypes.SqlSingle, System.Data.SqlTypes.SqlSingle)" argnames="x, y" />
  4084. <operator name="op_Explicit(System.Data.SqlTypes.SqlBoolean)" argnames="x" />
  4085. <operator name="op_Implicit(System.Data.SqlTypes.SqlByte)" argnames="x" />
  4086. <operator name="op_Implicit(System.Data.SqlTypes.SqlInt16)" argnames="x" />
  4087. <operator name="op_Implicit(System.Data.SqlTypes.SqlInt32)" argnames="x" />
  4088. <operator name="op_Implicit(System.Data.SqlTypes.SqlInt64)" argnames="x" />
  4089. <operator name="op_Implicit(System.Data.SqlTypes.SqlMoney)" argnames="x" />
  4090. <operator name="op_Implicit(System.Data.SqlTypes.SqlDecimal)" argnames="x" />
  4091. <operator name="op_Explicit(System.Data.SqlTypes.SqlDouble)" argnames="x" />
  4092. <operator name="op_Explicit(System.Data.SqlTypes.SqlString)" argnames="x" />
  4093. <operator name="op_Equality(System.Data.SqlTypes.SqlSingle, System.Data.SqlTypes.SqlSingle)" argnames="x, y" />
  4094. <operator name="op_Inequality(System.Data.SqlTypes.SqlSingle, System.Data.SqlTypes.SqlSingle)" argnames="x, y" />
  4095. <operator name="op_LessThan(System.Data.SqlTypes.SqlSingle, System.Data.SqlTypes.SqlSingle)" argnames="x, y" />
  4096. <operator name="op_GreaterThan(System.Data.SqlTypes.SqlSingle, System.Data.SqlTypes.SqlSingle)" argnames="x, y" />
  4097. <operator name="op_LessThanOrEqual(System.Data.SqlTypes.SqlSingle, System.Data.SqlTypes.SqlSingle)" argnames="x, y" />
  4098. <operator name="op_GreaterThanOrEqual(System.Data.SqlTypes.SqlSingle, System.Data.SqlTypes.SqlSingle)" argnames="x, y" />
  4099. </struct>
  4100. <struct name="SqlString" namespace="System.Data.SqlTypes">
  4101. <constructor name="SqlString(System.Int32, System.Data.SqlTypes.SqlCompareOptions, System.Byte[], System.Int32, System.Int32, System.Boolean)" argnames="lcid, compareOptions, data, index, count, fUnicode" />
  4102. <constructor name="SqlString(System.Int32, System.Data.SqlTypes.SqlCompareOptions, System.Byte[], System.Boolean)" argnames="lcid, compareOptions, data, fUnicode" />
  4103. <constructor name="SqlString(System.Int32, System.Data.SqlTypes.SqlCompareOptions, System.Byte[], System.Int32, System.Int32)" argnames="lcid, compareOptions, data, index, count" />
  4104. <constructor name="SqlString(System.Int32, System.Data.SqlTypes.SqlCompareOptions, System.Byte[])" argnames="lcid, compareOptions, data" />
  4105. <constructor name="SqlString(System.String, System.Int32, System.Data.SqlTypes.SqlCompareOptions)" argnames="data, lcid, compareOptions" />
  4106. <constructor name="SqlString(System.String, System.Int32)" argnames="data, lcid" />
  4107. <constructor name="SqlString(System.String)" argnames="data" />
  4108. <field name="Null" />
  4109. <field name="IgnoreCase" />
  4110. <field name="IgnoreWidth" />
  4111. <field name="IgnoreNonSpace" />
  4112. <field name="IgnoreKanaType" />
  4113. <field name="BinarySort" />
  4114. <property name="IsNull" propertytype="System.Boolean" />
  4115. <property name="Value" propertytype="System.String" />
  4116. <property name="LCID" propertytype="System.Int32" />
  4117. <property name="CultureInfo" propertytype="System.Globalization.CultureInfo" />
  4118. <property name="CompareInfo" propertytype="System.Globalization.CompareInfo" />
  4119. <property name="SqlCompareOptions" propertytype="System.Data.SqlTypes.SqlCompareOptions" />
  4120. <method name="CompareTo(System.Object)" argnames="value" returntype="System.Int32" />
  4121. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  4122. <method name="GetHashCode" argnames="" returntype="System.Int32" />
  4123. <method name="Equals(System.Object)" argnames="value" returntype="System.Boolean" />
  4124. <method name="ToString" argnames="" returntype="System.String" />
  4125. <method name="GetUnicodeBytes" argnames="" returntype="System.Byte[]" />
  4126. <method name="GetNonUnicodeBytes" argnames="" returntype="System.Byte[]" />
  4127. <method name="Clone" argnames="" returntype="System.Data.SqlTypes.SqlString" />
  4128. <method name="Concat(System.Data.SqlTypes.SqlString, System.Data.SqlTypes.SqlString)" argnames="x, y" returntype="System.Data.SqlTypes.SqlString" />
  4129. <method name="Equals(System.Data.SqlTypes.SqlString, System.Data.SqlTypes.SqlString)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  4130. <method name="NotEquals(System.Data.SqlTypes.SqlString, System.Data.SqlTypes.SqlString)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  4131. <method name="LessThan(System.Data.SqlTypes.SqlString, System.Data.SqlTypes.SqlString)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  4132. <method name="GreaterThan(System.Data.SqlTypes.SqlString, System.Data.SqlTypes.SqlString)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  4133. <method name="LessThanOrEqual(System.Data.SqlTypes.SqlString, System.Data.SqlTypes.SqlString)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  4134. <method name="GreaterThanOrEqual(System.Data.SqlTypes.SqlString, System.Data.SqlTypes.SqlString)" argnames="x, y" returntype="System.Data.SqlTypes.SqlBoolean" />
  4135. <method name="ToSqlBoolean" argnames="" returntype="System.Data.SqlTypes.SqlBoolean" />
  4136. <method name="ToSqlByte" argnames="" returntype="System.Data.SqlTypes.SqlByte" />
  4137. <method name="ToSqlDateTime" argnames="" returntype="System.Data.SqlTypes.SqlDateTime" />
  4138. <method name="ToSqlDouble" argnames="" returntype="System.Data.SqlTypes.SqlDouble" />
  4139. <method name="ToSqlInt16" argnames="" returntype="System.Data.SqlTypes.SqlInt16" />
  4140. <method name="ToSqlInt32" argnames="" returntype="System.Data.SqlTypes.SqlInt32" />
  4141. <method name="ToSqlInt64" argnames="" returntype="System.Data.SqlTypes.SqlInt64" />
  4142. <method name="ToSqlMoney" argnames="" returntype="System.Data.SqlTypes.SqlMoney" />
  4143. <method name="ToSqlDecimal" argnames="" returntype="System.Data.SqlTypes.SqlDecimal" />
  4144. <method name="ToSqlSingle" argnames="" returntype="System.Data.SqlTypes.SqlSingle" />
  4145. <method name="ToSqlGuid" argnames="" returntype="System.Data.SqlTypes.SqlGuid" />
  4146. <method name="CompareOptionsFromSqlCompareOptions(System.Data.SqlTypes.SqlCompareOptions)" argnames="compareOptions" returntype="System.Globalization.CompareOptions" />
  4147. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  4148. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  4149. <operator name="op_Implicit(System.String)" argnames="x" />
  4150. <operator name="op_Explicit(System.Data.SqlTypes.SqlString)" argnames="x" />
  4151. <operator name="op_Addition(System.Data.SqlTypes.SqlString, System.Data.SqlTypes.SqlString)" argnames="x, y" />
  4152. <operator name="op_Explicit(System.Data.SqlTypes.SqlBoolean)" argnames="x" />
  4153. <operator name="op_Explicit(System.Data.SqlTypes.SqlByte)" argnames="x" />
  4154. <operator name="op_Explicit(System.Data.SqlTypes.SqlInt16)" argnames="x" />
  4155. <operator name="op_Explicit(System.Data.SqlTypes.SqlInt32)" argnames="x" />
  4156. <operator name="op_Explicit(System.Data.SqlTypes.SqlInt64)" argnames="x" />
  4157. <operator name="op_Explicit(System.Data.SqlTypes.SqlSingle)" argnames="x" />
  4158. <operator name="op_Explicit(System.Data.SqlTypes.SqlDouble)" argnames="x" />
  4159. <operator name="op_Explicit(System.Data.SqlTypes.SqlDecimal)" argnames="x" />
  4160. <operator name="op_Explicit(System.Data.SqlTypes.SqlMoney)" argnames="x" />
  4161. <operator name="op_Explicit(System.Data.SqlTypes.SqlDateTime)" argnames="x" />
  4162. <operator name="op_Explicit(System.Data.SqlTypes.SqlGuid)" argnames="x" />
  4163. <operator name="op_Equality(System.Data.SqlTypes.SqlString, System.Data.SqlTypes.SqlString)" argnames="x, y" />
  4164. <operator name="op_Inequality(System.Data.SqlTypes.SqlString, System.Data.SqlTypes.SqlString)" argnames="x, y" />
  4165. <operator name="op_LessThan(System.Data.SqlTypes.SqlString, System.Data.SqlTypes.SqlString)" argnames="x, y" />
  4166. <operator name="op_GreaterThan(System.Data.SqlTypes.SqlString, System.Data.SqlTypes.SqlString)" argnames="x, y" />
  4167. <operator name="op_LessThanOrEqual(System.Data.SqlTypes.SqlString, System.Data.SqlTypes.SqlString)" argnames="x, y" />
  4168. <operator name="op_GreaterThanOrEqual(System.Data.SqlTypes.SqlString, System.Data.SqlTypes.SqlString)" argnames="x, y" />
  4169. </struct>
  4170. <enum name="SqlCompareOptions" namespace="System.Data.SqlTypes">
  4171. <field name="None" />
  4172. <field name="IgnoreCase" />
  4173. <field name="IgnoreNonSpace" />
  4174. <field name="IgnoreKanaType" />
  4175. <field name="IgnoreWidth" />
  4176. <field name="BinarySort" />
  4177. <method name="ToString(System.IFormatProvider)" argnames="provider" inherited="System.Enum" returntype="System.String" />
  4178. <method name="GetTypeCode" argnames="" inherited="System.Enum" returntype="System.TypeCode" />
  4179. <method name="ToString(System.String, System.IFormatProvider)" argnames="format, provider" inherited="System.Enum" returntype="System.String" />
  4180. <method name="CompareTo(System.Object)" argnames="target" inherited="System.Enum" returntype="System.Int32" />
  4181. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  4182. <method name="GetHashCode" argnames="" inherited="System.Enum" returntype="System.Int32" />
  4183. <method name="Equals(System.Object)" argnames="obj" inherited="System.Enum" returntype="System.Boolean" />
  4184. <method name="ToString" argnames="" inherited="System.Enum" returntype="System.String" />
  4185. <method name="ToString(System.String)" argnames="format" inherited="System.Enum" returntype="System.String" />
  4186. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  4187. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  4188. </enum>
  4189. <class name="XmlDataDocument" namespace="System.Xml">
  4190. <constructor name="XmlDataDocument" argnames="" />
  4191. <constructor name="XmlDataDocument(System.Data.DataSet)" argnames="dataset" />
  4192. <property name="AutoFoliationState" propertytype="System.Xml.ElementState" />
  4193. <property name="DataSet" propertytype="System.Data.DataSet" />
  4194. <property name="IgnoreXmlEvents" propertytype="System.Boolean" />
  4195. <property name="IgnoreDataSetEvents" propertytype="System.Boolean" />
  4196. <property name="IsFoliationEnabled" propertytype="System.Boolean" />
  4197. <property name="Mapper" propertytype="System.Xml.DataSetMapper" />
  4198. <property name="NodeType" inherited="System.Xml.XmlDocument" propertytype="System.Xml.XmlNodeType" />
  4199. <property name="DocumentType" inherited="System.Xml.XmlDocument" propertytype="System.Xml.XmlDocumentType" />
  4200. <property name="Implementation" inherited="System.Xml.XmlDocument" propertytype="System.Xml.XmlImplementation" />
  4201. <property name="Name" inherited="System.Xml.XmlDocument" propertytype="System.String" />
  4202. <property name="LocalName" inherited="System.Xml.XmlDocument" propertytype="System.String" />
  4203. <property name="DocumentElement" inherited="System.Xml.XmlDocument" propertytype="System.Xml.XmlElement" />
  4204. <property name="OwnerDocument" inherited="System.Xml.XmlDocument" propertytype="System.Xml.XmlDocument" />
  4205. <property name="XmlResolver" inherited="System.Xml.XmlDocument" propertytype="System.Xml.XmlResolver" />
  4206. <property name="NameTable" inherited="System.Xml.XmlDocument" propertytype="System.Xml.XmlNameTable" />
  4207. <property name="PreserveWhitespace" inherited="System.Xml.XmlDocument" propertytype="System.Boolean" />
  4208. <property name="IsReadOnly" inherited="System.Xml.XmlDocument" propertytype="System.Boolean" />
  4209. <property name="InnerXml" inherited="System.Xml.XmlDocument" propertytype="System.String" />
  4210. <property name="BaseURI" inherited="System.Xml.XmlDocument" propertytype="System.String" />
  4211. <property name="Value" inherited="System.Xml.XmlNode" propertytype="System.String" />
  4212. <property name="ParentNode" inherited="System.Xml.XmlNode" propertytype="System.Xml.XmlNode" />
  4213. <property name="ChildNodes" inherited="System.Xml.XmlNode" propertytype="System.Xml.XmlNodeList" />
  4214. <property name="PreviousSibling" inherited="System.Xml.XmlNode" propertytype="System.Xml.XmlNode" />
  4215. <property name="NextSibling" inherited="System.Xml.XmlNode" propertytype="System.Xml.XmlNode" />
  4216. <property name="Attributes" inherited="System.Xml.XmlNode" propertytype="System.Xml.XmlAttributeCollection" />
  4217. <property name="FirstChild" inherited="System.Xml.XmlNode" propertytype="System.Xml.XmlNode" />
  4218. <property name="LastChild" inherited="System.Xml.XmlNode" propertytype="System.Xml.XmlNode" />
  4219. <property name="HasChildNodes" inherited="System.Xml.XmlNode" propertytype="System.Boolean" />
  4220. <property name="NamespaceURI" inherited="System.Xml.XmlNode" propertytype="System.String" />
  4221. <property name="Prefix" inherited="System.Xml.XmlNode" propertytype="System.String" />
  4222. <property name="InnerText" inherited="System.Xml.XmlNode" propertytype="System.String" />
  4223. <property name="OuterXml" inherited="System.Xml.XmlNode" propertytype="System.String" />
  4224. <property name="Item" inherited="System.Xml.XmlNode" propertytype="System.Xml.XmlElement" />
  4225. <property name="Item" inherited="System.Xml.XmlNode" propertytype="System.Xml.XmlElement" />
  4226. <method name="Save(System.Xml.XmlWriter)" argnames="w" inherited="System.Xml.XmlDocument" returntype="System.Void" />
  4227. <method name="Save(System.IO.TextWriter)" argnames="writer" inherited="System.Xml.XmlDocument" returntype="System.Void" />
  4228. <method name="Save(System.IO.Stream)" argnames="outStream" inherited="System.Xml.XmlDocument" returntype="System.Void" />
  4229. <method name="Save(System.String)" argnames="filename" inherited="System.Xml.XmlDocument" returntype="System.Void" />
  4230. <method name="LoadXml(System.String)" argnames="xml" inherited="System.Xml.XmlDocument" returntype="System.Void" />
  4231. <method name="Load(System.Xml.XmlReader)" argnames="reader" returntype="System.Void" />
  4232. <method name="Load(System.IO.TextReader)" argnames="txtReader" returntype="System.Void" />
  4233. <method name="Load(System.IO.Stream)" argnames="inStream" returntype="System.Void" />
  4234. <method name="Load(System.String)" argnames="filename" returntype="System.Void" />
  4235. <method name="ReadNode(System.Xml.XmlReader)" argnames="reader" inherited="System.Xml.XmlDocument" returntype="System.Xml.XmlNode" />
  4236. <method name="CreateNode(System.Xml.XmlNodeType, System.String, System.String)" argnames="type, name, namespaceURI" inherited="System.Xml.XmlDocument" returntype="System.Xml.XmlNode" />
  4237. <method name="CreateNode(System.String, System.String, System.String)" argnames="nodeTypeString, name, namespaceURI" inherited="System.Xml.XmlDocument" returntype="System.Xml.XmlNode" />
  4238. <method name="CreateNode(System.Xml.XmlNodeType, System.String, System.String, System.String)" argnames="type, prefix, name, namespaceURI" inherited="System.Xml.XmlDocument" returntype="System.Xml.XmlNode" />
  4239. <method name="CreateElement(System.String, System.String, System.String)" argnames="prefix, localName, namespaceURI" returntype="System.Xml.XmlElement" />
  4240. <method name="CreateAttribute(System.String, System.String, System.String)" argnames="prefix, localName, namespaceURI" inherited="System.Xml.XmlDocument" returntype="System.Xml.XmlAttribute" />
  4241. <method name="ImportNode(System.Xml.XmlNode, System.Boolean)" argnames="node, deep" inherited="System.Xml.XmlDocument" returntype="System.Xml.XmlNode" />
  4242. <method name="GetElementById(System.String)" argnames="elemId" returntype="System.Xml.XmlElement" />
  4243. <method name="GetElementsByTagName(System.String, System.String)" argnames="localName, namespaceURI" inherited="System.Xml.XmlDocument" returntype="System.Xml.XmlNodeList" />
  4244. <method name="GetElementsByTagName(System.String)" argnames="name" inherited="System.Xml.XmlDocument" returntype="System.Xml.XmlNodeList" />
  4245. <method name="CreateWhitespace(System.String)" argnames="text" inherited="System.Xml.XmlDocument" returntype="System.Xml.XmlWhitespace" />
  4246. <method name="CreateNavigator(System.Xml.XmlNode)" argnames="node" returntype="System.Xml.XPath.XPathNavigator" />
  4247. <method name="CreateSignificantWhitespace(System.String)" argnames="text" inherited="System.Xml.XmlDocument" returntype="System.Xml.XmlSignificantWhitespace" />
  4248. <method name="CreateTextNode(System.String)" argnames="text" inherited="System.Xml.XmlDocument" returntype="System.Xml.XmlText" />
  4249. <method name="CreateXmlDeclaration(System.String, System.String, System.String)" argnames="version, encoding, standalone" inherited="System.Xml.XmlDocument" returntype="System.Xml.XmlDeclaration" />
  4250. <method name="CreateProcessingInstruction(System.String, System.String)" argnames="target, data" inherited="System.Xml.XmlDocument" returntype="System.Xml.XmlProcessingInstruction" />
  4251. <method name="CreateEntityReference(System.String)" argnames="name" returntype="System.Xml.XmlEntityReference" />
  4252. <method name="CreateDocumentFragment" argnames="" inherited="System.Xml.XmlDocument" returntype="System.Xml.XmlDocumentFragment" />
  4253. <method name="CreateDocumentType(System.String, System.String, System.String, System.String)" argnames="name, publicId, systemId, internalSubset" inherited="System.Xml.XmlDocument" returntype="System.Xml.XmlDocumentType" />
  4254. <method name="CreateComment(System.String)" argnames="data" inherited="System.Xml.XmlDocument" returntype="System.Xml.XmlComment" />
  4255. <method name="CreateCDataSection(System.String)" argnames="data" inherited="System.Xml.XmlDocument" returntype="System.Xml.XmlCDataSection" />
  4256. <method name="CreateNavigator" argnames="" inherited="System.Xml.XmlNode" returntype="System.Xml.XPath.XPathNavigator" />
  4257. <method name="GetPrefixOfNamespace(System.String)" argnames="namespaceURI" inherited="System.Xml.XmlNode" returntype="System.String" />
  4258. <method name="GetNamespaceOfPrefix(System.String)" argnames="prefix" inherited="System.Xml.XmlNode" returntype="System.String" />
  4259. <method name="RemoveAll" argnames="" inherited="System.Xml.XmlNode" returntype="System.Void" />
  4260. <method name="WriteContentTo(System.Xml.XmlWriter)" argnames="xw" inherited="System.Xml.XmlDocument" returntype="System.Void" />
  4261. <method name="WriteTo(System.Xml.XmlWriter)" argnames="w" inherited="System.Xml.XmlDocument" returntype="System.Void" />
  4262. <method name="Clone" argnames="" inherited="System.Xml.XmlNode" returntype="System.Xml.XmlNode" />
  4263. <method name="Supports(System.String, System.String)" argnames="feature, version" inherited="System.Xml.XmlNode" returntype="System.Boolean" />
  4264. <method name="Normalize" argnames="" inherited="System.Xml.XmlNode" returntype="System.Void" />
  4265. <method name="CloneNode(System.Boolean)" argnames="deep" returntype="System.Xml.XmlNode" />
  4266. <method name="AppendChild(System.Xml.XmlNode)" argnames="newChild" inherited="System.Xml.XmlNode" returntype="System.Xml.XmlNode" />
  4267. <method name="PrependChild(System.Xml.XmlNode)" argnames="newChild" inherited="System.Xml.XmlNode" returntype="System.Xml.XmlNode" />
  4268. <method name="RemoveChild(System.Xml.XmlNode)" argnames="oldChild" inherited="System.Xml.XmlNode" returntype="System.Xml.XmlNode" />
  4269. <method name="ReplaceChild(System.Xml.XmlNode, System.Xml.XmlNode)" argnames="newChild, oldChild" inherited="System.Xml.XmlNode" returntype="System.Xml.XmlNode" />
  4270. <method name="InsertAfter(System.Xml.XmlNode, System.Xml.XmlNode)" argnames="newChild, refChild" inherited="System.Xml.XmlNode" returntype="System.Xml.XmlNode" />
  4271. <method name="InsertBefore(System.Xml.XmlNode, System.Xml.XmlNode)" argnames="newChild, refChild" inherited="System.Xml.XmlNode" returntype="System.Xml.XmlNode" />
  4272. <method name="Finalize" argnames="" inherited="System.Object" returntype="System.Void" />
  4273. <method name="GetHashCode" argnames="" inherited="System.Object" returntype="System.Int32" />
  4274. <method name="Equals(System.Object)" argnames="obj" inherited="System.Object" returntype="System.Boolean" />
  4275. <method name="ToString" argnames="" inherited="System.Object" returntype="System.String" />
  4276. <method name="GetRowFromElement(System.Xml.XmlElement)" argnames="e" returntype="System.Data.DataRow" />
  4277. <method name="GetElementFromRow(System.Data.DataRow)" argnames="r" returntype="System.Xml.XmlElement" />
  4278. <method name="CreateAttribute(System.String)" argnames="name" inherited="System.Xml.XmlDocument" returntype="System.Xml.XmlAttribute" />
  4279. <method name="CreateElement(System.String)" argnames="name" inherited="System.Xml.XmlDocument" returntype="System.Xml.XmlElement" />
  4280. <method name="CreateAttribute(System.String, System.String)" argnames="qualifiedName, namespaceURI" inherited="System.Xml.XmlDocument" returntype="System.Xml.XmlAttribute" />
  4281. <method name="CreateElement(System.String, System.String)" argnames="qualifiedName, namespaceURI" inherited="System.Xml.XmlDocument" returntype="System.Xml.XmlElement" />
  4282. <method name="SelectSingleNode(System.String)" argnames="xpath" inherited="System.Xml.XmlNode" returntype="System.Xml.XmlNode" />
  4283. <method name="SelectSingleNode(System.String, System.Xml.XmlNamespaceManager)" argnames="xpath, nsmgr" inherited="System.Xml.XmlNode" returntype="System.Xml.XmlNode" />
  4284. <method name="SelectNodes(System.String)" argnames="xpath" inherited="System.Xml.XmlNode" returntype="System.Xml.XmlNodeList" />
  4285. <method name="SelectNodes(System.String, System.Xml.XmlNamespaceManager)" argnames="xpath, nsmgr" inherited="System.Xml.XmlNode" returntype="System.Xml.XmlNodeList" />
  4286. <method name="GetEnumerator" argnames="" inherited="System.Xml.XmlNode" returntype="System.Collections.IEnumerator" />
  4287. <method name="GetType" argnames="" inherited="System.Object" returntype="System.Type" />
  4288. <method name="MemberwiseClone" argnames="" inherited="System.Object" returntype="System.Object" />
  4289. <event name="NodeInserting" inherited="System.Xml.XmlDocument" />
  4290. <event name="NodeInserted" inherited="System.Xml.XmlDocument" />
  4291. <event name="NodeRemoving" inherited="System.Xml.XmlDocument" />
  4292. <event name="NodeRemoved" inherited="System.Xml.XmlDocument" />
  4293. <event name="NodeChanging" inherited="System.Xml.XmlDocument" />
  4294. <event name="NodeChanged" inherited="System.Xml.XmlDocument" />
  4295. </class>
  4296. </masterdoc>