202108.log 889 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360
  1. 2021-08-06 17:44:17.5918 Info: [source]:runtime,[msg]:Runtime 启动
  2. 2021-08-06 17:44:17.6218 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS\Master\exe\apps\DataApp\bundle.config"
  3. 2021-08-06 17:44:17.7678 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS\Master\exe\apps\DevicesApp\bundle.config"
  4. 2021-08-06 17:44:17.7818 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS\Master\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5. 2021-08-06 17:44:17.8068 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6. 2021-08-06 17:44:17.8068 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  7. 2021-08-06 17:44:17.8068 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  8. 2021-08-06 17:44:17.8068 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  9. 2021-08-06 17:44:17.8068 Info: [source]:runtime,[msg]:Runtime 启动完成
  10. 2021-08-06 17:44:22.5928 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  11. 2021-08-06 17:44:22.5928 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  12. 2021-08-06 17:44:29.2734 Info: [source]:runtime,[msg]:AppHost 停止插件
  13. 2021-08-06 17:44:29.2744 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  14. 2021-08-06 17:44:29.2744 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  15. 2021-08-06 17:44:29.2744 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  16. 2021-08-06 17:44:29.2744 Info: [source]:runtime,[msg]:Runtime 关闭
  17. 2021-08-06 17:59:22.1606 Info: [source]:runtime,[msg]:Runtime 启动
  18. 2021-08-06 17:59:22.1846 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS\Master\exe\apps\DataApp\bundle.config"
  19. 2021-08-06 17:59:22.2656 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS\Master\exe\apps\DevicesApp\bundle.config"
  20. 2021-08-06 17:59:22.2806 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS\Master\exe\apps\Tps_LQ_Transmitter\bundle.config"
  21. 2021-08-06 17:59:22.2986 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  22. 2021-08-06 17:59:22.2986 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  23. 2021-08-06 17:59:22.2986 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  24. 2021-08-06 17:59:22.2986 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  25. 2021-08-06 17:59:22.2986 Info: [source]:runtime,[msg]:Runtime 启动完成
  26. 2021-08-06 17:59:26.5262 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  27. 2021-08-06 17:59:26.5262 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  28. 2021-08-06 17:59:34.0552 Info: [source]:runtime,[msg]:AppHost 停止插件
  29. 2021-08-06 17:59:34.0562 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  30. 2021-08-06 17:59:34.0562 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  31. 2021-08-06 17:59:34.0562 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  32. 2021-08-06 17:59:34.0562 Info: [source]:runtime,[msg]:Runtime 关闭
  33. 2021-08-06 18:09:50.3836 Info: [source]:runtime,[msg]:Runtime 启动
  34. 2021-08-06 18:09:50.4096 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS\Master\exe\apps\DataApp\bundle.config"
  35. 2021-08-06 18:09:50.4666 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS\Master\exe\apps\DevicesApp\bundle.config"
  36. 2021-08-06 18:09:50.4666 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS\Master\exe\apps\Tps_LQ_Transmitter\bundle.config"
  37. 2021-08-06 18:09:50.4876 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  38. 2021-08-06 18:09:50.4876 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  39. 2021-08-06 18:09:50.4876 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  40. 2021-08-06 18:09:50.4876 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  41. 2021-08-06 18:09:50.4876 Info: [source]:runtime,[msg]:Runtime 启动完成
  42. 2021-08-06 18:09:55.3030 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  43. 2021-08-06 18:09:55.3030 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  44. 2021-08-06 18:10:03.6350 Info: [source]:runtime,[msg]:AppHost 停止插件
  45. 2021-08-06 18:10:03.6350 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  46. 2021-08-06 18:10:03.6350 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  47. 2021-08-06 18:10:03.6350 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  48. 2021-08-06 18:10:03.6350 Info: [source]:runtime,[msg]:Runtime 关闭
  49. 2021-08-06 18:21:45.6665 Info: [source]:runtime,[msg]:Runtime 启动
  50. 2021-08-06 18:21:45.6865 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS\Master\exe\apps\DataApp\bundle.config"
  51. 2021-08-06 18:21:45.7455 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS\Master\exe\apps\DevicesApp\bundle.config"
  52. 2021-08-06 18:21:45.7455 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS\Master\exe\apps\Tps_LQ_Transmitter\bundle.config"
  53. 2021-08-06 18:21:45.7715 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  54. 2021-08-06 18:21:45.7715 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  55. 2021-08-06 18:21:45.7715 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  56. 2021-08-06 18:21:45.7745 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  57. 2021-08-06 18:21:45.7745 Info: [source]:runtime,[msg]:Runtime 启动完成
  58. 2021-08-06 18:21:50.0578 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  59. 2021-08-06 18:21:50.0578 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  60. 2021-08-06 18:21:51.9288 Info: [source]:runtime,[msg]:AppHost 停止插件
  61. 2021-08-06 18:21:51.9288 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  62. 2021-08-06 18:21:51.9308 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  63. 2021-08-06 18:21:51.9308 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  64. 2021-08-06 18:21:51.9308 Info: [source]:runtime,[msg]:Runtime 关闭
  65. 2021-08-06 18:21:59.5671 Info: [source]:runtime,[msg]:Runtime 启动
  66. 2021-08-06 18:21:59.5911 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS\Master\exe\apps\DataApp\bundle.config"
  67. 2021-08-06 18:21:59.6461 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS\Master\exe\apps\DevicesApp\bundle.config"
  68. 2021-08-06 18:21:59.6581 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS\Master\exe\apps\Tps_LQ_Transmitter\bundle.config"
  69. 2021-08-06 18:21:59.6701 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  70. 2021-08-06 18:21:59.6701 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  71. 2021-08-06 18:21:59.6701 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  72. 2021-08-06 18:21:59.6701 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  73. 2021-08-06 18:21:59.6701 Info: [source]:runtime,[msg]:Runtime 启动完成
  74. 2021-08-06 18:22:03.4131 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  75. 2021-08-06 18:22:03.4131 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  76. 2021-08-06 18:22:31.2156 Info: [source]:runtime,[msg]:AppHost 停止插件
  77. 2021-08-06 18:22:31.2156 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  78. 2021-08-06 18:22:31.2156 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  79. 2021-08-06 18:22:31.2156 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  80. 2021-08-06 18:22:31.2156 Info: [source]:runtime,[msg]:Runtime 关闭
  81. 2021-08-09 17:02:21.9050 Info: [source]:runtime,[msg]:Runtime 启动
  82. 2021-08-09 17:02:22.0140 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  83. 2021-08-09 17:02:22.3140 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  84. 2021-08-09 17:02:22.3330 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  85. 2021-08-09 17:02:22.3490 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  86. 2021-08-09 17:02:22.3560 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  87. 2021-08-09 17:02:22.3560 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  88. 2021-08-09 17:02:22.3560 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  89. 2021-08-09 17:02:22.3560 Info: [source]:runtime,[msg]:Runtime 启动完成
  90. 2021-08-09 17:02:25.3970 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  91. 2021-08-09 17:02:31.8920 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  92. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  93. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  94. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  95. 在 System.Activator.CreateInstance(Type type, Object[] args)
  96. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  97. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  98. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  99. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  100. 2021-08-09 17:02:31.8920 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  101. 2021-08-09 17:02:31.8920 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  102. 2021-08-09 17:02:34.6550 Info: [source]:runtime,[msg]:AppHost 停止插件
  103. 2021-08-09 17:02:34.6550 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  104. 2021-08-09 17:02:34.6550 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  105. 2021-08-09 17:02:34.6550 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  106. 2021-08-09 17:02:34.6550 Info: [source]:runtime,[msg]:Runtime 关闭
  107. 2021-08-09 17:03:31.4480 Info: [source]:runtime,[msg]:Runtime 启动
  108. 2021-08-09 17:03:31.5780 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  109. 2021-08-09 17:03:31.8960 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  110. 2021-08-09 17:03:31.9190 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  111. 2021-08-09 17:03:31.9450 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  112. 2021-08-09 17:03:31.9530 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  113. 2021-08-09 17:03:31.9530 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  114. 2021-08-09 17:03:31.9530 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  115. 2021-08-09 17:03:31.9530 Info: [source]:runtime,[msg]:Runtime 启动完成
  116. 2021-08-09 17:03:34.1980 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  117. 2021-08-09 17:03:39.5410 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  118. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  119. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  120. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  121. 在 System.Activator.CreateInstance(Type type, Object[] args)
  122. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  123. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  124. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  125. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  126. 2021-08-09 17:03:39.5510 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  127. 2021-08-09 17:03:39.5510 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  128. 2021-08-09 17:03:45.0460 Info: [source]:runtime,[msg]:AppHost 停止插件
  129. 2021-08-09 17:03:45.0460 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  130. 2021-08-09 17:03:45.0460 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  131. 2021-08-09 17:03:45.0460 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  132. 2021-08-09 17:03:45.0460 Info: [source]:runtime,[msg]:Runtime 关闭
  133. 2021-08-09 17:05:13.2000 Info: [source]:runtime,[msg]:Runtime 启动
  134. 2021-08-09 17:05:13.3560 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  135. 2021-08-09 17:05:13.6810 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  136. 2021-08-09 17:05:13.6980 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  137. 2021-08-09 17:05:13.7130 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  138. 2021-08-09 17:05:13.7130 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  139. 2021-08-09 17:05:13.7130 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  140. 2021-08-09 17:05:13.7130 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  141. 2021-08-09 17:05:13.7220 Info: [source]:runtime,[msg]:Runtime 启动完成
  142. 2021-08-09 17:05:15.8570 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  143. 2021-08-09 17:05:21.2170 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  144. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  145. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  146. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  147. 在 System.Activator.CreateInstance(Type type, Object[] args)
  148. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  149. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  150. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  151. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  152. 2021-08-09 17:05:21.2170 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  153. 2021-08-09 17:05:21.2170 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  154. 2021-08-09 17:06:48.3980 Info: [source]:runtime,[msg]:Runtime 启动
  155. 2021-08-09 17:06:48.5770 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  156. 2021-08-09 17:06:49.0120 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  157. 2021-08-09 17:06:49.0800 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  158. 2021-08-09 17:06:49.1310 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  159. 2021-08-09 17:06:49.1380 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  160. 2021-08-09 17:06:49.1380 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  161. 2021-08-09 17:06:49.1380 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  162. 2021-08-09 17:06:49.1380 Info: [source]:runtime,[msg]:Runtime 启动完成
  163. 2021-08-09 17:06:51.8220 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  164. 2021-08-09 17:06:57.1710 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  165. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  166. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  167. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  168. 在 System.Activator.CreateInstance(Type type, Object[] args)
  169. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  170. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  171. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  172. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  173. 2021-08-09 17:06:57.1710 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  174. 2021-08-09 17:06:57.1820 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  175. 2021-08-09 17:08:22.3930 Info: [source]:runtime,[msg]:Runtime 启动
  176. 2021-08-09 17:08:22.5550 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  177. 2021-08-09 17:08:22.9390 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  178. 2021-08-09 17:08:22.9590 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  179. 2021-08-09 17:08:22.9940 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  180. 2021-08-09 17:08:23.0010 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  181. 2021-08-09 17:08:23.0010 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  182. 2021-08-09 17:08:23.0010 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  183. 2021-08-09 17:08:23.0010 Info: [source]:runtime,[msg]:Runtime 启动完成
  184. 2021-08-09 17:08:25.2560 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  185. 2021-08-09 17:08:30.5860 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  186. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  187. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  188. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  189. 在 System.Activator.CreateInstance(Type type, Object[] args)
  190. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  191. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  192. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  193. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  194. 2021-08-09 17:08:30.5860 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  195. 2021-08-09 17:08:30.5860 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  196. 2021-08-09 17:10:38.1630 Info: [source]:runtime,[msg]:Runtime 启动
  197. 2021-08-09 17:10:38.2750 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  198. 2021-08-09 17:10:38.5070 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  199. 2021-08-09 17:10:38.6920 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  200. 2021-08-09 17:10:38.7650 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  201. 2021-08-09 17:10:38.7650 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  202. 2021-08-09 17:10:38.7650 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  203. 2021-08-09 17:10:38.7650 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  204. 2021-08-09 17:10:38.7650 Info: [source]:runtime,[msg]:Runtime 启动完成
  205. 2021-08-09 17:10:41.3330 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  206. 2021-08-09 17:10:46.7210 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  207. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  208. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  209. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  210. 在 System.Activator.CreateInstance(Type type, Object[] args)
  211. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  212. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  213. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  214. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  215. 2021-08-09 17:10:46.7210 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  216. 2021-08-09 17:10:46.7210 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  217. 2021-08-09 17:20:32.9530 Info: [source]:runtime,[msg]:Runtime 启动
  218. 2021-08-09 17:20:33.0850 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  219. 2021-08-09 17:20:33.4450 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  220. 2021-08-09 17:20:33.4640 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  221. 2021-08-09 17:20:33.4870 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  222. 2021-08-09 17:20:33.4940 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  223. 2021-08-09 17:20:33.4940 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  224. 2021-08-09 17:20:33.4940 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  225. 2021-08-09 17:20:33.4940 Info: [source]:runtime,[msg]:Runtime 启动完成
  226. 2021-08-09 17:20:35.7190 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  227. 2021-08-09 17:20:41.0250 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  228. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  229. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  230. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  231. 在 System.Activator.CreateInstance(Type type, Object[] args)
  232. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  233. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  234. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  235. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  236. 2021-08-09 17:20:41.0250 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  237. 2021-08-09 17:20:41.0250 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  238. 2021-08-09 17:24:30.0240 Info: [source]:runtime,[msg]:Runtime 启动
  239. 2021-08-09 17:24:30.2020 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  240. 2021-08-09 17:24:30.4400 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  241. 2021-08-09 17:24:30.4550 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  242. 2021-08-09 17:24:30.4550 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  243. 2021-08-09 17:24:30.4730 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  244. 2021-08-09 17:24:30.4730 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  245. 2021-08-09 17:24:30.4730 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  246. 2021-08-09 17:24:30.4730 Info: [source]:runtime,[msg]:Runtime 启动完成
  247. 2021-08-09 17:24:32.5750 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  248. 2021-08-09 17:24:37.8700 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  249. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  250. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  251. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  252. 在 System.Activator.CreateInstance(Type type, Object[] args)
  253. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  254. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  255. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  256. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  257. 2021-08-09 17:24:37.8790 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  258. 2021-08-09 17:24:37.8790 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  259. 2021-08-09 17:25:36.7920 Info: [source]:runtime,[msg]:Runtime 启动
  260. 2021-08-09 17:25:36.9280 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  261. 2021-08-09 17:25:37.2230 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  262. 2021-08-09 17:25:37.2230 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  263. 2021-08-09 17:25:37.2660 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  264. 2021-08-09 17:25:37.2730 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  265. 2021-08-09 17:25:37.2730 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  266. 2021-08-09 17:25:37.2730 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  267. 2021-08-09 17:25:37.2730 Info: [source]:runtime,[msg]:Runtime 启动完成
  268. 2021-08-09 17:25:39.4790 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  269. 2021-08-09 17:25:44.8270 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  270. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  271. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  272. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  273. 在 System.Activator.CreateInstance(Type type, Object[] args)
  274. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  275. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  276. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  277. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  278. 2021-08-09 17:25:44.8270 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  279. 2021-08-09 17:25:44.8270 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  280. 2021-08-09 17:28:09.0190 Info: [source]:runtime,[msg]:Runtime 启动
  281. 2021-08-09 17:28:09.1640 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  282. 2021-08-09 17:28:09.5060 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  283. 2021-08-09 17:28:09.5260 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  284. 2021-08-09 17:28:09.5590 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  285. 2021-08-09 17:28:09.5590 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  286. 2021-08-09 17:28:09.5590 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  287. 2021-08-09 17:28:09.5590 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  288. 2021-08-09 17:28:09.5590 Info: [source]:runtime,[msg]:Runtime 启动完成
  289. 2021-08-09 17:28:11.9070 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  290. 2021-08-09 17:28:17.2050 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  291. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  292. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  293. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  294. 在 System.Activator.CreateInstance(Type type, Object[] args)
  295. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  296. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  297. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  298. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  299. 2021-08-09 17:28:17.2050 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  300. 2021-08-09 17:28:17.2050 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  301. 2021-08-09 17:31:37.4350 Info: [source]:runtime,[msg]:Runtime 启动
  302. 2021-08-09 17:31:37.5890 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  303. 2021-08-09 17:31:37.9170 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  304. 2021-08-09 17:31:38.0410 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  305. 2021-08-09 17:31:38.1270 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  306. 2021-08-09 17:31:38.1330 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  307. 2021-08-09 17:31:38.1330 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  308. 2021-08-09 17:31:38.1330 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  309. 2021-08-09 17:31:38.1330 Info: [source]:runtime,[msg]:Runtime 启动完成
  310. 2021-08-09 17:31:40.8110 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  311. 2021-08-09 17:31:46.1620 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  312. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  313. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  314. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  315. 在 System.Activator.CreateInstance(Type type, Object[] args)
  316. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  317. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  318. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  319. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  320. 2021-08-09 17:31:46.1690 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  321. 2021-08-09 17:31:46.1690 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  322. 2021-08-09 17:35:29.3380 Info: [source]:runtime,[msg]:Runtime 启动
  323. 2021-08-09 17:35:29.5040 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  324. 2021-08-09 17:35:30.0420 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  325. 2021-08-09 17:35:30.5710 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  326. 2021-08-09 17:35:30.7540 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  327. 2021-08-09 17:35:30.7600 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  328. 2021-08-09 17:35:30.7600 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  329. 2021-08-09 17:35:30.7600 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  330. 2021-08-09 17:35:30.7600 Info: [source]:runtime,[msg]:Runtime 启动完成
  331. 2021-08-09 17:35:34.4610 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  332. 2021-08-09 17:35:40.1350 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  333. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  334. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  335. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  336. 在 System.Activator.CreateInstance(Type type, Object[] args)
  337. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  338. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  339. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  340. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  341. 2021-08-09 17:35:40.1350 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  342. 2021-08-09 17:35:40.1520 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  343. 2021-08-09 17:37:33.1910 Info: [source]:runtime,[msg]:Runtime 启动
  344. 2021-08-09 17:37:33.3180 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  345. 2021-08-09 17:37:33.6880 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  346. 2021-08-09 17:37:33.7120 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  347. 2021-08-09 17:37:33.7390 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  348. 2021-08-09 17:37:33.7390 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  349. 2021-08-09 17:37:33.7390 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  350. 2021-08-09 17:37:33.7390 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  351. 2021-08-09 17:37:33.7390 Info: [source]:runtime,[msg]:Runtime 启动完成
  352. 2021-08-09 17:37:35.8910 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  353. 2021-08-09 17:37:41.1820 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  354. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  355. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  356. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  357. 在 System.Activator.CreateInstance(Type type, Object[] args)
  358. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  359. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  360. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  361. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  362. 2021-08-09 17:37:41.1820 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  363. 2021-08-09 17:37:41.1820 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  364. 2021-08-09 17:38:58.8600 Info: [source]:runtime,[msg]:Runtime 启动
  365. 2021-08-09 17:38:59.0780 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  366. 2021-08-09 17:38:59.4980 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  367. 2021-08-09 17:38:59.5180 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  368. 2021-08-09 17:38:59.6460 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  369. 2021-08-09 17:38:59.6460 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  370. 2021-08-09 17:38:59.6460 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  371. 2021-08-09 17:38:59.6460 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  372. 2021-08-09 17:38:59.6600 Info: [source]:runtime,[msg]:Runtime 启动完成
  373. 2021-08-09 17:39:01.7950 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  374. 2021-08-09 17:39:07.1260 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  375. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  376. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  377. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  378. 在 System.Activator.CreateInstance(Type type, Object[] args)
  379. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  380. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  381. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  382. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  383. 2021-08-09 17:39:07.1360 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  384. 2021-08-09 17:39:07.1360 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  385. 2021-08-09 17:43:00.8980 Info: [source]:runtime,[msg]:Runtime 启动
  386. 2021-08-09 17:43:01.0030 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  387. 2021-08-09 17:43:01.3980 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  388. 2021-08-09 17:43:01.4160 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  389. 2021-08-09 17:43:01.4480 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  390. 2021-08-09 17:43:01.4480 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  391. 2021-08-09 17:43:01.4480 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  392. 2021-08-09 17:43:01.4480 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  393. 2021-08-09 17:43:01.4480 Info: [source]:runtime,[msg]:Runtime 启动完成
  394. 2021-08-09 17:43:03.6940 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  395. 2021-08-09 17:43:07.7000 Info: [source]:runtime,[msg]:AppHost 停止插件
  396. 2021-08-09 17:43:07.7010 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  397. 2021-08-09 17:43:07.7010 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  398. 2021-08-09 17:43:07.7010 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  399. 2021-08-09 17:43:07.7010 Info: [source]:runtime,[msg]:Runtime 关闭
  400. 2021-08-09 17:47:34.1090 Info: [source]:runtime,[msg]:Runtime 启动
  401. 2021-08-09 17:47:34.2390 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  402. 2021-08-09 17:47:34.5110 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  403. 2021-08-09 17:47:34.5280 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  404. 2021-08-09 17:47:34.5620 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  405. 2021-08-09 17:47:34.5620 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  406. 2021-08-09 17:47:34.5620 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  407. 2021-08-09 17:47:34.5620 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  408. 2021-08-09 17:47:34.5620 Info: [source]:runtime,[msg]:Runtime 启动完成
  409. 2021-08-09 17:47:36.7110 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  410. 2021-08-09 17:47:42.0020 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  411. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  412. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  413. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  414. 在 System.Activator.CreateInstance(Type type, Object[] args)
  415. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  416. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  417. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  418. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  419. 2021-08-09 17:47:42.0020 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  420. 2021-08-09 17:47:42.0020 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  421. 2021-08-10 09:14:06.3316 Info: [source]:runtime,[msg]:Runtime 启动
  422. 2021-08-10 09:14:06.4656 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  423. 2021-08-10 09:14:06.7466 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  424. 2021-08-10 09:14:06.7696 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  425. 2021-08-10 09:14:06.7866 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  426. 2021-08-10 09:14:06.7936 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  427. 2021-08-10 09:14:06.7936 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  428. 2021-08-10 09:14:06.7936 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  429. 2021-08-10 09:14:06.7936 Info: [source]:runtime,[msg]:Runtime 启动完成
  430. 2021-08-10 09:14:08.9936 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  431. 2021-08-10 09:14:15.8766 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  432. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  433. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  434. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  435. 在 System.Activator.CreateInstance(Type type, Object[] args)
  436. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  437. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  438. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  439. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  440. 2021-08-10 09:14:15.8876 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  441. 2021-08-10 09:14:15.8876 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  442. 2021-08-10 14:09:58.0296 Info: [source]:runtime,[msg]:Runtime 启动
  443. 2021-08-10 14:09:58.1646 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  444. 2021-08-10 14:09:58.4466 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  445. 2021-08-10 14:09:58.4646 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  446. 2021-08-10 14:09:58.4826 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  447. 2021-08-10 14:09:58.4886 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  448. 2021-08-10 14:09:58.4886 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  449. 2021-08-10 14:09:58.4886 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  450. 2021-08-10 14:09:58.4886 Info: [source]:runtime,[msg]:Runtime 启动完成
  451. 2021-08-10 14:10:01.6236 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  452. 2021-08-10 14:10:08.6206 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  453. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  454. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  455. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  456. 在 System.Activator.CreateInstance(Type type, Object[] args)
  457. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  458. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  459. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  460. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  461. 2021-08-10 14:10:08.6296 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  462. 2021-08-10 14:10:08.6296 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  463. 2021-08-10 14:16:58.6876 Info: [source]:runtime,[msg]:Runtime 启动
  464. 2021-08-10 14:16:58.8276 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  465. 2021-08-10 14:16:59.1546 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  466. 2021-08-10 14:16:59.1696 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  467. 2021-08-10 14:16:59.1826 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  468. 2021-08-10 14:16:59.1826 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  469. 2021-08-10 14:16:59.1826 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  470. 2021-08-10 14:16:59.1826 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  471. 2021-08-10 14:16:59.1906 Info: [source]:runtime,[msg]:Runtime 启动完成
  472. 2021-08-10 14:17:01.3396 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  473. 2021-08-10 14:17:06.7786 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  474. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  475. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  476. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  477. 在 System.Activator.CreateInstance(Type type, Object[] args)
  478. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  479. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  480. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  481. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  482. 2021-08-10 14:17:06.7876 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  483. 2021-08-10 14:17:06.7876 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  484. 2021-08-10 14:23:16.5486 Info: [source]:runtime,[msg]:AppHost 停止插件
  485. 2021-08-10 14:23:16.5486 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  486. 2021-08-10 14:23:16.5486 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  487. 2021-08-10 14:23:16.5486 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  488. 2021-08-10 14:23:16.5566 Info: [source]:runtime,[msg]:Runtime 关闭
  489. 2021-08-10 14:23:26.0636 Info: [source]:runtime,[msg]:Runtime 启动
  490. 2021-08-10 14:23:26.2176 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  491. 2021-08-10 14:23:26.5066 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  492. 2021-08-10 14:23:26.5236 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  493. 2021-08-10 14:23:26.5856 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  494. 2021-08-10 14:23:26.6006 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  495. 2021-08-10 14:23:26.6156 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  496. 2021-08-10 14:23:26.6496 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  497. 2021-08-10 14:23:26.6516 Info: [source]:runtime,[msg]:Runtime 启动完成
  498. 2021-08-10 14:23:28.9626 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  499. 2021-08-10 14:23:34.2906 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  500. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  501. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  502. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  503. 在 System.Activator.CreateInstance(Type type, Object[] args)
  504. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  505. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  506. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  507. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  508. 2021-08-10 14:23:34.2966 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  509. 2021-08-10 14:23:34.2966 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  510. 2021-08-10 14:23:45.6676 Info: [source]:runtime,[msg]:AppHost 停止插件
  511. 2021-08-10 14:23:45.6676 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  512. 2021-08-10 14:23:45.6676 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  513. 2021-08-10 14:23:45.6676 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  514. 2021-08-10 14:23:45.6856 Info: [source]:runtime,[msg]:Runtime 关闭
  515. 2021-08-10 14:23:53.8026 Info: [source]:runtime,[msg]:Runtime 启动
  516. 2021-08-10 14:23:53.9206 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  517. 2021-08-10 14:23:54.1836 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  518. 2021-08-10 14:23:54.2026 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  519. 2021-08-10 14:23:54.2276 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  520. 2021-08-10 14:23:54.2336 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  521. 2021-08-10 14:23:54.2336 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  522. 2021-08-10 14:23:54.2336 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  523. 2021-08-10 14:23:54.2336 Info: [source]:runtime,[msg]:Runtime 启动完成
  524. 2021-08-10 14:23:56.3376 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  525. 2021-08-10 14:24:01.7196 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  526. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  527. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  528. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  529. 在 System.Activator.CreateInstance(Type type, Object[] args)
  530. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  531. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  532. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  533. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  534. 2021-08-10 14:24:01.7196 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  535. 2021-08-10 14:24:01.7196 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  536. 2021-08-10 14:24:54.9236 Info: [source]:runtime,[msg]:AppHost 停止插件
  537. 2021-08-10 14:24:54.9236 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  538. 2021-08-10 14:24:54.9316 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  539. 2021-08-10 14:24:54.9316 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  540. 2021-08-10 14:24:54.9316 Info: [source]:runtime,[msg]:Runtime 关闭
  541. 2021-08-10 14:39:56.8976 Info: [source]:runtime,[msg]:Runtime 启动
  542. 2021-08-10 14:39:57.0306 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  543. 2021-08-10 14:39:57.3746 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  544. 2021-08-10 14:39:57.3906 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  545. 2021-08-10 14:39:57.4116 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  546. 2021-08-10 14:39:57.4166 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  547. 2021-08-10 14:39:57.4166 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  548. 2021-08-10 14:39:57.4166 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  549. 2021-08-10 14:39:57.4166 Info: [source]:runtime,[msg]:Runtime 启动完成
  550. 2021-08-10 14:39:59.5746 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  551. 2021-08-10 14:40:04.9036 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  552. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  553. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  554. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  555. 在 System.Activator.CreateInstance(Type type, Object[] args)
  556. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  557. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  558. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  559. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  560. 2021-08-10 14:40:04.9036 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  561. 2021-08-10 14:40:04.9036 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  562. 2021-08-10 14:40:28.7996 Info: [source]:runtime,[msg]:AppHost 停止插件
  563. 2021-08-10 14:40:28.7996 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  564. 2021-08-10 14:40:28.7996 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  565. 2021-08-10 14:40:28.7996 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  566. 2021-08-10 14:40:28.7996 Info: [source]:runtime,[msg]:Runtime 关闭
  567. 2021-08-10 14:40:38.3256 Info: [source]:runtime,[msg]:Runtime 启动
  568. 2021-08-10 14:40:38.4806 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  569. 2021-08-10 14:40:38.7076 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  570. 2021-08-10 14:40:38.7236 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  571. 2021-08-10 14:40:38.7446 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  572. 2021-08-10 14:40:38.7446 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  573. 2021-08-10 14:40:38.7526 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  574. 2021-08-10 14:40:38.7526 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  575. 2021-08-10 14:40:38.7526 Info: [source]:runtime,[msg]:Runtime 启动完成
  576. 2021-08-10 14:40:40.9266 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  577. 2021-08-10 14:40:46.2296 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  578. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  579. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  580. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  581. 在 System.Activator.CreateInstance(Type type, Object[] args)
  582. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  583. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  584. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  585. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  586. 2021-08-10 14:40:46.2296 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  587. 2021-08-10 14:40:46.2296 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  588. 2021-08-10 14:41:23.9106 Info: [source]:runtime,[msg]:AppHost 停止插件
  589. 2021-08-10 14:41:23.9106 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  590. 2021-08-10 14:41:23.9166 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  591. 2021-08-10 14:41:23.9166 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  592. 2021-08-10 14:41:23.9166 Info: [source]:runtime,[msg]:Runtime 关闭
  593. 2021-08-10 14:44:27.6166 Info: [source]:runtime,[msg]:Runtime 启动
  594. 2021-08-10 14:44:27.7826 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  595. 2021-08-10 14:44:28.1546 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  596. 2021-08-10 14:44:28.2156 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  597. 2021-08-10 14:44:28.2406 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  598. 2021-08-10 14:44:28.2466 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  599. 2021-08-10 14:44:28.2466 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  600. 2021-08-10 14:44:28.2466 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  601. 2021-08-10 14:44:28.2466 Info: [source]:runtime,[msg]:Runtime 启动完成
  602. 2021-08-10 14:44:30.4426 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  603. 2021-08-10 14:44:35.9016 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  604. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  605. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  606. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  607. 在 System.Activator.CreateInstance(Type type, Object[] args)
  608. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  609. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  610. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  611. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  612. 2021-08-10 14:44:35.9206 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  613. 2021-08-10 14:44:35.9226 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  614. 2021-08-10 15:21:29.4036 Info: [source]:runtime,[msg]:Runtime 启动
  615. 2021-08-10 15:21:29.5366 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  616. 2021-08-10 15:21:29.9096 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  617. 2021-08-10 15:21:29.9256 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  618. 2021-08-10 15:21:29.9476 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  619. 2021-08-10 15:21:29.9536 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  620. 2021-08-10 15:21:29.9536 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  621. 2021-08-10 15:21:29.9536 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  622. 2021-08-10 15:21:29.9536 Info: [source]:runtime,[msg]:Runtime 启动完成
  623. 2021-08-10 15:21:32.1796 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  624. 2021-08-10 15:21:37.5896 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  625. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  626. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  627. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  628. 在 System.Activator.CreateInstance(Type type, Object[] args)
  629. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  630. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  631. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  632. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  633. 2021-08-10 15:21:37.5996 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  634. 2021-08-10 15:21:37.5996 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  635. 2021-08-10 15:23:49.6586 Info: [source]:runtime,[msg]:AppHost 停止插件
  636. 2021-08-10 15:23:49.6586 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  637. 2021-08-10 15:23:49.6586 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  638. 2021-08-10 15:23:49.6646 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  639. 2021-08-10 15:23:49.6646 Info: [source]:runtime,[msg]:Runtime 关闭
  640. 2021-08-10 15:31:24.1386 Info: [source]:runtime,[msg]:Runtime 启动
  641. 2021-08-10 15:31:24.2936 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  642. 2021-08-10 15:31:24.5616 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  643. 2021-08-10 15:31:24.5806 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  644. 2021-08-10 15:31:24.6026 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  645. 2021-08-10 15:31:24.6026 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  646. 2021-08-10 15:31:24.6096 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  647. 2021-08-10 15:31:24.6096 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  648. 2021-08-10 15:31:24.6096 Info: [source]:runtime,[msg]:Runtime 启动完成
  649. 2021-08-10 15:31:26.8696 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(42, 71)中有错误。
  650. 2021-08-10 15:31:32.2436 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  651. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  652. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  653. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  654. 在 System.Activator.CreateInstance(Type type, Object[] args)
  655. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  656. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  657. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  658. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  659. 2021-08-10 15:31:32.2546 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  660. 2021-08-10 15:31:32.2546 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  661. 2021-08-10 16:23:22.2306 Info: [source]:runtime,[msg]:AppHost 停止插件
  662. 2021-08-10 16:23:22.2306 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  663. 2021-08-10 16:23:22.2306 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  664. 2021-08-10 16:23:22.2306 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  665. 2021-08-10 16:23:22.2306 Info: [source]:runtime,[msg]:Runtime 关闭
  666. 2021-08-10 16:28:24.7046 Info: [source]:runtime,[msg]:Runtime 启动
  667. 2021-08-10 16:28:24.8526 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  668. 2021-08-10 16:28:25.2466 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  669. 2021-08-10 16:28:25.3446 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  670. 2021-08-10 16:28:25.3906 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  671. 2021-08-10 16:28:25.3906 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  672. 2021-08-10 16:28:25.3996 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  673. 2021-08-10 16:28:25.3996 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  674. 2021-08-10 16:28:25.3996 Info: [source]:runtime,[msg]:Runtime 启动完成
  675. 2021-08-10 16:28:28.3936 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(55, 74)中有错误。
  676. 2021-08-10 16:28:34.1116 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  677. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  678. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  679. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  680. 在 System.Activator.CreateInstance(Type type, Object[] args)
  681. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  682. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  683. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  684. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  685. 2021-08-10 16:28:34.1286 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  686. 2021-08-10 16:28:34.1286 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  687. 2021-08-10 16:28:41.2996 Info: [source]:runtime,[msg]:AppHost 停止插件
  688. 2021-08-10 16:28:41.2996 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  689. 2021-08-10 16:28:41.2996 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  690. 2021-08-10 16:28:41.2996 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  691. 2021-08-10 16:28:41.2996 Info: [source]:runtime,[msg]:Runtime 关闭
  692. 2021-08-10 16:32:07.1536 Info: [source]:runtime,[msg]:Runtime 启动
  693. 2021-08-10 16:32:07.3016 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  694. 2021-08-10 16:32:07.6086 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  695. 2021-08-10 16:32:07.6086 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  696. 2021-08-10 16:32:07.6416 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  697. 2021-08-10 16:32:07.6416 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  698. 2021-08-10 16:32:07.6416 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  699. 2021-08-10 16:32:07.6416 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  700. 2021-08-10 16:32:07.6416 Info: [source]:runtime,[msg]:Runtime 启动完成
  701. 2021-08-10 16:32:09.8476 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(55, 74)中有错误。
  702. 2021-08-10 16:32:15.1726 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  703. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  704. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  705. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  706. 在 System.Activator.CreateInstance(Type type, Object[] args)
  707. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  708. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  709. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  710. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  711. 2021-08-10 16:32:15.1846 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  712. 2021-08-10 16:32:15.1846 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  713. 2021-08-10 16:33:10.4546 Info: [source]:runtime,[msg]:AppHost 停止插件
  714. 2021-08-10 16:33:10.4546 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  715. 2021-08-10 16:33:10.4606 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  716. 2021-08-10 16:33:10.4606 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  717. 2021-08-10 16:33:10.4606 Info: [source]:runtime,[msg]:Runtime 关闭
  718. 2021-08-10 16:58:59.1966 Info: [source]:runtime,[msg]:Runtime 启动
  719. 2021-08-10 16:58:59.3196 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  720. 2021-08-10 16:58:59.7036 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  721. 2021-08-10 16:58:59.7196 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  722. 2021-08-10 16:58:59.7426 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  723. 2021-08-10 16:58:59.7426 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  724. 2021-08-10 16:58:59.7426 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  725. 2021-08-10 16:58:59.7426 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  726. 2021-08-10 16:58:59.7426 Info: [source]:runtime,[msg]:Runtime 启动完成
  727. 2021-08-10 16:59:01.8976 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(55, 74)中有错误。
  728. 2021-08-10 16:59:07.3346 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  729. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  730. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  731. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  732. 在 System.Activator.CreateInstance(Type type, Object[] args)
  733. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  734. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  735. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  736. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  737. 2021-08-10 16:59:07.3696 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  738. 2021-08-10 16:59:07.3696 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  739. 2021-08-10 17:15:46.9646 Info: [source]:runtime,[msg]:AppHost 停止插件
  740. 2021-08-10 17:15:46.9646 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  741. 2021-08-10 17:15:46.9646 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  742. 2021-08-10 17:15:46.9646 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  743. 2021-08-10 17:15:46.9646 Info: [source]:runtime,[msg]:Runtime 关闭
  744. 2021-08-10 18:28:21.8616 Info: [source]:runtime,[msg]:Runtime 启动
  745. 2021-08-10 18:28:22.0216 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  746. 2021-08-10 18:28:22.3636 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  747. 2021-08-10 18:28:22.3836 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  748. 2021-08-10 18:28:22.4056 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  749. 2021-08-10 18:28:22.4056 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  750. 2021-08-10 18:28:22.4056 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  751. 2021-08-10 18:28:22.4136 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  752. 2021-08-10 18:28:22.4136 Info: [source]:runtime,[msg]:Runtime 启动完成
  753. 2021-08-10 18:28:24.5636 Error: [source]:资源管理器 LoadDevice,[msg]:加载命令文件异常:F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\commands\程控命令.xml。原因:XML 文档(55, 74)中有错误。
  754. 2021-08-10 18:28:29.8586 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  755. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  756. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  757. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  758. 在 System.Activator.CreateInstance(Type type, Object[] args)
  759. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  760. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  761. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  762. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  763. 2021-08-10 18:28:29.8586 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  764. 2021-08-10 18:28:29.8586 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  765. 2021-08-10 18:29:29.9156 Info: [source]:runtime,[msg]:AppHost 停止插件
  766. 2021-08-10 18:29:29.9156 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  767. 2021-08-10 18:29:29.9156 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  768. 2021-08-10 18:29:29.9156 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  769. 2021-08-10 18:29:29.9156 Info: [source]:runtime,[msg]:Runtime 关闭
  770. 2021-08-11 09:58:25.2908 Info: [source]:runtime,[msg]:Runtime 启动
  771. 2021-08-11 09:58:25.4168 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  772. 2021-08-11 09:58:25.6978 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  773. 2021-08-11 09:58:25.7198 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  774. 2021-08-11 09:58:25.7488 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  775. 2021-08-11 09:58:25.7488 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  776. 2021-08-11 09:58:25.7488 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  777. 2021-08-11 09:58:25.7488 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  778. 2021-08-11 09:58:25.7488 Info: [source]:runtime,[msg]:Runtime 启动完成
  779. 2021-08-11 09:58:36.6978 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  780. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  781. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  782. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  783. 在 System.Activator.CreateInstance(Type type, Object[] args)
  784. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  785. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  786. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  787. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  788. 2021-08-11 09:58:36.7038 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  789. 2021-08-11 09:58:36.7038 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  790. 2021-08-11 09:59:15.9898 Info: [source]:runtime,[msg]:AppHost 停止插件
  791. 2021-08-11 09:59:15.9898 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  792. 2021-08-11 09:59:15.9898 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  793. 2021-08-11 09:59:15.9978 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  794. 2021-08-11 09:59:15.9978 Info: [source]:runtime,[msg]:Runtime 关闭
  795. 2021-08-11 10:00:42.6688 Info: [source]:runtime,[msg]:Runtime 启动
  796. 2021-08-11 10:00:42.8448 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  797. 2021-08-11 10:00:43.1968 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  798. 2021-08-11 10:00:43.2158 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  799. 2021-08-11 10:00:43.2158 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  800. 2021-08-11 10:00:43.2348 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  801. 2021-08-11 10:00:43.2348 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  802. 2021-08-11 10:00:43.2348 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  803. 2021-08-11 10:00:43.2348 Info: [source]:runtime,[msg]:Runtime 启动完成
  804. 2021-08-11 10:00:51.5438 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  805. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  806. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  807. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  808. 在 System.Activator.CreateInstance(Type type, Object[] args)
  809. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  810. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  811. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  812. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  813. 2021-08-11 10:00:51.5498 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  814. 2021-08-11 10:00:51.5498 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  815. 2021-08-11 10:01:46.4058 Info: [source]:runtime,[msg]:AppHost 停止插件
  816. 2021-08-11 10:01:46.4058 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  817. 2021-08-11 10:01:46.4058 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  818. 2021-08-11 10:01:46.4058 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  819. 2021-08-11 10:01:46.4058 Info: [source]:runtime,[msg]:Runtime 关闭
  820. 2021-08-11 10:15:14.1868 Info: [source]:runtime,[msg]:Runtime 启动
  821. 2021-08-11 10:15:14.3678 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  822. 2021-08-11 10:15:14.7038 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  823. 2021-08-11 10:15:14.7668 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  824. 2021-08-11 10:15:14.7828 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  825. 2021-08-11 10:15:14.7828 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  826. 2021-08-11 10:15:14.7828 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  827. 2021-08-11 10:15:14.7828 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  828. 2021-08-11 10:15:14.7928 Info: [source]:runtime,[msg]:Runtime 启动完成
  829. 2021-08-11 10:15:22.9778 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  830. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  831. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  832. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  833. 在 System.Activator.CreateInstance(Type type, Object[] args)
  834. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  835. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  836. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  837. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  838. 2021-08-11 10:15:22.9858 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  839. 2021-08-11 10:15:22.9858 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  840. 2021-08-11 10:16:16.0598 Info: [source]:runtime,[msg]:Runtime 启动
  841. 2021-08-11 10:16:16.2138 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  842. 2021-08-11 10:16:16.6088 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  843. 2021-08-11 10:16:16.6278 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  844. 2021-08-11 10:16:16.6468 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  845. 2021-08-11 10:16:16.6518 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  846. 2021-08-11 10:16:16.6518 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  847. 2021-08-11 10:16:16.6518 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  848. 2021-08-11 10:16:16.6518 Info: [source]:runtime,[msg]:Runtime 启动完成
  849. 2021-08-11 10:16:25.0498 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  850. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  851. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  852. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  853. 在 System.Activator.CreateInstance(Type type, Object[] args)
  854. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  855. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  856. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  857. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  858. 2021-08-11 10:16:25.0588 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  859. 2021-08-11 10:16:25.0588 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  860. 2021-08-11 10:16:51.8618 Info: [source]:runtime,[msg]:AppHost 停止插件
  861. 2021-08-11 10:16:51.8618 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  862. 2021-08-11 10:16:51.8618 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  863. 2021-08-11 10:16:51.8618 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  864. 2021-08-11 10:16:51.8618 Info: [source]:runtime,[msg]:Runtime 关闭
  865. 2021-08-11 10:18:22.1388 Info: [source]:runtime,[msg]:Runtime 启动
  866. 2021-08-11 10:18:22.3098 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  867. 2021-08-11 10:18:22.6448 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  868. 2021-08-11 10:18:22.6648 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  869. 2021-08-11 10:18:22.6858 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  870. 2021-08-11 10:18:22.6858 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  871. 2021-08-11 10:18:22.6858 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  872. 2021-08-11 10:18:22.6858 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  873. 2021-08-11 10:18:22.6858 Info: [source]:runtime,[msg]:Runtime 启动完成
  874. 2021-08-11 10:18:31.0798 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  875. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  876. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  877. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  878. 在 System.Activator.CreateInstance(Type type, Object[] args)
  879. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  880. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  881. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  882. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  883. 2021-08-11 10:18:31.0798 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  884. 2021-08-11 10:18:31.0798 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  885. 2021-08-11 10:19:04.3148 Info: [source]:runtime,[msg]:Runtime 启动
  886. 2021-08-11 10:19:04.4818 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  887. 2021-08-11 10:19:04.8868 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  888. 2021-08-11 10:19:04.9038 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  889. 2021-08-11 10:19:04.9258 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  890. 2021-08-11 10:19:04.9258 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  891. 2021-08-11 10:19:04.9258 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  892. 2021-08-11 10:19:04.9258 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  893. 2021-08-11 10:19:04.9258 Info: [source]:runtime,[msg]:Runtime 启动完成
  894. 2021-08-11 10:19:11.1318 Info: [source]:runtime,[msg]:AppHost 停止插件
  895. 2021-08-11 10:19:11.1318 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  896. 2021-08-11 10:19:11.1318 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  897. 2021-08-11 10:19:11.1348 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  898. 2021-08-11 10:19:11.1348 Info: [source]:runtime,[msg]:Runtime 关闭
  899. 2021-08-11 10:19:23.7558 Info: [source]:runtime,[msg]:Runtime 启动
  900. 2021-08-11 10:19:23.9178 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  901. 2021-08-11 10:19:24.2578 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  902. 2021-08-11 10:19:24.2878 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  903. 2021-08-11 10:19:24.4258 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  904. 2021-08-11 10:19:24.4258 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  905. 2021-08-11 10:19:24.4258 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  906. 2021-08-11 10:19:24.4458 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  907. 2021-08-11 10:19:24.4458 Info: [source]:runtime,[msg]:Runtime 启动完成
  908. 2021-08-11 10:19:32.6828 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  909. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  910. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  911. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  912. 在 System.Activator.CreateInstance(Type type, Object[] args)
  913. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  914. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  915. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  916. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  917. 2021-08-11 10:19:32.6828 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  918. 2021-08-11 10:19:32.6828 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  919. 2021-08-11 10:20:00.0828 Info: [source]:runtime,[msg]:AppHost 停止插件
  920. 2021-08-11 10:20:00.0828 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  921. 2021-08-11 10:20:00.0828 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  922. 2021-08-11 10:20:00.0828 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  923. 2021-08-11 10:20:00.0828 Info: [source]:runtime,[msg]:Runtime 关闭
  924. 2021-08-11 10:21:00.4318 Info: [source]:runtime,[msg]:Runtime 启动
  925. 2021-08-11 10:21:00.6138 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  926. 2021-08-11 10:21:00.9508 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  927. 2021-08-11 10:21:00.9678 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  928. 2021-08-11 10:21:00.9898 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  929. 2021-08-11 10:21:00.9948 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  930. 2021-08-11 10:21:00.9948 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  931. 2021-08-11 10:21:00.9948 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  932. 2021-08-11 10:21:00.9948 Info: [source]:runtime,[msg]:Runtime 启动完成
  933. 2021-08-11 10:21:09.0848 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  934. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  935. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  936. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  937. 在 System.Activator.CreateInstance(Type type, Object[] args)
  938. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  939. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  940. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  941. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  942. 2021-08-11 10:21:09.0908 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  943. 2021-08-11 10:21:09.0908 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  944. 2021-08-11 10:21:12.1428 Info: [source]:runtime,[msg]:AppHost 停止插件
  945. 2021-08-11 10:21:12.1448 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  946. 2021-08-11 10:21:12.1448 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  947. 2021-08-11 10:21:12.1448 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  948. 2021-08-11 10:21:12.1448 Info: [source]:runtime,[msg]:Runtime 关闭
  949. 2021-08-11 10:21:59.2828 Info: [source]:runtime,[msg]:Runtime 启动
  950. 2021-08-11 10:21:59.5028 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  951. 2021-08-11 10:21:59.8838 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  952. 2021-08-11 10:21:59.9018 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  953. 2021-08-11 10:21:59.9278 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  954. 2021-08-11 10:21:59.9278 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  955. 2021-08-11 10:21:59.9278 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  956. 2021-08-11 10:21:59.9278 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  957. 2021-08-11 10:21:59.9278 Info: [source]:runtime,[msg]:Runtime 启动完成
  958. 2021-08-11 10:22:04.6318 Info: [source]:runtime,[msg]:AppHost 停止插件
  959. 2021-08-11 10:22:04.6318 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  960. 2021-08-11 10:22:04.6318 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  961. 2021-08-11 10:22:04.6318 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  962. 2021-08-11 10:22:04.6318 Info: [source]:runtime,[msg]:Runtime 关闭
  963. 2021-08-11 10:25:03.7338 Info: [source]:runtime,[msg]:Runtime 启动
  964. 2021-08-11 10:25:03.8998 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  965. 2021-08-11 10:25:04.2648 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  966. 2021-08-11 10:25:04.3328 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  967. 2021-08-11 10:25:04.3568 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  968. 2021-08-11 10:25:04.3568 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  969. 2021-08-11 10:25:04.3568 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  970. 2021-08-11 10:25:04.3568 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  971. 2021-08-11 10:25:04.3568 Info: [source]:runtime,[msg]:Runtime 启动完成
  972. 2021-08-11 10:25:12.9328 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  973. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  974. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  975. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  976. 在 System.Activator.CreateInstance(Type type, Object[] args)
  977. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  978. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  979. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  980. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  981. 2021-08-11 10:25:12.9328 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  982. 2021-08-11 10:25:12.9328 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  983. 2021-08-11 10:28:52.3638 Info: [source]:runtime,[msg]:Runtime 启动
  984. 2021-08-11 10:28:52.5848 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  985. 2021-08-11 10:28:53.0078 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  986. 2021-08-11 10:28:53.0358 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  987. 2021-08-11 10:28:53.0558 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  988. 2021-08-11 10:28:53.0558 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  989. 2021-08-11 10:28:53.0558 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  990. 2021-08-11 10:28:53.0558 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  991. 2021-08-11 10:28:53.0558 Info: [source]:runtime,[msg]:Runtime 启动完成
  992. 2021-08-11 10:29:00.5918 Info: [source]:runtime,[msg]:AppHost 停止插件
  993. 2021-08-11 10:29:00.5918 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  994. 2021-08-11 10:29:00.5918 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  995. 2021-08-11 10:29:00.5918 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  996. 2021-08-11 10:29:00.5918 Info: [source]:runtime,[msg]:Runtime 关闭
  997. 2021-08-11 10:34:40.4798 Info: [source]:runtime,[msg]:Runtime 启动
  998. 2021-08-11 10:34:40.6698 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  999. 2021-08-11 10:34:41.0018 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1000. 2021-08-11 10:34:41.0958 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1001. 2021-08-11 10:34:41.1228 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1002. 2021-08-11 10:34:41.1228 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1003. 2021-08-11 10:34:41.1228 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1004. 2021-08-11 10:34:41.1228 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1005. 2021-08-11 10:34:41.1228 Info: [source]:runtime,[msg]:Runtime 启动完成
  1006. 2021-08-11 10:34:46.4148 Info: [source]:runtime,[msg]:AppHost 停止插件
  1007. 2021-08-11 10:34:46.4148 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  1008. 2021-08-11 10:34:46.4148 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  1009. 2021-08-11 10:34:46.4148 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  1010. 2021-08-11 10:34:46.4148 Info: [source]:runtime,[msg]:Runtime 关闭
  1011. 2021-08-11 10:39:17.3298 Info: [source]:runtime,[msg]:Runtime 启动
  1012. 2021-08-11 10:39:17.4568 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1013. 2021-08-11 10:39:17.7318 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1014. 2021-08-11 10:39:17.7878 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-1-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1015. 2021-08-11 10:39:17.9248 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1016. 2021-08-11 10:39:17.9308 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1017. 2021-08-11 10:39:17.9308 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1018. 2021-08-11 10:39:17.9308 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1019. 2021-08-11 10:39:17.9308 Info: [source]:runtime,[msg]:Runtime 启动完成
  1020. 2021-08-11 10:39:27.2498 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1021. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1022. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1023. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1024. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1025. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1026. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1027. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1028. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1029. 2021-08-11 10:39:27.2578 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1030. 2021-08-11 10:39:27.2578 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1031. 2021-08-11 11:05:52.2018 Info: [source]:runtime,[msg]:Runtime 启动
  1032. 2021-08-11 11:05:52.3308 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1033. 2021-08-11 11:05:52.6858 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1034. 2021-08-11 11:05:52.7068 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1035. 2021-08-11 11:05:52.7698 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1036. 2021-08-11 11:05:52.7748 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1037. 2021-08-11 11:05:52.7748 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1038. 2021-08-11 11:05:52.7748 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1039. 2021-08-11 11:05:52.7748 Info: [source]:runtime,[msg]:Runtime 启动完成
  1040. 2021-08-11 11:06:01.2088 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1041. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1042. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1043. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1044. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1045. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1046. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1047. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1048. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1049. 2021-08-11 11:06:01.2178 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1050. 2021-08-11 11:06:01.2178 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1051. 2021-08-11 11:08:09.0118 Info: [source]:runtime,[msg]:Runtime 启动
  1052. 2021-08-11 11:08:09.1458 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1053. 2021-08-11 11:08:09.4628 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1054. 2021-08-11 11:08:09.4768 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1055. 2021-08-11 11:08:09.4988 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1056. 2021-08-11 11:08:09.4988 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1057. 2021-08-11 11:08:09.5068 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1058. 2021-08-11 11:08:09.5068 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1059. 2021-08-11 11:08:09.5068 Info: [source]:runtime,[msg]:Runtime 启动完成
  1060. 2021-08-11 11:08:17.9008 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1061. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1062. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1063. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1064. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1065. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1066. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1067. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1068. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1069. 2021-08-11 11:08:17.9008 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1070. 2021-08-11 11:08:17.9008 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1071. 2021-08-11 11:10:00.8118 Info: [source]:runtime,[msg]:Runtime 启动
  1072. 2021-08-11 11:10:00.9558 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1073. 2021-08-11 11:10:01.2688 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1074. 2021-08-11 11:10:01.2828 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1075. 2021-08-11 11:10:01.3028 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1076. 2021-08-11 11:10:01.3028 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1077. 2021-08-11 11:10:01.3028 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1078. 2021-08-11 11:10:01.3028 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1079. 2021-08-11 11:10:01.3028 Info: [source]:runtime,[msg]:Runtime 启动完成
  1080. 2021-08-11 11:10:09.7198 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1081. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1082. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1083. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1084. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1085. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1086. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1087. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1088. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1089. 2021-08-11 11:10:09.7288 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1090. 2021-08-11 11:10:09.7288 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1091. 2021-08-11 11:10:37.5338 Info: [source]:runtime,[msg]:Runtime 启动
  1092. 2021-08-11 11:10:37.6968 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1093. 2021-08-11 11:10:38.0698 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1094. 2021-08-11 11:10:38.0868 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1095. 2021-08-11 11:10:38.1138 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1096. 2021-08-11 11:10:38.1138 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1097. 2021-08-11 11:10:38.1138 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1098. 2021-08-11 11:10:38.1138 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1099. 2021-08-11 11:10:38.1138 Info: [source]:runtime,[msg]:Runtime 启动完成
  1100. 2021-08-11 11:10:42.9428 Info: [source]:runtime,[msg]:AppHost 停止插件
  1101. 2021-08-11 11:10:42.9428 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  1102. 2021-08-11 11:10:42.9428 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  1103. 2021-08-11 11:10:42.9428 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  1104. 2021-08-11 11:10:42.9428 Info: [source]:runtime,[msg]:Runtime 关闭
  1105. 2021-08-11 11:10:54.4858 Info: [source]:runtime,[msg]:Runtime 启动
  1106. 2021-08-11 11:10:54.6258 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1107. 2021-08-11 11:10:54.9958 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1108. 2021-08-11 11:10:55.0148 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1109. 2021-08-11 11:10:55.0438 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1110. 2021-08-11 11:10:55.0438 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1111. 2021-08-11 11:10:55.0438 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1112. 2021-08-11 11:10:55.0438 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1113. 2021-08-11 11:10:55.0438 Info: [source]:runtime,[msg]:Runtime 启动完成
  1114. 2021-08-11 11:11:00.0228 Info: [source]:runtime,[msg]:AppHost 停止插件
  1115. 2021-08-11 11:11:00.0228 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  1116. 2021-08-11 11:11:00.0228 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  1117. 2021-08-11 11:11:00.0228 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  1118. 2021-08-11 11:11:00.0228 Info: [source]:runtime,[msg]:Runtime 关闭
  1119. 2021-08-11 11:11:13.3888 Info: [source]:runtime,[msg]:Runtime 启动
  1120. 2021-08-11 11:11:13.5158 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1121. 2021-08-11 11:11:13.8058 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1122. 2021-08-11 11:11:13.8228 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1123. 2021-08-11 11:11:13.8448 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1124. 2021-08-11 11:11:13.8558 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1125. 2021-08-11 11:11:13.8558 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1126. 2021-08-11 11:11:13.8558 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1127. 2021-08-11 11:11:13.8558 Info: [source]:runtime,[msg]:Runtime 启动完成
  1128. 2021-08-11 11:11:22.1368 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1129. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1130. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1131. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1132. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1133. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1134. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1135. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1136. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1137. 2021-08-11 11:11:22.1368 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1138. 2021-08-11 11:11:22.1368 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1139. 2021-08-11 11:13:05.2708 Info: [source]:runtime,[msg]:Runtime 启动
  1140. 2021-08-11 11:13:05.4118 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1141. 2021-08-11 11:13:05.7328 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1142. 2021-08-11 11:13:05.7478 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1143. 2021-08-11 11:13:05.7688 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1144. 2021-08-11 11:13:05.7688 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1145. 2021-08-11 11:13:05.7688 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1146. 2021-08-11 11:13:05.7688 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1147. 2021-08-11 11:13:05.7688 Info: [source]:runtime,[msg]:Runtime 启动完成
  1148. 2021-08-11 11:13:13.9638 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1149. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1150. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1151. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1152. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1153. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1154. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1155. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1156. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1157. 2021-08-11 11:13:13.9638 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1158. 2021-08-11 11:13:13.9638 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1159. 2021-08-11 11:13:44.5738 Info: [source]:runtime,[msg]:AppHost 停止插件
  1160. 2021-08-11 11:13:44.5738 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  1161. 2021-08-11 11:13:44.5738 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  1162. 2021-08-11 11:13:44.5738 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  1163. 2021-08-11 11:13:44.5738 Info: [source]:runtime,[msg]:Runtime 关闭
  1164. 2021-08-11 11:17:29.6768 Info: [source]:runtime,[msg]:Runtime 启动
  1165. 2021-08-11 11:17:29.8228 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1166. 2021-08-11 11:17:30.1698 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1167. 2021-08-11 11:17:30.1878 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1168. 2021-08-11 11:17:30.2128 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1169. 2021-08-11 11:17:30.2128 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1170. 2021-08-11 11:17:30.2218 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1171. 2021-08-11 11:17:30.2218 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1172. 2021-08-11 11:17:30.2218 Info: [source]:runtime,[msg]:Runtime 启动完成
  1173. 2021-08-11 11:17:38.5128 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1174. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1175. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1176. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1177. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1178. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1179. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1180. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1181. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1182. 2021-08-11 11:17:38.5218 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1183. 2021-08-11 11:17:38.5218 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1184. 2021-08-11 11:38:32.3188 Info: [source]:runtime,[msg]:Runtime 启动
  1185. 2021-08-11 11:38:32.4808 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1186. 2021-08-11 11:38:32.7998 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1187. 2021-08-11 11:38:32.8558 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1188. 2021-08-11 11:38:32.8898 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1189. 2021-08-11 11:38:32.8968 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1190. 2021-08-11 11:38:32.8968 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1191. 2021-08-11 11:38:32.8968 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1192. 2021-08-11 11:38:32.8968 Info: [source]:runtime,[msg]:Runtime 启动完成
  1193. 2021-08-11 11:38:41.1458 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1194. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1195. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1196. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1197. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1198. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1199. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1200. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1201. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1202. 2021-08-11 11:38:41.1458 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1203. 2021-08-11 11:38:41.1458 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1204. 2021-08-11 11:45:28.4648 Info: [source]:runtime,[msg]:Runtime 启动
  1205. 2021-08-11 11:45:28.6568 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1206. 2021-08-11 11:45:29.0258 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1207. 2021-08-11 11:45:29.0628 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1208. 2021-08-11 11:45:29.0878 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1209. 2021-08-11 11:45:29.0948 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1210. 2021-08-11 11:45:29.0948 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1211. 2021-08-11 11:45:29.0948 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1212. 2021-08-11 11:45:29.0948 Info: [source]:runtime,[msg]:Runtime 启动完成
  1213. 2021-08-11 11:45:37.3218 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1214. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1215. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1216. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1217. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1218. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1219. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1220. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1221. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1222. 2021-08-11 11:45:37.3258 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1223. 2021-08-11 11:45:37.3258 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1224. 2021-08-11 11:50:51.9948 Info: [source]:runtime,[msg]:Runtime 启动
  1225. 2021-08-11 11:50:52.1758 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1226. 2021-08-11 11:50:52.6318 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1227. 2021-08-11 11:50:52.6488 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1228. 2021-08-11 11:50:52.6758 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1229. 2021-08-11 11:50:52.6818 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1230. 2021-08-11 11:50:52.6818 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1231. 2021-08-11 11:50:52.6818 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1232. 2021-08-11 11:50:52.6818 Info: [source]:runtime,[msg]:Runtime 启动完成
  1233. 2021-08-11 11:51:01.1088 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1234. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1235. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1236. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1237. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1238. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1239. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1240. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1241. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1242. 2021-08-11 11:51:01.1088 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1243. 2021-08-11 11:51:01.1088 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1244. 2021-08-11 13:35:50.2868 Info: [source]:runtime,[msg]:Runtime 启动
  1245. 2021-08-11 13:35:50.4398 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1246. 2021-08-11 13:35:50.7658 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1247. 2021-08-11 13:35:50.7848 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1248. 2021-08-11 13:35:50.8118 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1249. 2021-08-11 13:35:50.8178 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1250. 2021-08-11 13:35:50.8178 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1251. 2021-08-11 13:35:50.8178 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1252. 2021-08-11 13:35:50.8178 Info: [source]:runtime,[msg]:Runtime 启动完成
  1253. 2021-08-11 13:35:59.0438 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1254. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1255. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1256. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1257. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1258. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1259. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1260. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1261. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1262. 2021-08-11 13:35:59.0438 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1263. 2021-08-11 13:35:59.0438 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1264. 2021-08-11 13:59:52.4918 Info: [source]:runtime,[msg]:Runtime 启动
  1265. 2021-08-11 13:59:52.6398 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1266. 2021-08-11 13:59:52.9798 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1267. 2021-08-11 13:59:52.9938 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1268. 2021-08-11 13:59:53.0178 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1269. 2021-08-11 13:59:53.0178 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1270. 2021-08-11 13:59:53.0178 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1271. 2021-08-11 13:59:53.0178 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1272. 2021-08-11 13:59:53.0178 Info: [source]:runtime,[msg]:Runtime 启动完成
  1273. 2021-08-11 14:00:01.3778 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1274. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1275. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1276. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1277. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1278. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1279. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1280. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1281. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1282. 2021-08-11 14:00:01.3778 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1283. 2021-08-11 14:00:01.3778 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1284. 2021-08-11 14:13:23.8608 Info: [source]:runtime,[msg]:Runtime 启动
  1285. 2021-08-11 14:13:23.9978 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1286. 2021-08-11 14:13:24.3268 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1287. 2021-08-11 14:13:24.3408 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1288. 2021-08-11 14:13:24.3778 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1289. 2021-08-11 14:13:24.3778 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1290. 2021-08-11 14:13:24.3778 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1291. 2021-08-11 14:13:24.3778 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1292. 2021-08-11 14:13:24.3778 Info: [source]:runtime,[msg]:Runtime 启动完成
  1293. 2021-08-11 14:13:32.6948 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1294. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1295. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1296. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1297. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1298. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1299. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1300. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1301. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1302. 2021-08-11 14:13:32.6948 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1303. 2021-08-11 14:13:32.6948 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1304. 2021-08-11 14:26:38.5338 Info: [source]:runtime,[msg]:Runtime 启动
  1305. 2021-08-11 14:26:38.6888 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1306. 2021-08-11 14:26:39.1398 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1307. 2021-08-11 14:26:39.1738 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1308. 2021-08-11 14:26:39.2018 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1309. 2021-08-11 14:26:39.2018 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1310. 2021-08-11 14:26:39.2018 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1311. 2021-08-11 14:26:39.2018 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1312. 2021-08-11 14:26:39.2018 Info: [source]:runtime,[msg]:Runtime 启动完成
  1313. 2021-08-11 14:26:48.2838 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1314. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1315. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1316. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1317. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1318. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1319. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1320. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1321. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1322. 2021-08-11 14:26:48.2838 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1323. 2021-08-11 14:26:48.2838 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1324. 2021-08-11 14:28:27.1748 Info: [source]:runtime,[msg]:Runtime 启动
  1325. 2021-08-11 14:28:27.3088 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1326. 2021-08-11 14:28:27.5778 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1327. 2021-08-11 14:28:27.5968 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1328. 2021-08-11 14:28:27.6738 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1329. 2021-08-11 14:28:27.6738 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1330. 2021-08-11 14:28:27.6738 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1331. 2021-08-11 14:28:27.6838 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1332. 2021-08-11 14:28:27.6838 Info: [source]:runtime,[msg]:Runtime 启动完成
  1333. 2021-08-11 14:28:36.6008 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1334. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1335. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1336. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1337. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1338. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1339. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1340. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1341. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1342. 2021-08-11 14:28:36.6068 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1343. 2021-08-11 14:28:36.6068 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1344. 2021-08-11 14:33:04.2148 Info: [source]:runtime,[msg]:AppHost 停止插件
  1345. 2021-08-11 14:33:04.2148 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  1346. 2021-08-11 14:33:04.2148 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  1347. 2021-08-11 14:33:04.2148 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  1348. 2021-08-11 14:33:04.2148 Info: [source]:runtime,[msg]:Runtime 关闭
  1349. 2021-08-11 14:33:39.6078 Info: [source]:runtime,[msg]:Runtime 启动
  1350. 2021-08-11 14:33:39.8348 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1351. 2021-08-11 14:33:40.0718 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1352. 2021-08-11 14:33:40.0878 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1353. 2021-08-11 14:33:40.1128 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1354. 2021-08-11 14:33:40.1128 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1355. 2021-08-11 14:33:40.1128 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1356. 2021-08-11 14:33:40.1228 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1357. 2021-08-11 14:33:40.1228 Info: [source]:runtime,[msg]:Runtime 启动完成
  1358. 2021-08-11 14:33:48.3728 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1359. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1360. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1361. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1362. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1363. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1364. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1365. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1366. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1367. 2021-08-11 14:33:48.3818 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1368. 2021-08-11 14:33:48.3818 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1369. 2021-08-11 14:47:41.1388 Info: [source]:runtime,[msg]:Runtime 启动
  1370. 2021-08-11 14:47:41.2998 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1371. 2021-08-11 14:47:41.5978 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1372. 2021-08-11 14:47:41.6158 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1373. 2021-08-11 14:47:41.7138 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1374. 2021-08-11 14:47:41.7218 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1375. 2021-08-11 14:47:41.7218 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1376. 2021-08-11 14:47:41.7218 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1377. 2021-08-11 14:47:41.7218 Info: [source]:runtime,[msg]:Runtime 启动完成
  1378. 2021-08-11 14:47:50.0798 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1379. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1380. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1381. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1382. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1383. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1384. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1385. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1386. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1387. 2021-08-11 14:47:50.0798 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1388. 2021-08-11 14:47:50.0798 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1389. 2021-08-11 14:50:20.4708 Info: [source]:runtime,[msg]:Runtime 启动
  1390. 2021-08-11 14:50:20.6168 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1391. 2021-08-11 14:50:20.9188 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1392. 2021-08-11 14:50:20.9528 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1393. 2021-08-11 14:50:20.9918 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1394. 2021-08-11 14:50:20.9988 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1395. 2021-08-11 14:50:20.9988 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1396. 2021-08-11 14:50:20.9988 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1397. 2021-08-11 14:50:20.9988 Info: [source]:runtime,[msg]:Runtime 启动完成
  1398. 2021-08-11 14:50:29.2838 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1399. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1400. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1401. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1402. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1403. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1404. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1405. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1406. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1407. 2021-08-11 14:50:29.2838 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1408. 2021-08-11 14:50:29.2928 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1409. 2021-08-11 14:51:46.7378 Info: [source]:runtime,[msg]:Runtime 启动
  1410. 2021-08-11 14:51:46.8938 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1411. 2021-08-11 14:51:47.1818 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1412. 2021-08-11 14:51:47.2058 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1413. 2021-08-11 14:51:47.2378 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1414. 2021-08-11 14:51:47.2378 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1415. 2021-08-11 14:51:47.2378 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1416. 2021-08-11 14:51:47.2468 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1417. 2021-08-11 14:51:47.2468 Info: [source]:runtime,[msg]:Runtime 启动完成
  1418. 2021-08-11 14:51:55.6498 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1419. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1420. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1421. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1422. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1423. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1424. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1425. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1426. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1427. 2021-08-11 14:51:55.6588 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1428. 2021-08-11 14:51:55.6588 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1429. 2021-08-11 15:08:32.3138 Info: [source]:runtime,[msg]:Runtime 启动
  1430. 2021-08-11 15:08:32.5058 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1431. 2021-08-11 15:08:32.8358 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1432. 2021-08-11 15:08:32.8508 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1433. 2021-08-11 15:08:32.8738 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1434. 2021-08-11 15:08:32.8818 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1435. 2021-08-11 15:08:32.8818 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1436. 2021-08-11 15:08:32.8818 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1437. 2021-08-11 15:08:32.8818 Info: [source]:runtime,[msg]:Runtime 启动完成
  1438. 2021-08-11 15:08:41.0538 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1439. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1440. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1441. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1442. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1443. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1444. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1445. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1446. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1447. 2021-08-11 15:08:41.0538 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1448. 2021-08-11 15:08:41.0538 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1449. 2021-08-11 15:10:05.7198 Info: [source]:runtime,[msg]:Runtime 启动
  1450. 2021-08-11 15:10:05.9278 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1451. 2021-08-11 15:10:06.3358 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1452. 2021-08-11 15:10:06.3608 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1453. 2021-08-11 15:10:06.3848 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1454. 2021-08-11 15:10:06.3848 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1455. 2021-08-11 15:10:06.3848 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1456. 2021-08-11 15:10:06.3848 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1457. 2021-08-11 15:10:06.3848 Info: [source]:runtime,[msg]:Runtime 启动完成
  1458. 2021-08-11 15:10:14.6628 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1459. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1460. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1461. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1462. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1463. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1464. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1465. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1466. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1467. 2021-08-11 15:10:14.6738 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1468. 2021-08-11 15:10:14.6738 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1469. 2021-08-11 15:33:00.0308 Info: [source]:runtime,[msg]:Runtime 启动
  1470. 2021-08-11 15:33:00.1718 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1471. 2021-08-11 15:33:00.4648 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1472. 2021-08-11 15:33:00.4798 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1473. 2021-08-11 15:33:00.5078 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1474. 2021-08-11 15:33:00.5078 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1475. 2021-08-11 15:33:00.5078 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1476. 2021-08-11 15:33:00.5178 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1477. 2021-08-11 15:33:00.5178 Info: [source]:runtime,[msg]:Runtime 启动完成
  1478. 2021-08-11 15:33:08.7538 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1479. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1480. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1481. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1482. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1483. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1484. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1485. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1486. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1487. 2021-08-11 15:33:08.7618 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1488. 2021-08-11 15:33:08.7618 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1489. 2021-08-11 15:40:09.7318 Info: [source]:runtime,[msg]:Runtime 启动
  1490. 2021-08-11 15:40:09.8808 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1491. 2021-08-11 15:40:10.2428 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1492. 2021-08-11 15:40:10.2588 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1493. 2021-08-11 15:40:10.2798 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1494. 2021-08-11 15:40:10.2868 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1495. 2021-08-11 15:40:10.2868 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1496. 2021-08-11 15:40:10.2868 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1497. 2021-08-11 15:40:10.2868 Info: [source]:runtime,[msg]:Runtime 启动完成
  1498. 2021-08-11 15:40:18.7998 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1499. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1500. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1501. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1502. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1503. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1504. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1505. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1506. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1507. 2021-08-11 15:40:18.8068 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1508. 2021-08-11 15:40:18.8068 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1509. 2021-08-11 15:42:10.4338 Info: [source]:runtime,[msg]:Runtime 启动
  1510. 2021-08-11 15:42:10.6288 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1511. 2021-08-11 15:42:10.8758 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1512. 2021-08-11 15:42:10.8908 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1513. 2021-08-11 15:42:10.9128 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1514. 2021-08-11 15:42:10.9128 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1515. 2021-08-11 15:42:10.9208 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1516. 2021-08-11 15:42:10.9208 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1517. 2021-08-11 15:42:10.9208 Info: [source]:runtime,[msg]:Runtime 启动完成
  1518. 2021-08-11 15:42:19.5688 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1519. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1520. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1521. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1522. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1523. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1524. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1525. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1526. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1527. 2021-08-11 15:42:19.5688 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1528. 2021-08-11 15:42:19.5788 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1529. 2021-08-11 15:46:00.2548 Info: [source]:runtime,[msg]:Runtime 启动
  1530. 2021-08-11 15:46:00.3838 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1531. 2021-08-11 15:46:00.6608 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1532. 2021-08-11 15:46:00.6758 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1533. 2021-08-11 15:46:00.6958 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1534. 2021-08-11 15:46:00.6958 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1535. 2021-08-11 15:46:00.6958 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1536. 2021-08-11 15:46:00.6958 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1537. 2021-08-11 15:46:00.6958 Info: [source]:runtime,[msg]:Runtime 启动完成
  1538. 2021-08-11 15:46:08.9148 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1539. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1540. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1541. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1542. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1543. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1544. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1545. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1546. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1547. 2021-08-11 15:46:08.9248 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1548. 2021-08-11 15:46:08.9248 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1549. 2021-08-11 15:46:41.3828 Info: [source]:runtime,[msg]:AppHost 停止插件
  1550. 2021-08-11 15:46:41.3828 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  1551. 2021-08-11 15:46:41.3828 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  1552. 2021-08-11 15:46:41.3828 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  1553. 2021-08-11 15:46:41.3828 Info: [source]:runtime,[msg]:Runtime 关闭
  1554. 2021-08-11 15:47:21.1008 Info: [source]:runtime,[msg]:Runtime 启动
  1555. 2021-08-11 15:47:21.2288 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1556. 2021-08-11 15:47:21.5998 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1557. 2021-08-11 15:47:21.6548 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1558. 2021-08-11 15:47:21.7088 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1559. 2021-08-11 15:47:21.7088 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1560. 2021-08-11 15:47:21.7088 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1561. 2021-08-11 15:47:21.7088 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1562. 2021-08-11 15:47:21.7088 Info: [source]:runtime,[msg]:Runtime 启动完成
  1563. 2021-08-11 15:47:30.1498 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1564. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1565. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1566. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1567. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1568. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1569. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1570. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1571. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1572. 2021-08-11 15:47:30.1498 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1573. 2021-08-11 15:47:30.1498 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1574. 2021-08-11 15:48:55.8798 Info: [source]:runtime,[msg]:AppHost 停止插件
  1575. 2021-08-11 15:48:55.8798 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  1576. 2021-08-11 15:48:55.8798 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  1577. 2021-08-11 15:48:55.8848 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  1578. 2021-08-11 15:48:55.8848 Info: [source]:runtime,[msg]:Runtime 关闭
  1579. 2021-08-11 15:52:21.2778 Info: [source]:runtime,[msg]:Runtime 启动
  1580. 2021-08-11 15:52:21.4188 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1581. 2021-08-11 15:52:21.7558 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1582. 2021-08-11 15:52:21.7708 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1583. 2021-08-11 15:52:21.7928 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1584. 2021-08-11 15:52:21.7928 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1585. 2021-08-11 15:52:21.7928 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1586. 2021-08-11 15:52:21.7928 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1587. 2021-08-11 15:52:21.7928 Info: [source]:runtime,[msg]:Runtime 启动完成
  1588. 2021-08-11 15:52:26.8108 Info: [source]:runtime,[msg]:AppHost 停止插件
  1589. 2021-08-11 15:52:26.8108 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  1590. 2021-08-11 15:52:26.8138 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  1591. 2021-08-11 15:52:26.8138 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  1592. 2021-08-11 15:52:26.8138 Info: [source]:runtime,[msg]:Runtime 关闭
  1593. 2021-08-11 15:53:12.3768 Info: [source]:runtime,[msg]:Runtime 启动
  1594. 2021-08-11 15:53:12.5738 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1595. 2021-08-11 15:53:12.9418 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1596. 2021-08-11 15:53:12.9978 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1597. 2021-08-11 15:53:13.0458 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1598. 2021-08-11 15:53:13.0528 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1599. 2021-08-11 15:53:13.0528 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1600. 2021-08-11 15:53:13.0528 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1601. 2021-08-11 15:53:13.0528 Info: [source]:runtime,[msg]:Runtime 启动完成
  1602. 2021-08-11 15:53:21.4308 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1603. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1604. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1605. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1606. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1607. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1608. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1609. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1610. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1611. 2021-08-11 15:53:21.4308 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1612. 2021-08-11 15:53:21.4308 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1613. 2021-08-11 16:06:50.2738 Info: [source]:runtime,[msg]:Runtime 启动
  1614. 2021-08-11 16:06:50.4218 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1615. 2021-08-11 16:06:50.7408 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1616. 2021-08-11 16:06:50.7548 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1617. 2021-08-11 16:06:50.7768 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1618. 2021-08-11 16:06:50.7818 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1619. 2021-08-11 16:06:50.7818 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1620. 2021-08-11 16:06:50.7818 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1621. 2021-08-11 16:06:50.7818 Info: [source]:runtime,[msg]:Runtime 启动完成
  1622. 2021-08-11 16:06:59.0568 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1623. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1624. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1625. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1626. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1627. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1628. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1629. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1630. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1631. 2021-08-11 16:06:59.0638 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1632. 2021-08-11 16:06:59.0638 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1633. 2021-08-11 16:08:37.9358 Info: [source]:runtime,[msg]:Runtime 启动
  1634. 2021-08-11 16:08:38.0718 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1635. 2021-08-11 16:08:38.3808 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1636. 2021-08-11 16:08:38.3978 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1637. 2021-08-11 16:08:38.4298 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1638. 2021-08-11 16:08:38.4358 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1639. 2021-08-11 16:08:38.4358 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1640. 2021-08-11 16:08:38.4358 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1641. 2021-08-11 16:08:38.4358 Info: [source]:runtime,[msg]:Runtime 启动完成
  1642. 2021-08-11 16:08:46.6638 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1643. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1644. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1645. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1646. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1647. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1648. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1649. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1650. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1651. 2021-08-11 16:08:46.6728 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1652. 2021-08-11 16:08:46.6728 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1653. 2021-08-11 16:10:14.2598 Info: [source]:runtime,[msg]:Runtime 启动
  1654. 2021-08-11 16:10:14.3968 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1655. 2021-08-11 16:10:14.6528 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1656. 2021-08-11 16:10:14.6688 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1657. 2021-08-11 16:10:14.6928 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1658. 2021-08-11 16:10:14.6928 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1659. 2021-08-11 16:10:14.6928 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1660. 2021-08-11 16:10:14.7018 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1661. 2021-08-11 16:10:14.7018 Info: [source]:runtime,[msg]:Runtime 启动完成
  1662. 2021-08-11 16:10:22.9548 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1663. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1664. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1665. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1666. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1667. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1668. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1669. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1670. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1671. 2021-08-11 16:10:22.9548 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1672. 2021-08-11 16:10:22.9548 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1673. 2021-08-11 16:10:43.5528 Info: [source]:runtime,[msg]:AppHost 停止插件
  1674. 2021-08-11 16:10:43.5528 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  1675. 2021-08-11 16:10:43.5528 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  1676. 2021-08-11 16:10:43.5528 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  1677. 2021-08-11 16:10:43.5528 Info: [source]:runtime,[msg]:Runtime 关闭
  1678. 2021-08-11 16:17:46.7288 Info: [source]:runtime,[msg]:Runtime 启动
  1679. 2021-08-11 16:17:46.8878 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1680. 2021-08-11 16:17:47.1798 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1681. 2021-08-11 16:17:47.2638 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1682. 2021-08-11 16:17:47.2878 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1683. 2021-08-11 16:17:47.2938 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1684. 2021-08-11 16:17:47.2938 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1685. 2021-08-11 16:17:47.2938 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1686. 2021-08-11 16:17:47.2938 Info: [source]:runtime,[msg]:Runtime 启动完成
  1687. 2021-08-11 16:17:55.6688 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1688. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1689. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1690. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1691. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1692. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1693. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1694. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1695. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1696. 2021-08-11 16:17:55.6688 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1697. 2021-08-11 16:17:55.6688 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1698. 2021-08-11 16:19:51.1568 Info: [source]:runtime,[msg]:AppHost 停止插件
  1699. 2021-08-11 16:19:51.1568 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  1700. 2021-08-11 16:19:51.1568 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  1701. 2021-08-11 16:19:51.1568 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  1702. 2021-08-11 16:19:51.1568 Info: [source]:runtime,[msg]:Runtime 关闭
  1703. 2021-08-11 16:20:18.5968 Info: [source]:runtime,[msg]:Runtime 启动
  1704. 2021-08-11 16:20:18.7508 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1705. 2021-08-11 16:20:19.0328 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1706. 2021-08-11 16:20:19.0488 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1707. 2021-08-11 16:20:19.0718 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1708. 2021-08-11 16:20:19.0718 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1709. 2021-08-11 16:20:19.0718 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1710. 2021-08-11 16:20:19.0808 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1711. 2021-08-11 16:20:19.0808 Info: [source]:runtime,[msg]:Runtime 启动完成
  1712. 2021-08-11 16:20:27.2868 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1713. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1714. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1715. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1716. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1717. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1718. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1719. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1720. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1721. 2021-08-11 16:20:27.2868 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1722. 2021-08-11 16:20:27.2868 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1723. 2021-08-11 16:22:02.4488 Info: [source]:runtime,[msg]:AppHost 停止插件
  1724. 2021-08-11 16:22:02.4488 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  1725. 2021-08-11 16:22:02.4488 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  1726. 2021-08-11 16:22:02.4488 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  1727. 2021-08-11 16:22:02.4488 Info: [source]:runtime,[msg]:Runtime 关闭
  1728. 2021-08-11 16:28:05.2508 Info: [source]:runtime,[msg]:Runtime 启动
  1729. 2021-08-11 16:28:05.4608 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1730. 2021-08-11 16:28:05.9648 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1731. 2021-08-11 16:28:05.9968 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1732. 2021-08-11 16:28:06.0238 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1733. 2021-08-11 16:28:06.0238 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1734. 2021-08-11 16:28:06.0238 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1735. 2021-08-11 16:28:06.0238 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1736. 2021-08-11 16:28:06.0238 Info: [source]:runtime,[msg]:Runtime 启动完成
  1737. 2021-08-11 16:28:14.5678 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1738. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1739. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1740. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1741. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1742. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1743. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1744. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1745. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1746. 2021-08-11 16:28:14.5748 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1747. 2021-08-11 16:28:14.5748 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1748. 2021-08-11 16:28:56.8708 Info: [source]:runtime,[msg]:Runtime 启动
  1749. 2021-08-11 16:28:57.0218 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1750. 2021-08-11 16:28:57.4008 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1751. 2021-08-11 16:28:57.4298 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1752. 2021-08-11 16:28:57.4678 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1753. 2021-08-11 16:28:57.4818 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1754. 2021-08-11 16:28:57.4818 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1755. 2021-08-11 16:28:57.4818 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1756. 2021-08-11 16:28:57.4818 Info: [source]:runtime,[msg]:Runtime 启动完成
  1757. 2021-08-11 16:29:20.1208 Info: [source]:runtime,[msg]:Runtime 启动
  1758. 2021-08-11 16:29:20.3088 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1759. 2021-08-11 16:29:20.5428 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1760. 2021-08-11 16:29:20.5588 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1761. 2021-08-11 16:29:20.5818 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1762. 2021-08-11 16:29:20.5818 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1763. 2021-08-11 16:29:20.5818 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1764. 2021-08-11 16:29:20.5818 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1765. 2021-08-11 16:29:20.5818 Info: [source]:runtime,[msg]:Runtime 启动完成
  1766. 2021-08-11 16:29:28.8478 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1767. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1768. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1769. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1770. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1771. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1772. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1773. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1774. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1775. 2021-08-11 16:29:28.8478 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1776. 2021-08-11 16:29:28.8478 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1777. 2021-08-11 16:29:50.7678 Info: [source]:runtime,[msg]:AppHost 停止插件
  1778. 2021-08-11 16:29:50.7678 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  1779. 2021-08-11 16:29:50.7678 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  1780. 2021-08-11 16:29:50.7678 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  1781. 2021-08-11 16:29:50.7678 Info: [source]:runtime,[msg]:Runtime 关闭
  1782. 2021-08-11 16:30:52.2138 Info: [source]:runtime,[msg]:Runtime 启动
  1783. 2021-08-11 16:30:52.3618 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1784. 2021-08-11 16:30:52.6458 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1785. 2021-08-11 16:30:52.6678 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1786. 2021-08-11 16:30:52.6898 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1787. 2021-08-11 16:30:52.6948 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1788. 2021-08-11 16:30:52.6948 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1789. 2021-08-11 16:30:52.6948 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1790. 2021-08-11 16:30:52.6948 Info: [source]:runtime,[msg]:Runtime 启动完成
  1791. 2021-08-11 16:31:01.0808 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1792. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1793. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1794. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1795. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1796. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1797. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1798. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1799. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1800. 2021-08-11 16:31:01.0918 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1801. 2021-08-11 16:31:01.0918 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1802. 2021-08-11 16:31:44.2738 Info: [source]:runtime,[msg]:AppHost 停止插件
  1803. 2021-08-11 16:31:44.2738 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  1804. 2021-08-11 16:31:44.2738 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  1805. 2021-08-11 16:31:44.2848 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  1806. 2021-08-11 16:31:44.2848 Info: [source]:runtime,[msg]:Runtime 关闭
  1807. 2021-08-11 17:15:46.0668 Info: [source]:runtime,[msg]:Runtime 启动
  1808. 2021-08-11 17:15:46.2178 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1809. 2021-08-11 17:15:46.6528 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1810. 2021-08-11 17:15:46.6958 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1811. 2021-08-11 17:15:46.7268 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1812. 2021-08-11 17:15:46.7268 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1813. 2021-08-11 17:15:46.7268 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1814. 2021-08-11 17:15:46.7268 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1815. 2021-08-11 17:15:46.7268 Info: [source]:runtime,[msg]:Runtime 启动完成
  1816. 2021-08-11 17:15:55.3938 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1817. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1818. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1819. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1820. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1821. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1822. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1823. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1824. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1825. 2021-08-11 17:15:55.4008 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1826. 2021-08-11 17:15:55.4008 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1827. 2021-08-11 17:20:19.0448 Info: [source]:runtime,[msg]:Runtime 启动
  1828. 2021-08-11 17:20:19.2338 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1829. 2021-08-11 17:20:19.5268 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1830. 2021-08-11 17:20:19.5438 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1831. 2021-08-11 17:20:19.5678 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1832. 2021-08-11 17:20:19.5748 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1833. 2021-08-11 17:20:19.5748 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1834. 2021-08-11 17:20:19.5748 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1835. 2021-08-11 17:20:19.5748 Info: [source]:runtime,[msg]:Runtime 启动完成
  1836. 2021-08-11 17:20:27.9248 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1837. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1838. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1839. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1840. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1841. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1842. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1843. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1844. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1845. 2021-08-11 17:20:27.9328 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1846. 2021-08-11 17:20:27.9328 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1847. 2021-08-11 17:21:56.3558 Info: [source]:runtime,[msg]:AppHost 停止插件
  1848. 2021-08-11 17:21:56.3558 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  1849. 2021-08-11 17:21:56.3558 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  1850. 2021-08-11 17:21:56.3558 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  1851. 2021-08-11 17:21:56.3558 Info: [source]:runtime,[msg]:Runtime 关闭
  1852. 2021-08-11 17:31:56.5668 Info: [source]:runtime,[msg]:Runtime 启动
  1853. 2021-08-11 17:31:56.7928 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1854. 2021-08-11 17:31:57.2078 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1855. 2021-08-11 17:31:57.2618 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1856. 2021-08-11 17:31:57.3218 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1857. 2021-08-11 17:31:57.3218 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1858. 2021-08-11 17:31:57.3308 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1859. 2021-08-11 17:31:57.3308 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1860. 2021-08-11 17:31:57.3308 Info: [source]:runtime,[msg]:Runtime 启动完成
  1861. 2021-08-11 17:32:05.9498 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1862. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1863. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1864. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1865. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1866. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1867. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1868. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1869. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1870. 2021-08-11 17:32:05.9588 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1871. 2021-08-11 17:32:05.9588 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1872. 2021-08-11 17:33:16.3668 Info: [source]:runtime,[msg]:Runtime 启动
  1873. 2021-08-11 17:33:16.5278 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1874. 2021-08-11 17:33:16.9168 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1875. 2021-08-11 17:33:16.9408 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1876. 2021-08-11 17:33:16.9958 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1877. 2021-08-11 17:33:17.0028 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1878. 2021-08-11 17:33:17.0028 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1879. 2021-08-11 17:33:17.0028 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1880. 2021-08-11 17:33:17.0028 Info: [source]:runtime,[msg]:Runtime 启动完成
  1881. 2021-08-11 17:33:25.5538 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1882. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1883. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1884. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1885. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1886. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1887. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1888. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1889. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1890. 2021-08-11 17:33:25.5538 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1891. 2021-08-11 17:33:25.5638 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1892. 2021-08-11 17:35:06.6598 Info: [source]:runtime,[msg]:Runtime 启动
  1893. 2021-08-11 17:35:06.8538 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1894. 2021-08-11 17:35:07.1358 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1895. 2021-08-11 17:35:07.1528 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1896. 2021-08-11 17:35:07.1748 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1897. 2021-08-11 17:35:07.1748 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1898. 2021-08-11 17:35:07.1748 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1899. 2021-08-11 17:35:07.1748 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1900. 2021-08-11 17:35:07.1748 Info: [source]:runtime,[msg]:Runtime 启动完成
  1901. 2021-08-11 17:35:15.4738 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1902. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1903. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1904. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1905. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1906. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1907. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1908. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1909. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1910. 2021-08-11 17:35:15.4738 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1911. 2021-08-11 17:35:15.4818 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1912. 2021-08-11 17:58:39.0118 Info: [source]:runtime,[msg]:Runtime 启动
  1913. 2021-08-11 17:58:39.1448 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1914. 2021-08-11 17:58:39.4718 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1915. 2021-08-11 17:58:39.4868 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1916. 2021-08-11 17:58:39.5118 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1917. 2021-08-11 17:58:39.5118 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1918. 2021-08-11 17:58:39.5118 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1919. 2021-08-11 17:58:39.5118 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1920. 2021-08-11 17:58:39.5118 Info: [source]:runtime,[msg]:Runtime 启动完成
  1921. 2021-08-11 17:58:47.7948 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1922. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1923. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1924. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1925. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1926. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1927. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1928. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1929. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1930. 2021-08-11 17:58:47.7948 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1931. 2021-08-11 17:58:47.7948 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1932. 2021-08-11 18:00:11.5338 Info: [source]:runtime,[msg]:Runtime 启动
  1933. 2021-08-11 18:00:11.7048 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1934. 2021-08-11 18:00:12.1458 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1935. 2021-08-11 18:00:12.1658 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1936. 2021-08-11 18:00:12.1878 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1937. 2021-08-11 18:00:12.1878 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1938. 2021-08-11 18:00:12.1878 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1939. 2021-08-11 18:00:12.1878 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1940. 2021-08-11 18:00:12.1878 Info: [source]:runtime,[msg]:Runtime 启动完成
  1941. 2021-08-11 18:00:20.6158 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1942. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1943. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1944. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1945. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1946. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1947. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1948. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1949. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1950. 2021-08-11 18:00:20.6158 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1951. 2021-08-11 18:00:20.6158 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1952. 2021-08-11 18:28:42.1198 Info: [source]:runtime,[msg]:Runtime 启动
  1953. 2021-08-11 18:28:42.2458 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1954. 2021-08-11 18:28:42.6918 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1955. 2021-08-11 18:28:42.7878 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1956. 2021-08-11 18:28:42.8128 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1957. 2021-08-11 18:28:42.8198 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1958. 2021-08-11 18:28:42.8198 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1959. 2021-08-11 18:28:42.8198 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1960. 2021-08-11 18:28:42.8198 Info: [source]:runtime,[msg]:Runtime 启动完成
  1961. 2021-08-11 18:28:51.4208 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1962. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1963. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1964. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1965. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1966. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1967. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1968. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1969. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1970. 2021-08-11 18:28:51.4268 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1971. 2021-08-11 18:28:51.4268 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1972. 2021-08-11 18:31:09.1148 Info: [source]:runtime,[msg]:Runtime 启动
  1973. 2021-08-11 18:31:09.2668 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1974. 2021-08-11 18:31:09.6088 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1975. 2021-08-11 18:31:09.6238 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1976. 2021-08-11 18:31:09.6438 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1977. 2021-08-11 18:31:09.6438 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1978. 2021-08-11 18:31:09.6438 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1979. 2021-08-11 18:31:09.6438 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  1980. 2021-08-11 18:31:09.6438 Info: [source]:runtime,[msg]:Runtime 启动完成
  1981. 2021-08-11 18:31:17.9418 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1982. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1983. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1984. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1985. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1986. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1987. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1988. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1989. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1990. 2021-08-11 18:31:17.9478 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1991. 2021-08-11 18:31:17.9478 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  1992. 2021-08-11 18:32:23.2168 Info: [source]:runtime,[msg]:AppHost 停止插件
  1993. 2021-08-11 18:32:23.2168 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  1994. 2021-08-11 18:32:23.2168 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  1995. 2021-08-11 18:32:23.2168 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  1996. 2021-08-11 18:32:23.2168 Info: [source]:runtime,[msg]:Runtime 关闭
  1997. 2021-08-12 09:19:28.0922 Info: [source]:runtime,[msg]:Runtime 启动
  1998. 2021-08-12 09:19:28.2412 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1999. 2021-08-12 09:19:28.5172 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2000. 2021-08-12 09:19:28.5352 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2001. 2021-08-12 09:19:28.6302 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2002. 2021-08-12 09:19:28.6302 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2003. 2021-08-12 09:19:28.6302 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2004. 2021-08-12 09:19:28.6302 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2005. 2021-08-12 09:19:28.6302 Info: [source]:runtime,[msg]:Runtime 启动完成
  2006. 2021-08-12 09:19:38.4022 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2007. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2008. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2009. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2010. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2011. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2012. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2013. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2014. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2015. 2021-08-12 09:19:38.4022 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2016. 2021-08-12 09:19:38.4122 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2017. 2021-08-12 09:23:47.2252 Info: [source]:runtime,[msg]:Runtime 启动
  2018. 2021-08-12 09:23:47.3742 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2019. 2021-08-12 09:23:47.7852 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2020. 2021-08-12 09:23:47.8042 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2021. 2021-08-12 09:23:47.8282 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2022. 2021-08-12 09:23:47.8282 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2023. 2021-08-12 09:23:47.8282 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2024. 2021-08-12 09:23:47.8282 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2025. 2021-08-12 09:23:47.8282 Info: [source]:runtime,[msg]:Runtime 启动完成
  2026. 2021-08-12 09:23:56.0502 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2027. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2028. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2029. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2030. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2031. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2032. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2033. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2034. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2035. 2021-08-12 09:23:56.0502 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2036. 2021-08-12 09:23:56.0502 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2037. 2021-08-12 09:26:08.3312 Info: [source]:runtime,[msg]:Runtime 启动
  2038. 2021-08-12 09:26:08.4782 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2039. 2021-08-12 09:26:08.8312 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2040. 2021-08-12 09:26:08.8472 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2041. 2021-08-12 09:26:08.8662 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2042. 2021-08-12 09:26:08.8722 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2043. 2021-08-12 09:26:08.8722 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2044. 2021-08-12 09:26:08.8722 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2045. 2021-08-12 09:26:08.8722 Info: [source]:runtime,[msg]:Runtime 启动完成
  2046. 2021-08-12 09:26:16.9772 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2047. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2048. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2049. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2050. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2051. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2052. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2053. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2054. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2055. 2021-08-12 09:26:16.9832 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2056. 2021-08-12 09:26:16.9832 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2057. 2021-08-12 09:28:50.3772 Info: [source]:runtime,[msg]:Runtime 启动
  2058. 2021-08-12 09:28:50.5822 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2059. 2021-08-12 09:28:51.0202 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2060. 2021-08-12 09:28:51.0392 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2061. 2021-08-12 09:28:51.0662 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2062. 2021-08-12 09:28:51.0662 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2063. 2021-08-12 09:28:51.0662 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2064. 2021-08-12 09:28:51.0772 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2065. 2021-08-12 09:28:51.0772 Info: [source]:runtime,[msg]:Runtime 启动完成
  2066. 2021-08-12 09:28:59.4232 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2067. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2068. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2069. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2070. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2071. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2072. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2073. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2074. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2075. 2021-08-12 09:28:59.4232 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2076. 2021-08-12 09:28:59.4232 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2077. 2021-08-12 09:32:48.5172 Info: [source]:runtime,[msg]:Runtime 启动
  2078. 2021-08-12 09:32:48.6822 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2079. 2021-08-12 09:32:48.9152 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2080. 2021-08-12 09:32:48.9292 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2081. 2021-08-12 09:32:48.9502 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2082. 2021-08-12 09:32:48.9502 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2083. 2021-08-12 09:32:48.9502 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2084. 2021-08-12 09:32:48.9502 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2085. 2021-08-12 09:32:48.9502 Info: [source]:runtime,[msg]:Runtime 启动完成
  2086. 2021-08-12 09:32:57.0922 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2087. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2088. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2089. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2090. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2091. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2092. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2093. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2094. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2095. 2021-08-12 09:32:57.0922 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2096. 2021-08-12 09:32:57.0922 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2097. 2021-08-12 09:36:30.0702 Info: [source]:runtime,[msg]:AppHost 停止插件
  2098. 2021-08-12 09:36:30.0702 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2099. 2021-08-12 09:36:30.0702 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2100. 2021-08-12 09:36:30.0702 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  2101. 2021-08-12 09:36:30.0702 Info: [source]:runtime,[msg]:Runtime 关闭
  2102. 2021-08-12 09:37:23.6982 Info: [source]:runtime,[msg]:Runtime 启动
  2103. 2021-08-12 09:37:23.9172 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2104. 2021-08-12 09:37:24.2872 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2105. 2021-08-12 09:37:24.3092 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2106. 2021-08-12 09:37:24.3352 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2107. 2021-08-12 09:37:24.3352 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2108. 2021-08-12 09:37:24.3352 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2109. 2021-08-12 09:37:24.3352 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2110. 2021-08-12 09:37:24.3352 Info: [source]:runtime,[msg]:Runtime 启动完成
  2111. 2021-08-12 09:37:32.7022 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2112. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2113. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2114. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2115. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2116. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2117. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2118. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2119. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2120. 2021-08-12 09:37:32.7022 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2121. 2021-08-12 09:37:32.7022 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2122. 2021-08-12 09:38:12.8242 Info: [source]:runtime,[msg]:AppHost 停止插件
  2123. 2021-08-12 09:38:12.8242 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2124. 2021-08-12 09:38:12.8242 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2125. 2021-08-12 09:38:12.8242 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  2126. 2021-08-12 09:38:12.8242 Info: [source]:runtime,[msg]:Runtime 关闭
  2127. 2021-08-12 09:40:44.0992 Info: [source]:runtime,[msg]:Runtime 启动
  2128. 2021-08-12 09:40:44.2852 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2129. 2021-08-12 09:40:44.6652 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2130. 2021-08-12 09:40:44.7402 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2131. 2021-08-12 09:40:44.8012 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2132. 2021-08-12 09:40:44.8012 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2133. 2021-08-12 09:40:44.8012 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2134. 2021-08-12 09:40:44.8012 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2135. 2021-08-12 09:40:44.8012 Info: [source]:runtime,[msg]:Runtime 启动完成
  2136. 2021-08-12 09:40:53.0852 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2137. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2138. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2139. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2140. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2141. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2142. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2143. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2144. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2145. 2021-08-12 09:40:53.0852 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2146. 2021-08-12 09:40:53.0852 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2147. 2021-08-12 09:48:46.3432 Info: [source]:runtime,[msg]:AppHost 停止插件
  2148. 2021-08-12 09:48:46.3432 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2149. 2021-08-12 09:48:46.3432 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2150. 2021-08-12 09:48:46.3432 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  2151. 2021-08-12 09:48:46.3432 Info: [source]:runtime,[msg]:Runtime 关闭
  2152. 2021-08-12 09:53:58.0582 Info: [source]:runtime,[msg]:Runtime 启动
  2153. 2021-08-12 09:53:58.2292 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2154. 2021-08-12 09:53:58.4782 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2155. 2021-08-12 09:53:58.4922 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2156. 2021-08-12 09:53:58.5112 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2157. 2021-08-12 09:53:58.5162 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2158. 2021-08-12 09:53:58.5162 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2159. 2021-08-12 09:53:58.5162 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2160. 2021-08-12 09:53:58.5162 Info: [source]:runtime,[msg]:Runtime 启动完成
  2161. 2021-08-12 09:54:06.6922 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2162. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2163. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2164. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2165. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2166. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2167. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2168. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2169. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2170. 2021-08-12 09:54:06.6922 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2171. 2021-08-12 09:54:06.6922 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2172. 2021-08-12 09:54:58.7442 Info: [source]:runtime,[msg]:Runtime 启动
  2173. 2021-08-12 09:54:58.9492 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2174. 2021-08-12 09:54:59.4032 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2175. 2021-08-12 09:54:59.4462 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2176. 2021-08-12 09:54:59.4852 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2177. 2021-08-12 09:54:59.4852 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2178. 2021-08-12 09:54:59.4852 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2179. 2021-08-12 09:54:59.4952 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2180. 2021-08-12 09:54:59.4952 Info: [source]:runtime,[msg]:Runtime 启动完成
  2181. 2021-08-12 09:55:07.7172 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2182. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2183. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2184. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2185. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2186. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2187. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2188. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2189. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2190. 2021-08-12 09:55:07.7172 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2191. 2021-08-12 09:55:07.7172 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2192. 2021-08-12 09:56:20.9582 Info: [source]:runtime,[msg]:AppHost 停止插件
  2193. 2021-08-12 09:56:20.9612 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2194. 2021-08-12 09:56:20.9612 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2195. 2021-08-12 09:56:20.9612 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  2196. 2021-08-12 09:56:20.9612 Info: [source]:runtime,[msg]:Runtime 关闭
  2197. 2021-08-12 10:34:24.0072 Info: [source]:runtime,[msg]:Runtime 启动
  2198. 2021-08-12 10:34:24.1572 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2199. 2021-08-12 10:34:24.4712 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2200. 2021-08-12 10:34:24.4712 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2201. 2021-08-12 10:34:24.4982 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2202. 2021-08-12 10:34:24.5022 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2203. 2021-08-12 10:34:24.5022 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2204. 2021-08-12 10:34:24.5022 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2205. 2021-08-12 10:34:24.5022 Info: [source]:runtime,[msg]:Runtime 启动完成
  2206. 2021-08-12 10:34:32.6272 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2207. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2208. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2209. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2210. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2211. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2212. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2213. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2214. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2215. 2021-08-12 10:34:32.6352 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2216. 2021-08-12 10:34:32.6352 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2217. 2021-08-12 10:37:23.4712 Info: [source]:runtime,[msg]:AppHost 停止插件
  2218. 2021-08-12 10:37:23.4712 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2219. 2021-08-12 10:37:23.4712 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2220. 2021-08-12 10:37:23.4712 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  2221. 2021-08-12 10:37:23.4712 Info: [source]:runtime,[msg]:Runtime 关闭
  2222. 2021-08-12 10:53:58.7282 Info: [source]:runtime,[msg]:Runtime 启动
  2223. 2021-08-12 10:53:58.9862 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2224. 2021-08-12 10:53:59.3182 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2225. 2021-08-12 10:53:59.3362 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2226. 2021-08-12 10:53:59.3532 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2227. 2021-08-12 10:53:59.3532 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2228. 2021-08-12 10:53:59.3612 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2229. 2021-08-12 10:53:59.3612 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2230. 2021-08-12 10:53:59.3612 Info: [source]:runtime,[msg]:Runtime 启动完成
  2231. 2021-08-12 10:54:07.5042 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2232. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2233. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2234. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2235. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2236. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2237. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2238. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2239. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2240. 2021-08-12 10:54:07.5042 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2241. 2021-08-12 10:54:07.5042 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2242. 2021-08-12 11:11:29.4362 Info: [source]:runtime,[msg]:Runtime 启动
  2243. 2021-08-12 11:11:29.6592 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2244. 2021-08-12 11:11:30.0202 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2245. 2021-08-12 11:11:30.1112 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2246. 2021-08-12 11:11:30.1292 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2247. 2021-08-12 11:11:30.1392 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2248. 2021-08-12 11:11:30.1392 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2249. 2021-08-12 11:11:30.1392 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2250. 2021-08-12 11:11:30.1392 Info: [source]:runtime,[msg]:Runtime 启动完成
  2251. 2021-08-12 11:11:38.4202 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2252. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2253. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2254. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2255. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2256. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2257. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2258. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2259. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2260. 2021-08-12 11:11:38.4202 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2261. 2021-08-12 11:11:38.4202 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2262. 2021-08-12 11:13:01.4262 Info: [source]:runtime,[msg]:AppHost 停止插件
  2263. 2021-08-12 11:13:01.4282 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2264. 2021-08-12 11:13:01.4282 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2265. 2021-08-12 11:13:01.4282 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  2266. 2021-08-12 11:13:01.4282 Info: [source]:runtime,[msg]:Runtime 关闭
  2267. 2021-08-12 11:18:06.4362 Info: [source]:runtime,[msg]:Runtime 启动
  2268. 2021-08-12 11:18:06.6932 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2269. 2021-08-12 11:18:07.1932 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2270. 2021-08-12 11:18:07.2332 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2271. 2021-08-12 11:18:07.2672 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2272. 2021-08-12 11:18:07.2732 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2273. 2021-08-12 11:18:07.2732 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2274. 2021-08-12 11:18:07.2732 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2275. 2021-08-12 11:18:07.2732 Info: [source]:runtime,[msg]:Runtime 启动完成
  2276. 2021-08-12 11:18:15.9952 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2277. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2278. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2279. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2280. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2281. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2282. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2283. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2284. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2285. 2021-08-12 11:18:15.9952 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2286. 2021-08-12 11:18:15.9952 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2287. 2021-08-12 11:18:45.0172 Info: [source]:runtime,[msg]:AppHost 停止插件
  2288. 2021-08-12 11:18:45.0172 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2289. 2021-08-12 11:18:45.0212 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2290. 2021-08-12 11:18:45.0212 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  2291. 2021-08-12 11:18:45.0212 Info: [source]:runtime,[msg]:Runtime 关闭
  2292. 2021-08-12 11:19:32.9392 Info: [source]:runtime,[msg]:Runtime 启动
  2293. 2021-08-12 11:19:33.0422 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2294. 2021-08-12 11:19:33.2702 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2295. 2021-08-12 11:19:33.2862 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2296. 2021-08-12 11:19:33.3002 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2297. 2021-08-12 11:19:33.3052 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2298. 2021-08-12 11:19:33.3052 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2299. 2021-08-12 11:19:33.3052 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2300. 2021-08-12 11:19:33.3052 Info: [source]:runtime,[msg]:Runtime 启动完成
  2301. 2021-08-12 11:19:41.3582 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2302. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2303. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2304. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2305. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2306. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2307. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2308. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2309. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2310. 2021-08-12 11:19:41.3682 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2311. 2021-08-12 11:19:41.3682 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2312. 2021-08-12 11:20:02.6152 Info: [source]:runtime,[msg]:AppHost 停止插件
  2313. 2021-08-12 11:20:02.6152 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2314. 2021-08-12 11:20:02.6152 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2315. 2021-08-12 11:20:02.6152 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  2316. 2021-08-12 11:20:02.6152 Info: [source]:runtime,[msg]:Runtime 关闭
  2317. 2021-08-12 11:21:35.8622 Info: [source]:runtime,[msg]:Runtime 启动
  2318. 2021-08-12 11:21:36.0052 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2319. 2021-08-12 11:21:36.3312 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2320. 2021-08-12 11:21:36.3462 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2321. 2021-08-12 11:21:36.3592 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2322. 2021-08-12 11:21:36.3592 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2323. 2021-08-12 11:21:36.3592 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2324. 2021-08-12 11:21:36.3592 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2325. 2021-08-12 11:21:36.3592 Info: [source]:runtime,[msg]:Runtime 启动完成
  2326. 2021-08-12 11:21:44.4042 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2327. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2328. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2329. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2330. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2331. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2332. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2333. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2334. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2335. 2021-08-12 11:21:44.4102 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2336. 2021-08-12 11:21:44.4102 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2337. 2021-08-12 11:22:12.9882 Info: [source]:runtime,[msg]:AppHost 停止插件
  2338. 2021-08-12 11:22:12.9882 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2339. 2021-08-12 11:22:12.9882 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2340. 2021-08-12 11:22:12.9882 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  2341. 2021-08-12 11:22:12.9882 Info: [source]:runtime,[msg]:Runtime 关闭
  2342. 2021-08-12 11:27:47.6562 Info: [source]:runtime,[msg]:Runtime 启动
  2343. 2021-08-12 11:27:47.7992 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2344. 2021-08-12 11:27:48.1222 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2345. 2021-08-12 11:27:48.1392 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2346. 2021-08-12 11:27:48.1532 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2347. 2021-08-12 11:27:48.1532 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2348. 2021-08-12 11:27:48.1532 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2349. 2021-08-12 11:27:48.1532 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2350. 2021-08-12 11:27:48.1532 Info: [source]:runtime,[msg]:Runtime 启动完成
  2351. 2021-08-12 11:27:54.8642 Info: [source]:runtime,[msg]:AppHost 停止插件
  2352. 2021-08-12 11:27:54.8642 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2353. 2021-08-12 11:27:54.8642 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2354. 2021-08-12 11:27:54.8642 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  2355. 2021-08-12 11:27:54.8642 Info: [source]:runtime,[msg]:Runtime 关闭
  2356. 2021-08-12 11:38:42.6942 Info: [source]:runtime,[msg]:Runtime 启动
  2357. 2021-08-12 11:38:42.8602 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2358. 2021-08-12 11:38:43.1182 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2359. 2021-08-12 11:38:43.1332 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2360. 2021-08-12 11:38:43.1472 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2361. 2021-08-12 11:38:43.1472 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2362. 2021-08-12 11:38:43.1472 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2363. 2021-08-12 11:38:43.1472 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2364. 2021-08-12 11:38:43.1552 Info: [source]:runtime,[msg]:Runtime 启动完成
  2365. 2021-08-12 11:38:51.3322 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2366. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2367. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2368. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2369. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2370. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2371. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2372. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2373. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2374. 2021-08-12 11:38:51.3322 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2375. 2021-08-12 11:38:51.3322 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2376. 2021-08-12 11:42:42.2692 Info: [source]:runtime,[msg]:Runtime 启动
  2377. 2021-08-12 11:42:42.4702 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2378. 2021-08-12 11:42:42.7552 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2379. 2021-08-12 11:42:42.7702 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2380. 2021-08-12 11:42:42.7842 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2381. 2021-08-12 11:42:42.7892 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2382. 2021-08-12 11:42:42.7892 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2383. 2021-08-12 11:42:42.7892 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2384. 2021-08-12 11:42:42.7892 Info: [source]:runtime,[msg]:Runtime 启动完成
  2385. 2021-08-12 11:42:51.0512 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2386. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2387. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2388. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2389. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2390. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2391. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2392. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2393. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2394. 2021-08-12 11:42:51.0572 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2395. 2021-08-12 11:42:51.0572 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2396. 2021-08-12 11:48:03.3352 Info: [source]:runtime,[msg]:AppHost 停止插件
  2397. 2021-08-12 11:48:03.3392 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2398. 2021-08-12 11:48:03.3392 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2399. 2021-08-12 11:48:03.3392 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  2400. 2021-08-12 11:48:03.3392 Info: [source]:runtime,[msg]:Runtime 关闭
  2401. 2021-08-12 11:48:59.0862 Info: [source]:runtime,[msg]:Runtime 启动
  2402. 2021-08-12 11:48:59.2622 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2403. 2021-08-12 11:48:59.4962 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2404. 2021-08-12 11:48:59.5122 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2405. 2021-08-12 11:48:59.5262 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2406. 2021-08-12 11:48:59.5312 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2407. 2021-08-12 11:48:59.5312 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2408. 2021-08-12 11:48:59.5312 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2409. 2021-08-12 11:48:59.5312 Info: [source]:runtime,[msg]:Runtime 启动完成
  2410. 2021-08-12 11:49:07.6312 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2411. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2412. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2413. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2414. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2415. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2416. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2417. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2418. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2419. 2021-08-12 11:49:07.6312 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2420. 2021-08-12 11:49:07.6312 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2421. 2021-08-12 11:49:55.4532 Info: [source]:runtime,[msg]:AppHost 停止插件
  2422. 2021-08-12 11:49:55.4532 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2423. 2021-08-12 11:49:55.4592 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2424. 2021-08-12 11:49:55.4592 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  2425. 2021-08-12 11:49:55.4592 Info: [source]:runtime,[msg]:Runtime 关闭
  2426. 2021-08-12 14:08:58.1222 Info: [source]:runtime,[msg]:Runtime 启动
  2427. 2021-08-12 14:08:58.2812 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2428. 2021-08-12 14:08:58.6152 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2429. 2021-08-12 14:08:58.6332 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2430. 2021-08-12 14:08:58.6482 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2431. 2021-08-12 14:08:58.6482 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2432. 2021-08-12 14:08:58.6482 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2433. 2021-08-12 14:08:58.6562 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2434. 2021-08-12 14:08:58.6562 Info: [source]:runtime,[msg]:Runtime 启动完成
  2435. 2021-08-12 14:09:08.8042 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2436. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2437. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2438. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2439. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2440. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2441. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2442. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2443. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2444. 2021-08-12 14:09:08.8122 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2445. 2021-08-12 14:09:08.8122 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2446. 2021-08-12 14:50:46.5222 Info: [source]:runtime,[msg]:Runtime 启动
  2447. 2021-08-12 14:50:46.6712 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2448. 2021-08-12 14:50:46.9532 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2449. 2021-08-12 14:50:46.9692 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2450. 2021-08-12 14:50:46.9862 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2451. 2021-08-12 14:50:46.9862 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2452. 2021-08-12 14:50:46.9862 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2453. 2021-08-12 14:50:46.9862 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2454. 2021-08-12 14:50:46.9952 Info: [source]:runtime,[msg]:Runtime 启动完成
  2455. 2021-08-12 14:50:56.1752 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2456. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2457. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2458. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2459. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2460. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2461. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2462. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2463. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2464. 2021-08-12 14:50:56.1842 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2465. 2021-08-12 14:50:56.1842 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2466. 2021-08-12 14:51:45.3442 Info: [source]:runtime,[msg]:AppHost 停止插件
  2467. 2021-08-12 14:51:45.3442 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2468. 2021-08-12 14:51:45.3442 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2469. 2021-08-12 14:51:45.3442 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  2470. 2021-08-12 14:51:45.3442 Info: [source]:runtime,[msg]:Runtime 关闭
  2471. 2021-08-12 14:52:51.1312 Info: [source]:runtime,[msg]:Runtime 启动
  2472. 2021-08-12 14:52:51.2662 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2473. 2021-08-12 14:52:51.5582 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2474. 2021-08-12 14:52:51.5842 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2475. 2021-08-12 14:52:51.6042 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2476. 2021-08-12 14:52:51.6162 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2477. 2021-08-12 14:52:51.6162 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2478. 2021-08-12 14:52:51.6162 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2479. 2021-08-12 14:52:51.6162 Info: [source]:runtime,[msg]:Runtime 启动完成
  2480. 2021-08-12 14:53:00.0412 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2481. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2482. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2483. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2484. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2485. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2486. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2487. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2488. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2489. 2021-08-12 14:53:00.0412 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2490. 2021-08-12 14:53:00.0492 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2491. 2021-08-12 14:55:09.4442 Info: [source]:runtime,[msg]:Runtime 启动
  2492. 2021-08-12 14:55:09.5932 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2493. 2021-08-12 14:55:09.9252 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2494. 2021-08-12 14:55:09.9502 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2495. 2021-08-12 14:55:09.9632 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2496. 2021-08-12 14:55:09.9682 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2497. 2021-08-12 14:55:09.9682 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2498. 2021-08-12 14:55:09.9682 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2499. 2021-08-12 14:55:09.9682 Info: [source]:runtime,[msg]:Runtime 启动完成
  2500. 2021-08-12 14:55:18.2212 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2501. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2502. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2503. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2504. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2505. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2506. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2507. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2508. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2509. 2021-08-12 14:55:18.2212 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2510. 2021-08-12 14:55:18.2342 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2511. 2021-08-12 14:56:12.5272 Info: [source]:runtime,[msg]:AppHost 停止插件
  2512. 2021-08-12 14:56:12.5272 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2513. 2021-08-12 14:56:12.5272 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2514. 2021-08-12 14:56:12.5272 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  2515. 2021-08-12 14:56:12.5272 Info: [source]:runtime,[msg]:Runtime 关闭
  2516. 2021-08-12 14:56:44.9112 Info: [source]:runtime,[msg]:Runtime 启动
  2517. 2021-08-12 14:56:45.0512 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2518. 2021-08-12 14:56:45.3732 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2519. 2021-08-12 14:56:45.3892 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2520. 2021-08-12 14:56:45.4032 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2521. 2021-08-12 14:56:45.4082 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2522. 2021-08-12 14:56:45.4082 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2523. 2021-08-12 14:56:45.4082 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2524. 2021-08-12 14:56:45.4082 Info: [source]:runtime,[msg]:Runtime 启动完成
  2525. 2021-08-12 14:56:53.7002 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2526. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2527. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2528. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2529. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2530. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2531. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2532. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2533. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2534. 2021-08-12 14:56:53.7002 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2535. 2021-08-12 14:56:53.7072 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2536. 2021-08-12 15:00:19.2332 Info: [source]:runtime,[msg]:Runtime 启动
  2537. 2021-08-12 15:00:19.3642 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2538. 2021-08-12 15:00:19.6952 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2539. 2021-08-12 15:00:19.7102 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2540. 2021-08-12 15:00:19.7242 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2541. 2021-08-12 15:00:19.7242 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2542. 2021-08-12 15:00:19.7242 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2543. 2021-08-12 15:00:19.7242 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2544. 2021-08-12 15:00:19.7242 Info: [source]:runtime,[msg]:Runtime 启动完成
  2545. 2021-08-12 15:00:28.1692 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2546. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2547. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2548. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2549. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2550. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2551. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2552. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2553. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2554. 2021-08-12 15:00:28.1772 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2555. 2021-08-12 15:00:28.1772 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2556. 2021-08-12 15:26:20.4112 Info: [source]:runtime,[msg]:Runtime 启动
  2557. 2021-08-12 15:26:20.5552 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2558. 2021-08-12 15:26:20.9352 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2559. 2021-08-12 15:26:20.9512 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2560. 2021-08-12 15:26:20.9512 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2561. 2021-08-12 15:26:20.9682 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2562. 2021-08-12 15:26:20.9682 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2563. 2021-08-12 15:26:20.9682 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2564. 2021-08-12 15:26:20.9682 Info: [source]:runtime,[msg]:Runtime 启动完成
  2565. 2021-08-12 15:26:29.3922 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2566. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2567. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2568. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2569. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2570. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2571. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2572. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2573. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2574. 2021-08-12 15:26:29.3922 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2575. 2021-08-12 15:26:29.3922 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2576. 2021-08-12 15:29:38.3542 Info: [source]:runtime,[msg]:Runtime 启动
  2577. 2021-08-12 15:29:38.5172 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2578. 2021-08-12 15:29:38.8422 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2579. 2021-08-12 15:29:38.8612 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2580. 2021-08-12 15:29:38.9302 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2581. 2021-08-12 15:29:38.9302 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2582. 2021-08-12 15:29:38.9302 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2583. 2021-08-12 15:29:38.9452 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2584. 2021-08-12 15:29:38.9452 Info: [source]:runtime,[msg]:Runtime 启动完成
  2585. 2021-08-12 15:29:47.1642 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2586. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2587. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2588. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2589. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2590. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2591. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2592. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2593. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2594. 2021-08-12 15:29:47.1702 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2595. 2021-08-12 15:29:47.1702 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2596. 2021-08-12 15:31:00.4152 Info: [source]:runtime,[msg]:AppHost 停止插件
  2597. 2021-08-12 15:31:00.4152 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2598. 2021-08-12 15:31:00.4262 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2599. 2021-08-12 15:31:00.4262 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  2600. 2021-08-12 15:31:00.4262 Info: [source]:runtime,[msg]:Runtime 关闭
  2601. 2021-08-12 15:40:14.5692 Info: [source]:runtime,[msg]:Runtime 启动
  2602. 2021-08-12 15:40:14.7702 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2603. 2021-08-12 15:40:15.1262 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2604. 2021-08-12 15:40:15.1432 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2605. 2021-08-12 15:40:15.1612 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2606. 2021-08-12 15:40:15.1672 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2607. 2021-08-12 15:40:15.1672 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2608. 2021-08-12 15:40:15.1672 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2609. 2021-08-12 15:40:15.1672 Info: [source]:runtime,[msg]:Runtime 启动完成
  2610. 2021-08-12 15:40:23.6432 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2611. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2612. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2613. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2614. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2615. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2616. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2617. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2618. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2619. 2021-08-12 15:40:23.6432 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2620. 2021-08-12 15:40:23.6432 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2621. 2021-08-12 15:41:16.1812 Info: [source]:runtime,[msg]:AppHost 停止插件
  2622. 2021-08-12 15:41:16.1812 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2623. 2021-08-12 15:41:16.1812 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2624. 2021-08-12 15:41:16.1812 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  2625. 2021-08-12 15:41:16.1922 Info: [source]:runtime,[msg]:Runtime 关闭
  2626. 2021-08-12 15:43:37.4742 Info: [source]:runtime,[msg]:Runtime 启动
  2627. 2021-08-12 15:43:37.6092 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2628. 2021-08-12 15:43:37.9412 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2629. 2021-08-12 15:43:37.9552 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2630. 2021-08-12 15:43:37.9682 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2631. 2021-08-12 15:43:37.9682 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2632. 2021-08-12 15:43:37.9682 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2633. 2021-08-12 15:43:37.9682 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2634. 2021-08-12 15:43:37.9682 Info: [source]:runtime,[msg]:Runtime 启动完成
  2635. 2021-08-12 15:43:46.4762 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2636. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2637. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2638. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2639. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2640. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2641. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2642. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2643. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2644. 2021-08-12 15:43:46.4842 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2645. 2021-08-12 15:43:46.4842 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2646. 2021-08-12 15:48:49.9022 Info: [source]:runtime,[msg]:Runtime 启动
  2647. 2021-08-12 15:48:50.0792 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2648. 2021-08-12 15:48:50.4522 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2649. 2021-08-12 15:48:50.4682 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2650. 2021-08-12 15:48:50.4682 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2651. 2021-08-12 15:48:50.4852 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2652. 2021-08-12 15:48:50.4852 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2653. 2021-08-12 15:48:50.4852 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2654. 2021-08-12 15:48:50.4852 Info: [source]:runtime,[msg]:Runtime 启动完成
  2655. 2021-08-12 15:48:59.0582 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2656. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2657. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2658. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2659. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2660. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2661. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2662. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2663. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2664. 2021-08-12 15:48:59.0672 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2665. 2021-08-12 15:48:59.0672 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2666. 2021-08-12 15:58:10.3362 Info: [source]:runtime,[msg]:Runtime 启动
  2667. 2021-08-12 15:58:10.4952 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2668. 2021-08-12 15:58:10.8462 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2669. 2021-08-12 15:58:10.8682 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2670. 2021-08-12 15:58:10.8822 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2671. 2021-08-12 15:58:10.8872 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2672. 2021-08-12 15:58:10.8872 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2673. 2021-08-12 15:58:10.8872 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2674. 2021-08-12 15:58:10.8872 Info: [source]:runtime,[msg]:Runtime 启动完成
  2675. 2021-08-12 15:58:19.3322 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2676. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2677. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2678. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2679. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2680. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2681. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2682. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2683. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2684. 2021-08-12 15:58:19.3322 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2685. 2021-08-12 15:58:19.3322 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2686. 2021-08-12 15:58:39.5302 Info: [source]:runtime,[msg]:AppHost 停止插件
  2687. 2021-08-12 15:58:39.5302 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2688. 2021-08-12 15:58:39.5302 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2689. 2021-08-12 15:58:39.5302 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  2690. 2021-08-12 15:58:39.5422 Info: [source]:runtime,[msg]:Runtime 关闭
  2691. 2021-08-12 16:02:51.4282 Info: [source]:runtime,[msg]:Runtime 启动
  2692. 2021-08-12 16:02:51.5692 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2693. 2021-08-12 16:02:51.8662 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2694. 2021-08-12 16:02:52.0522 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2695. 2021-08-12 16:02:52.1212 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2696. 2021-08-12 16:02:52.1272 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2697. 2021-08-12 16:02:52.1272 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2698. 2021-08-12 16:02:52.1272 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2699. 2021-08-12 16:02:52.1272 Info: [source]:runtime,[msg]:Runtime 启动完成
  2700. 2021-08-12 16:03:00.3212 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2701. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2702. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2703. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2704. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2705. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2706. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2707. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2708. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2709. 2021-08-12 16:03:00.3212 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2710. 2021-08-12 16:03:00.3212 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2711. 2021-08-12 16:05:23.7042 Info: [source]:runtime,[msg]:Runtime 启动
  2712. 2021-08-12 16:05:23.8532 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2713. 2021-08-12 16:05:24.1182 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2714. 2021-08-12 16:05:24.1362 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2715. 2021-08-12 16:05:24.1552 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2716. 2021-08-12 16:05:24.1552 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2717. 2021-08-12 16:05:24.1622 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2718. 2021-08-12 16:05:24.1622 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2719. 2021-08-12 16:05:24.1622 Info: [source]:runtime,[msg]:Runtime 启动完成
  2720. 2021-08-12 16:05:32.6262 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2721. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2722. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2723. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2724. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2725. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2726. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2727. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2728. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2729. 2021-08-12 16:05:32.6352 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2730. 2021-08-12 16:05:32.6352 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2731. 2021-08-12 16:07:55.3672 Info: [source]:runtime,[msg]:Runtime 启动
  2732. 2021-08-12 16:07:55.4792 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2733. 2021-08-12 16:07:55.8502 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2734. 2021-08-12 16:07:55.8652 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2735. 2021-08-12 16:07:55.8782 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2736. 2021-08-12 16:07:55.8782 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2737. 2021-08-12 16:07:55.8782 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2738. 2021-08-12 16:07:55.8782 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2739. 2021-08-12 16:07:55.8782 Info: [source]:runtime,[msg]:Runtime 启动完成
  2740. 2021-08-12 16:08:04.1722 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2741. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2742. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2743. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2744. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2745. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2746. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2747. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2748. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2749. 2021-08-12 16:08:04.1722 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2750. 2021-08-12 16:08:04.1722 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2751. 2021-08-12 16:09:16.9672 Info: [source]:runtime,[msg]:AppHost 停止插件
  2752. 2021-08-12 16:09:16.9672 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2753. 2021-08-12 16:09:16.9672 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2754. 2021-08-12 16:09:16.9672 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  2755. 2021-08-12 16:09:16.9672 Info: [source]:runtime,[msg]:Runtime 关闭
  2756. 2021-08-12 16:16:52.2142 Info: [source]:runtime,[msg]:Runtime 启动
  2757. 2021-08-12 16:16:52.3762 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2758. 2021-08-12 16:16:52.6842 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2759. 2021-08-12 16:16:52.7952 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2760. 2021-08-12 16:16:52.8172 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2761. 2021-08-12 16:16:52.8172 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2762. 2021-08-12 16:16:52.8172 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2763. 2021-08-12 16:16:52.8172 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2764. 2021-08-12 16:16:52.8172 Info: [source]:runtime,[msg]:Runtime 启动完成
  2765. 2021-08-12 16:17:01.5152 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2766. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2767. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2768. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2769. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2770. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2771. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2772. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2773. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2774. 2021-08-12 16:17:01.5222 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2775. 2021-08-12 16:17:01.5222 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2776. 2021-08-12 16:18:40.5722 Info: [source]:runtime,[msg]:Runtime 启动
  2777. 2021-08-12 16:18:40.7282 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2778. 2021-08-12 16:18:41.0952 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2779. 2021-08-12 16:18:41.1562 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2780. 2021-08-12 16:18:41.1722 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2781. 2021-08-12 16:18:41.1722 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2782. 2021-08-12 16:18:41.1722 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2783. 2021-08-12 16:18:41.1722 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2784. 2021-08-12 16:18:41.1862 Info: [source]:runtime,[msg]:Runtime 启动完成
  2785. 2021-08-12 16:18:49.5532 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2786. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2787. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2788. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2789. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2790. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2791. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2792. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2793. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2794. 2021-08-12 16:18:49.5532 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2795. 2021-08-12 16:18:49.5532 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2796. 2021-08-12 18:25:10.0552 Info: [source]:runtime,[msg]:Runtime 启动
  2797. 2021-08-12 18:25:10.2242 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2798. 2021-08-12 18:25:10.5452 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2799. 2021-08-12 18:25:10.5942 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2800. 2021-08-12 18:25:10.7012 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2801. 2021-08-12 18:25:10.7012 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2802. 2021-08-12 18:25:10.7012 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2803. 2021-08-12 18:25:10.7012 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2804. 2021-08-12 18:25:10.7012 Info: [source]:runtime,[msg]:Runtime 启动完成
  2805. 2021-08-12 18:25:20.3052 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2806. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2807. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2808. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2809. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2810. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2811. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2812. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2813. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2814. 2021-08-12 18:25:20.3122 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2815. 2021-08-12 18:25:20.3122 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2816. 2021-08-12 18:32:40.4572 Info: [source]:runtime,[msg]:AppHost 停止插件
  2817. 2021-08-12 18:32:40.4572 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2818. 2021-08-12 18:32:40.4572 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2819. 2021-08-12 18:32:40.4572 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  2820. 2021-08-12 18:32:40.4572 Info: [source]:runtime,[msg]:Runtime 关闭
  2821. 2021-08-12 22:31:35.0764 Info: [source]:runtime,[msg]:Runtime 启动
  2822. 2021-08-12 22:31:35.2194 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2823. 2021-08-12 22:31:35.5624 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2824. 2021-08-12 22:31:35.5854 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2825. 2021-08-12 22:31:35.5994 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2826. 2021-08-12 22:31:35.6054 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2827. 2021-08-12 22:31:35.6054 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2828. 2021-08-12 22:31:35.6054 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2829. 2021-08-12 22:31:35.6054 Info: [source]:runtime,[msg]:Runtime 启动完成
  2830. 2021-08-12 22:31:41.0624 Info: [source]:runtime,[msg]:AppHost 停止插件
  2831. 2021-08-12 22:31:41.0624 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2832. 2021-08-12 22:31:41.0644 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2833. 2021-08-12 22:31:41.0644 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  2834. 2021-08-12 22:31:41.0644 Info: [source]:runtime,[msg]:Runtime 关闭
  2835. 2021-08-12 22:32:02.7074 Info: [source]:runtime,[msg]:Runtime 启动
  2836. 2021-08-12 22:32:02.8474 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2837. 2021-08-12 22:32:03.1394 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2838. 2021-08-12 22:32:03.1544 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2839. 2021-08-12 22:32:03.1544 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2840. 2021-08-12 22:32:03.1714 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2841. 2021-08-12 22:32:03.1714 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2842. 2021-08-12 22:32:03.1714 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2843. 2021-08-12 22:32:03.1714 Info: [source]:runtime,[msg]:Runtime 启动完成
  2844. 2021-08-12 22:32:11.2454 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2845. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2846. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2847. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2848. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2849. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2850. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2851. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2852. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2853. 2021-08-12 22:32:11.2524 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2854. 2021-08-12 22:32:11.2524 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2855. 2021-08-12 22:36:38.1744 Info: [source]:runtime,[msg]:Runtime 启动
  2856. 2021-08-12 22:36:38.3244 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2857. 2021-08-12 22:36:38.6104 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2858. 2021-08-12 22:36:38.6244 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2859. 2021-08-12 22:36:38.6364 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2860. 2021-08-12 22:36:38.6364 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2861. 2021-08-12 22:36:38.6364 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2862. 2021-08-12 22:36:38.6364 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2863. 2021-08-12 22:36:38.6364 Info: [source]:runtime,[msg]:Runtime 启动完成
  2864. 2021-08-12 22:36:46.7134 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2865. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2866. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2867. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2868. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2869. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2870. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2871. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2872. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2873. 2021-08-12 22:36:46.7234 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2874. 2021-08-12 22:36:46.7234 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2875. 2021-08-12 22:39:12.4064 Info: [source]:runtime,[msg]:Runtime 启动
  2876. 2021-08-12 22:39:12.5334 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2877. 2021-08-12 22:39:12.8014 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2878. 2021-08-12 22:39:12.8214 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2879. 2021-08-12 22:39:12.8354 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2880. 2021-08-12 22:39:12.8354 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2881. 2021-08-12 22:39:12.8354 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2882. 2021-08-12 22:39:12.8354 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2883. 2021-08-12 22:39:12.8354 Info: [source]:runtime,[msg]:Runtime 启动完成
  2884. 2021-08-12 22:39:20.7674 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2885. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2886. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2887. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2888. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2889. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2890. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2891. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2892. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2893. 2021-08-12 22:39:20.7754 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2894. 2021-08-12 22:39:20.7754 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2895. 2021-08-12 22:43:19.1274 Info: [source]:runtime,[msg]:Runtime 启动
  2896. 2021-08-12 22:43:19.2874 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2897. 2021-08-12 22:43:19.5994 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2898. 2021-08-12 22:43:19.6144 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2899. 2021-08-12 22:43:19.6274 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2900. 2021-08-12 22:43:19.6274 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2901. 2021-08-12 22:43:19.6274 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2902. 2021-08-12 22:43:19.6274 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2903. 2021-08-12 22:43:19.6274 Info: [source]:runtime,[msg]:Runtime 启动完成
  2904. 2021-08-12 22:43:27.6914 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2905. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2906. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2907. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2908. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2909. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2910. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2911. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2912. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2913. 2021-08-12 22:43:27.6914 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2914. 2021-08-12 22:43:27.6914 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2915. 2021-08-12 23:11:21.1784 Info: [source]:runtime,[msg]:Runtime 启动
  2916. 2021-08-12 23:11:21.3304 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2917. 2021-08-12 23:11:21.6134 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2918. 2021-08-12 23:11:21.6304 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2919. 2021-08-12 23:11:21.6534 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2920. 2021-08-12 23:11:21.6604 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2921. 2021-08-12 23:11:21.6604 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2922. 2021-08-12 23:11:21.6604 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2923. 2021-08-12 23:11:21.6604 Info: [source]:runtime,[msg]:Runtime 启动完成
  2924. 2021-08-12 23:11:29.7484 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2925. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2926. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2927. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2928. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2929. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2930. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2931. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2932. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2933. 2021-08-12 23:11:29.7574 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2934. 2021-08-12 23:11:29.7574 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2935. 2021-08-12 23:12:28.1704 Info: [source]:runtime,[msg]:Runtime 启动
  2936. 2021-08-12 23:12:28.2934 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2937. 2021-08-12 23:12:28.5904 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2938. 2021-08-12 23:12:28.6064 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2939. 2021-08-12 23:12:28.6174 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2940. 2021-08-12 23:12:28.6174 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2941. 2021-08-12 23:12:28.6174 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2942. 2021-08-12 23:12:28.6174 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2943. 2021-08-12 23:12:28.6174 Info: [source]:runtime,[msg]:Runtime 启动完成
  2944. 2021-08-12 23:12:36.8154 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2945. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2946. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2947. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2948. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2949. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2950. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2951. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2952. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2953. 2021-08-12 23:12:36.8224 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2954. 2021-08-12 23:12:36.8224 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2955. 2021-08-12 23:30:10.3564 Info: [source]:runtime,[msg]:Runtime 启动
  2956. 2021-08-12 23:30:10.5194 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2957. 2021-08-12 23:30:10.8364 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2958. 2021-08-12 23:30:10.8534 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2959. 2021-08-12 23:30:10.8534 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2960. 2021-08-12 23:30:10.8714 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2961. 2021-08-12 23:30:10.8714 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2962. 2021-08-12 23:30:10.8714 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2963. 2021-08-12 23:30:10.8714 Info: [source]:runtime,[msg]:Runtime 启动完成
  2964. 2021-08-12 23:30:19.1754 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2965. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2966. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2967. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2968. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2969. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2970. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2971. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2972. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2973. 2021-08-12 23:30:19.1834 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2974. 2021-08-12 23:30:19.1834 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2975. 2021-08-12 23:36:13.8794 Info: [source]:runtime,[msg]:Runtime 启动
  2976. 2021-08-12 23:36:14.0114 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2977. 2021-08-12 23:36:14.3224 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2978. 2021-08-12 23:36:14.3364 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2979. 2021-08-12 23:36:14.3514 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2980. 2021-08-12 23:36:14.3514 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2981. 2021-08-12 23:36:14.3514 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2982. 2021-08-12 23:36:14.3514 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  2983. 2021-08-12 23:36:14.3514 Info: [source]:runtime,[msg]:Runtime 启动完成
  2984. 2021-08-12 23:36:22.7714 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2985. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2986. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2987. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2988. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2989. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2990. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2991. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2992. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2993. 2021-08-12 23:36:22.7754 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2994. 2021-08-12 23:36:22.7754 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  2995. 2021-08-12 23:37:45.7224 Info: [source]:runtime,[msg]:AppHost 停止插件
  2996. 2021-08-12 23:37:45.7224 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2997. 2021-08-12 23:37:45.7224 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2998. 2021-08-12 23:37:45.7224 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  2999. 2021-08-12 23:37:45.7224 Info: [source]:runtime,[msg]:Runtime 关闭
  3000. 2021-08-13 09:16:27.4204 Info: [source]:runtime,[msg]:Runtime 启动
  3001. 2021-08-13 09:16:27.5654 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3002. 2021-08-13 09:16:27.9014 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3003. 2021-08-13 09:16:28.1104 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3004. 2021-08-13 09:16:28.1904 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3005. 2021-08-13 09:16:28.1904 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3006. 2021-08-13 09:16:28.1904 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3007. 2021-08-13 09:16:28.1904 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  3008. 2021-08-13 09:16:28.1904 Info: [source]:runtime,[msg]:Runtime 启动完成
  3009. 2021-08-13 09:16:39.0244 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3010. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3011. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3012. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3013. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3014. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3015. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3016. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3017. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3018. 2021-08-13 09:16:39.0314 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3019. 2021-08-13 09:16:39.0314 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  3020. 2021-08-13 09:40:22.3174 Info: [source]:runtime,[msg]:Runtime 启动
  3021. 2021-08-13 09:40:22.4514 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3022. 2021-08-13 09:40:22.7704 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3023. 2021-08-13 09:40:22.7704 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3024. 2021-08-13 09:40:22.7994 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3025. 2021-08-13 09:40:22.8044 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3026. 2021-08-13 09:40:22.8044 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3027. 2021-08-13 09:40:22.8044 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  3028. 2021-08-13 09:40:22.8044 Info: [source]:runtime,[msg]:Runtime 启动完成
  3029. 2021-08-13 09:40:30.8734 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3030. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3031. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3032. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3033. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3034. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3035. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3036. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3037. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3038. 2021-08-13 09:40:30.8734 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3039. 2021-08-13 09:40:30.8734 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  3040. 2021-08-13 10:56:45.4634 Info: [source]:runtime,[msg]:Runtime 启动
  3041. 2021-08-13 10:56:45.5954 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3042. 2021-08-13 10:56:45.9164 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3043. 2021-08-13 10:56:45.9314 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3044. 2021-08-13 10:56:45.9444 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3045. 2021-08-13 10:56:45.9444 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3046. 2021-08-13 10:56:45.9444 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3047. 2021-08-13 10:56:45.9444 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  3048. 2021-08-13 10:56:45.9444 Info: [source]:runtime,[msg]:Runtime 启动完成
  3049. 2021-08-13 10:56:54.1744 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3050. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3051. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3052. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3053. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3054. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3055. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3056. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3057. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3058. 2021-08-13 10:56:54.1824 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3059. 2021-08-13 10:56:54.1824 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  3060. 2021-08-13 11:07:10.5704 Info: [source]:runtime,[msg]:AppHost 停止插件
  3061. 2021-08-13 11:07:10.5704 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3062. 2021-08-13 11:07:10.5704 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3063. 2021-08-13 11:07:10.5704 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  3064. 2021-08-13 11:07:10.5704 Info: [source]:runtime,[msg]:Runtime 关闭
  3065. 2021-08-13 11:32:24.3254 Info: [source]:runtime,[msg]:Runtime 启动
  3066. 2021-08-13 11:32:24.6384 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3067. 2021-08-13 11:32:24.9584 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3068. 2021-08-13 11:32:24.9784 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3069. 2021-08-13 11:32:24.9984 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3070. 2021-08-13 11:32:24.9984 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3071. 2021-08-13 11:32:24.9984 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3072. 2021-08-13 11:32:24.9984 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  3073. 2021-08-13 11:32:25.0094 Info: [source]:runtime,[msg]:Runtime 启动完成
  3074. 2021-08-13 11:32:33.3374 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3075. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3076. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3077. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3078. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3079. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3080. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3081. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3082. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3083. 2021-08-13 11:32:33.3454 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3084. 2021-08-13 11:32:33.3454 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  3085. 2021-08-13 11:42:32.8964 Info: [source]:runtime,[msg]:AppHost 停止插件
  3086. 2021-08-13 11:42:32.8964 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3087. 2021-08-13 11:42:32.8984 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3088. 2021-08-13 11:42:32.8984 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  3089. 2021-08-13 11:42:32.8984 Info: [source]:runtime,[msg]:Runtime 关闭
  3090. 2021-08-13 11:42:44.9844 Info: [source]:runtime,[msg]:Runtime 启动
  3091. 2021-08-13 11:42:45.1264 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3092. 2021-08-13 11:42:45.4644 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3093. 2021-08-13 11:42:45.4814 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3094. 2021-08-13 11:42:45.4934 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3095. 2021-08-13 11:42:45.4934 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3096. 2021-08-13 11:42:45.4934 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3097. 2021-08-13 11:42:45.4934 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  3098. 2021-08-13 11:42:45.5034 Info: [source]:runtime,[msg]:Runtime 启动完成
  3099. 2021-08-13 11:42:53.8204 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3100. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3101. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3102. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3103. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3104. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3105. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3106. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3107. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3108. 2021-08-13 11:42:53.8204 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3109. 2021-08-13 11:42:53.8204 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  3110. 2021-08-13 11:43:16.3834 Info: [source]:runtime,[msg]:AppHost 停止插件
  3111. 2021-08-13 11:43:16.3834 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3112. 2021-08-13 11:43:16.3834 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3113. 2021-08-13 11:43:16.3834 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  3114. 2021-08-13 11:43:16.3834 Info: [source]:runtime,[msg]:Runtime 关闭
  3115. 2021-08-13 11:46:16.2474 Info: [source]:runtime,[msg]:Runtime 启动
  3116. 2021-08-13 11:46:16.4174 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3117. 2021-08-13 11:46:16.8424 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3118. 2021-08-13 11:46:16.8674 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3119. 2021-08-13 11:46:16.8914 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3120. 2021-08-13 11:46:16.8914 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3121. 2021-08-13 11:46:16.8914 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3122. 2021-08-13 11:46:16.9014 Info: [source]:runtime,[msg]:插件"林泉发射机测试"启动成功
  3123. 2021-08-13 11:46:16.9014 Info: [source]:runtime,[msg]:Runtime 启动完成
  3124. 2021-08-13 11:46:25.7844 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3125. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3126. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3127. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3128. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3129. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3130. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3131. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3132. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3133. 2021-08-13 11:46:25.7844 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3134. 2021-08-13 11:46:25.7944 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  3135. 2021-08-13 11:47:52.2984 Info: [source]:runtime,[msg]:AppHost 停止插件
  3136. 2021-08-13 11:47:52.2984 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3137. 2021-08-13 11:47:52.2984 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3138. 2021-08-13 11:47:52.2984 Info: [source]:runtime,[msg]:插件"林泉发射机测试"停止成功
  3139. 2021-08-13 11:47:52.2984 Info: [source]:runtime,[msg]:Runtime 关闭
  3140. 2021-08-13 13:58:29.0154 Info: [source]:runtime,[msg]:Runtime 启动
  3141. 2021-08-13 13:58:29.2014 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3142. 2021-08-13 13:58:29.5034 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3143. 2021-08-13 13:58:29.5234 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3144. 2021-08-13 13:58:29.5434 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3145. 2021-08-13 13:58:29.5434 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3146. 2021-08-13 13:58:29.5514 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3147. 2021-08-13 13:58:29.5514 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3148. 2021-08-13 13:58:29.5514 Info: [source]:runtime,[msg]:Runtime 启动完成
  3149. 2021-08-13 13:58:39.9644 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3150. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3151. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3152. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3153. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3154. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3155. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3156. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3157. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3158. 2021-08-13 13:58:39.9644 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3159. 2021-08-13 13:58:39.9724 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  3160. 2021-08-13 13:59:07.5474 Info: [source]:runtime,[msg]:AppHost 停止插件
  3161. 2021-08-13 13:59:07.5574 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3162. 2021-08-13 13:59:07.5574 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3163. 2021-08-13 13:59:07.5574 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3164. 2021-08-13 13:59:07.5574 Info: [source]:runtime,[msg]:Runtime 关闭
  3165. 2021-08-13 13:59:23.4164 Info: [source]:runtime,[msg]:Runtime 启动
  3166. 2021-08-13 13:59:23.5724 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3167. 2021-08-13 13:59:23.8914 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3168. 2021-08-13 13:59:23.9194 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3169. 2021-08-13 13:59:23.9384 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3170. 2021-08-13 13:59:23.9384 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3171. 2021-08-13 13:59:23.9384 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3172. 2021-08-13 13:59:23.9384 Info: [source]:runtime,[msg]:插件"6YX03B-9"启动成功
  3173. 2021-08-13 13:59:23.9384 Info: [source]:runtime,[msg]:Runtime 启动完成
  3174. 2021-08-13 13:59:32.0564 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3175. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3176. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3177. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3178. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3179. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3180. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3181. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3182. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3183. 2021-08-13 13:59:32.0654 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3184. 2021-08-13 13:59:32.0654 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  3185. 2021-08-13 13:59:38.3924 Info: [source]:runtime,[msg]:AppHost 停止插件
  3186. 2021-08-13 13:59:38.3924 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3187. 2021-08-13 13:59:38.3944 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3188. 2021-08-13 13:59:38.3944 Info: [source]:runtime,[msg]:插件"6YX03B-9"停止成功
  3189. 2021-08-13 13:59:38.3944 Info: [source]:runtime,[msg]:Runtime 关闭
  3190. 2021-08-16 15:43:54.1940 Info: [source]:runtime,[msg]:Runtime 启动
  3191. 2021-08-16 15:43:54.3170 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3192. 2021-08-16 15:43:54.8500 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3193. 2021-08-16 15:43:54.8690 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3194. 2021-08-16 15:43:54.8860 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3195. 2021-08-16 15:43:54.8910 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3196. 2021-08-16 15:43:54.8910 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3197. 2021-08-16 15:43:54.8910 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3198. 2021-08-16 15:43:54.8910 Info: [source]:runtime,[msg]:Runtime 启动完成
  3199. 2021-08-16 15:44:01.3480 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3200. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3201. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3202. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3203. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3204. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3205. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3206. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3207. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3208. 2021-08-16 15:44:01.4040 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3209. 2021-08-16 15:44:01.4040 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  3210. 2021-08-16 15:46:26.4020 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3211. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3212. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3213. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3214. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3215. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3216. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3217. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3218. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3219. 2021-08-16 15:46:26.4290 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3220. 2021-08-16 15:46:26.4300 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  3221. 2021-08-16 15:46:31.2050 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3222. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3223. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3224. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3225. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3226. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3227. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3228. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3229. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3230. 2021-08-16 15:46:31.2400 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3231. 2021-08-16 15:46:31.2400 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  3232. 2021-08-16 15:46:52.0300 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3233. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3234. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3235. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3236. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3237. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3238. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3239. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3240. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3241. 2021-08-16 15:46:52.0590 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3242. 2021-08-16 15:46:52.0590 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  3243. 2021-08-16 15:49:49.8580 Info: [source]:runtime,[msg]:Runtime 启动
  3244. 2021-08-16 15:49:49.9880 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3245. 2021-08-16 15:49:50.2940 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3246. 2021-08-16 15:49:50.3090 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3247. 2021-08-16 15:49:50.3320 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3248. 2021-08-16 15:49:50.3380 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3249. 2021-08-16 15:49:50.3380 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3250. 2021-08-16 15:49:50.3380 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3251. 2021-08-16 15:49:50.3380 Info: [source]:runtime,[msg]:Runtime 启动完成
  3252. 2021-08-16 15:49:54.6330 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3253. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3254. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3255. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3256. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3257. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3258. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3259. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3260. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3261. 2021-08-16 15:49:54.7050 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3262. 2021-08-16 15:49:54.7050 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  3263. 2021-08-16 15:49:56.4380 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3264. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3265. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3266. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3267. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3268. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3269. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3270. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3271. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3272. 2021-08-16 15:49:56.4620 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3273. 2021-08-16 15:49:56.4620 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  3274. 2021-08-16 15:49:57.8430 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3275. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3276. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3277. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3278. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3279. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3280. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3281. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3282. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3283. 2021-08-16 15:49:57.8700 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3284. 2021-08-16 15:49:57.8700 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  3285. 2021-08-16 15:55:11.6450 Info: [source]:runtime,[msg]:Runtime 启动
  3286. 2021-08-16 15:55:11.8140 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3287. 2021-08-16 15:55:12.2480 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3288. 2021-08-16 15:55:12.2930 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3289. 2021-08-16 15:55:12.3400 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3290. 2021-08-16 15:55:12.3400 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3291. 2021-08-16 15:55:12.3400 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3292. 2021-08-16 15:55:12.3400 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3293. 2021-08-16 15:55:12.3400 Info: [source]:runtime,[msg]:Runtime 启动完成
  3294. 2021-08-16 15:55:16.7420 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3295. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3296. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3297. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3298. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3299. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3300. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3301. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3302. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3303. 2021-08-16 15:55:16.7800 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3304. 2021-08-16 15:55:16.7800 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  3305. 2021-08-16 15:55:19.3950 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3306. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3307. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3308. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3309. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3310. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3311. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3312. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3313. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3314. 2021-08-16 15:55:19.4400 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3315. 2021-08-16 15:55:19.4400 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  3316. 2021-08-16 15:59:18.9010 Info: [source]:runtime,[msg]:Runtime 启动
  3317. 2021-08-16 15:59:19.0430 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3318. 2021-08-16 15:59:19.3770 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3319. 2021-08-16 15:59:19.3930 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3320. 2021-08-16 15:59:19.4180 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3321. 2021-08-16 15:59:19.4180 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3322. 2021-08-16 15:59:19.4180 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3323. 2021-08-16 15:59:19.4180 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3324. 2021-08-16 15:59:19.4180 Info: [source]:runtime,[msg]:Runtime 启动完成
  3325. 2021-08-16 15:59:23.8270 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3326. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3327. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3328. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3329. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3330. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3331. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3332. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3333. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3334. 2021-08-16 15:59:23.8830 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3335. 2021-08-16 15:59:23.8830 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  3336. 2021-08-16 16:02:12.0020 Info: [source]:runtime,[msg]:Runtime 启动
  3337. 2021-08-16 16:02:12.1790 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3338. 2021-08-16 16:02:12.4150 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3339. 2021-08-16 16:02:12.4300 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3340. 2021-08-16 16:02:12.4530 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3341. 2021-08-16 16:02:12.4530 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3342. 2021-08-16 16:02:12.4530 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3343. 2021-08-16 16:02:12.4530 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3344. 2021-08-16 16:02:12.4530 Info: [source]:runtime,[msg]:Runtime 启动完成
  3345. 2021-08-16 16:02:16.6400 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3346. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3347. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3348. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3349. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3350. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3351. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3352. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3353. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3354. 2021-08-16 16:02:16.6910 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3355. 2021-08-16 16:02:16.6910 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  3356. 2021-08-16 16:04:50.7450 Info: [source]:runtime,[msg]:Runtime 启动
  3357. 2021-08-16 16:04:50.8700 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3358. 2021-08-16 16:04:51.1310 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3359. 2021-08-16 16:04:51.1480 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3360. 2021-08-16 16:04:51.1720 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3361. 2021-08-16 16:04:51.1720 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3362. 2021-08-16 16:04:51.1720 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3363. 2021-08-16 16:04:51.1720 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3364. 2021-08-16 16:04:51.1720 Info: [source]:runtime,[msg]:Runtime 启动完成
  3365. 2021-08-16 16:04:55.4620 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3366. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3367. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3368. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3369. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3370. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3371. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3372. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3373. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3374. 2021-08-16 16:04:55.5120 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3375. 2021-08-16 16:04:55.5120 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::29::INSTR。
  3376. 2021-08-16 16:15:59.9690 Info: [source]:runtime,[msg]:Runtime 启动
  3377. 2021-08-16 16:16:00.1120 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3378. 2021-08-16 16:16:00.4060 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3379. 2021-08-16 16:16:00.4250 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3380. 2021-08-16 16:16:00.4530 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3381. 2021-08-16 16:16:00.4590 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3382. 2021-08-16 16:16:00.4590 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3383. 2021-08-16 16:16:00.4590 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3384. 2021-08-16 16:16:00.4590 Info: [source]:runtime,[msg]:Runtime 启动完成
  3385. 2021-08-16 16:16:04.7290 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3386. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3387. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3388. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3389. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3390. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3391. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3392. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3393. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3394. 2021-08-16 16:16:04.7920 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3395. 2021-08-16 16:16:04.8190 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3396. 2021-08-16 16:17:52.2280 Info: [source]:runtime,[msg]:Runtime 启动
  3397. 2021-08-16 16:17:52.4700 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3398. 2021-08-16 16:17:52.8110 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3399. 2021-08-16 16:17:52.9490 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3400. 2021-08-16 16:17:52.9750 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3401. 2021-08-16 16:17:52.9810 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3402. 2021-08-16 16:17:52.9810 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3403. 2021-08-16 16:17:52.9810 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3404. 2021-08-16 16:17:52.9810 Info: [source]:runtime,[msg]:Runtime 启动完成
  3405. 2021-08-16 16:17:57.2040 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3406. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3407. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3408. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3409. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3410. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3411. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3412. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3413. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3414. 2021-08-16 16:17:57.2620 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3415. 2021-08-16 16:17:57.2800 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3416. 2021-08-16 16:25:20.5600 Info: [source]:runtime,[msg]:Runtime 启动
  3417. 2021-08-16 16:25:20.7180 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3418. 2021-08-16 16:25:21.1270 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3419. 2021-08-16 16:25:21.1430 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3420. 2021-08-16 16:25:21.1640 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3421. 2021-08-16 16:25:21.1640 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3422. 2021-08-16 16:25:21.1640 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3423. 2021-08-16 16:25:21.1720 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3424. 2021-08-16 16:25:21.1720 Info: [source]:runtime,[msg]:Runtime 启动完成
  3425. 2021-08-16 16:25:25.5010 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3426. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3427. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3428. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3429. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3430. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3431. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3432. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3433. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3434. 2021-08-16 16:25:25.5640 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3435. 2021-08-16 16:25:25.5840 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3436. 2021-08-16 16:31:10.1270 Info: [source]:runtime,[msg]:Runtime 启动
  3437. 2021-08-16 16:31:10.2930 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3438. 2021-08-16 16:31:10.6820 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3439. 2021-08-16 16:31:10.7480 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3440. 2021-08-16 16:31:10.8200 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3441. 2021-08-16 16:31:10.8200 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3442. 2021-08-16 16:31:10.8200 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3443. 2021-08-16 16:31:10.8200 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3444. 2021-08-16 16:31:10.8200 Info: [source]:runtime,[msg]:Runtime 启动完成
  3445. 2021-08-16 16:31:15.4200 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3446. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3447. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3448. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3449. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3450. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3451. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3452. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3453. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3454. 2021-08-16 16:31:15.4770 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3455. 2021-08-16 16:31:15.4940 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3456. 2021-08-16 16:45:01.7280 Info: [source]:runtime,[msg]:AppHost 停止插件
  3457. 2021-08-16 16:45:01.7280 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3458. 2021-08-16 16:45:01.7280 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3459. 2021-08-16 16:45:01.7280 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3460. 2021-08-16 16:45:01.7280 Info: [source]:runtime,[msg]:Runtime 关闭
  3461. 2021-08-16 16:48:13.5340 Info: [source]:runtime,[msg]:Runtime 启动
  3462. 2021-08-16 16:48:13.6930 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3463. 2021-08-16 16:48:14.0110 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3464. 2021-08-16 16:48:14.0280 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3465. 2021-08-16 16:48:14.0530 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3466. 2021-08-16 16:48:14.0600 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3467. 2021-08-16 16:48:14.0600 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3468. 2021-08-16 16:48:14.0600 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3469. 2021-08-16 16:48:14.0600 Info: [source]:runtime,[msg]:Runtime 启动完成
  3470. 2021-08-16 16:48:18.2450 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3471. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3472. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3473. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3474. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3475. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3476. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3477. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3478. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3479. 2021-08-16 16:48:18.3000 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3480. 2021-08-16 16:48:18.3070 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3481. 2021-08-16 16:49:40.2260 Info: [source]:runtime,[msg]:Runtime 启动
  3482. 2021-08-16 16:49:40.3870 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3483. 2021-08-16 16:49:40.7700 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3484. 2021-08-16 16:49:40.7930 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3485. 2021-08-16 16:49:40.8180 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3486. 2021-08-16 16:49:40.8260 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3487. 2021-08-16 16:49:40.8260 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3488. 2021-08-16 16:49:40.8260 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3489. 2021-08-16 16:49:40.8260 Info: [source]:runtime,[msg]:Runtime 启动完成
  3490. 2021-08-16 16:49:45.1800 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3491. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3492. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3493. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3494. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3495. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3496. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3497. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3498. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3499. 2021-08-16 16:49:45.2200 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3500. 2021-08-16 16:49:45.2300 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3501. 2021-08-16 16:50:40.4120 Info: [source]:runtime,[msg]:Runtime 启动
  3502. 2021-08-16 16:50:40.5590 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3503. 2021-08-16 16:50:40.9080 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3504. 2021-08-16 16:50:40.9890 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3505. 2021-08-16 16:50:41.0450 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3506. 2021-08-16 16:50:41.0450 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3507. 2021-08-16 16:50:41.0450 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3508. 2021-08-16 16:50:41.0450 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3509. 2021-08-16 16:50:41.0450 Info: [source]:runtime,[msg]:Runtime 启动完成
  3510. 2021-08-16 16:50:45.6060 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3511. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3512. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3513. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3514. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3515. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3516. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3517. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3518. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3519. 2021-08-16 16:50:45.6590 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3520. 2021-08-16 16:50:45.6680 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3521. 2021-08-16 18:59:40.9160 Info: [source]:runtime,[msg]:Runtime 启动
  3522. 2021-08-16 18:59:41.0650 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3523. 2021-08-16 18:59:41.4950 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3524. 2021-08-16 18:59:41.5110 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3525. 2021-08-16 18:59:41.5170 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3526. 2021-08-16 18:59:41.5170 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3527. 2021-08-16 18:59:41.5170 Info: [source]:runtime,[msg]:Runtime 启动完成
  3528. 2021-08-16 19:00:52.0820 Info: [source]:runtime,[msg]:Runtime 启动
  3529. 2021-08-16 19:00:52.2160 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3530. 2021-08-16 19:00:52.4630 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3531. 2021-08-16 19:00:52.4800 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3532. 2021-08-16 19:00:52.5200 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3533. 2021-08-16 19:00:52.5200 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3534. 2021-08-16 19:00:52.5290 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3535. 2021-08-16 19:00:52.5290 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3536. 2021-08-16 19:00:52.5290 Info: [source]:runtime,[msg]:Runtime 启动完成
  3537. 2021-08-16 19:00:56.8610 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3538. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3539. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3540. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3541. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3542. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3543. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3544. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3545. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3546. 2021-08-16 19:00:56.9190 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3547. 2021-08-16 19:00:56.9470 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3548. 2021-08-16 19:03:05.8090 Info: [source]:runtime,[msg]:Runtime 启动
  3549. 2021-08-16 19:03:05.9530 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3550. 2021-08-16 19:03:06.2870 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3551. 2021-08-16 19:03:06.3050 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3552. 2021-08-16 19:03:06.3290 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3553. 2021-08-16 19:03:06.3360 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3554. 2021-08-16 19:03:06.3360 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3555. 2021-08-16 19:03:06.3360 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3556. 2021-08-16 19:03:06.3360 Info: [source]:runtime,[msg]:Runtime 启动完成
  3557. 2021-08-16 19:03:10.5610 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3558. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3559. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3560. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3561. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3562. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3563. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3564. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3565. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3566. 2021-08-16 19:03:10.6200 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3567. 2021-08-16 19:03:10.6480 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3568. 2021-08-16 19:07:45.6520 Info: [source]:runtime,[msg]:Runtime 启动
  3569. 2021-08-16 19:07:45.8060 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3570. 2021-08-16 19:07:46.1220 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3571. 2021-08-16 19:07:46.1430 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3572. 2021-08-16 19:07:46.1890 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3573. 2021-08-16 19:07:46.1950 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3574. 2021-08-16 19:07:46.1950 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3575. 2021-08-16 19:07:46.1950 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3576. 2021-08-16 19:07:46.1950 Info: [source]:runtime,[msg]:Runtime 启动完成
  3577. 2021-08-16 19:07:50.3990 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3578. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3579. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3580. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3581. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3582. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3583. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3584. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3585. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3586. 2021-08-16 19:07:50.4520 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3587. 2021-08-16 19:07:50.4600 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3588. 2021-08-16 19:18:55.4290 Info: [source]:runtime,[msg]:Runtime 启动
  3589. 2021-08-16 19:18:55.5590 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3590. 2021-08-16 19:18:55.8170 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3591. 2021-08-16 19:18:55.8380 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3592. 2021-08-16 19:18:55.8710 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3593. 2021-08-16 19:18:55.8770 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3594. 2021-08-16 19:18:55.8770 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3595. 2021-08-16 19:18:55.8770 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3596. 2021-08-16 19:18:55.8770 Info: [source]:runtime,[msg]:Runtime 启动完成
  3597. 2021-08-16 19:19:00.6330 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3598. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3599. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3600. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3601. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3602. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3603. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3604. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3605. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3606. 2021-08-16 19:19:00.7100 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3607. 2021-08-16 19:19:00.7180 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3608. 2021-08-16 19:23:16.4550 Info: [source]:runtime,[msg]:Runtime 启动
  3609. 2021-08-16 19:23:16.5930 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3610. 2021-08-16 19:23:17.0150 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3611. 2021-08-16 19:23:17.0490 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3612. 2021-08-16 19:23:17.0830 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3613. 2021-08-16 19:23:17.0930 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3614. 2021-08-16 19:23:17.0930 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3615. 2021-08-16 19:23:17.0930 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3616. 2021-08-16 19:23:17.0930 Info: [source]:runtime,[msg]:Runtime 启动完成
  3617. 2021-08-16 19:23:22.2580 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3618. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3619. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3620. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3621. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3622. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3623. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3624. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3625. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3626. 2021-08-16 19:23:22.3330 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3627. 2021-08-16 19:23:22.3520 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3628. 2021-08-16 19:24:39.2150 Info: [source]:runtime,[msg]:Runtime 启动
  3629. 2021-08-16 19:24:39.3840 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3630. 2021-08-16 19:24:39.6490 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3631. 2021-08-16 19:24:39.6670 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3632. 2021-08-16 19:24:39.7020 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3633. 2021-08-16 19:24:39.7070 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3634. 2021-08-16 19:24:39.7070 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3635. 2021-08-16 19:24:39.7070 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3636. 2021-08-16 19:24:39.7070 Info: [source]:runtime,[msg]:Runtime 启动完成
  3637. 2021-08-16 19:24:44.1900 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3638. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3639. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3640. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3641. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3642. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3643. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3644. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3645. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3646. 2021-08-16 19:24:44.2430 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3647. 2021-08-16 19:24:44.2430 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3648. 2021-08-16 19:32:08.5140 Info: [source]:runtime,[msg]:Runtime 启动
  3649. 2021-08-16 19:32:08.7140 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3650. 2021-08-16 19:32:09.0740 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3651. 2021-08-16 19:32:09.0950 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3652. 2021-08-16 19:32:09.3700 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3653. 2021-08-16 19:32:09.3770 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3654. 2021-08-16 19:32:09.3770 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3655. 2021-08-16 19:32:09.3770 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3656. 2021-08-16 19:32:09.3770 Info: [source]:runtime,[msg]:Runtime 启动完成
  3657. 2021-08-16 19:32:17.3550 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3658. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3659. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3660. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3661. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3662. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3663. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3664. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3665. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3666. 2021-08-16 19:32:17.4160 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3667. 2021-08-16 19:32:17.4260 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3668. 2021-08-16 19:38:02.5520 Info: [source]:runtime,[msg]:Runtime 启动
  3669. 2021-08-16 19:38:02.7110 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3670. 2021-08-16 19:38:03.0400 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3671. 2021-08-16 19:38:03.1190 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3672. 2021-08-16 19:38:03.1990 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3673. 2021-08-16 19:38:03.2050 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3674. 2021-08-16 19:38:03.2050 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3675. 2021-08-16 19:38:03.2050 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3676. 2021-08-16 19:38:03.2050 Info: [source]:runtime,[msg]:Runtime 启动完成
  3677. 2021-08-16 19:38:07.4550 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3678. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3679. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3680. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3681. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3682. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3683. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3684. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3685. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3686. 2021-08-16 19:38:07.5220 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3687. 2021-08-16 19:38:07.5400 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3688. 2021-08-16 19:43:36.0160 Info: [source]:runtime,[msg]:Runtime 启动
  3689. 2021-08-16 19:43:36.2430 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3690. 2021-08-16 19:43:36.5580 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3691. 2021-08-16 19:43:36.5840 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3692. 2021-08-16 19:43:36.6120 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3693. 2021-08-16 19:43:36.6120 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3694. 2021-08-16 19:43:36.6120 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3695. 2021-08-16 19:43:36.6120 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3696. 2021-08-16 19:43:36.6220 Info: [source]:runtime,[msg]:Runtime 启动完成
  3697. 2021-08-16 19:43:41.0860 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3698. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3699. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3700. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3701. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3702. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3703. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3704. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3705. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3706. 2021-08-16 19:43:41.1450 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3707. 2021-08-16 19:43:41.1630 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3708. 2021-08-16 19:58:03.4820 Info: [source]:runtime,[msg]:Runtime 启动
  3709. 2021-08-16 19:58:03.6800 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3710. 2021-08-16 19:58:03.9590 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3711. 2021-08-16 19:58:03.9750 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3712. 2021-08-16 19:58:03.9980 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3713. 2021-08-16 19:58:04.0040 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3714. 2021-08-16 19:58:04.0040 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3715. 2021-08-16 19:58:04.0040 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3716. 2021-08-16 19:58:04.0040 Info: [source]:runtime,[msg]:Runtime 启动完成
  3717. 2021-08-16 19:58:08.2950 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3718. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3719. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3720. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3721. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3722. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3723. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3724. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3725. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3726. 2021-08-16 19:58:08.3550 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3727. 2021-08-16 19:58:08.3690 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3728. 2021-08-16 19:59:55.5560 Info: [source]:runtime,[msg]:Runtime 启动
  3729. 2021-08-16 19:59:55.7340 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3730. 2021-08-16 19:59:56.1100 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3731. 2021-08-16 19:59:56.1320 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3732. 2021-08-16 19:59:56.1640 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3733. 2021-08-16 19:59:56.1710 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3734. 2021-08-16 19:59:56.1710 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3735. 2021-08-16 19:59:56.1710 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3736. 2021-08-16 19:59:56.1710 Info: [source]:runtime,[msg]:Runtime 启动完成
  3737. 2021-08-16 20:00:00.7940 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3738. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3739. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3740. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3741. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3742. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3743. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3744. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3745. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3746. 2021-08-16 20:00:00.8340 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3747. 2021-08-16 20:00:00.8510 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3748. 2021-08-16 20:00:52.5910 Info: [source]:runtime,[msg]:AppHost 停止插件
  3749. 2021-08-16 20:00:52.6030 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3750. 2021-08-16 20:00:52.6030 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3751. 2021-08-16 20:00:52.6030 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3752. 2021-08-16 20:00:52.6030 Info: [source]:runtime,[msg]:Runtime 关闭
  3753. 2021-08-16 20:01:04.3280 Info: [source]:runtime,[msg]:Runtime 启动
  3754. 2021-08-16 20:01:04.4920 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3755. 2021-08-16 20:01:04.9310 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3756. 2021-08-16 20:01:04.9460 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3757. 2021-08-16 20:01:04.9740 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3758. 2021-08-16 20:01:04.9800 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3759. 2021-08-16 20:01:04.9800 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3760. 2021-08-16 20:01:04.9800 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3761. 2021-08-16 20:01:04.9800 Info: [source]:runtime,[msg]:Runtime 启动完成
  3762. 2021-08-16 20:01:09.2890 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3763. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3764. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3765. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3766. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3767. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3768. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3769. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3770. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3771. 2021-08-16 20:01:09.3430 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3772. 2021-08-16 20:01:09.3600 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3773. 2021-08-16 20:07:30.1950 Info: [source]:runtime,[msg]:Runtime 启动
  3774. 2021-08-16 20:07:30.3720 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3775. 2021-08-16 20:07:30.7580 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3776. 2021-08-16 20:07:30.7860 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3777. 2021-08-16 20:07:30.8270 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3778. 2021-08-16 20:07:30.8340 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3779. 2021-08-16 20:07:30.8340 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3780. 2021-08-16 20:07:30.8340 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3781. 2021-08-16 20:07:30.8340 Info: [source]:runtime,[msg]:Runtime 启动完成
  3782. 2021-08-16 20:07:35.4010 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3783. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3784. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3785. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3786. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3787. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3788. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3789. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3790. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3791. 2021-08-16 20:07:35.4630 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3792. 2021-08-16 20:07:35.4710 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3793. 2021-08-16 20:09:44.7580 Info: [source]:runtime,[msg]:Runtime 启动
  3794. 2021-08-16 20:09:44.8980 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3795. 2021-08-16 20:09:45.3330 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3796. 2021-08-16 20:09:45.3490 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3797. 2021-08-16 20:09:45.3760 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3798. 2021-08-16 20:09:45.3760 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3799. 2021-08-16 20:09:45.3760 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3800. 2021-08-16 20:09:45.3860 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3801. 2021-08-16 20:09:45.3860 Info: [source]:runtime,[msg]:Runtime 启动完成
  3802. 2021-08-16 20:09:49.8120 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3803. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3804. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3805. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3806. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3807. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3808. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3809. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3810. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3811. 2021-08-16 20:09:49.8700 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3812. 2021-08-16 20:09:49.8960 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3813. 2021-08-16 20:14:20.1040 Info: [source]:runtime,[msg]:Runtime 启动
  3814. 2021-08-16 20:14:20.2510 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3815. 2021-08-16 20:14:20.6450 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3816. 2021-08-16 20:14:20.6900 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3817. 2021-08-16 20:14:20.7220 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3818. 2021-08-16 20:14:20.7280 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3819. 2021-08-16 20:14:20.7280 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3820. 2021-08-16 20:14:20.7280 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3821. 2021-08-16 20:14:20.7280 Info: [source]:runtime,[msg]:Runtime 启动完成
  3822. 2021-08-16 20:14:25.3740 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3823. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3824. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3825. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3826. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3827. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3828. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3829. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3830. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3831. 2021-08-16 20:14:25.4360 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3832. 2021-08-16 20:14:25.4540 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3833. 2021-08-16 20:44:27.0740 Info: [source]:runtime,[msg]:Runtime 启动
  3834. 2021-08-16 20:44:27.2120 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3835. 2021-08-16 20:44:27.5120 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3836. 2021-08-16 20:44:27.5350 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3837. 2021-08-16 20:44:27.6060 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3838. 2021-08-16 20:44:27.6120 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3839. 2021-08-16 20:44:27.6120 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3840. 2021-08-16 20:44:27.6120 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3841. 2021-08-16 20:44:27.6120 Info: [source]:runtime,[msg]:Runtime 启动完成
  3842. 2021-08-16 20:44:31.9770 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3843. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3844. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3845. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3846. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3847. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3848. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3849. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3850. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3851. 2021-08-16 20:44:32.0290 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3852. 2021-08-16 20:44:32.0460 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3853. 2021-08-16 20:57:41.5550 Info: [source]:runtime,[msg]:Runtime 启动
  3854. 2021-08-16 20:57:41.6920 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3855. 2021-08-16 20:57:42.0150 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3856. 2021-08-16 20:57:42.0310 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3857. 2021-08-16 20:57:42.0530 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3858. 2021-08-16 20:57:42.0530 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3859. 2021-08-16 20:57:42.0590 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3860. 2021-08-16 20:57:42.0590 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3861. 2021-08-16 20:57:42.0590 Info: [source]:runtime,[msg]:Runtime 启动完成
  3862. 2021-08-16 20:57:46.3170 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3863. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3864. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3865. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3866. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3867. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3868. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3869. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3870. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3871. 2021-08-16 20:57:46.3770 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3872. 2021-08-16 20:57:46.4050 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3873. 2021-08-16 21:02:17.4450 Info: [source]:runtime,[msg]:Runtime 启动
  3874. 2021-08-16 21:02:17.6060 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3875. 2021-08-16 21:02:18.0000 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3876. 2021-08-16 21:02:18.0270 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3877. 2021-08-16 21:02:18.0500 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3878. 2021-08-16 21:02:18.0560 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3879. 2021-08-16 21:02:18.0560 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3880. 2021-08-16 21:02:18.0560 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3881. 2021-08-16 21:02:18.0560 Info: [source]:runtime,[msg]:Runtime 启动完成
  3882. 2021-08-16 21:02:22.4660 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3883. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3884. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3885. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3886. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3887. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3888. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3889. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3890. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3891. 2021-08-16 21:02:22.5210 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3892. 2021-08-16 21:02:22.5380 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3893. 2021-08-16 21:42:11.2010 Info: [source]:runtime,[msg]:AppHost 停止插件
  3894. 2021-08-16 21:42:11.2010 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3895. 2021-08-16 21:42:11.2010 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3896. 2021-08-16 21:42:11.2010 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3897. 2021-08-16 21:42:11.2010 Info: [source]:runtime,[msg]:Runtime 关闭
  3898. 2021-08-16 21:43:36.4450 Info: [source]:runtime,[msg]:Runtime 启动
  3899. 2021-08-16 21:43:36.5680 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3900. 2021-08-16 21:43:36.8430 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3901. 2021-08-16 21:43:36.8570 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3902. 2021-08-16 21:43:36.8980 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3903. 2021-08-16 21:43:36.8980 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3904. 2021-08-16 21:43:36.8980 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3905. 2021-08-16 21:43:36.8980 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3906. 2021-08-16 21:43:36.8980 Info: [source]:runtime,[msg]:Runtime 启动完成
  3907. 2021-08-16 21:43:41.1750 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3908. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3909. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3910. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3911. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3912. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3913. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3914. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3915. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3916. 2021-08-16 21:43:41.2310 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3917. 2021-08-16 21:43:41.2310 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:TCPIP0::169.254.17.73::inst0::INSTR。
  3918. 2021-08-16 21:47:25.7560 Info: [source]:runtime,[msg]:AppHost 停止插件
  3919. 2021-08-16 21:47:25.7560 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3920. 2021-08-16 21:47:25.7560 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3921. 2021-08-16 21:47:25.7560 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3922. 2021-08-16 21:47:25.7560 Info: [source]:runtime,[msg]:Runtime 关闭
  3923. 2021-08-20 09:21:06.2898 Info: [source]:runtime,[msg]:Runtime 启动
  3924. 2021-08-20 09:21:06.4078 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3925. 2021-08-20 09:21:06.7078 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3926. 2021-08-20 09:21:06.7258 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3927. 2021-08-20 09:21:06.8048 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3928. 2021-08-20 09:21:06.8048 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3929. 2021-08-20 09:21:06.8048 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3930. 2021-08-20 09:21:06.8048 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3931. 2021-08-20 09:21:06.8048 Info: [source]:runtime,[msg]:Runtime 启动完成
  3932. 2021-08-20 09:21:16.2198 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3933. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3934. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3935. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3936. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3937. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3938. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3939. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3940. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3941. 2021-08-20 09:21:18.2578 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3942. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3943. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3944. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3945. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3946. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3947. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3948. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3949. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3950. 2021-08-20 09:21:18.2718 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3951. 2021-08-20 09:21:18.3318 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  3952. 2021-08-20 09:32:04.7618 Info: [source]:runtime,[msg]:Runtime 启动
  3953. 2021-08-20 09:32:04.9078 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3954. 2021-08-20 09:32:05.2958 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3955. 2021-08-20 09:32:05.3108 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3956. 2021-08-20 09:32:05.3368 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3957. 2021-08-20 09:32:05.3368 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3958. 2021-08-20 09:32:05.3368 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3959. 2021-08-20 09:32:05.3468 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3960. 2021-08-20 09:32:05.3468 Info: [source]:runtime,[msg]:Runtime 启动完成
  3961. 2021-08-20 09:32:16.0538 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3962. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3963. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3964. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3965. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3966. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3967. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3968. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3969. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3970. 2021-08-20 09:32:18.0818 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3971. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3972. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3973. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3974. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3975. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3976. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3977. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3978. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3979. 2021-08-20 09:32:18.0918 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3980. 2021-08-20 09:32:18.1178 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  3981. 2021-08-20 09:34:43.4978 Info: [source]:runtime,[msg]:Runtime 启动
  3982. 2021-08-20 09:34:43.6308 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3983. 2021-08-20 09:34:43.9418 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3984. 2021-08-20 09:34:43.9558 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3985. 2021-08-20 09:34:43.9778 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3986. 2021-08-20 09:34:43.9778 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3987. 2021-08-20 09:34:43.9838 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3988. 2021-08-20 09:34:43.9838 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3989. 2021-08-20 09:34:43.9838 Info: [source]:runtime,[msg]:Runtime 启动完成
  3990. 2021-08-20 09:34:47.9688 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  3991. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  3992. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  3993. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  3994. 在 System.Activator.CreateInstance(Type type, Object[] args)
  3995. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  3996. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  3997. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  3998. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3999. 2021-08-20 09:34:47.9868 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4000. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4001. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4002. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4003. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4004. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4005. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4006. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4007. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4008. 2021-08-20 09:34:47.9968 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4009. 2021-08-20 09:34:48.0248 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  4010. 2021-08-20 09:39:20.5448 Info: [source]:runtime,[msg]:Runtime 启动
  4011. 2021-08-20 09:39:20.6808 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4012. 2021-08-20 09:39:21.0048 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4013. 2021-08-20 09:39:21.0238 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4014. 2021-08-20 09:39:21.0688 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4015. 2021-08-20 09:39:21.0738 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4016. 2021-08-20 09:39:21.0738 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4017. 2021-08-20 09:39:21.0738 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4018. 2021-08-20 09:39:21.0738 Info: [source]:runtime,[msg]:Runtime 启动完成
  4019. 2021-08-20 09:39:25.0268 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4020. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4021. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4022. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4023. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4024. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4025. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4026. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4027. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4028. 2021-08-20 09:39:25.0428 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4029. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4030. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4031. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4032. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4033. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4034. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4035. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4036. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4037. 2021-08-20 09:39:25.0568 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4038. 2021-08-20 09:39:25.0798 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  4039. 2021-08-20 09:49:14.1448 Info: [source]:runtime,[msg]:Runtime 启动
  4040. 2021-08-20 09:49:14.2778 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4041. 2021-08-20 09:49:14.6098 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4042. 2021-08-20 09:49:14.6378 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4043. 2021-08-20 09:49:14.6658 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4044. 2021-08-20 09:49:14.6718 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4045. 2021-08-20 09:49:14.6718 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4046. 2021-08-20 09:49:14.6718 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4047. 2021-08-20 09:49:14.6718 Info: [source]:runtime,[msg]:Runtime 启动完成
  4048. 2021-08-20 09:49:18.6208 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4049. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4050. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4051. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4052. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4053. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4054. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4055. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4056. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4057. 2021-08-20 09:49:18.6378 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4058. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4059. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4060. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4061. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4062. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4063. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4064. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4065. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4066. 2021-08-20 09:49:18.6378 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4067. 2021-08-20 09:49:18.6628 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  4068. 2021-08-20 10:53:29.4098 Info: [source]:runtime,[msg]:Runtime 启动
  4069. 2021-08-20 10:53:29.5328 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4070. 2021-08-20 10:53:29.8458 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4071. 2021-08-20 10:53:29.8608 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4072. 2021-08-20 10:53:29.8948 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4073. 2021-08-20 10:53:29.8948 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4074. 2021-08-20 10:53:29.8948 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4075. 2021-08-20 10:53:29.8948 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4076. 2021-08-20 10:53:29.8948 Info: [source]:runtime,[msg]:Runtime 启动完成
  4077. 2021-08-20 10:53:43.8438 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  4078. 在 NationalInstruments.VisaNS.Session.CheckStatusAndThrow(Int32 status)
  4079. 在 NationalInstruments.VisaNS.Internal.MessageBasedSessionImpl.ReadString(Int32 countToRead)
  4080. 在 NationalInstruments.VisaNS.MessageBasedSession.Query(String dataToWrite)
  4081. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 182
  4082. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4083. 2021-08-20 10:53:43.8858 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4084. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4085. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4086. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4087. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4088. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4089. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4090. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4091. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4092. 2021-08-20 10:53:43.9038 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4093. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4094. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4095. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4096. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4097. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4098. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4099. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4100. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4101. 2021-08-20 10:53:43.9178 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4102. 2021-08-20 10:53:53.9248 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4103. 2021-08-20 10:56:26.2608 Info: [source]:runtime,[msg]:Runtime 启动
  4104. 2021-08-20 10:56:26.3588 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4105. 2021-08-20 10:56:26.5588 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4106. 2021-08-20 10:56:26.5728 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4107. 2021-08-20 10:56:26.5978 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4108. 2021-08-20 10:56:26.5978 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4109. 2021-08-20 10:56:26.5978 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4110. 2021-08-20 10:56:26.5978 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4111. 2021-08-20 10:56:26.5978 Info: [source]:runtime,[msg]:Runtime 启动完成
  4112. 2021-08-20 10:56:40.6108 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4113. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4114. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4115. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4116. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4117. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4118. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4119. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4120. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4121. 2021-08-20 10:56:40.6518 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4122. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4123. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4124. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4125. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4126. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4127. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4128. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4129. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4130. 2021-08-20 10:56:40.6668 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4131. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4132. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4133. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4134. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4135. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4136. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4137. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4138. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4139. 2021-08-20 10:56:40.6668 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4140. 2021-08-20 10:56:50.7048 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  4141. 2021-08-20 11:01:23.5228 Info: [source]:runtime,[msg]:Runtime 启动
  4142. 2021-08-20 11:01:23.6508 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4143. 2021-08-20 11:01:23.9808 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4144. 2021-08-20 11:01:23.9808 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4145. 2021-08-20 11:01:24.0198 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4146. 2021-08-20 11:01:24.0198 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4147. 2021-08-20 11:01:24.0278 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4148. 2021-08-20 11:01:24.0278 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4149. 2021-08-20 11:01:24.0278 Info: [source]:runtime,[msg]:Runtime 启动完成
  4150. 2021-08-20 11:01:28.2328 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4151. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4152. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4153. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4154. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4155. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4156. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4157. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4158. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4159. 2021-08-20 11:01:28.2518 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4160. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4161. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4162. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4163. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4164. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4165. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4166. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4167. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4168. 2021-08-20 11:01:28.2668 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4169. 2021-08-20 11:01:28.2848 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4170. 2021-08-20 11:08:09.0418 Info: [source]:runtime,[msg]:Runtime 启动
  4171. 2021-08-20 11:08:09.2008 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4172. 2021-08-20 11:08:09.7218 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4173. 2021-08-20 11:08:09.7488 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4174. 2021-08-20 11:08:09.8098 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4175. 2021-08-20 11:08:09.8098 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4176. 2021-08-20 11:08:09.8198 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4177. 2021-08-20 11:08:09.8198 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4178. 2021-08-20 11:08:09.8198 Info: [source]:runtime,[msg]:Runtime 启动完成
  4179. 2021-08-20 11:08:14.7918 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4180. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4181. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4182. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4183. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4184. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4185. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4186. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4187. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4188. 2021-08-20 11:08:14.8088 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4189. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4190. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4191. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4192. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4193. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4194. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4195. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4196. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4197. 2021-08-20 11:08:14.8258 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4198. 2021-08-20 11:08:14.9198 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4199. 2021-08-20 11:12:52.7168 Info: [source]:runtime,[msg]:Runtime 启动
  4200. 2021-08-20 11:12:52.8648 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4201. 2021-08-20 11:12:53.3468 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4202. 2021-08-20 11:12:53.3618 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4203. 2021-08-20 11:12:53.3938 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4204. 2021-08-20 11:12:53.3988 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4205. 2021-08-20 11:12:53.3988 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4206. 2021-08-20 11:12:53.3988 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4207. 2021-08-20 11:12:53.3988 Info: [source]:runtime,[msg]:Runtime 启动完成
  4208. 2021-08-20 11:12:58.5198 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4209. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4210. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4211. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4212. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4213. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4214. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4215. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4216. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4217. 2021-08-20 11:12:58.5418 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4218. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4219. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4220. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4221. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4222. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4223. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4224. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4225. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4226. 2021-08-20 11:12:58.5598 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4227. 2021-08-20 11:12:58.5818 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4228. 2021-08-20 11:15:17.1728 Info: [source]:runtime,[msg]:Runtime 启动
  4229. 2021-08-20 11:15:17.3158 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4230. 2021-08-20 11:15:17.6118 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4231. 2021-08-20 11:15:17.6278 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4232. 2021-08-20 11:15:17.6538 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4233. 2021-08-20 11:15:17.6538 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4234. 2021-08-20 11:15:17.6538 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4235. 2021-08-20 11:15:17.6538 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4236. 2021-08-20 11:15:17.6538 Info: [source]:runtime,[msg]:Runtime 启动完成
  4237. 2021-08-20 11:15:22.3338 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4238. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4239. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4240. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4241. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4242. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4243. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4244. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4245. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4246. 2021-08-20 11:15:22.3668 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4247. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4248. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4249. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4250. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4251. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4252. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4253. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4254. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4255. 2021-08-20 11:15:22.3848 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4256. 2021-08-20 11:15:22.4108 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4257. 2021-08-20 11:20:19.2208 Info: [source]:runtime,[msg]:Runtime 启动
  4258. 2021-08-20 11:20:19.3758 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4259. 2021-08-20 11:20:19.8178 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4260. 2021-08-20 11:20:19.8328 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4261. 2021-08-20 11:20:19.8668 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4262. 2021-08-20 11:20:19.8708 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4263. 2021-08-20 11:20:19.8708 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4264. 2021-08-20 11:20:19.8708 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4265. 2021-08-20 11:20:19.8708 Info: [source]:runtime,[msg]:Runtime 启动完成
  4266. 2021-08-20 11:20:24.0108 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4267. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4268. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4269. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4270. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4271. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4272. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4273. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4274. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4275. 2021-08-20 11:20:24.0268 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4276. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4277. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4278. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4279. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4280. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4281. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4282. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4283. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4284. 2021-08-20 11:20:24.0558 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4285. 2021-08-20 11:20:24.0728 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4286. 2021-08-20 11:26:22.7298 Info: [source]:runtime,[msg]:Runtime 启动
  4287. 2021-08-20 11:26:22.8648 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4288. 2021-08-20 11:26:23.1498 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4289. 2021-08-20 11:26:23.1658 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4290. 2021-08-20 11:26:23.2558 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4291. 2021-08-20 11:26:23.2628 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4292. 2021-08-20 11:26:23.2628 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4293. 2021-08-20 11:26:23.2628 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4294. 2021-08-20 11:26:23.2628 Info: [source]:runtime,[msg]:Runtime 启动完成
  4295. 2021-08-20 11:26:27.4318 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4296. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4297. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4298. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4299. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4300. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4301. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4302. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4303. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4304. 2021-08-20 11:26:27.4548 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4305. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4306. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4307. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4308. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4309. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4310. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4311. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4312. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4313. 2021-08-20 11:26:27.4678 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4314. 2021-08-20 11:26:27.4868 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4315. 2021-08-20 11:33:48.2728 Info: [source]:runtime,[msg]:Runtime 启动
  4316. 2021-08-20 11:33:48.3968 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4317. 2021-08-20 11:33:48.7368 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4318. 2021-08-20 11:33:48.7368 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4319. 2021-08-20 11:33:48.7748 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4320. 2021-08-20 11:33:48.7748 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4321. 2021-08-20 11:33:48.7748 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4322. 2021-08-20 11:33:48.7828 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4323. 2021-08-20 11:33:48.7828 Info: [source]:runtime,[msg]:Runtime 启动完成
  4324. 2021-08-20 11:33:52.9818 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4325. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4326. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4327. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4328. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4329. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4330. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4331. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4332. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4333. 2021-08-20 11:33:52.9988 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4334. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4335. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4336. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4337. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4338. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4339. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4340. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4341. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4342. 2021-08-20 11:33:53.0148 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4343. 2021-08-20 11:33:53.0358 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4344. 2021-08-20 11:35:15.0248 Info: [source]:runtime,[msg]:Runtime 启动
  4345. 2021-08-20 11:35:15.1788 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4346. 2021-08-20 11:35:15.5228 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4347. 2021-08-20 11:35:15.5388 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4348. 2021-08-20 11:35:15.5678 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4349. 2021-08-20 11:35:15.5678 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4350. 2021-08-20 11:35:15.5678 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4351. 2021-08-20 11:35:15.5678 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4352. 2021-08-20 11:35:15.5678 Info: [source]:runtime,[msg]:Runtime 启动完成
  4353. 2021-08-20 11:35:21.3628 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4354. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4355. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4356. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4357. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4358. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4359. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4360. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4361. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4362. 2021-08-20 11:35:21.3788 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4363. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4364. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4365. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4366. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4367. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4368. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4369. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4370. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4371. 2021-08-20 11:35:21.5858 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4372. 2021-08-20 11:35:21.6678 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4373. 2021-08-20 11:38:25.8938 Info: [source]:runtime,[msg]:Runtime 启动
  4374. 2021-08-20 11:38:26.0488 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4375. 2021-08-20 11:38:26.3548 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4376. 2021-08-20 11:38:26.3548 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4377. 2021-08-20 11:38:26.3888 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4378. 2021-08-20 11:38:26.3888 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4379. 2021-08-20 11:38:26.3888 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4380. 2021-08-20 11:38:26.3888 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4381. 2021-08-20 11:38:26.3888 Info: [source]:runtime,[msg]:Runtime 启动完成
  4382. 2021-08-20 11:38:30.6288 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4383. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4384. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4385. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4386. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4387. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4388. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4389. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4390. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4391. 2021-08-20 11:38:30.6588 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4392. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4393. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4394. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4395. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4396. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4397. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4398. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4399. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4400. 2021-08-20 11:38:30.6748 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4401. 2021-08-20 11:38:30.6918 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4402. 2021-08-20 12:02:02.7798 Info: [source]:runtime,[msg]:AppHost 停止插件
  4403. 2021-08-20 12:02:02.7818 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  4404. 2021-08-20 12:02:02.7818 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  4405. 2021-08-20 12:02:02.7818 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  4406. 2021-08-20 12:02:02.7818 Info: [source]:runtime,[msg]:Runtime 关闭
  4407. 2021-08-20 14:51:20.3448 Info: [source]:runtime,[msg]:Runtime 启动
  4408. 2021-08-20 14:51:20.4838 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4409. 2021-08-20 14:51:20.8018 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4410. 2021-08-20 14:51:20.8208 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4411. 2021-08-20 14:51:20.9238 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4412. 2021-08-20 14:51:20.9308 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4413. 2021-08-20 14:51:20.9308 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4414. 2021-08-20 14:51:20.9308 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4415. 2021-08-20 14:51:20.9308 Info: [source]:runtime,[msg]:Runtime 启动完成
  4416. 2021-08-20 14:51:26.2268 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  4417. 在 NationalInstruments.VisaNS.Session.CheckStatusAndThrow(Int32 status)
  4418. 在 NationalInstruments.VisaNS.Internal.MessageBasedSessionImpl.ReadString(Int32 countToRead)
  4419. 在 NationalInstruments.VisaNS.MessageBasedSession.Query(String dataToWrite)
  4420. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 182
  4421. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4422. 2021-08-20 14:51:30.3048 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4423. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4424. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4425. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4426. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4427. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4428. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4429. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4430. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4431. 2021-08-20 14:51:32.3288 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4432. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4433. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4434. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4435. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4436. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4437. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4438. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4439. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4440. 2021-08-20 14:51:32.3408 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4441. 2021-08-20 14:51:32.3478 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4442. 2021-08-20 14:52:40.8428 Info: [source]:runtime,[msg]:Runtime 启动
  4443. 2021-08-20 14:52:40.9738 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4444. 2021-08-20 14:52:41.2628 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4445. 2021-08-20 14:52:41.3198 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4446. 2021-08-20 14:52:41.3518 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4447. 2021-08-20 14:52:41.3518 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4448. 2021-08-20 14:52:41.3518 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4449. 2021-08-20 14:52:41.3518 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4450. 2021-08-20 14:52:41.3518 Info: [source]:runtime,[msg]:Runtime 启动完成
  4451. 2021-08-20 14:52:49.4818 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4452. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4453. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4454. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4455. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4456. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4457. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4458. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4459. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4460. 2021-08-20 14:52:51.5158 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4461. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4462. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4463. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4464. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4465. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4466. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4467. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4468. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4469. 2021-08-20 14:52:51.5338 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4470. 2021-08-20 14:52:51.5528 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4471. 2021-08-20 14:53:32.0698 Info: [source]:runtime,[msg]:Runtime 启动
  4472. 2021-08-20 14:53:32.2278 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4473. 2021-08-20 14:53:32.6138 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4474. 2021-08-20 14:53:32.6298 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4475. 2021-08-20 14:53:32.6548 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4476. 2021-08-20 14:53:32.6548 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4477. 2021-08-20 14:53:32.6548 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4478. 2021-08-20 14:53:32.6548 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4479. 2021-08-20 14:53:32.6548 Info: [source]:runtime,[msg]:Runtime 启动完成
  4480. 2021-08-20 14:53:40.7148 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4481. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4482. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4483. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4484. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4485. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4486. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4487. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4488. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4489. 2021-08-20 14:53:42.7538 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4490. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4491. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4492. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4493. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4494. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4495. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4496. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4497. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4498. 2021-08-20 14:53:42.7808 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4499. 2021-08-20 14:53:42.8098 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4500. 2021-08-20 15:00:32.8908 Info: [source]:runtime,[msg]:Runtime 启动
  4501. 2021-08-20 15:00:33.0108 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4502. 2021-08-20 15:00:33.3448 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4503. 2021-08-20 15:00:33.3578 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4504. 2021-08-20 15:00:33.3798 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4505. 2021-08-20 15:00:33.3798 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4506. 2021-08-20 15:00:33.3898 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4507. 2021-08-20 15:00:33.3898 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4508. 2021-08-20 15:00:33.3898 Info: [source]:runtime,[msg]:Runtime 启动完成
  4509. 2021-08-20 15:00:41.4748 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4510. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4511. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4512. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4513. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4514. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4515. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4516. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4517. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4518. 2021-08-20 15:00:43.5198 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4519. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4520. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4521. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4522. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4523. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4524. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4525. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4526. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4527. 2021-08-20 15:00:43.8118 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4528. 2021-08-20 15:00:43.8758 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4529. 2021-08-20 15:04:56.4478 Info: [source]:runtime,[msg]:Runtime 启动
  4530. 2021-08-20 15:04:56.5508 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4531. 2021-08-20 15:04:56.7618 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4532. 2021-08-20 15:04:56.7898 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4533. 2021-08-20 15:04:56.8118 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4534. 2021-08-20 15:04:56.8168 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4535. 2021-08-20 15:04:56.8168 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4536. 2021-08-20 15:04:56.8168 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4537. 2021-08-20 15:04:56.8168 Info: [source]:runtime,[msg]:Runtime 启动完成
  4538. 2021-08-20 15:05:05.4198 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4539. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4540. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4541. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4542. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4543. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4544. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4545. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4546. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4547. 2021-08-20 15:05:07.4728 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4548. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4549. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4550. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4551. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4552. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4553. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4554. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4555. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4556. 2021-08-20 15:05:07.4968 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4557. 2021-08-20 15:05:07.5258 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4558. 2021-08-20 15:07:24.7038 Info: [source]:runtime,[msg]:Runtime 启动
  4559. 2021-08-20 15:07:24.8398 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4560. 2021-08-20 15:07:25.1558 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4561. 2021-08-20 15:07:25.1718 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4562. 2021-08-20 15:07:25.1948 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4563. 2021-08-20 15:07:25.1948 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4564. 2021-08-20 15:07:25.2018 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4565. 2021-08-20 15:07:25.2018 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4566. 2021-08-20 15:07:25.2018 Info: [source]:runtime,[msg]:Runtime 启动完成
  4567. 2021-08-20 15:07:33.4448 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4568. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4569. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4570. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4571. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4572. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4573. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4574. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4575. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4576. 2021-08-20 15:07:35.4828 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4577. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4578. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4579. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4580. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4581. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4582. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4583. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4584. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4585. 2021-08-20 15:07:35.6318 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4586. 2021-08-20 15:07:35.7038 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4587. 2021-08-20 15:09:51.7718 Info: [source]:runtime,[msg]:Runtime 启动
  4588. 2021-08-20 15:09:51.8998 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4589. 2021-08-20 15:09:52.2078 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4590. 2021-08-20 15:09:52.2228 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4591. 2021-08-20 15:09:52.2438 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4592. 2021-08-20 15:09:52.2548 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4593. 2021-08-20 15:09:52.2548 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4594. 2021-08-20 15:09:52.2548 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4595. 2021-08-20 15:09:52.2548 Info: [source]:runtime,[msg]:Runtime 启动完成
  4596. 2021-08-20 15:10:00.5608 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4597. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4598. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4599. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4600. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4601. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4602. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4603. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4604. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4605. 2021-08-20 15:10:02.5788 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4606. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4607. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4608. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4609. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4610. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4611. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4612. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4613. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4614. 2021-08-20 15:10:02.5938 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4615. 2021-08-20 15:10:02.6198 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4616. 2021-08-20 15:17:40.3328 Info: [source]:runtime,[msg]:Runtime 启动
  4617. 2021-08-20 15:17:40.4638 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4618. 2021-08-20 15:17:40.8048 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4619. 2021-08-20 15:17:40.8488 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4620. 2021-08-20 15:17:40.8878 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4621. 2021-08-20 15:17:40.8938 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4622. 2021-08-20 15:17:40.8938 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4623. 2021-08-20 15:17:40.8938 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4624. 2021-08-20 15:17:40.8938 Info: [source]:runtime,[msg]:Runtime 启动完成
  4625. 2021-08-20 15:17:49.0528 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4626. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4627. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4628. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4629. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4630. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4631. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4632. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4633. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4634. 2021-08-20 15:17:51.0918 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4635. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4636. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4637. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4638. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4639. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4640. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4641. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4642. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4643. 2021-08-20 15:17:51.1108 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4644. 2021-08-20 15:17:51.1308 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4645. 2021-08-20 15:24:54.4368 Info: [source]:runtime,[msg]:Runtime 启动
  4646. 2021-08-20 15:24:54.5538 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4647. 2021-08-20 15:24:54.9988 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4648. 2021-08-20 15:24:55.0138 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4649. 2021-08-20 15:24:55.0558 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4650. 2021-08-20 15:24:55.0558 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4651. 2021-08-20 15:24:55.0558 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4652. 2021-08-20 15:24:55.0558 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4653. 2021-08-20 15:24:55.0558 Info: [source]:runtime,[msg]:Runtime 启动完成
  4654. 2021-08-20 15:24:59.1838 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4655. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4656. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4657. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4658. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4659. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4660. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4661. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4662. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4663. 2021-08-20 15:24:59.1998 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4664. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4665. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4666. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4667. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4668. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4669. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4670. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4671. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4672. 2021-08-20 15:24:59.2128 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4673. 2021-08-20 15:24:59.2338 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4674. 2021-08-20 15:37:03.4528 Info: [source]:runtime,[msg]:Runtime 启动
  4675. 2021-08-20 15:37:03.5748 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4676. 2021-08-20 15:37:03.9028 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4677. 2021-08-20 15:37:03.9188 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4678. 2021-08-20 15:37:03.9418 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4679. 2021-08-20 15:37:03.9418 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4680. 2021-08-20 15:37:03.9418 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4681. 2021-08-20 15:37:03.9418 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4682. 2021-08-20 15:37:03.9418 Info: [source]:runtime,[msg]:Runtime 启动完成
  4683. 2021-08-20 15:37:12.1338 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4684. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4685. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4686. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4687. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4688. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4689. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4690. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4691. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4692. 2021-08-20 15:37:14.2148 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4693. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4694. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4695. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4696. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4697. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4698. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4699. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4700. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4701. 2021-08-20 15:37:14.2278 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4702. 2021-08-20 15:37:14.2608 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4703. 2021-08-20 15:51:49.9248 Info: [source]:runtime,[msg]:Runtime 启动
  4704. 2021-08-20 15:51:50.0658 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4705. 2021-08-20 15:51:50.4138 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4706. 2021-08-20 15:51:50.4278 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4707. 2021-08-20 15:51:50.4508 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4708. 2021-08-20 15:51:50.4508 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4709. 2021-08-20 15:51:50.4508 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4710. 2021-08-20 15:51:50.4508 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4711. 2021-08-20 15:51:50.4508 Info: [source]:runtime,[msg]:Runtime 启动完成
  4712. 2021-08-20 15:51:58.6028 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4713. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4714. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4715. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4716. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4717. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4718. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4719. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4720. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4721. 2021-08-20 15:52:00.6898 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4722. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4723. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4724. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4725. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4726. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4727. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4728. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4729. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4730. 2021-08-20 15:52:00.7028 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4731. 2021-08-20 15:52:00.7228 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4732. 2021-08-20 15:58:02.0948 Info: [source]:runtime,[msg]:Runtime 启动
  4733. 2021-08-20 15:58:02.2778 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4734. 2021-08-20 15:58:02.6048 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4735. 2021-08-20 15:58:02.6188 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4736. 2021-08-20 15:58:02.6388 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4737. 2021-08-20 15:58:02.6388 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4738. 2021-08-20 15:58:02.6388 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4739. 2021-08-20 15:58:02.6388 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4740. 2021-08-20 15:58:02.6388 Info: [source]:runtime,[msg]:Runtime 启动完成
  4741. 2021-08-20 15:58:10.9058 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4742. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4743. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4744. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4745. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4746. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4747. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4748. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4749. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4750. 2021-08-20 15:58:12.9318 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4751. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4752. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4753. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4754. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4755. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4756. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4757. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4758. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4759. 2021-08-20 15:58:12.9538 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4760. 2021-08-20 15:58:12.9738 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4761. 2021-08-20 16:00:45.3998 Info: [source]:runtime,[msg]:AppHost 停止插件
  4762. 2021-08-20 16:00:45.3998 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  4763. 2021-08-20 16:00:45.3998 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  4764. 2021-08-20 16:00:45.4048 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  4765. 2021-08-20 16:00:45.4048 Info: [source]:runtime,[msg]:Runtime 关闭
  4766. 2021-08-20 16:00:56.6668 Info: [source]:runtime,[msg]:Runtime 启动
  4767. 2021-08-20 16:00:56.8338 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4768. 2021-08-20 16:00:57.1478 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4769. 2021-08-20 16:00:57.1658 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4770. 2021-08-20 16:00:57.1848 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4771. 2021-08-20 16:00:57.1848 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4772. 2021-08-20 16:00:57.1848 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4773. 2021-08-20 16:00:57.1848 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4774. 2021-08-20 16:00:57.1848 Info: [source]:runtime,[msg]:Runtime 启动完成
  4775. 2021-08-20 16:01:05.4168 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4776. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4777. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4778. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4779. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4780. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4781. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4782. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4783. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4784. 2021-08-20 16:01:07.4828 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4785. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4786. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4787. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4788. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4789. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4790. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4791. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4792. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4793. 2021-08-20 16:01:07.5008 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4794. 2021-08-20 16:01:07.5188 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4795. 2021-08-20 16:02:37.2118 Info: [source]:runtime,[msg]:AppHost 停止插件
  4796. 2021-08-20 16:02:37.2118 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  4797. 2021-08-20 16:02:37.2118 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  4798. 2021-08-20 16:02:37.2118 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  4799. 2021-08-20 16:02:37.2118 Info: [source]:runtime,[msg]:Runtime 关闭
  4800. 2021-08-20 16:53:55.3718 Info: [source]:runtime,[msg]:Runtime 启动
  4801. 2021-08-20 16:53:55.5058 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4802. 2021-08-20 16:53:55.9948 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4803. 2021-08-20 16:53:56.0288 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4804. 2021-08-20 16:53:56.1318 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4805. 2021-08-20 16:53:56.1318 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4806. 2021-08-20 16:53:56.1318 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4807. 2021-08-20 16:53:56.1418 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4808. 2021-08-20 16:53:56.1418 Info: [source]:runtime,[msg]:Runtime 启动完成
  4809. 2021-08-20 16:54:08.0248 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4810. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4811. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4812. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4813. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4814. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4815. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4816. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4817. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4818. 2021-08-20 16:54:10.0418 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4819. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4820. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4821. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4822. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4823. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4824. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4825. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4826. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4827. 2021-08-20 16:54:10.0598 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4828. 2021-08-20 16:54:10.0758 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4829. 2021-08-20 16:56:11.9378 Info: [source]:runtime,[msg]:Runtime 启动
  4830. 2021-08-20 16:56:12.0698 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4831. 2021-08-20 16:56:12.3848 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4832. 2021-08-20 16:56:12.4308 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4833. 2021-08-20 16:56:12.4798 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4834. 2021-08-20 16:56:12.4798 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4835. 2021-08-20 16:56:12.4858 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4836. 2021-08-20 16:56:12.4858 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4837. 2021-08-20 16:56:12.4858 Info: [source]:runtime,[msg]:Runtime 启动完成
  4838. 2021-08-20 16:56:20.5998 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4839. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4840. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4841. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4842. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4843. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4844. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4845. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4846. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4847. 2021-08-20 16:56:22.6898 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4848. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4849. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4850. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4851. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4852. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4853. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4854. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4855. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4856. 2021-08-20 16:56:22.7148 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4857. 2021-08-20 16:56:22.7338 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4858. 2021-08-20 17:35:25.0978 Info: [source]:runtime,[msg]:Runtime 启动
  4859. 2021-08-20 17:35:25.2258 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4860. 2021-08-20 17:35:25.5748 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4861. 2021-08-20 17:35:25.5938 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4862. 2021-08-20 17:35:25.6238 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4863. 2021-08-20 17:35:25.6238 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4864. 2021-08-20 17:35:25.6238 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4865. 2021-08-20 17:35:25.6238 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4866. 2021-08-20 17:35:25.6358 Info: [source]:runtime,[msg]:Runtime 启动完成
  4867. 2021-08-20 17:35:34.0848 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4868. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4869. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4870. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4871. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4872. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4873. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4874. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4875. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4876. 2021-08-20 17:35:36.1368 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4877. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4878. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4879. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4880. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4881. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4882. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4883. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4884. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4885. 2021-08-20 17:35:36.1788 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4886. 2021-08-20 17:35:36.2078 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4887. 2021-08-20 17:35:51.0248 Info: [source]:runtime,[msg]:AppHost 停止插件
  4888. 2021-08-20 17:35:51.0248 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  4889. 2021-08-20 17:35:51.0248 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  4890. 2021-08-20 17:35:51.0248 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  4891. 2021-08-20 17:35:51.0248 Info: [source]:runtime,[msg]:Runtime 关闭
  4892. 2021-08-20 19:23:40.8588 Info: [source]:runtime,[msg]:Runtime 启动
  4893. 2021-08-20 19:23:41.0478 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4894. 2021-08-20 19:23:41.3698 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4895. 2021-08-20 19:23:41.4128 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4896. 2021-08-20 19:23:41.7058 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4897. 2021-08-20 19:23:41.7058 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4898. 2021-08-20 19:23:41.7058 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4899. 2021-08-20 19:23:41.7058 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4900. 2021-08-20 19:23:41.7058 Info: [source]:runtime,[msg]:Runtime 启动完成
  4901. 2021-08-20 19:23:47.4068 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4902. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4903. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4904. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4905. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4906. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4907. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4908. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4909. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4910. 2021-08-20 19:23:47.4338 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4911. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4912. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4913. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4914. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4915. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4916. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4917. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4918. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4919. 2021-08-20 19:23:47.5648 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4920. 2021-08-20 19:23:47.6378 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4921. 2021-08-20 19:56:40.4978 Info: [source]:runtime,[msg]:Runtime 启动
  4922. 2021-08-20 19:56:40.6408 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4923. 2021-08-20 19:56:40.9278 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4924. 2021-08-20 19:56:40.9448 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4925. 2021-08-20 19:56:41.0388 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4926. 2021-08-20 19:56:41.0388 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4927. 2021-08-20 19:56:41.0458 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4928. 2021-08-20 19:56:41.0458 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4929. 2021-08-20 19:56:41.0458 Info: [source]:runtime,[msg]:Runtime 启动完成
  4930. 2021-08-20 19:56:50.7508 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4931. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4932. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4933. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4934. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4935. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4936. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4937. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4938. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4939. 2021-08-20 19:56:52.7678 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4940. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4941. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4942. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4943. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4944. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4945. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4946. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4947. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4948. 2021-08-20 19:56:52.7938 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4949. 2021-08-20 19:56:52.8128 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4950. 2021-08-20 20:02:30.9568 Info: [source]:runtime,[msg]:Runtime 启动
  4951. 2021-08-20 20:02:31.0978 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4952. 2021-08-20 20:02:31.4998 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4953. 2021-08-20 20:02:31.5158 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4954. 2021-08-20 20:02:31.5468 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4955. 2021-08-20 20:02:31.5528 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4956. 2021-08-20 20:02:31.5528 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4957. 2021-08-20 20:02:31.5528 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4958. 2021-08-20 20:02:31.5528 Info: [source]:runtime,[msg]:Runtime 启动完成
  4959. 2021-08-20 20:02:40.2848 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4960. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4961. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4962. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4963. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4964. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4965. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4966. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4967. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4968. 2021-08-20 20:02:42.3048 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4969. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4970. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4971. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4972. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4973. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4974. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4975. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4976. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4977. 2021-08-20 20:02:42.3288 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  4978. 2021-08-20 20:02:42.3448 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  4979. 2021-08-20 20:04:34.1758 Info: [source]:runtime,[msg]:Runtime 启动
  4980. 2021-08-20 20:04:34.3938 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  4981. 2021-08-20 20:04:34.7168 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4982. 2021-08-20 20:04:34.7328 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  4983. 2021-08-20 20:04:34.7618 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  4984. 2021-08-20 20:04:34.7618 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  4985. 2021-08-20 20:04:34.7618 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  4986. 2021-08-20 20:04:34.7618 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  4987. 2021-08-20 20:04:34.7618 Info: [source]:runtime,[msg]:Runtime 启动完成
  4988. 2021-08-20 20:04:43.5968 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4989. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4990. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  4991. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  4992. 在 System.Activator.CreateInstance(Type type, Object[] args)
  4993. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  4994. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  4995. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  4996. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  4997. 2021-08-20 20:04:45.6148 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  4998. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  4999. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5000. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5001. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5002. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5003. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5004. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5005. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5006. 2021-08-20 20:04:45.6418 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5007. 2021-08-20 20:04:45.6618 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5008. 2021-08-20 20:06:28.7718 Info: [source]:runtime,[msg]:Runtime 启动
  5009. 2021-08-20 20:06:28.9348 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5010. 2021-08-20 20:06:29.4468 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5011. 2021-08-20 20:06:29.4888 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5012. 2021-08-20 20:06:29.5818 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5013. 2021-08-20 20:06:29.5818 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5014. 2021-08-20 20:06:29.5818 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5015. 2021-08-20 20:06:29.5898 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5016. 2021-08-20 20:06:29.5898 Info: [source]:runtime,[msg]:Runtime 启动完成
  5017. 2021-08-20 20:06:38.0988 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5018. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5019. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5020. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5021. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5022. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5023. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5024. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5025. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5026. 2021-08-20 20:06:40.1158 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5027. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5028. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5029. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5030. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5031. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5032. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5033. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5034. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5035. 2021-08-20 20:06:40.1348 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5036. 2021-08-20 20:06:40.1538 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5037. 2021-08-20 20:20:50.2718 Info: [source]:runtime,[msg]:Runtime 启动
  5038. 2021-08-20 20:20:50.4128 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5039. 2021-08-20 20:20:50.7178 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5040. 2021-08-20 20:20:50.7338 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5041. 2021-08-20 20:20:50.7628 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5042. 2021-08-20 20:20:50.7628 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5043. 2021-08-20 20:20:50.7628 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5044. 2021-08-20 20:20:50.7628 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5045. 2021-08-20 20:20:50.7628 Info: [source]:runtime,[msg]:Runtime 启动完成
  5046. 2021-08-20 20:20:59.3508 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5047. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5048. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5049. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5050. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5051. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5052. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5053. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5054. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5055. 2021-08-20 20:21:01.4398 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5056. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5057. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5058. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5059. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5060. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5061. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5062. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5063. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5064. 2021-08-20 20:21:01.4648 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5065. 2021-08-20 20:21:01.4838 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5066. 2021-08-20 20:21:55.9988 Info: [source]:runtime,[msg]:Runtime 启动
  5067. 2021-08-20 20:21:56.1408 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5068. 2021-08-20 20:21:56.5508 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5069. 2021-08-20 20:21:56.5698 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5070. 2021-08-20 20:21:56.6038 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5071. 2021-08-20 20:21:56.6038 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5072. 2021-08-20 20:21:56.6118 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5073. 2021-08-20 20:21:56.6118 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5074. 2021-08-20 20:21:56.6118 Info: [source]:runtime,[msg]:Runtime 启动完成
  5075. 2021-08-20 20:22:18.7338 Info: [source]:runtime,[msg]:Runtime 启动
  5076. 2021-08-20 20:22:18.8958 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5077. 2021-08-20 20:22:19.1978 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5078. 2021-08-20 20:22:19.2138 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5079. 2021-08-20 20:22:19.2428 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5080. 2021-08-20 20:22:19.2508 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5081. 2021-08-20 20:22:19.2508 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5082. 2021-08-20 20:22:19.2508 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5083. 2021-08-20 20:22:19.2508 Info: [source]:runtime,[msg]:Runtime 启动完成
  5084. 2021-08-20 20:22:27.8878 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5085. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5086. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5087. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5088. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5089. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5090. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5091. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5092. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5093. 2021-08-20 20:22:29.9068 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5094. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5095. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5096. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5097. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5098. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5099. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5100. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5101. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5102. 2021-08-20 20:22:29.9238 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5103. 2021-08-20 20:22:29.9398 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5104. 2021-08-20 20:27:37.9988 Info: [source]:runtime,[msg]:Runtime 启动
  5105. 2021-08-20 20:27:38.1408 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5106. 2021-08-20 20:27:38.5048 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5107. 2021-08-20 20:27:38.5218 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5108. 2021-08-20 20:27:38.5508 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5109. 2021-08-20 20:27:38.5508 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5110. 2021-08-20 20:27:38.5508 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5111. 2021-08-20 20:27:38.5658 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5112. 2021-08-20 20:27:38.5658 Info: [source]:runtime,[msg]:Runtime 启动完成
  5113. 2021-08-20 20:27:46.9768 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5114. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5115. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5116. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5117. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5118. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5119. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5120. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5121. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5122. 2021-08-20 20:27:48.9908 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5123. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5124. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5125. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5126. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5127. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5128. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5129. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5130. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5131. 2021-08-20 20:27:49.0178 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5132. 2021-08-20 20:27:49.0408 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5133. 2021-08-20 20:33:24.3718 Info: [source]:runtime,[msg]:AppHost 停止插件
  5134. 2021-08-20 20:33:24.3718 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  5135. 2021-08-20 20:33:24.3718 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  5136. 2021-08-20 20:33:24.3718 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  5137. 2021-08-20 20:33:24.3718 Info: [source]:runtime,[msg]:Runtime 关闭
  5138. 2021-08-20 21:34:11.7768 Info: [source]:runtime,[msg]:Runtime 启动
  5139. 2021-08-20 21:34:11.9068 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5140. 2021-08-20 21:34:12.2048 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5141. 2021-08-20 21:34:12.2198 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5142. 2021-08-20 21:34:12.2498 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5143. 2021-08-20 21:34:12.2538 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5144. 2021-08-20 21:34:12.2538 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5145. 2021-08-20 21:34:12.2538 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5146. 2021-08-20 21:34:12.2538 Info: [source]:runtime,[msg]:Runtime 启动完成
  5147. 2021-08-20 21:34:20.9298 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5148. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5149. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5150. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5151. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5152. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5153. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5154. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5155. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5156. 2021-08-20 21:34:22.9488 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5157. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5158. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5159. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5160. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5161. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5162. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5163. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5164. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5165. 2021-08-20 21:34:22.9698 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5166. 2021-08-20 21:34:22.9908 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5167. 2021-08-20 21:34:56.0908 Info: [source]:runtime,[msg]:Runtime 启动
  5168. 2021-08-20 21:34:56.2858 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5169. 2021-08-20 21:34:56.7048 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5170. 2021-08-20 21:34:56.8218 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5171. 2021-08-20 21:34:56.9268 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5172. 2021-08-20 21:34:56.9318 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5173. 2021-08-20 21:34:56.9318 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5174. 2021-08-20 21:34:56.9318 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5175. 2021-08-20 21:34:56.9318 Info: [source]:runtime,[msg]:Runtime 启动完成
  5176. 2021-08-20 21:35:05.2338 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5177. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5178. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5179. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5180. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5181. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5182. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5183. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5184. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5185. 2021-08-20 21:35:07.2668 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5186. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5187. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5188. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5189. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5190. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5191. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5192. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5193. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5194. 2021-08-20 21:35:07.2918 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5195. 2021-08-20 21:35:07.3118 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5196. 2021-08-20 21:35:24.2508 Error: [source]:runtime,[msg]:索引超出范围。必须为非负值并小于集合大小。
  5197. 参数名: index 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
  5198. 在 System.Collections.Generic.List`1.get_Item(Int32 index)
  5199. 在 System.Collections.ObjectModel.Collection`1.get_Item(Int32 index)
  5200. 在 Tps_LQ_Transmitter.FrmMain.StartTest() 位置 F:\Code\Transmitter-3-New\TpsLabStudio_LTS\tps\TpsLabStudio\FrmMain.cs:行号 331
  5201. 在 Tps_LQ_Transmitter.FrmMain.BtnStart_Click(Object sender, EventArgs e) 位置 F:\Code\Transmitter-3-New\TpsLabStudio_LTS\tps\TpsLabStudio\FrmMain.cs:行号 254
  5202. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  5203. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  5204. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  5205. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  5206. 在 System.Windows.Forms.Control.WndProc(Message& m)
  5207. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  5208. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  5209. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  5210. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  5211. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  5212. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  5213. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  5214. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  5215. 在 System.Windows.Forms.Application.Run(Form mainForm)
  5216. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  5217. 2021-08-20 21:35:36.5068 Info: [source]:runtime,[msg]:Runtime 启动
  5218. 2021-08-20 21:35:36.6448 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5219. 2021-08-20 21:35:37.0388 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5220. 2021-08-20 21:35:37.0638 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5221. 2021-08-20 21:35:37.1048 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5222. 2021-08-20 21:35:37.1048 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5223. 2021-08-20 21:35:37.1048 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5224. 2021-08-20 21:35:37.1048 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5225. 2021-08-20 21:35:37.1048 Info: [source]:runtime,[msg]:Runtime 启动完成
  5226. 2021-08-20 21:35:45.2348 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5227. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5228. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5229. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5230. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5231. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5232. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5233. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5234. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5235. 2021-08-20 21:35:47.2668 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5236. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5237. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5238. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5239. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5240. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5241. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5242. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5243. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5244. 2021-08-20 21:35:47.2928 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5245. 2021-08-20 21:35:47.3138 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5246. 2021-08-20 21:37:50.9798 Info: [source]:runtime,[msg]:Runtime 启动
  5247. 2021-08-20 21:37:51.0818 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5248. 2021-08-20 21:37:51.2928 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5249. 2021-08-20 21:37:51.3068 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5250. 2021-08-20 21:37:51.3338 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5251. 2021-08-20 21:37:51.3338 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5252. 2021-08-20 21:37:51.3408 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5253. 2021-08-20 21:37:51.3408 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5254. 2021-08-20 21:37:51.3408 Info: [source]:runtime,[msg]:Runtime 启动完成
  5255. 2021-08-20 21:38:00.4278 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5256. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5257. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5258. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5259. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5260. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5261. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5262. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5263. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5264. 2021-08-20 21:38:02.4448 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5265. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5266. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5267. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5268. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5269. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5270. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5271. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5272. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5273. 2021-08-20 21:38:02.4778 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5274. 2021-08-20 21:38:02.5078 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5275. 2021-08-20 21:38:31.6398 Info: [source]:runtime,[msg]:Runtime 启动
  5276. 2021-08-20 21:38:31.7768 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5277. 2021-08-20 21:38:32.0618 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5278. 2021-08-20 21:38:32.0778 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5279. 2021-08-20 21:38:32.1088 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5280. 2021-08-20 21:38:32.1088 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5281. 2021-08-20 21:38:32.1088 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5282. 2021-08-20 21:38:32.1088 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5283. 2021-08-20 21:38:32.1088 Info: [source]:runtime,[msg]:Runtime 启动完成
  5284. 2021-08-20 21:38:40.4508 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5285. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5286. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5287. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5288. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5289. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5290. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5291. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5292. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5293. 2021-08-20 21:38:42.4798 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5294. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5295. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5296. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5297. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5298. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5299. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5300. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5301. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5302. 2021-08-20 21:38:42.5138 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5303. 2021-08-20 21:38:42.5318 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5304. 2021-08-20 21:53:21.6218 Info: [source]:runtime,[msg]:Runtime 启动
  5305. 2021-08-20 21:53:21.7668 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5306. 2021-08-20 21:53:22.1268 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5307. 2021-08-20 21:53:22.1488 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5308. 2021-08-20 21:53:22.1918 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5309. 2021-08-20 21:53:22.1918 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5310. 2021-08-20 21:53:22.1998 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5311. 2021-08-20 21:53:22.1998 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5312. 2021-08-20 21:53:22.1998 Info: [source]:runtime,[msg]:Runtime 启动完成
  5313. 2021-08-20 21:53:30.8478 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5314. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5315. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5316. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5317. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5318. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5319. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5320. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5321. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5322. 2021-08-20 21:53:32.8678 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5323. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5324. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5325. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5326. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5327. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5328. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5329. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5330. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5331. 2021-08-20 21:53:32.8908 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5332. 2021-08-20 21:53:32.9198 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5333. 2021-08-20 21:56:10.4468 Info: [source]:runtime,[msg]:Runtime 启动
  5334. 2021-08-20 21:56:10.6408 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5335. 2021-08-20 21:56:11.0888 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5336. 2021-08-20 21:56:11.2278 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5337. 2021-08-20 21:56:11.4218 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5338. 2021-08-20 21:56:11.4298 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5339. 2021-08-20 21:56:11.4578 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5340. 2021-08-20 21:56:11.4578 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5341. 2021-08-20 21:56:11.4598 Info: [source]:runtime,[msg]:Runtime 启动完成
  5342. 2021-08-20 21:56:20.4538 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5343. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5344. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5345. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5346. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5347. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5348. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5349. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5350. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5351. 2021-08-20 21:56:22.4738 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5352. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5353. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5354. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5355. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5356. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5357. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5358. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5359. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5360. 2021-08-20 21:56:22.4958 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5361. 2021-08-20 21:56:22.5378 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5362. 2021-08-20 22:01:30.3068 Info: [source]:runtime,[msg]:Runtime 启动
  5363. 2021-08-20 22:01:30.4598 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5364. 2021-08-20 22:01:30.8718 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5365. 2021-08-20 22:01:30.9008 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5366. 2021-08-20 22:01:30.9808 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5367. 2021-08-20 22:01:30.9808 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5368. 2021-08-20 22:01:30.9808 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5369. 2021-08-20 22:01:30.9808 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5370. 2021-08-20 22:01:30.9808 Info: [source]:runtime,[msg]:Runtime 启动完成
  5371. 2021-08-20 22:01:39.0388 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5372. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5373. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5374. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5375. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5376. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5377. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5378. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5379. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5380. 2021-08-20 22:01:41.0748 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5381. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5382. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5383. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5384. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5385. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5386. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5387. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5388. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5389. 2021-08-20 22:01:41.1058 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5390. 2021-08-20 22:01:41.1248 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5391. 2021-08-20 22:03:11.0618 Info: [source]:runtime,[msg]:Runtime 启动
  5392. 2021-08-20 22:03:11.2088 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5393. 2021-08-20 22:03:11.5258 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5394. 2021-08-20 22:03:11.5628 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5395. 2021-08-20 22:03:11.5918 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5396. 2021-08-20 22:03:11.5918 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5397. 2021-08-20 22:03:11.5918 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5398. 2021-08-20 22:03:11.6018 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5399. 2021-08-20 22:03:11.6018 Info: [source]:runtime,[msg]:Runtime 启动完成
  5400. 2021-08-20 22:03:19.8698 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5401. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5402. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5403. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5404. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5405. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5406. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5407. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5408. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5409. 2021-08-20 22:03:21.9038 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5410. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5411. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5412. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5413. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5414. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5415. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5416. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5417. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5418. 2021-08-20 22:03:21.9218 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5419. 2021-08-20 22:03:21.9378 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5420. 2021-08-20 22:04:48.7278 Info: [source]:runtime,[msg]:Runtime 启动
  5421. 2021-08-20 22:04:48.9338 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5422. 2021-08-20 22:04:49.3198 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5423. 2021-08-20 22:04:49.3458 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5424. 2021-08-20 22:04:49.4218 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5425. 2021-08-20 22:04:49.4438 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5426. 2021-08-20 22:04:49.4458 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5427. 2021-08-20 22:04:49.4458 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5428. 2021-08-20 22:04:49.4458 Info: [source]:runtime,[msg]:Runtime 启动完成
  5429. 2021-08-20 22:04:57.6828 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5430. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5431. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5432. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5433. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5434. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5435. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5436. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5437. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5438. 2021-08-20 22:04:59.7958 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5439. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5440. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5441. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5442. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5443. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5444. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5445. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5446. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5447. 2021-08-20 22:04:59.8218 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5448. 2021-08-20 22:04:59.8488 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5449. 2021-08-20 22:14:04.9228 Info: [source]:runtime,[msg]:Runtime 启动
  5450. 2021-08-20 22:14:05.1098 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5451. 2021-08-20 22:14:05.5188 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5452. 2021-08-20 22:14:05.5388 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5453. 2021-08-20 22:14:05.5778 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5454. 2021-08-20 22:14:05.5778 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5455. 2021-08-20 22:14:05.5778 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5456. 2021-08-20 22:14:05.5888 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5457. 2021-08-20 22:14:05.5888 Info: [source]:runtime,[msg]:Runtime 启动完成
  5458. 2021-08-20 22:14:14.1258 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5459. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5460. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5461. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5462. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5463. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5464. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5465. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5466. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5467. 2021-08-20 22:14:16.2068 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5468. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5469. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5470. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5471. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5472. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5473. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5474. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5475. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5476. 2021-08-20 22:14:16.2268 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5477. 2021-08-20 22:14:16.2608 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5478. 2021-08-20 22:15:13.6118 Info: [source]:runtime,[msg]:Runtime 启动
  5479. 2021-08-20 22:15:13.7538 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5480. 2021-08-20 22:15:14.0558 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5481. 2021-08-20 22:15:14.0758 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5482. 2021-08-20 22:15:14.1098 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5483. 2021-08-20 22:15:14.1288 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5484. 2021-08-20 22:15:14.1288 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5485. 2021-08-20 22:15:14.1288 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5486. 2021-08-20 22:15:14.1288 Info: [source]:runtime,[msg]:Runtime 启动完成
  5487. 2021-08-20 22:15:22.4578 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5488. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5489. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5490. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5491. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5492. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5493. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5494. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5495. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5496. 2021-08-20 22:15:24.4878 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5497. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5498. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5499. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5500. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5501. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5502. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5503. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5504. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5505. 2021-08-20 22:15:24.5138 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5506. 2021-08-20 22:15:24.5288 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5507. 2021-08-20 22:17:55.4238 Info: [source]:runtime,[msg]:Runtime 启动
  5508. 2021-08-20 22:17:55.5838 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5509. 2021-08-20 22:17:55.9738 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5510. 2021-08-20 22:17:55.9888 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5511. 2021-08-20 22:17:56.0128 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5512. 2021-08-20 22:17:56.0198 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5513. 2021-08-20 22:17:56.0198 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5514. 2021-08-20 22:17:56.0198 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5515. 2021-08-20 22:17:56.0198 Info: [source]:runtime,[msg]:Runtime 启动完成
  5516. 2021-08-20 22:18:04.5168 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5517. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5518. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5519. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5520. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5521. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5522. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5523. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5524. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5525. 2021-08-20 22:18:06.5778 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5526. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5527. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5528. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5529. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5530. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5531. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5532. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5533. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5534. 2021-08-20 22:18:06.6038 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5535. 2021-08-20 22:18:06.6268 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5536. 2021-08-20 23:11:31.7018 Info: [source]:runtime,[msg]:Runtime 启动
  5537. 2021-08-20 23:11:31.9118 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5538. 2021-08-20 23:11:32.2308 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5539. 2021-08-20 23:11:32.2478 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5540. 2021-08-20 23:11:32.2728 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5541. 2021-08-20 23:11:32.2788 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5542. 2021-08-20 23:11:32.2788 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5543. 2021-08-20 23:11:32.2788 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5544. 2021-08-20 23:11:32.2788 Info: [source]:runtime,[msg]:Runtime 启动完成
  5545. 2021-08-20 23:11:40.5848 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5546. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5547. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5548. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5549. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5550. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5551. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5552. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5553. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5554. 2021-08-20 23:11:42.6268 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5555. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5556. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5557. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5558. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5559. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5560. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5561. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5562. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5563. 2021-08-20 23:11:42.6358 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5564. 2021-08-20 23:11:42.6698 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  5565. 2021-08-20 23:14:28.4178 Info: [source]:runtime,[msg]:Runtime 启动
  5566. 2021-08-20 23:14:28.6428 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5567. 2021-08-20 23:14:29.1348 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5568. 2021-08-20 23:14:29.2448 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5569. 2021-08-20 23:14:29.3048 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5570. 2021-08-20 23:14:29.3048 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5571. 2021-08-20 23:14:29.3048 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5572. 2021-08-20 23:14:29.3048 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5573. 2021-08-20 23:14:29.3048 Info: [source]:runtime,[msg]:Runtime 启动完成
  5574. 2021-08-20 23:14:37.9418 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5575. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5576. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5577. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5578. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5579. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5580. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5581. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5582. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5583. 2021-08-20 23:14:39.9588 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5584. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5585. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5586. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5587. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5588. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5589. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5590. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5591. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5592. 2021-08-20 23:14:39.9708 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5593. 2021-08-20 23:14:40.0648 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  5594. 2021-08-20 23:16:43.2608 Info: [source]:runtime,[msg]:Runtime 启动
  5595. 2021-08-20 23:16:43.4048 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5596. 2021-08-20 23:16:43.7068 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5597. 2021-08-20 23:16:43.7398 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5598. 2021-08-20 23:16:43.7848 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5599. 2021-08-20 23:16:43.7848 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5600. 2021-08-20 23:16:43.7848 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5601. 2021-08-20 23:16:43.7948 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5602. 2021-08-20 23:16:43.7948 Info: [source]:runtime,[msg]:Runtime 启动完成
  5603. 2021-08-20 23:16:52.4038 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5604. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5605. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5606. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5607. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5608. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5609. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5610. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5611. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5612. 2021-08-20 23:16:54.4248 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5613. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5614. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5615. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5616. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5617. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5618. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5619. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5620. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5621. 2021-08-20 23:16:54.4478 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5622. 2021-08-20 23:16:54.4698 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5623. 2021-08-20 23:19:40.3768 Error: [source]:runtime,[msg]:未知系统错误(其它错误)。 VISA error code -1073807360 (0xBFFF0000), ErrorSystemError 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  5624. 在 NationalInstruments.VisaNS.Session.CheckStatusAndThrow(Int32 status)
  5625. 在 NationalInstruments.VisaNS.Internal.MessageBasedSessionImpl.Write(String data)
  5626. 在 NationalInstruments.VisaNS.MessageBasedSession.Write(String data)
  5627. 在 CommonDevHostApp.Devices.CommonVisaResource.Write(String command) 位置 F:\Code\Transmitter-3-New\TpsLabStudio_LTS\tps\TpsLabStudio\Common\VisaResource.cs:行号 90
  5628. 在 Tps_LQ_Transmitter.FrmMain.StartTest() 位置 F:\Code\Transmitter-3-New\TpsLabStudio_LTS\tps\TpsLabStudio\FrmMain.cs:行号 313
  5629. 在 Tps_LQ_Transmitter.FrmMain.BtnStart_Click(Object sender, EventArgs e) 位置 F:\Code\Transmitter-3-New\TpsLabStudio_LTS\tps\TpsLabStudio\FrmMain.cs:行号 262
  5630. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  5631. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  5632. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  5633. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  5634. 在 System.Windows.Forms.Control.WndProc(Message& m)
  5635. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  5636. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  5637. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  5638. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  5639. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  5640. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  5641. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  5642. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  5643. 在 System.Windows.Forms.Application.Run(Form mainForm)
  5644. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  5645. 2021-08-20 23:20:01.2968 Info: [source]:runtime,[msg]:Runtime 启动
  5646. 2021-08-20 23:20:01.4708 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5647. 2021-08-20 23:20:01.8408 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5648. 2021-08-20 23:20:01.8568 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5649. 2021-08-20 23:20:01.8798 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5650. 2021-08-20 23:20:01.8858 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5651. 2021-08-20 23:20:01.8858 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5652. 2021-08-20 23:20:01.8858 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5653. 2021-08-20 23:20:01.8858 Info: [source]:runtime,[msg]:Runtime 启动完成
  5654. 2021-08-20 23:20:10.3308 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5655. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5656. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5657. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5658. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5659. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5660. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5661. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5662. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5663. 2021-08-20 23:20:12.3458 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5664. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5665. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5666. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5667. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5668. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5669. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5670. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5671. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5672. 2021-08-20 23:20:12.6388 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5673. 2021-08-20 23:20:12.7168 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5674. 2021-08-20 23:24:11.0198 Info: [source]:runtime,[msg]:Runtime 启动
  5675. 2021-08-20 23:24:11.1508 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5676. 2021-08-20 23:24:11.5078 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5677. 2021-08-20 23:24:11.5518 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5678. 2021-08-20 23:24:11.6228 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5679. 2021-08-20 23:24:11.6278 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5680. 2021-08-20 23:24:11.6278 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5681. 2021-08-20 23:24:11.6278 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5682. 2021-08-20 23:24:11.6278 Info: [source]:runtime,[msg]:Runtime 启动完成
  5683. 2021-08-20 23:24:19.8478 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5684. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5685. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5686. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5687. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5688. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5689. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5690. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5691. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5692. 2021-08-20 23:24:21.8758 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5693. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5694. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5695. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5696. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5697. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5698. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5699. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5700. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5701. 2021-08-20 23:24:21.9078 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5702. 2021-08-20 23:24:21.9288 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5703. 2021-08-20 23:25:15.6708 Info: [source]:runtime,[msg]:Runtime 启动
  5704. 2021-08-20 23:25:15.8518 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5705. 2021-08-20 23:25:16.1248 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5706. 2021-08-20 23:25:16.1418 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5707. 2021-08-20 23:25:16.1658 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5708. 2021-08-20 23:25:16.1658 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5709. 2021-08-20 23:25:16.1658 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5710. 2021-08-20 23:25:16.1658 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5711. 2021-08-20 23:25:16.1658 Info: [source]:runtime,[msg]:Runtime 启动完成
  5712. 2021-08-20 23:25:24.2988 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5713. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5714. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5715. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5716. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5717. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5718. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5719. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5720. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5721. 2021-08-20 23:25:26.3288 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5722. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5723. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5724. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5725. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5726. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5727. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5728. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5729. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5730. 2021-08-20 23:25:26.3498 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5731. 2021-08-20 23:25:26.3718 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5732. 2021-08-21 09:46:41.1364 Info: [source]:runtime,[msg]:Runtime 启动
  5733. 2021-08-21 09:46:41.2514 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5734. 2021-08-21 09:46:41.5404 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5735. 2021-08-21 09:46:41.5644 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5736. 2021-08-21 09:46:41.6484 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5737. 2021-08-21 09:46:41.6484 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5738. 2021-08-21 09:46:41.6484 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5739. 2021-08-21 09:46:41.6484 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5740. 2021-08-21 09:46:41.6484 Info: [source]:runtime,[msg]:Runtime 启动完成
  5741. 2021-08-21 09:46:51.5864 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5742. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5743. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5744. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5745. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5746. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5747. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5748. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5749. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5750. 2021-08-21 09:46:53.6244 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5751. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5752. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5753. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5754. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5755. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5756. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5757. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5758. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5759. 2021-08-21 09:46:53.6554 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5760. 2021-08-21 09:46:53.6764 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5761. 2021-08-21 09:54:15.9634 Info: [source]:runtime,[msg]:Runtime 启动
  5762. 2021-08-21 09:54:16.1224 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5763. 2021-08-21 09:54:16.4674 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5764. 2021-08-21 09:54:16.4844 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5765. 2021-08-21 09:54:16.5164 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5766. 2021-08-21 09:54:16.5164 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5767. 2021-08-21 09:54:16.5164 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5768. 2021-08-21 09:54:16.5164 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5769. 2021-08-21 09:54:16.5164 Info: [source]:runtime,[msg]:Runtime 启动完成
  5770. 2021-08-21 09:54:24.6894 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5771. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5772. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5773. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5774. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5775. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5776. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5777. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5778. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5779. 2021-08-21 09:54:26.7364 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5780. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5781. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5782. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5783. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5784. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5785. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5786. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5787. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5788. 2021-08-21 09:54:27.0024 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5789. 2021-08-21 09:54:27.0654 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5790. 2021-08-21 09:56:06.2024 Info: [source]:runtime,[msg]:AppHost 停止插件
  5791. 2021-08-21 09:56:06.2024 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  5792. 2021-08-21 09:56:06.2024 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  5793. 2021-08-21 09:56:06.2134 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  5794. 2021-08-21 09:56:06.2134 Info: [source]:runtime,[msg]:Runtime 关闭
  5795. 2021-08-21 10:00:17.6806 Info: [source]:runtime,[msg]:Runtime 启动
  5796. 2021-08-21 10:00:17.8246 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5797. 2021-08-21 10:00:18.3816 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5798. 2021-08-21 10:00:18.3986 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5799. 2021-08-21 10:00:18.4826 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5800. 2021-08-21 10:00:18.4826 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5801. 2021-08-21 10:00:18.4826 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5802. 2021-08-21 10:00:18.4926 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5803. 2021-08-21 10:00:18.4926 Info: [source]:runtime,[msg]:Runtime 启动完成
  5804. 2021-08-21 10:00:25.0486 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5805. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5806. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5807. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5808. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5809. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5810. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5811. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5812. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5813. 2021-08-21 10:00:25.0746 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5814. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5815. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5816. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5817. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5818. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5819. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5820. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5821. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5822. 2021-08-21 10:00:25.0976 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5823. 2021-08-21 10:00:25.1136 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5824. 2021-08-21 10:05:47.9986 Info: [source]:runtime,[msg]:Runtime 启动
  5825. 2021-08-21 10:05:48.1346 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5826. 2021-08-21 10:05:48.5586 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5827. 2021-08-21 10:05:48.5826 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5828. 2021-08-21 10:05:48.6096 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5829. 2021-08-21 10:05:48.6096 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5830. 2021-08-21 10:05:48.6096 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5831. 2021-08-21 10:05:48.6096 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5832. 2021-08-21 10:05:48.6096 Info: [source]:runtime,[msg]:Runtime 启动完成
  5833. 2021-08-21 10:05:52.5946 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5834. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5835. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5836. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5837. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5838. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5839. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5840. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5841. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5842. 2021-08-21 10:05:52.6106 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5843. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5844. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5845. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5846. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5847. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5848. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5849. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5850. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5851. 2021-08-21 10:05:52.6306 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5852. 2021-08-21 10:05:52.6486 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5853. 2021-08-21 10:25:44.4926 Info: [source]:runtime,[msg]:AppHost 停止插件
  5854. 2021-08-21 10:25:44.4926 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  5855. 2021-08-21 10:25:44.4926 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  5856. 2021-08-21 10:25:44.4926 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  5857. 2021-08-21 10:25:44.4926 Info: [source]:runtime,[msg]:Runtime 关闭
  5858. 2021-08-21 11:29:44.3966 Info: [source]:runtime,[msg]:Runtime 启动
  5859. 2021-08-21 11:29:44.5136 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5860. 2021-08-21 11:29:44.8126 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5861. 2021-08-21 11:29:44.9526 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5862. 2021-08-21 11:29:45.0306 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5863. 2021-08-21 11:29:45.0376 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5864. 2021-08-21 11:29:45.0376 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5865. 2021-08-21 11:29:45.0376 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5866. 2021-08-21 11:29:45.0376 Info: [source]:runtime,[msg]:Runtime 启动完成
  5867. 2021-08-21 11:29:50.6416 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  5868. 在 NationalInstruments.VisaNS.Session.CheckStatusAndThrow(Int32 status)
  5869. 在 NationalInstruments.VisaNS.Internal.MessageBasedSessionImpl.ReadString(Int32 countToRead)
  5870. 在 NationalInstruments.VisaNS.MessageBasedSession.Query(String dataToWrite)
  5871. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 182
  5872. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5873. 2021-08-21 11:29:54.7286 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5874. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5875. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5876. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5877. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5878. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5879. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5880. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5881. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5882. 2021-08-21 11:29:56.7686 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5883. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5884. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5885. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5886. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5887. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5888. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5889. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5890. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5891. 2021-08-21 11:29:56.8256 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5892. 2021-08-21 11:29:56.8366 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  5893. 2021-08-21 11:39:59.8106 Info: [source]:runtime,[msg]:AppHost 停止插件
  5894. 2021-08-21 11:39:59.8106 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  5895. 2021-08-21 11:39:59.8106 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  5896. 2021-08-21 11:39:59.8106 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  5897. 2021-08-21 11:39:59.8106 Info: [source]:runtime,[msg]:Runtime 关闭
  5898. 2021-08-21 17:00:21.8284 Info: [source]:runtime,[msg]:Runtime 启动
  5899. 2021-08-21 17:00:21.9244 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5900. 2021-08-21 17:00:22.1074 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5901. 2021-08-21 17:00:22.1174 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5902. 2021-08-21 17:00:22.1174 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5903. 2021-08-21 17:00:22.1174 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5904. 2021-08-21 17:00:22.1174 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5905. 2021-08-21 17:00:22.1174 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5906. 2021-08-21 17:00:22.1174 Info: [source]:runtime,[msg]:Runtime 启动完成
  5907. 2021-08-21 17:00:29.6494 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5908. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5909. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5910. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5911. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5912. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5913. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5914. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5915. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5916. 2021-08-21 17:00:31.6674 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5917. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5918. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5919. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5920. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5921. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5922. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5923. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5924. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5925. 2021-08-21 17:00:31.6814 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5926. 2021-08-21 17:00:31.7004 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  5927. 2021-08-21 17:00:43.4994 Info: [source]:runtime,[msg]:AppHost 停止插件
  5928. 2021-08-21 17:00:43.4994 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  5929. 2021-08-21 17:00:43.4994 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  5930. 2021-08-21 17:00:43.4994 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  5931. 2021-08-21 17:00:43.4994 Info: [source]:runtime,[msg]:Runtime 关闭
  5932. 2021-08-21 17:05:03.2454 Info: [source]:runtime,[msg]:Runtime 启动
  5933. 2021-08-21 17:05:03.3604 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5934. 2021-08-21 17:05:03.6364 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5935. 2021-08-21 17:05:03.6534 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5936. 2021-08-21 17:05:03.6534 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5937. 2021-08-21 17:05:03.6714 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5938. 2021-08-21 17:05:03.6714 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5939. 2021-08-21 17:05:03.6714 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5940. 2021-08-21 17:05:03.6714 Info: [source]:runtime,[msg]:Runtime 启动完成
  5941. 2021-08-21 17:05:13.0404 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5942. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5943. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5944. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5945. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5946. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5947. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5948. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5949. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5950. 2021-08-21 17:05:15.0804 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5951. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5952. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5953. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5954. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5955. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5956. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5957. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5958. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5959. 2021-08-21 17:05:15.0944 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5960. 2021-08-21 17:05:15.1334 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  5961. 2021-08-21 17:07:13.8864 Info: [source]:runtime,[msg]:AppHost 停止插件
  5962. 2021-08-21 17:07:13.8864 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  5963. 2021-08-21 17:07:13.8864 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  5964. 2021-08-21 17:07:13.8864 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  5965. 2021-08-21 17:07:13.8864 Info: [source]:runtime,[msg]:Runtime 关闭
  5966. 2021-08-21 17:07:23.7334 Info: [source]:runtime,[msg]:Runtime 启动
  5967. 2021-08-21 17:07:23.8684 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5968. 2021-08-21 17:07:24.2644 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5969. 2021-08-21 17:07:24.2804 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5970. 2021-08-21 17:07:24.2944 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  5971. 2021-08-21 17:07:24.2944 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  5972. 2021-08-21 17:07:24.2944 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  5973. 2021-08-21 17:07:24.2944 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  5974. 2021-08-21 17:07:24.2944 Info: [source]:runtime,[msg]:Runtime 启动完成
  5975. 2021-08-21 17:07:32.3444 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5976. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5977. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5978. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5979. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5980. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5981. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5982. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5983. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5984. 2021-08-21 17:07:34.3814 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  5985. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  5986. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  5987. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  5988. 在 System.Activator.CreateInstance(Type type, Object[] args)
  5989. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  5990. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  5991. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  5992. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  5993. 2021-08-21 17:07:34.3974 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  5994. 2021-08-21 17:07:34.4604 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  5995. 2021-08-21 17:52:46.1764 Info: [source]:runtime,[msg]:Runtime 启动
  5996. 2021-08-21 17:52:46.3144 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  5997. 2021-08-21 17:52:46.6134 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  5998. 2021-08-21 17:52:46.6434 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5999. 2021-08-21 17:52:46.6594 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6000. 2021-08-21 17:52:46.6654 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6001. 2021-08-21 17:52:46.6654 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6002. 2021-08-21 17:52:46.6654 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6003. 2021-08-21 17:52:46.6654 Info: [source]:runtime,[msg]:Runtime 启动完成
  6004. 2021-08-21 17:52:55.0054 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6005. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6006. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6007. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6008. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6009. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6010. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6011. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6012. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6013. 2021-08-21 17:52:57.0534 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6014. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6015. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6016. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6017. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6018. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6019. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6020. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6021. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6022. 2021-08-21 17:52:57.0534 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6023. 2021-08-21 17:52:57.0934 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  6024. 2021-08-21 20:42:57.1304 Info: [source]:runtime,[msg]:Runtime 启动
  6025. 2021-08-21 20:42:57.2624 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6026. 2021-08-21 20:42:57.5564 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6027. 2021-08-21 20:42:57.5804 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6028. 2021-08-21 20:42:57.5954 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6029. 2021-08-21 20:42:57.6044 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6030. 2021-08-21 20:42:57.6044 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6031. 2021-08-21 20:42:57.6044 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6032. 2021-08-21 20:42:57.6044 Info: [source]:runtime,[msg]:Runtime 启动完成
  6033. 2021-08-21 20:43:01.7574 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6034. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6035. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6036. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6037. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6038. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6039. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6040. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6041. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6042. 2021-08-21 20:43:01.7754 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6043. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6044. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6045. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6046. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6047. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6048. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6049. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6050. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6051. 2021-08-21 20:43:01.7954 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6052. 2021-08-21 20:43:01.8124 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6053. 2021-08-21 20:46:26.4394 Info: [source]:runtime,[msg]:AppHost 停止插件
  6054. 2021-08-21 20:46:26.4394 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  6055. 2021-08-21 20:46:26.4394 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  6056. 2021-08-21 20:46:26.4514 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  6057. 2021-08-21 20:46:26.4514 Info: [source]:runtime,[msg]:Runtime 关闭
  6058. 2021-08-21 20:47:16.6664 Info: [source]:runtime,[msg]:Runtime 启动
  6059. 2021-08-21 20:47:16.8024 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6060. 2021-08-21 20:47:17.1114 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6061. 2021-08-21 20:47:17.1584 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6062. 2021-08-21 20:47:17.2404 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6063. 2021-08-21 20:47:17.2454 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6064. 2021-08-21 20:47:17.2454 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6065. 2021-08-21 20:47:17.2454 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6066. 2021-08-21 20:47:17.2454 Info: [source]:runtime,[msg]:Runtime 启动完成
  6067. 2021-08-21 20:47:21.5304 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6068. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6069. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6070. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6071. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6072. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6073. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6074. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6075. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6076. 2021-08-21 20:47:21.5494 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6077. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6078. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6079. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6080. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6081. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6082. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6083. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6084. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6085. 2021-08-21 20:47:21.6144 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6086. 2021-08-21 20:47:21.6324 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6087. 2021-08-21 20:47:21.6584 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6088. 2021-08-21 20:50:47.6084 Info: [source]:runtime,[msg]:Runtime 启动
  6089. 2021-08-21 20:50:47.7324 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6090. 2021-08-21 20:50:48.0524 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6091. 2021-08-21 20:50:48.0694 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6092. 2021-08-21 20:50:48.0934 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6093. 2021-08-21 20:50:48.0994 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6094. 2021-08-21 20:50:48.0994 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6095. 2021-08-21 20:50:48.0994 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6096. 2021-08-21 20:50:48.0994 Info: [source]:runtime,[msg]:Runtime 启动完成
  6097. 2021-08-21 20:50:52.4194 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6098. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6099. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6100. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6101. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6102. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6103. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6104. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6105. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6106. 2021-08-21 20:50:52.4394 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6107. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6108. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6109. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6110. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6111. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6112. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6113. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6114. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6115. 2021-08-21 20:50:52.4894 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6116. 2021-08-21 20:50:52.5084 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6117. 2021-08-21 20:50:52.5224 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6118. 2021-08-21 20:51:16.0754 Info: [source]:runtime,[msg]:AppHost 停止插件
  6119. 2021-08-21 20:51:16.0754 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  6120. 2021-08-21 20:51:16.0754 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  6121. 2021-08-21 20:51:16.0754 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  6122. 2021-08-21 20:51:16.0754 Info: [source]:runtime,[msg]:Runtime 关闭
  6123. 2021-08-21 20:51:45.2404 Info: [source]:runtime,[msg]:Runtime 启动
  6124. 2021-08-21 20:51:45.3724 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6125. 2021-08-21 20:51:45.7064 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6126. 2021-08-21 20:51:45.7214 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6127. 2021-08-21 20:51:45.7424 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6128. 2021-08-21 20:51:45.7424 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6129. 2021-08-21 20:51:45.7424 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6130. 2021-08-21 20:51:45.7424 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6131. 2021-08-21 20:51:45.7424 Info: [source]:runtime,[msg]:Runtime 启动完成
  6132. 2021-08-21 20:51:50.0014 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6133. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6134. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6135. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6136. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6137. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6138. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6139. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6140. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6141. 2021-08-21 20:51:50.0204 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6142. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6143. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6144. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6145. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6146. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6147. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6148. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6149. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6150. 2021-08-21 20:51:50.0734 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6151. 2021-08-21 20:51:50.0934 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6152. 2021-08-21 20:51:50.1114 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6153. 2021-08-21 20:54:45.9574 Info: [source]:runtime,[msg]:Runtime 启动
  6154. 2021-08-21 20:54:46.0884 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6155. 2021-08-21 20:54:46.3574 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6156. 2021-08-21 20:54:46.3574 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6157. 2021-08-21 20:54:46.3944 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6158. 2021-08-21 20:54:46.3944 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6159. 2021-08-21 20:54:46.3944 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6160. 2021-08-21 20:54:46.3944 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6161. 2021-08-21 20:54:46.3944 Info: [source]:runtime,[msg]:Runtime 启动完成
  6162. 2021-08-21 20:54:50.6684 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6163. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6164. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6165. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6166. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6167. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6168. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6169. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6170. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6171. 2021-08-21 20:54:50.6844 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6172. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6173. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6174. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6175. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6176. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6177. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6178. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6179. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6180. 2021-08-21 20:54:50.7264 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6181. 2021-08-21 20:54:50.7484 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6182. 2021-08-21 20:54:50.7644 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6183. 2021-08-21 21:02:25.6134 Info: [source]:runtime,[msg]:Runtime 启动
  6184. 2021-08-21 21:02:25.7154 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6185. 2021-08-21 21:02:25.9274 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6186. 2021-08-21 21:02:25.9414 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6187. 2021-08-21 21:02:25.9614 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6188. 2021-08-21 21:02:25.9614 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6189. 2021-08-21 21:02:25.9674 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6190. 2021-08-21 21:02:25.9674 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6191. 2021-08-21 21:02:25.9674 Info: [source]:runtime,[msg]:Runtime 启动完成
  6192. 2021-08-21 21:02:34.5774 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6193. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6194. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6195. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6196. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6197. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6198. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6199. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6200. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6201. 2021-08-21 21:02:36.6124 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6202. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6203. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6204. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6205. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6206. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6207. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6208. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6209. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6210. 2021-08-21 21:02:36.6694 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6211. 2021-08-21 21:02:36.6874 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6212. 2021-08-21 21:02:36.7034 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6213. 2021-08-21 21:03:15.6424 Info: [source]:runtime,[msg]:Runtime 启动
  6214. 2021-08-21 21:03:15.7984 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6215. 2021-08-21 21:03:16.1784 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6216. 2021-08-21 21:03:16.2024 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6217. 2021-08-21 21:03:16.2234 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6218. 2021-08-21 21:03:16.2234 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6219. 2021-08-21 21:03:16.2234 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6220. 2021-08-21 21:03:16.2304 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6221. 2021-08-21 21:03:16.2304 Info: [source]:runtime,[msg]:Runtime 启动完成
  6222. 2021-08-21 21:03:24.6924 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6223. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6224. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6225. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6226. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6227. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6228. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6229. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6230. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6231. 2021-08-21 21:03:26.7144 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6232. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6233. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6234. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6235. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6236. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6237. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6238. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6239. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6240. 2021-08-21 21:03:26.7614 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6241. 2021-08-21 21:03:26.7794 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6242. 2021-08-21 21:03:26.7934 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6243. 2021-08-21 21:05:32.6804 Info: [source]:runtime,[msg]:Runtime 启动
  6244. 2021-08-21 21:05:32.8294 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6245. 2021-08-21 21:05:33.1994 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6246. 2021-08-21 21:05:33.1994 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6247. 2021-08-21 21:05:33.2354 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6248. 2021-08-21 21:05:33.2354 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6249. 2021-08-21 21:05:33.2354 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6250. 2021-08-21 21:05:33.2354 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6251. 2021-08-21 21:05:33.2464 Info: [source]:runtime,[msg]:Runtime 启动完成
  6252. 2021-08-21 21:05:41.5794 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6253. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6254. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6255. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6256. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6257. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6258. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6259. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6260. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6261. 2021-08-21 21:05:43.5954 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6262. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6263. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6264. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6265. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6266. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6267. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6268. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6269. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6270. 2021-08-21 21:05:43.6364 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6271. 2021-08-21 21:05:43.6524 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6272. 2021-08-21 21:05:43.6524 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6273. 2021-08-21 21:08:43.0784 Info: [source]:runtime,[msg]:AppHost 停止插件
  6274. 2021-08-21 21:08:43.0784 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  6275. 2021-08-21 21:08:43.0784 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  6276. 2021-08-21 21:08:43.0904 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  6277. 2021-08-21 21:08:43.0904 Info: [source]:runtime,[msg]:Runtime 关闭
  6278. 2021-08-21 21:11:29.9024 Info: [source]:runtime,[msg]:Runtime 启动
  6279. 2021-08-21 21:11:30.0244 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6280. 2021-08-21 21:11:30.3874 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6281. 2021-08-21 21:11:30.4004 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6282. 2021-08-21 21:11:30.4134 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6283. 2021-08-21 21:11:30.4134 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6284. 2021-08-21 21:11:30.4134 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6285. 2021-08-21 21:11:30.4134 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6286. 2021-08-21 21:11:30.4134 Info: [source]:runtime,[msg]:Runtime 启动完成
  6287. 2021-08-21 21:11:38.7694 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6288. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6289. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6290. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6291. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6292. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6293. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6294. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6295. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6296. 2021-08-21 21:11:40.0414 Info: [source]:runtime,[msg]:AppHost 停止插件
  6297. 2021-08-21 21:11:40.0414 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  6298. 2021-08-21 21:11:40.0414 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  6299. 2021-08-21 21:11:40.0414 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  6300. 2021-08-21 21:11:40.0414 Info: [source]:runtime,[msg]:Runtime 关闭
  6301. 2021-08-21 21:12:39.1744 Info: [source]:runtime,[msg]:Runtime 启动
  6302. 2021-08-21 21:12:39.2984 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6303. 2021-08-21 21:12:39.6294 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6304. 2021-08-21 21:12:39.6464 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6305. 2021-08-21 21:12:39.6464 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6306. 2021-08-21 21:12:39.6634 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6307. 2021-08-21 21:12:39.6634 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6308. 2021-08-21 21:12:39.6634 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6309. 2021-08-21 21:12:39.6634 Info: [source]:runtime,[msg]:Runtime 启动完成
  6310. 2021-08-21 21:12:48.0074 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6311. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6312. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6313. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6314. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6315. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6316. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6317. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6318. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6319. 2021-08-21 21:12:50.0464 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6320. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6321. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6322. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6323. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6324. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6325. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6326. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6327. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6328. 2021-08-21 21:12:50.4814 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6329. 2021-08-21 21:12:50.5554 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6330. 2021-08-21 21:12:50.5684 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6331. 2021-08-21 21:15:18.5414 Info: [source]:runtime,[msg]:Runtime 启动
  6332. 2021-08-21 21:15:18.6824 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6333. 2021-08-21 21:15:19.0824 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6334. 2021-08-21 21:15:19.1014 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6335. 2021-08-21 21:15:19.1194 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6336. 2021-08-21 21:15:19.1254 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6337. 2021-08-21 21:15:19.1254 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6338. 2021-08-21 21:15:19.1254 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6339. 2021-08-21 21:15:19.1254 Info: [source]:runtime,[msg]:Runtime 启动完成
  6340. 2021-08-21 21:15:27.4844 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6341. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6342. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6343. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6344. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6345. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6346. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6347. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6348. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6349. 2021-08-21 21:15:29.5014 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6350. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6351. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6352. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6353. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6354. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6355. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6356. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6357. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6358. 2021-08-21 21:15:29.5734 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6359. 2021-08-21 21:15:29.5914 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6360. 2021-08-21 21:15:29.6074 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6361. 2021-08-21 21:17:15.7484 Info: [source]:runtime,[msg]:Runtime 启动
  6362. 2021-08-21 21:17:15.8984 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6363. 2021-08-21 21:17:16.2454 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6364. 2021-08-21 21:17:16.2754 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6365. 2021-08-21 21:17:16.2984 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6366. 2021-08-21 21:17:16.2984 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6367. 2021-08-21 21:17:16.2984 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6368. 2021-08-21 21:17:16.2984 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6369. 2021-08-21 21:17:16.2984 Info: [source]:runtime,[msg]:Runtime 启动完成
  6370. 2021-08-21 21:17:24.6514 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6371. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6372. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6373. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6374. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6375. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6376. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6377. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6378. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6379. 2021-08-21 21:17:26.6674 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6380. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6381. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6382. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6383. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6384. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6385. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6386. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6387. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6388. 2021-08-21 21:17:26.7214 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6389. 2021-08-21 21:17:26.7394 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6390. 2021-08-21 21:17:26.7544 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6391. 2021-08-21 21:19:02.5314 Info: [source]:runtime,[msg]:Runtime 启动
  6392. 2021-08-21 21:19:02.6784 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6393. 2021-08-21 21:19:03.1514 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6394. 2021-08-21 21:19:03.1714 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6395. 2021-08-21 21:19:03.1884 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6396. 2021-08-21 21:19:03.1884 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6397. 2021-08-21 21:19:03.1884 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6398. 2021-08-21 21:19:03.1884 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6399. 2021-08-21 21:19:03.1884 Info: [source]:runtime,[msg]:Runtime 启动完成
  6400. 2021-08-21 21:19:11.5024 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6401. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6402. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6403. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6404. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6405. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6406. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6407. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6408. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6409. 2021-08-21 21:19:13.5234 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6410. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6411. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6412. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6413. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6414. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6415. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6416. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6417. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6418. 2021-08-21 21:19:13.5764 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6419. 2021-08-21 21:19:13.5944 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6420. 2021-08-21 21:19:13.6084 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6421. 2021-08-21 21:32:34.1434 Info: [source]:runtime,[msg]:Runtime 启动
  6422. 2021-08-21 21:32:34.3004 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6423. 2021-08-21 21:32:34.6194 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6424. 2021-08-21 21:32:34.7014 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6425. 2021-08-21 21:32:34.7264 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6426. 2021-08-21 21:32:34.7264 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6427. 2021-08-21 21:32:34.7264 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6428. 2021-08-21 21:32:34.7264 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6429. 2021-08-21 21:32:34.7264 Info: [source]:runtime,[msg]:Runtime 启动完成
  6430. 2021-08-21 21:32:43.1284 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6431. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6432. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6433. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6434. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6435. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6436. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6437. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6438. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6439. 2021-08-21 21:32:45.1494 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6440. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6441. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6442. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6443. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6444. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6445. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6446. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6447. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6448. 2021-08-21 21:32:45.2024 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6449. 2021-08-21 21:32:45.2194 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6450. 2021-08-21 21:32:45.2194 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6451. 2021-08-21 21:34:03.6234 Info: [source]:runtime,[msg]:AppHost 停止插件
  6452. 2021-08-21 21:34:03.6234 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  6453. 2021-08-21 21:34:03.6254 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  6454. 2021-08-21 21:34:03.6254 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  6455. 2021-08-21 21:34:03.6254 Info: [source]:runtime,[msg]:Runtime 关闭
  6456. 2021-08-21 21:34:11.2274 Info: [source]:runtime,[msg]:Runtime 启动
  6457. 2021-08-21 21:34:11.3944 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6458. 2021-08-21 21:34:11.7634 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6459. 2021-08-21 21:34:11.8434 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6460. 2021-08-21 21:34:11.8764 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6461. 2021-08-21 21:34:11.8824 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6462. 2021-08-21 21:34:11.8824 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6463. 2021-08-21 21:34:11.8824 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6464. 2021-08-21 21:34:11.8824 Info: [source]:runtime,[msg]:Runtime 启动完成
  6465. 2021-08-21 21:34:20.3034 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6466. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6467. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6468. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6469. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6470. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6471. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6472. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6473. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6474. 2021-08-21 21:34:22.3294 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6475. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6476. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6477. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6478. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6479. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6480. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6481. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6482. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6483. 2021-08-21 21:34:22.3834 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6484. 2021-08-21 21:34:22.4014 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6485. 2021-08-21 21:34:22.4134 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6486. 2021-08-21 21:35:03.7094 Info: [source]:runtime,[msg]:AppHost 停止插件
  6487. 2021-08-21 21:35:03.7094 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  6488. 2021-08-21 21:35:03.7094 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  6489. 2021-08-21 21:35:03.7094 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  6490. 2021-08-21 21:35:03.7094 Info: [source]:runtime,[msg]:Runtime 关闭
  6491. 2021-08-21 21:36:19.2634 Info: [source]:runtime,[msg]:Runtime 启动
  6492. 2021-08-21 21:36:19.4214 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6493. 2021-08-21 21:36:19.7504 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6494. 2021-08-21 21:36:19.7654 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6495. 2021-08-21 21:36:19.7944 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6496. 2021-08-21 21:36:19.8014 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6497. 2021-08-21 21:36:19.8014 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6498. 2021-08-21 21:36:19.8014 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6499. 2021-08-21 21:36:19.8014 Info: [source]:runtime,[msg]:Runtime 启动完成
  6500. 2021-08-21 21:36:28.2714 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6501. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6502. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6503. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6504. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6505. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6506. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6507. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6508. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6509. 2021-08-21 21:36:30.2944 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6510. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6511. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6512. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6513. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6514. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6515. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6516. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6517. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6518. 2021-08-21 21:36:30.3514 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6519. 2021-08-21 21:36:30.3704 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6520. 2021-08-21 21:36:30.3834 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6521. 2021-08-21 21:45:12.8624 Info: [source]:runtime,[msg]:Runtime 启动
  6522. 2021-08-21 21:45:12.9854 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6523. 2021-08-21 21:45:13.3224 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6524. 2021-08-21 21:45:13.3374 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6525. 2021-08-21 21:45:13.3374 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6526. 2021-08-21 21:45:13.3564 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6527. 2021-08-21 21:45:13.3564 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6528. 2021-08-21 21:45:13.3564 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6529. 2021-08-21 21:45:13.3564 Info: [source]:runtime,[msg]:Runtime 启动完成
  6530. 2021-08-21 21:45:21.7274 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6531. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6532. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6533. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6534. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6535. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6536. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6537. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6538. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6539. 2021-08-21 21:45:23.7554 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6540. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6541. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6542. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6543. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6544. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6545. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6546. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6547. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6548. 2021-08-21 21:45:23.8024 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6549. 2021-08-21 21:45:23.8204 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6550. 2021-08-21 21:45:23.8364 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6551. 2021-08-21 21:46:58.7504 Info: [source]:runtime,[msg]:Runtime 启动
  6552. 2021-08-21 21:46:58.9104 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6553. 2021-08-21 21:46:59.2854 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6554. 2021-08-21 21:46:59.3014 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6555. 2021-08-21 21:46:59.3194 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6556. 2021-08-21 21:46:59.3244 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6557. 2021-08-21 21:46:59.3244 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6558. 2021-08-21 21:46:59.3244 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6559. 2021-08-21 21:46:59.3244 Info: [source]:runtime,[msg]:Runtime 启动完成
  6560. 2021-08-21 21:47:07.8004 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6561. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6562. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6563. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6564. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6565. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6566. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6567. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6568. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6569. 2021-08-21 21:47:09.8264 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6570. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6571. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6572. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6573. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6574. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6575. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6576. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6577. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6578. 2021-08-21 21:47:09.8734 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6579. 2021-08-21 21:47:09.8914 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6580. 2021-08-21 21:47:09.9034 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6581. 2021-08-21 21:48:58.9444 Info: [source]:runtime,[msg]:AppHost 停止插件
  6582. 2021-08-21 21:48:58.9444 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  6583. 2021-08-21 21:48:58.9464 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  6584. 2021-08-21 21:48:58.9464 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  6585. 2021-08-21 21:48:58.9464 Info: [source]:runtime,[msg]:Runtime 关闭
  6586. 2021-08-21 21:53:59.6164 Info: [source]:runtime,[msg]:Runtime 启动
  6587. 2021-08-21 21:53:59.7694 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6588. 2021-08-21 21:54:00.2064 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6589. 2021-08-21 21:54:00.2204 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6590. 2021-08-21 21:54:00.2334 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6591. 2021-08-21 21:54:00.2334 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6592. 2021-08-21 21:54:00.2334 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6593. 2021-08-21 21:54:00.2334 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6594. 2021-08-21 21:54:00.2334 Info: [source]:runtime,[msg]:Runtime 启动完成
  6595. 2021-08-21 21:54:08.8464 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6596. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6597. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6598. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6599. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6600. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6601. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6602. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6603. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6604. 2021-08-21 21:54:10.8844 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6605. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6606. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6607. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6608. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6609. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6610. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6611. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6612. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6613. 2021-08-21 21:54:10.9274 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6614. 2021-08-21 21:54:10.9434 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6615. 2021-08-21 21:54:10.9554 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6616. 2021-08-21 21:58:26.7664 Info: [source]:runtime,[msg]:AppHost 停止插件
  6617. 2021-08-21 21:58:26.7664 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  6618. 2021-08-21 21:58:26.7874 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  6619. 2021-08-21 21:58:26.7874 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  6620. 2021-08-21 21:58:26.7914 Info: [source]:runtime,[msg]:Runtime 关闭
  6621. 2021-08-21 21:59:51.0334 Info: [source]:runtime,[msg]:Runtime 启动
  6622. 2021-08-21 21:59:51.1644 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6623. 2021-08-21 21:59:51.4274 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6624. 2021-08-21 21:59:51.4434 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6625. 2021-08-21 21:59:51.4654 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6626. 2021-08-21 21:59:51.4704 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6627. 2021-08-21 21:59:51.4704 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6628. 2021-08-21 21:59:51.4704 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6629. 2021-08-21 21:59:51.4704 Info: [source]:runtime,[msg]:Runtime 启动完成
  6630. 2021-08-21 21:59:59.9624 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6631. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6632. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6633. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6634. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6635. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6636. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6637. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6638. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6639. 2021-08-21 22:00:01.9884 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6640. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6641. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6642. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6643. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6644. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6645. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6646. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6647. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6648. 2021-08-21 22:00:02.0344 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6649. 2021-08-21 22:00:02.0524 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6650. 2021-08-21 22:00:02.0644 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6651. 2021-08-21 22:06:24.1694 Info: [source]:runtime,[msg]:Runtime 启动
  6652. 2021-08-21 22:06:24.3434 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6653. 2021-08-21 22:06:24.7904 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6654. 2021-08-21 22:06:24.8094 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6655. 2021-08-21 22:06:24.8334 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6656. 2021-08-21 22:06:24.8394 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6657. 2021-08-21 22:06:24.8394 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6658. 2021-08-21 22:06:24.8394 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6659. 2021-08-21 22:06:24.8394 Info: [source]:runtime,[msg]:Runtime 启动完成
  6660. 2021-08-21 22:06:33.5674 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6661. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6662. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6663. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6664. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6665. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6666. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6667. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6668. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6669. 2021-08-21 22:06:35.5874 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6670. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6671. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6672. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6673. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6674. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6675. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6676. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6677. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6678. 2021-08-21 22:06:35.6324 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6679. 2021-08-21 22:06:35.6544 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6680. 2021-08-21 22:06:35.6714 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6681. 2021-08-21 22:12:13.9694 Info: [source]:runtime,[msg]:Runtime 启动
  6682. 2021-08-21 22:12:14.1074 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6683. 2021-08-21 22:12:14.4064 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6684. 2021-08-21 22:12:14.4544 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6685. 2021-08-21 22:12:14.4884 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6686. 2021-08-21 22:12:14.4884 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6687. 2021-08-21 22:12:14.4884 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6688. 2021-08-21 22:12:14.4884 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6689. 2021-08-21 22:12:14.4884 Info: [source]:runtime,[msg]:Runtime 启动完成
  6690. 2021-08-21 22:12:22.9034 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6691. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6692. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6693. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6694. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6695. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6696. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6697. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6698. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6699. 2021-08-21 22:12:24.9254 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6700. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6701. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6702. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6703. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6704. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6705. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6706. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6707. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6708. 2021-08-21 22:12:24.9694 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6709. 2021-08-21 22:12:24.9874 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6710. 2021-08-21 22:12:25.0034 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6711. 2021-08-21 22:19:39.4864 Info: [source]:runtime,[msg]:Runtime 启动
  6712. 2021-08-21 22:19:39.6614 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6713. 2021-08-21 22:19:40.0364 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6714. 2021-08-21 22:19:40.0924 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6715. 2021-08-21 22:19:40.1084 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6716. 2021-08-21 22:19:40.1084 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6717. 2021-08-21 22:19:40.1084 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6718. 2021-08-21 22:19:40.1174 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6719. 2021-08-21 22:19:40.1174 Info: [source]:runtime,[msg]:Runtime 启动完成
  6720. 2021-08-21 22:19:50.1144 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6721. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6722. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6723. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6724. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6725. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6726. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6727. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6728. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6729. 2021-08-21 22:19:52.1334 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6730. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6731. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6732. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6733. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6734. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6735. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6736. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6737. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6738. 2021-08-21 22:19:52.1784 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6739. 2021-08-21 22:19:52.1964 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6740. 2021-08-21 22:19:52.2104 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6741. 2021-08-21 22:28:43.9394 Info: [source]:runtime,[msg]:Runtime 启动
  6742. 2021-08-21 22:28:44.0844 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6743. 2021-08-21 22:28:44.4664 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6744. 2021-08-21 22:28:44.5174 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6745. 2021-08-21 22:28:44.5304 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6746. 2021-08-21 22:28:44.5304 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6747. 2021-08-21 22:28:44.5304 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6748. 2021-08-21 22:28:44.5304 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6749. 2021-08-21 22:28:44.5304 Info: [source]:runtime,[msg]:Runtime 启动完成
  6750. 2021-08-21 22:28:53.0544 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6751. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6752. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6753. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6754. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6755. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6756. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6757. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6758. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6759. 2021-08-21 22:28:55.0754 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6760. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6761. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6762. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6763. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6764. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6765. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6766. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6767. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6768. 2021-08-21 22:28:55.1304 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6769. 2021-08-21 22:28:55.1484 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6770. 2021-08-21 22:28:55.1634 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6771. 2021-08-21 22:37:37.5644 Info: [source]:runtime,[msg]:Runtime 启动
  6772. 2021-08-21 22:37:37.7344 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6773. 2021-08-21 22:37:38.1384 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6774. 2021-08-21 22:37:38.2074 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6775. 2021-08-21 22:37:38.2914 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6776. 2021-08-21 22:37:38.2914 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6777. 2021-08-21 22:37:38.3274 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6778. 2021-08-21 22:37:38.3274 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6779. 2021-08-21 22:37:38.3274 Info: [source]:runtime,[msg]:Runtime 启动完成
  6780. 2021-08-21 22:37:47.1484 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6781. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6782. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6783. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6784. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6785. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6786. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6787. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6788. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6789. 2021-08-21 22:37:49.1674 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6790. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6791. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6792. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6793. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6794. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6795. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6796. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6797. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6798. 2021-08-21 22:37:49.2124 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6799. 2021-08-21 22:37:49.2314 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6800. 2021-08-21 22:37:49.2464 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6801. 2021-08-21 22:43:26.1854 Info: [source]:runtime,[msg]:AppHost 停止插件
  6802. 2021-08-21 22:43:26.1854 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  6803. 2021-08-21 22:43:26.1854 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  6804. 2021-08-21 22:43:26.1854 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  6805. 2021-08-21 22:43:26.1854 Info: [source]:runtime,[msg]:Runtime 关闭
  6806. 2021-08-21 23:27:31.1494 Info: [source]:runtime,[msg]:Runtime 启动
  6807. 2021-08-21 23:27:31.2734 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6808. 2021-08-21 23:27:31.6984 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6809. 2021-08-21 23:27:31.7154 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6810. 2021-08-21 23:27:31.7294 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6811. 2021-08-21 23:27:31.7294 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6812. 2021-08-21 23:27:31.7294 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6813. 2021-08-21 23:27:31.7294 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6814. 2021-08-21 23:27:31.7294 Info: [source]:runtime,[msg]:Runtime 启动完成
  6815. 2021-08-21 23:27:41.4054 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6816. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6817. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6818. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6819. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6820. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6821. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6822. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6823. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6824. 2021-08-21 23:27:43.4254 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6825. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6826. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6827. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6828. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6829. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6830. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6831. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6832. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6833. 2021-08-21 23:27:43.4754 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6834. 2021-08-21 23:27:43.4914 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6835. 2021-08-21 23:27:43.4914 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6836. 2021-08-21 23:27:51.2224 Info: [source]:runtime,[msg]:AppHost 停止插件
  6837. 2021-08-21 23:27:51.2224 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  6838. 2021-08-21 23:27:51.2224 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  6839. 2021-08-21 23:27:51.2284 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  6840. 2021-08-21 23:27:51.2284 Info: [source]:runtime,[msg]:Runtime 关闭
  6841. 2021-08-21 23:33:15.4624 Info: [source]:runtime,[msg]:Runtime 启动
  6842. 2021-08-21 23:33:15.6714 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6843. 2021-08-21 23:33:15.9274 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6844. 2021-08-21 23:33:15.9404 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6845. 2021-08-21 23:33:15.9584 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6846. 2021-08-21 23:33:15.9654 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6847. 2021-08-21 23:33:15.9654 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6848. 2021-08-21 23:33:15.9654 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6849. 2021-08-21 23:33:15.9654 Info: [source]:runtime,[msg]:Runtime 启动完成
  6850. 2021-08-21 23:33:24.3404 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6851. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6852. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6853. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6854. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6855. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6856. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6857. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6858. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6859. 2021-08-21 23:33:26.3894 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6860. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6861. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6862. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6863. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6864. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6865. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6866. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6867. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6868. 2021-08-21 23:33:26.4444 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6869. 2021-08-21 23:33:26.4724 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6870. 2021-08-21 23:33:26.4844 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6871. 2021-08-21 23:34:18.2394 Info: [source]:runtime,[msg]:AppHost 停止插件
  6872. 2021-08-21 23:34:18.2394 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  6873. 2021-08-21 23:34:18.2394 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  6874. 2021-08-21 23:34:18.2394 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  6875. 2021-08-21 23:34:18.2394 Info: [source]:runtime,[msg]:Runtime 关闭
  6876. 2021-08-21 23:36:27.7204 Info: [source]:runtime,[msg]:Runtime 启动
  6877. 2021-08-21 23:36:27.8694 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6878. 2021-08-21 23:36:28.2524 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6879. 2021-08-21 23:36:28.2674 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6880. 2021-08-21 23:36:28.2814 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6881. 2021-08-21 23:36:28.2814 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6882. 2021-08-21 23:36:28.2814 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6883. 2021-08-21 23:36:28.2814 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6884. 2021-08-21 23:36:28.2814 Info: [source]:runtime,[msg]:Runtime 启动完成
  6885. 2021-08-21 23:36:36.6924 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6886. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6887. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6888. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6889. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6890. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6891. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6892. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6893. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6894. 2021-08-21 23:36:38.7304 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6895. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6896. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6897. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6898. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6899. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6900. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6901. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6902. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6903. 2021-08-21 23:36:39.1854 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6904. 2021-08-21 23:36:39.2614 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6905. 2021-08-21 23:36:39.2614 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6906. 2021-08-21 23:39:33.8624 Info: [source]:runtime,[msg]:Runtime 启动
  6907. 2021-08-21 23:39:34.0164 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6908. 2021-08-21 23:39:34.4104 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6909. 2021-08-21 23:39:34.4254 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6910. 2021-08-21 23:39:34.4394 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6911. 2021-08-21 23:39:34.4394 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6912. 2021-08-21 23:39:34.4394 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6913. 2021-08-21 23:39:34.4394 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6914. 2021-08-21 23:39:34.4394 Info: [source]:runtime,[msg]:Runtime 启动完成
  6915. 2021-08-21 23:39:38.7414 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  6916. 在 NationalInstruments.VisaNS.Session.CheckStatusAndThrow(Int32 status)
  6917. 在 NationalInstruments.VisaNS.Internal.MessageBasedSessionImpl.ReadString(Int32 countToRead)
  6918. 在 NationalInstruments.VisaNS.MessageBasedSession.Query(String dataToWrite)
  6919. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 182
  6920. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6921. 2021-08-21 23:39:42.7834 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6922. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6923. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6924. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6925. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6926. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6927. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6928. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6929. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6930. 2021-08-21 23:39:44.8024 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6931. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6932. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6933. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6934. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6935. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6936. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6937. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6938. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6939. 2021-08-21 23:39:44.8654 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6940. 2021-08-21 23:39:44.8734 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6941. 2021-08-21 23:39:44.8854 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6942. 2021-08-21 23:55:22.3244 Info: [source]:runtime,[msg]:Runtime 启动
  6943. 2021-08-21 23:55:22.4554 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6944. 2021-08-21 23:55:22.7854 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6945. 2021-08-21 23:55:22.7984 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6946. 2021-08-21 23:55:22.8114 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6947. 2021-08-21 23:55:22.8114 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6948. 2021-08-21 23:55:22.8114 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6949. 2021-08-21 23:55:22.8114 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6950. 2021-08-21 23:55:22.8114 Info: [source]:runtime,[msg]:Runtime 启动完成
  6951. 2021-08-21 23:55:31.1774 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6952. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6953. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6954. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6955. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6956. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6957. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6958. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6959. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6960. 2021-08-21 23:55:33.2194 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6961. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6962. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6963. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6964. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6965. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6966. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6967. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6968. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6969. 2021-08-21 23:55:33.2714 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  6970. 2021-08-21 23:55:33.2884 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  6971. 2021-08-21 23:55:33.3034 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  6972. 2021-08-22 00:42:29.1104 Info: [source]:runtime,[msg]:Runtime 启动
  6973. 2021-08-22 00:42:29.2354 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  6974. 2021-08-22 00:42:29.6584 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  6975. 2021-08-22 00:42:29.6734 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  6976. 2021-08-22 00:42:29.6894 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6977. 2021-08-22 00:42:29.6894 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  6978. 2021-08-22 00:42:29.6894 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  6979. 2021-08-22 00:42:29.6894 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  6980. 2021-08-22 00:42:29.6894 Info: [source]:runtime,[msg]:Runtime 启动完成
  6981. 2021-08-22 00:42:38.9554 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6982. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6983. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6984. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6985. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6986. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6987. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6988. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6989. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6990. 2021-08-22 00:42:40.9874 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  6991. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  6992. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  6993. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  6994. 在 System.Activator.CreateInstance(Type type, Object[] args)
  6995. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  6996. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  6997. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  6998. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  6999. 2021-08-22 00:42:41.0654 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  7000. 2021-08-22 00:42:41.0844 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  7001. 2021-08-22 00:42:41.0964 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  7002. 2021-08-22 10:46:38.3060 Info: [source]:runtime,[msg]:Runtime 启动
  7003. 2021-08-22 10:46:38.4220 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  7004. 2021-08-22 10:46:38.7130 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  7005. 2021-08-22 10:46:38.7320 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  7006. 2021-08-22 10:46:38.7460 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  7007. 2021-08-22 10:46:38.7510 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  7008. 2021-08-22 10:46:38.7510 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  7009. 2021-08-22 10:46:38.7510 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  7010. 2021-08-22 10:46:38.7510 Info: [source]:runtime,[msg]:Runtime 启动完成
  7011. 2021-08-22 10:46:44.5440 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 NationalInstruments.VisaNS.Internal.ErrorChecker.CheckStatusAndThrow(Int32 status, VisaHandle visaObject)
  7012. 在 NationalInstruments.VisaNS.Session.CheckStatusAndThrow(Int32 status)
  7013. 在 NationalInstruments.VisaNS.Internal.MessageBasedSessionImpl.ReadString(Int32 countToRead)
  7014. 在 NationalInstruments.VisaNS.MessageBasedSession.Query(String dataToWrite)
  7015. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 182
  7016. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  7017. 2021-08-22 10:46:48.5880 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  7018. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  7019. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  7020. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  7021. 在 System.Activator.CreateInstance(Type type, Object[] args)
  7022. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  7023. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  7024. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  7025. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  7026. 2021-08-22 10:46:50.6050 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  7027. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  7028. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  7029. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  7030. 在 System.Activator.CreateInstance(Type type, Object[] args)
  7031. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  7032. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  7033. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  7034. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  7035. 2021-08-22 10:46:50.6660 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  7036. 2021-08-22 10:46:50.6740 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  7037. 2021-08-22 10:46:50.6980 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  7038. 2021-08-22 10:49:07.2340 Info: [source]:runtime,[msg]:Runtime 启动
  7039. 2021-08-22 10:49:07.4060 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  7040. 2021-08-22 10:49:07.7040 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  7041. 2021-08-22 10:49:07.7190 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  7042. 2021-08-22 10:49:07.7320 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  7043. 2021-08-22 10:49:07.7320 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  7044. 2021-08-22 10:49:07.7320 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  7045. 2021-08-22 10:49:07.7320 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  7046. 2021-08-22 10:49:07.7320 Info: [source]:runtime,[msg]:Runtime 启动完成
  7047. 2021-08-22 10:49:16.1280 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  7048. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  7049. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  7050. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  7051. 在 System.Activator.CreateInstance(Type type, Object[] args)
  7052. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  7053. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  7054. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  7055. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  7056. 2021-08-22 10:49:18.1490 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  7057. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  7058. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  7059. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  7060. 在 System.Activator.CreateInstance(Type type, Object[] args)
  7061. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  7062. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  7063. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  7064. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  7065. 2021-08-22 10:49:18.1990 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  7066. 2021-08-22 10:49:18.2160 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  7067. 2021-08-22 10:49:18.2280 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  7068. 2021-08-22 10:55:23.0830 Info: [source]:runtime,[msg]:Runtime 启动
  7069. 2021-08-22 10:55:23.2030 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  7070. 2021-08-22 10:55:23.5400 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  7071. 2021-08-22 10:55:23.5540 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  7072. 2021-08-22 10:55:23.5680 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  7073. 2021-08-22 10:55:23.5680 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  7074. 2021-08-22 10:55:23.5680 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  7075. 2021-08-22 10:55:23.5680 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  7076. 2021-08-22 10:55:23.5680 Info: [source]:runtime,[msg]:Runtime 启动完成
  7077. 2021-08-22 10:55:31.8750 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  7078. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  7079. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  7080. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  7081. 在 System.Activator.CreateInstance(Type type, Object[] args)
  7082. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  7083. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  7084. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  7085. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  7086. 2021-08-22 10:55:33.9120 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  7087. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  7088. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  7089. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  7090. 在 System.Activator.CreateInstance(Type type, Object[] args)
  7091. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  7092. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  7093. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  7094. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  7095. 2021-08-22 10:55:33.9680 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  7096. 2021-08-22 10:55:33.9860 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  7097. 2021-08-22 10:55:33.9980 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  7098. 2021-08-22 10:58:07.5780 Info: [source]:runtime,[msg]:Runtime 启动
  7099. 2021-08-22 10:58:07.7180 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  7100. 2021-08-22 10:58:08.1130 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  7101. 2021-08-22 10:58:08.1280 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  7102. 2021-08-22 10:58:08.1450 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  7103. 2021-08-22 10:58:08.1500 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  7104. 2021-08-22 10:58:08.1500 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  7105. 2021-08-22 10:58:08.1500 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  7106. 2021-08-22 10:58:08.1500 Info: [source]:runtime,[msg]:Runtime 启动完成
  7107. 2021-08-22 10:58:16.4860 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  7108. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  7109. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  7110. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  7111. 在 System.Activator.CreateInstance(Type type, Object[] args)
  7112. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  7113. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  7114. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  7115. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  7116. 2021-08-22 10:58:18.5010 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  7117. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  7118. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  7119. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  7120. 在 System.Activator.CreateInstance(Type type, Object[] args)
  7121. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  7122. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  7123. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  7124. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  7125. 2021-08-22 10:58:18.5590 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  7126. 2021-08-22 10:58:18.6450 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  7127. 2021-08-22 10:58:18.6610 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  7128. 2021-08-22 11:03:08.1080 Info: [source]:runtime,[msg]:Runtime 启动
  7129. 2021-08-22 11:03:08.2530 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  7130. 2021-08-22 11:03:08.6380 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  7131. 2021-08-22 11:03:08.6580 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  7132. 2021-08-22 11:03:08.7280 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  7133. 2021-08-22 11:03:08.7350 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  7134. 2021-08-22 11:03:08.7350 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  7135. 2021-08-22 11:03:08.7350 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  7136. 2021-08-22 11:03:08.7350 Info: [source]:runtime,[msg]:Runtime 启动完成
  7137. 2021-08-22 11:03:26.7300 Info: [source]:runtime,[msg]:Runtime 启动
  7138. 2021-08-22 11:03:26.8470 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  7139. 2021-08-22 11:03:27.1650 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  7140. 2021-08-22 11:03:27.1780 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  7141. 2021-08-22 11:03:27.1910 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  7142. 2021-08-22 11:03:27.1910 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  7143. 2021-08-22 11:03:27.1910 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  7144. 2021-08-22 11:03:27.1910 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  7145. 2021-08-22 11:03:27.1910 Info: [source]:runtime,[msg]:Runtime 启动完成
  7146. 2021-08-22 11:03:35.3290 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  7147. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  7148. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  7149. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  7150. 在 System.Activator.CreateInstance(Type type, Object[] args)
  7151. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  7152. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  7153. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  7154. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  7155. 2021-08-22 11:03:37.3690 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  7156. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  7157. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  7158. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  7159. 在 System.Activator.CreateInstance(Type type, Object[] args)
  7160. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  7161. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  7162. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  7163. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  7164. 2021-08-22 11:03:37.4160 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  7165. 2021-08-22 11:03:37.4370 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  7166. 2021-08-22 11:03:37.4510 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  7167. 2021-08-22 11:06:15.6280 Info: [source]:runtime,[msg]:Runtime 启动
  7168. 2021-08-22 11:06:15.7540 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  7169. 2021-08-22 11:06:16.1730 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  7170. 2021-08-22 11:06:16.4440 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  7171. 2021-08-22 11:06:16.4640 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  7172. 2021-08-22 11:06:16.4640 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  7173. 2021-08-22 11:06:16.4640 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  7174. 2021-08-22 11:06:16.4640 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  7175. 2021-08-22 11:06:16.4640 Info: [source]:runtime,[msg]:Runtime 启动完成
  7176. 2021-08-22 11:06:28.6500 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  7177. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  7178. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  7179. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  7180. 在 System.Activator.CreateInstance(Type type, Object[] args)
  7181. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  7182. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  7183. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  7184. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  7185. 2021-08-22 11:06:30.6750 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  7186. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  7187. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  7188. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  7189. 在 System.Activator.CreateInstance(Type type, Object[] args)
  7190. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  7191. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  7192. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  7193. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  7194. 2021-08-22 11:06:30.7180 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  7195. 2021-08-22 11:06:30.7370 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  7196. 2021-08-22 11:06:30.7370 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  7197. 2021-08-22 11:07:58.3780 Info: [source]:runtime,[msg]:Runtime 启动
  7198. 2021-08-22 11:07:58.5040 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  7199. 2021-08-22 11:07:58.8600 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  7200. 2021-08-22 11:07:58.8750 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  7201. 2021-08-22 11:07:58.8880 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  7202. 2021-08-22 11:07:58.8880 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  7203. 2021-08-22 11:07:58.8930 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  7204. 2021-08-22 11:07:58.8930 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  7205. 2021-08-22 11:07:58.8930 Info: [source]:runtime,[msg]:Runtime 启动完成
  7206. 2021-08-22 11:08:07.0760 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  7207. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  7208. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  7209. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  7210. 在 System.Activator.CreateInstance(Type type, Object[] args)
  7211. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  7212. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  7213. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  7214. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  7215. 2021-08-22 11:08:09.1120 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  7216. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  7217. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  7218. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  7219. 在 System.Activator.CreateInstance(Type type, Object[] args)
  7220. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  7221. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  7222. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  7223. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  7224. 2021-08-22 11:08:09.1810 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  7225. 2021-08-22 11:08:09.2010 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  7226. 2021-08-22 11:08:09.2150 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  7227. 2021-08-22 11:10:44.0500 Info: [source]:runtime,[msg]:Runtime 启动
  7228. 2021-08-22 11:10:44.1780 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  7229. 2021-08-22 11:10:44.4930 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  7230. 2021-08-22 11:10:44.5190 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  7231. 2021-08-22 11:10:44.5440 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  7232. 2021-08-22 11:10:44.5500 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  7233. 2021-08-22 11:10:44.5500 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  7234. 2021-08-22 11:10:44.5500 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  7235. 2021-08-22 11:10:44.5500 Info: [source]:runtime,[msg]:Runtime 启动完成
  7236. 2021-08-22 11:10:52.6050 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  7237. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  7238. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  7239. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  7240. 在 System.Activator.CreateInstance(Type type, Object[] args)
  7241. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  7242. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  7243. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  7244. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  7245. 2021-08-22 11:10:54.6400 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  7246. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  7247. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  7248. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  7249. 在 System.Activator.CreateInstance(Type type, Object[] args)
  7250. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  7251. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  7252. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  7253. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  7254. 2021-08-22 11:10:54.7010 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  7255. 2021-08-22 11:10:54.7200 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  7256. 2021-08-22 11:10:54.7340 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  7257. 2021-08-22 11:16:22.3560 Info: [source]:runtime,[msg]:Runtime 启动
  7258. 2021-08-22 11:16:22.5560 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  7259. 2021-08-22 11:16:22.9230 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  7260. 2021-08-22 11:16:22.9620 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  7261. 2021-08-22 11:16:22.9800 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  7262. 2021-08-22 11:16:22.9800 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  7263. 2021-08-22 11:16:22.9800 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  7264. 2021-08-22 11:16:22.9800 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  7265. 2021-08-22 11:16:22.9800 Info: [source]:runtime,[msg]:Runtime 启动完成
  7266. 2021-08-22 11:16:31.3300 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  7267. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  7268. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  7269. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  7270. 在 System.Activator.CreateInstance(Type type, Object[] args)
  7271. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  7272. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  7273. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  7274. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  7275. 2021-08-22 11:16:33.3450 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  7276. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  7277. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  7278. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  7279. 在 System.Activator.CreateInstance(Type type, Object[] args)
  7280. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  7281. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  7282. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  7283. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  7284. 2021-08-22 11:16:33.8420 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  7285. 2021-08-22 11:16:33.9250 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  7286. 2021-08-22 11:16:33.9400 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  7287. 2021-08-22 11:23:42.9300 Info: [source]:runtime,[msg]:AppHost 停止插件
  7288. 2021-08-22 11:23:42.9300 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  7289. 2021-08-22 11:23:42.9330 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  7290. 2021-08-22 11:23:42.9330 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  7291. 2021-08-22 11:23:42.9330 Info: [source]:runtime,[msg]:Runtime 关闭
  7292. 2021-08-22 12:15:35.4610 Info: [source]:runtime,[msg]:Runtime 启动
  7293. 2021-08-22 12:15:35.5570 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  7294. 2021-08-22 12:15:35.7900 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  7295. 2021-08-22 12:15:35.8000 Info: [source]:runtime,[msg]:加载插件"F:\Code\Transmitter-3-New\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  7296. 2021-08-22 12:15:35.8100 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  7297. 2021-08-22 12:15:35.8100 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  7298. 2021-08-22 12:15:35.8100 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  7299. 2021-08-22 12:15:35.8100 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  7300. 2021-08-22 12:15:35.8100 Info: [source]:runtime,[msg]:Runtime 启动完成
  7301. 2021-08-22 12:15:43.6620 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  7302. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  7303. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  7304. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  7305. 在 System.Activator.CreateInstance(Type type, Object[] args)
  7306. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  7307. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  7308. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  7309. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  7310. 2021-08-22 12:15:45.6760 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  7311. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  7312. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  7313. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  7314. 在 System.Activator.CreateInstance(Type type, Object[] args)
  7315. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  7316. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  7317. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  7318. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  7319. 2021-08-22 12:15:45.7360 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  7320. 2021-08-22 12:15:45.7530 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  7321. 2021-08-22 12:15:45.7650 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  7322. 2021-08-22 12:31:51.6750 Info: [source]:runtime,[msg]:AppHost 停止插件
  7323. 2021-08-22 12:31:51.6750 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  7324. 2021-08-22 12:31:51.6750 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  7325. 2021-08-22 12:31:51.6750 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  7326. 2021-08-22 12:31:51.6750 Info: [source]:runtime,[msg]:Runtime 关闭
  7327. 2021-08-24 12:31:13.2744 Info: [source]:runtime,[msg]:Runtime 启动
  7328. 2021-08-24 12:31:13.3804 Info: [source]:runtime,[msg]:加载插件"F:\Code\new\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  7329. 2021-08-24 12:31:13.5854 Info: [source]:runtime,[msg]:加载插件"F:\Code\new\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  7330. 2021-08-24 12:31:13.5854 Info: [source]:runtime,[msg]:加载插件"F:\Code\new\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  7331. 2021-08-24 12:31:13.6054 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  7332. 2021-08-24 12:31:13.6054 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  7333. 2021-08-24 12:31:13.6054 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  7334. 2021-08-24 12:31:13.6054 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  7335. 2021-08-24 12:31:13.6134 Info: [source]:runtime,[msg]:Runtime 启动完成
  7336. 2021-08-24 12:31:21.6264 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  7337. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  7338. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  7339. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  7340. 在 System.Activator.CreateInstance(Type type, Object[] args)
  7341. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  7342. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  7343. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  7344. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  7345. 2021-08-24 12:31:23.6504 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  7346. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  7347. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  7348. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  7349. 在 System.Activator.CreateInstance(Type type, Object[] args)
  7350. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  7351. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  7352. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  7353. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  7354. 2021-08-24 12:31:23.6654 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  7355. 2021-08-24 12:31:23.6784 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  7356. 2021-08-24 12:31:26.0864 Info: [source]:runtime,[msg]:AppHost 停止插件
  7357. 2021-08-24 12:31:26.0864 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  7358. 2021-08-24 12:31:26.0864 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  7359. 2021-08-24 12:31:26.0944 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  7360. 2021-08-24 12:31:26.0944 Info: [source]:runtime,[msg]:Runtime 关闭