-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathxrefmap.yml
11796 lines (11796 loc) · 899 KB
/
xrefmap.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
### YamlMime:XRefMap
sorted: true
references:
- uid: Bunit
name: Bunit
href: api/Bunit.html
commentId: N:Bunit
fullName: Bunit
nameWithType: Bunit
- uid: Bunit.Asserting
name: Bunit.Asserting
href: api/Bunit.Asserting.html
commentId: N:Bunit.Asserting
fullName: Bunit.Asserting
nameWithType: Bunit.Asserting
- uid: Bunit.Asserting.ActualExpectedAssertException
name: ActualExpectedAssertException
href: api/Bunit.Asserting.ActualExpectedAssertException.html
commentId: T:Bunit.Asserting.ActualExpectedAssertException
fullName: Bunit.Asserting.ActualExpectedAssertException
nameWithType: ActualExpectedAssertException
- uid: Bunit.Asserting.ActualExpectedAssertException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
name: ActualExpectedAssertException(SerializationInfo, StreamingContext)
href: api/Bunit.Asserting.ActualExpectedAssertException.html#Bunit_Asserting_ActualExpectedAssertException__ctor_System_Runtime_Serialization_SerializationInfo_System_Runtime_Serialization_StreamingContext_
commentId: M:Bunit.Asserting.ActualExpectedAssertException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
name.vb: New(SerializationInfo, StreamingContext)
fullName: Bunit.Asserting.ActualExpectedAssertException.ActualExpectedAssertException(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)
fullName.vb: Bunit.Asserting.ActualExpectedAssertException.New(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)
nameWithType: ActualExpectedAssertException.ActualExpectedAssertException(SerializationInfo, StreamingContext)
nameWithType.vb: ActualExpectedAssertException.New(SerializationInfo, StreamingContext)
- uid: Bunit.Asserting.ActualExpectedAssertException.#ctor(System.String,System.String,System.String,System.String,System.String)
name: ActualExpectedAssertException(string, string, string, string, string)
href: api/Bunit.Asserting.ActualExpectedAssertException.html#Bunit_Asserting_ActualExpectedAssertException__ctor_System_String_System_String_System_String_System_String_System_String_
commentId: M:Bunit.Asserting.ActualExpectedAssertException.#ctor(System.String,System.String,System.String,System.String,System.String)
name.vb: New(String, String, String, String, String)
fullName: Bunit.Asserting.ActualExpectedAssertException.ActualExpectedAssertException(string, string, string, string, string)
fullName.vb: Bunit.Asserting.ActualExpectedAssertException.New(String, String, String, String, String)
nameWithType: ActualExpectedAssertException.ActualExpectedAssertException(string, string, string, string, string)
nameWithType.vb: ActualExpectedAssertException.New(String, String, String, String, String)
- uid: Bunit.Asserting.ActualExpectedAssertException.#ctor*
name: ActualExpectedAssertException
href: api/Bunit.Asserting.ActualExpectedAssertException.html#Bunit_Asserting_ActualExpectedAssertException__ctor_
commentId: Overload:Bunit.Asserting.ActualExpectedAssertException.#ctor
name.vb: New
fullName: Bunit.Asserting.ActualExpectedAssertException.ActualExpectedAssertException
fullName.vb: Bunit.Asserting.ActualExpectedAssertException.New
nameWithType: ActualExpectedAssertException.ActualExpectedAssertException
nameWithType.vb: ActualExpectedAssertException.New
- uid: Bunit.Asserting.AssertionMethodAttribute
name: AssertionMethodAttribute
href: api/Bunit.Asserting.AssertionMethodAttribute.html
commentId: T:Bunit.Asserting.AssertionMethodAttribute
fullName: Bunit.Asserting.AssertionMethodAttribute
nameWithType: AssertionMethodAttribute
- uid: Bunit.Asserting.AssertionMethodAttribute.#ctor
name: AssertionMethodAttribute()
href: api/Bunit.Asserting.AssertionMethodAttribute.html#Bunit_Asserting_AssertionMethodAttribute__ctor
commentId: M:Bunit.Asserting.AssertionMethodAttribute.#ctor
name.vb: New()
fullName: Bunit.Asserting.AssertionMethodAttribute.AssertionMethodAttribute()
fullName.vb: Bunit.Asserting.AssertionMethodAttribute.New()
nameWithType: AssertionMethodAttribute.AssertionMethodAttribute()
nameWithType.vb: AssertionMethodAttribute.New()
- uid: Bunit.Asserting.AssertionMethodAttribute.#ctor*
name: AssertionMethodAttribute
href: api/Bunit.Asserting.AssertionMethodAttribute.html#Bunit_Asserting_AssertionMethodAttribute__ctor_
commentId: Overload:Bunit.Asserting.AssertionMethodAttribute.#ctor
name.vb: New
fullName: Bunit.Asserting.AssertionMethodAttribute.AssertionMethodAttribute
fullName.vb: Bunit.Asserting.AssertionMethodAttribute.New
nameWithType: AssertionMethodAttribute.AssertionMethodAttribute
nameWithType.vb: AssertionMethodAttribute.New
- uid: Bunit.BunitJSInterop
name: BunitJSInterop
href: api/Bunit.BunitJSInterop.html
commentId: T:Bunit.BunitJSInterop
fullName: Bunit.BunitJSInterop
nameWithType: BunitJSInterop
- uid: Bunit.BunitJSInterop.#ctor
name: BunitJSInterop()
href: api/Bunit.BunitJSInterop.html#Bunit_BunitJSInterop__ctor
commentId: M:Bunit.BunitJSInterop.#ctor
name.vb: New()
fullName: Bunit.BunitJSInterop.BunitJSInterop()
fullName.vb: Bunit.BunitJSInterop.New()
nameWithType: BunitJSInterop.BunitJSInterop()
nameWithType.vb: BunitJSInterop.New()
- uid: Bunit.BunitJSInterop.#ctor*
name: BunitJSInterop
href: api/Bunit.BunitJSInterop.html#Bunit_BunitJSInterop__ctor_
commentId: Overload:Bunit.BunitJSInterop.#ctor
name.vb: New
fullName: Bunit.BunitJSInterop.BunitJSInterop
fullName.vb: Bunit.BunitJSInterop.New
nameWithType: BunitJSInterop.BunitJSInterop
nameWithType.vb: BunitJSInterop.New
- uid: Bunit.BunitJSInterop.AddInvocationHandler*
name: AddInvocationHandler
href: api/Bunit.BunitJSInterop.html#Bunit_BunitJSInterop_AddInvocationHandler_
commentId: Overload:Bunit.BunitJSInterop.AddInvocationHandler
fullName: Bunit.BunitJSInterop.AddInvocationHandler
nameWithType: BunitJSInterop.AddInvocationHandler
- uid: Bunit.BunitJSInterop.AddInvocationHandler``1(Bunit.JSRuntimeInvocationHandlerBase{``0})
name: AddInvocationHandler<TResult>(JSRuntimeInvocationHandlerBase<TResult>)
href: api/Bunit.BunitJSInterop.html#Bunit_BunitJSInterop_AddInvocationHandler__1_Bunit_JSRuntimeInvocationHandlerBase___0__
commentId: M:Bunit.BunitJSInterop.AddInvocationHandler``1(Bunit.JSRuntimeInvocationHandlerBase{``0})
name.vb: AddInvocationHandler(Of TResult)(JSRuntimeInvocationHandlerBase(Of TResult))
fullName: Bunit.BunitJSInterop.AddInvocationHandler<TResult>(Bunit.JSRuntimeInvocationHandlerBase<TResult>)
fullName.vb: Bunit.BunitJSInterop.AddInvocationHandler(Of TResult)(Bunit.JSRuntimeInvocationHandlerBase(Of TResult))
nameWithType: BunitJSInterop.AddInvocationHandler<TResult>(JSRuntimeInvocationHandlerBase<TResult>)
nameWithType.vb: BunitJSInterop.AddInvocationHandler(Of TResult)(JSRuntimeInvocationHandlerBase(Of TResult))
- uid: Bunit.BunitJSInterop.Invocations
name: Invocations
href: api/Bunit.BunitJSInterop.html#Bunit_BunitJSInterop_Invocations
commentId: P:Bunit.BunitJSInterop.Invocations
fullName: Bunit.BunitJSInterop.Invocations
nameWithType: BunitJSInterop.Invocations
- uid: Bunit.BunitJSInterop.Invocations*
name: Invocations
href: api/Bunit.BunitJSInterop.html#Bunit_BunitJSInterop_Invocations_
commentId: Overload:Bunit.BunitJSInterop.Invocations
fullName: Bunit.BunitJSInterop.Invocations
nameWithType: BunitJSInterop.Invocations
- uid: Bunit.BunitJSInterop.JSRuntime
name: JSRuntime
href: api/Bunit.BunitJSInterop.html#Bunit_BunitJSInterop_JSRuntime
commentId: P:Bunit.BunitJSInterop.JSRuntime
fullName: Bunit.BunitJSInterop.JSRuntime
nameWithType: BunitJSInterop.JSRuntime
- uid: Bunit.BunitJSInterop.JSRuntime*
name: JSRuntime
href: api/Bunit.BunitJSInterop.html#Bunit_BunitJSInterop_JSRuntime_
commentId: Overload:Bunit.BunitJSInterop.JSRuntime
fullName: Bunit.BunitJSInterop.JSRuntime
nameWithType: BunitJSInterop.JSRuntime
- uid: Bunit.BunitJSInterop.Mode
name: Mode
href: api/Bunit.BunitJSInterop.html#Bunit_BunitJSInterop_Mode
commentId: P:Bunit.BunitJSInterop.Mode
fullName: Bunit.BunitJSInterop.Mode
nameWithType: BunitJSInterop.Mode
- uid: Bunit.BunitJSInterop.Mode*
name: Mode
href: api/Bunit.BunitJSInterop.html#Bunit_BunitJSInterop_Mode_
commentId: Overload:Bunit.BunitJSInterop.Mode
fullName: Bunit.BunitJSInterop.Mode
nameWithType: BunitJSInterop.Mode
- uid: Bunit.BunitJSInteropSetupExtensions
name: BunitJSInteropSetupExtensions
href: api/Bunit.BunitJSInteropSetupExtensions.html
commentId: T:Bunit.BunitJSInteropSetupExtensions
fullName: Bunit.BunitJSInteropSetupExtensions
nameWithType: BunitJSInteropSetupExtensions
- uid: Bunit.BunitJSInteropSetupExtensions.Setup*
name: Setup
href: api/Bunit.BunitJSInteropSetupExtensions.html#Bunit_BunitJSInteropSetupExtensions_Setup_
commentId: Overload:Bunit.BunitJSInteropSetupExtensions.Setup
fullName: Bunit.BunitJSInteropSetupExtensions.Setup
nameWithType: BunitJSInteropSetupExtensions.Setup
- uid: Bunit.BunitJSInteropSetupExtensions.SetupModule(Bunit.BunitJSInterop)
name: SetupModule(BunitJSInterop)
href: api/Bunit.BunitJSInteropSetupExtensions.html#Bunit_BunitJSInteropSetupExtensions_SetupModule_Bunit_BunitJSInterop_
commentId: M:Bunit.BunitJSInteropSetupExtensions.SetupModule(Bunit.BunitJSInterop)
fullName: Bunit.BunitJSInteropSetupExtensions.SetupModule(Bunit.BunitJSInterop)
nameWithType: BunitJSInteropSetupExtensions.SetupModule(BunitJSInterop)
- uid: Bunit.BunitJSInteropSetupExtensions.SetupModule(Bunit.BunitJSInterop,Bunit.InvocationMatcher,System.Boolean)
name: SetupModule(BunitJSInterop, InvocationMatcher, bool)
href: api/Bunit.BunitJSInteropSetupExtensions.html#Bunit_BunitJSInteropSetupExtensions_SetupModule_Bunit_BunitJSInterop_Bunit_InvocationMatcher_System_Boolean_
commentId: M:Bunit.BunitJSInteropSetupExtensions.SetupModule(Bunit.BunitJSInterop,Bunit.InvocationMatcher,System.Boolean)
name.vb: SetupModule(BunitJSInterop, InvocationMatcher, Boolean)
fullName: Bunit.BunitJSInteropSetupExtensions.SetupModule(Bunit.BunitJSInterop, Bunit.InvocationMatcher, bool)
fullName.vb: Bunit.BunitJSInteropSetupExtensions.SetupModule(Bunit.BunitJSInterop, Bunit.InvocationMatcher, Boolean)
nameWithType: BunitJSInteropSetupExtensions.SetupModule(BunitJSInterop, InvocationMatcher, bool)
nameWithType.vb: BunitJSInteropSetupExtensions.SetupModule(BunitJSInterop, InvocationMatcher, Boolean)
- uid: Bunit.BunitJSInteropSetupExtensions.SetupModule(Bunit.BunitJSInterop,System.String)
name: SetupModule(BunitJSInterop, string)
href: api/Bunit.BunitJSInteropSetupExtensions.html#Bunit_BunitJSInteropSetupExtensions_SetupModule_Bunit_BunitJSInterop_System_String_
commentId: M:Bunit.BunitJSInteropSetupExtensions.SetupModule(Bunit.BunitJSInterop,System.String)
name.vb: SetupModule(BunitJSInterop, String)
fullName: Bunit.BunitJSInteropSetupExtensions.SetupModule(Bunit.BunitJSInterop, string)
fullName.vb: Bunit.BunitJSInteropSetupExtensions.SetupModule(Bunit.BunitJSInterop, String)
nameWithType: BunitJSInteropSetupExtensions.SetupModule(BunitJSInterop, string)
nameWithType.vb: BunitJSInteropSetupExtensions.SetupModule(BunitJSInterop, String)
- uid: Bunit.BunitJSInteropSetupExtensions.SetupModule(Bunit.BunitJSInterop,System.String,Bunit.InvocationMatcher)
name: SetupModule(BunitJSInterop, string, InvocationMatcher)
href: api/Bunit.BunitJSInteropSetupExtensions.html#Bunit_BunitJSInteropSetupExtensions_SetupModule_Bunit_BunitJSInterop_System_String_Bunit_InvocationMatcher_
commentId: M:Bunit.BunitJSInteropSetupExtensions.SetupModule(Bunit.BunitJSInterop,System.String,Bunit.InvocationMatcher)
name.vb: SetupModule(BunitJSInterop, String, InvocationMatcher)
fullName: Bunit.BunitJSInteropSetupExtensions.SetupModule(Bunit.BunitJSInterop, string, Bunit.InvocationMatcher)
fullName.vb: Bunit.BunitJSInteropSetupExtensions.SetupModule(Bunit.BunitJSInterop, String, Bunit.InvocationMatcher)
nameWithType: BunitJSInteropSetupExtensions.SetupModule(BunitJSInterop, string, InvocationMatcher)
nameWithType.vb: BunitJSInteropSetupExtensions.SetupModule(BunitJSInterop, String, InvocationMatcher)
- uid: Bunit.BunitJSInteropSetupExtensions.SetupModule(Bunit.BunitJSInterop,System.String,System.Object[])
name: SetupModule(BunitJSInterop, string, object?[])
href: api/Bunit.BunitJSInteropSetupExtensions.html#Bunit_BunitJSInteropSetupExtensions_SetupModule_Bunit_BunitJSInterop_System_String_System_Object___
commentId: M:Bunit.BunitJSInteropSetupExtensions.SetupModule(Bunit.BunitJSInterop,System.String,System.Object[])
name.vb: SetupModule(BunitJSInterop, String, Object())
fullName: Bunit.BunitJSInteropSetupExtensions.SetupModule(Bunit.BunitJSInterop, string, object?[])
fullName.vb: Bunit.BunitJSInteropSetupExtensions.SetupModule(Bunit.BunitJSInterop, String, Object())
nameWithType: BunitJSInteropSetupExtensions.SetupModule(BunitJSInterop, string, object?[])
nameWithType.vb: BunitJSInteropSetupExtensions.SetupModule(BunitJSInterop, String, Object())
- uid: Bunit.BunitJSInteropSetupExtensions.SetupModule*
name: SetupModule
href: api/Bunit.BunitJSInteropSetupExtensions.html#Bunit_BunitJSInteropSetupExtensions_SetupModule_
commentId: Overload:Bunit.BunitJSInteropSetupExtensions.SetupModule
fullName: Bunit.BunitJSInteropSetupExtensions.SetupModule
nameWithType: BunitJSInteropSetupExtensions.SetupModule
- uid: Bunit.BunitJSInteropSetupExtensions.SetupVoid(Bunit.BunitJSInterop)
name: SetupVoid(BunitJSInterop)
href: api/Bunit.BunitJSInteropSetupExtensions.html#Bunit_BunitJSInteropSetupExtensions_SetupVoid_Bunit_BunitJSInterop_
commentId: M:Bunit.BunitJSInteropSetupExtensions.SetupVoid(Bunit.BunitJSInterop)
fullName: Bunit.BunitJSInteropSetupExtensions.SetupVoid(Bunit.BunitJSInterop)
nameWithType: BunitJSInteropSetupExtensions.SetupVoid(BunitJSInterop)
- uid: Bunit.BunitJSInteropSetupExtensions.SetupVoid(Bunit.BunitJSInterop,Bunit.InvocationMatcher,System.Boolean)
name: SetupVoid(BunitJSInterop, InvocationMatcher, bool)
href: api/Bunit.BunitJSInteropSetupExtensions.html#Bunit_BunitJSInteropSetupExtensions_SetupVoid_Bunit_BunitJSInterop_Bunit_InvocationMatcher_System_Boolean_
commentId: M:Bunit.BunitJSInteropSetupExtensions.SetupVoid(Bunit.BunitJSInterop,Bunit.InvocationMatcher,System.Boolean)
name.vb: SetupVoid(BunitJSInterop, InvocationMatcher, Boolean)
fullName: Bunit.BunitJSInteropSetupExtensions.SetupVoid(Bunit.BunitJSInterop, Bunit.InvocationMatcher, bool)
fullName.vb: Bunit.BunitJSInteropSetupExtensions.SetupVoid(Bunit.BunitJSInterop, Bunit.InvocationMatcher, Boolean)
nameWithType: BunitJSInteropSetupExtensions.SetupVoid(BunitJSInterop, InvocationMatcher, bool)
nameWithType.vb: BunitJSInteropSetupExtensions.SetupVoid(BunitJSInterop, InvocationMatcher, Boolean)
- uid: Bunit.BunitJSInteropSetupExtensions.SetupVoid(Bunit.BunitJSInterop,System.String,Bunit.InvocationMatcher)
name: SetupVoid(BunitJSInterop, string, InvocationMatcher)
href: api/Bunit.BunitJSInteropSetupExtensions.html#Bunit_BunitJSInteropSetupExtensions_SetupVoid_Bunit_BunitJSInterop_System_String_Bunit_InvocationMatcher_
commentId: M:Bunit.BunitJSInteropSetupExtensions.SetupVoid(Bunit.BunitJSInterop,System.String,Bunit.InvocationMatcher)
name.vb: SetupVoid(BunitJSInterop, String, InvocationMatcher)
fullName: Bunit.BunitJSInteropSetupExtensions.SetupVoid(Bunit.BunitJSInterop, string, Bunit.InvocationMatcher)
fullName.vb: Bunit.BunitJSInteropSetupExtensions.SetupVoid(Bunit.BunitJSInterop, String, Bunit.InvocationMatcher)
nameWithType: BunitJSInteropSetupExtensions.SetupVoid(BunitJSInterop, string, InvocationMatcher)
nameWithType.vb: BunitJSInteropSetupExtensions.SetupVoid(BunitJSInterop, String, InvocationMatcher)
- uid: Bunit.BunitJSInteropSetupExtensions.SetupVoid(Bunit.BunitJSInterop,System.String,System.Object[])
name: SetupVoid(BunitJSInterop, string, params object?[]?)
href: api/Bunit.BunitJSInteropSetupExtensions.html#Bunit_BunitJSInteropSetupExtensions_SetupVoid_Bunit_BunitJSInterop_System_String_System_Object___
commentId: M:Bunit.BunitJSInteropSetupExtensions.SetupVoid(Bunit.BunitJSInterop,System.String,System.Object[])
name.vb: SetupVoid(BunitJSInterop, String, ParamArray Object())
fullName: Bunit.BunitJSInteropSetupExtensions.SetupVoid(Bunit.BunitJSInterop, string, params object?[]?)
fullName.vb: Bunit.BunitJSInteropSetupExtensions.SetupVoid(Bunit.BunitJSInterop, String, ParamArray Object())
nameWithType: BunitJSInteropSetupExtensions.SetupVoid(BunitJSInterop, string, params object?[]?)
nameWithType.vb: BunitJSInteropSetupExtensions.SetupVoid(BunitJSInterop, String, ParamArray Object())
- uid: Bunit.BunitJSInteropSetupExtensions.SetupVoid*
name: SetupVoid
href: api/Bunit.BunitJSInteropSetupExtensions.html#Bunit_BunitJSInteropSetupExtensions_SetupVoid_
commentId: Overload:Bunit.BunitJSInteropSetupExtensions.SetupVoid
fullName: Bunit.BunitJSInteropSetupExtensions.SetupVoid
nameWithType: BunitJSInteropSetupExtensions.SetupVoid
- uid: Bunit.BunitJSInteropSetupExtensions.Setup``1(Bunit.BunitJSInterop)
name: Setup<TResult>(BunitJSInterop)
href: api/Bunit.BunitJSInteropSetupExtensions.html#Bunit_BunitJSInteropSetupExtensions_Setup__1_Bunit_BunitJSInterop_
commentId: M:Bunit.BunitJSInteropSetupExtensions.Setup``1(Bunit.BunitJSInterop)
name.vb: Setup(Of TResult)(BunitJSInterop)
fullName: Bunit.BunitJSInteropSetupExtensions.Setup<TResult>(Bunit.BunitJSInterop)
fullName.vb: Bunit.BunitJSInteropSetupExtensions.Setup(Of TResult)(Bunit.BunitJSInterop)
nameWithType: BunitJSInteropSetupExtensions.Setup<TResult>(BunitJSInterop)
nameWithType.vb: BunitJSInteropSetupExtensions.Setup(Of TResult)(BunitJSInterop)
- uid: Bunit.BunitJSInteropSetupExtensions.Setup``1(Bunit.BunitJSInterop,Bunit.InvocationMatcher,System.Boolean)
name: Setup<TResult>(BunitJSInterop, InvocationMatcher, bool)
href: api/Bunit.BunitJSInteropSetupExtensions.html#Bunit_BunitJSInteropSetupExtensions_Setup__1_Bunit_BunitJSInterop_Bunit_InvocationMatcher_System_Boolean_
commentId: M:Bunit.BunitJSInteropSetupExtensions.Setup``1(Bunit.BunitJSInterop,Bunit.InvocationMatcher,System.Boolean)
name.vb: Setup(Of TResult)(BunitJSInterop, InvocationMatcher, Boolean)
fullName: Bunit.BunitJSInteropSetupExtensions.Setup<TResult>(Bunit.BunitJSInterop, Bunit.InvocationMatcher, bool)
fullName.vb: Bunit.BunitJSInteropSetupExtensions.Setup(Of TResult)(Bunit.BunitJSInterop, Bunit.InvocationMatcher, Boolean)
nameWithType: BunitJSInteropSetupExtensions.Setup<TResult>(BunitJSInterop, InvocationMatcher, bool)
nameWithType.vb: BunitJSInteropSetupExtensions.Setup(Of TResult)(BunitJSInterop, InvocationMatcher, Boolean)
- uid: Bunit.BunitJSInteropSetupExtensions.Setup``1(Bunit.BunitJSInterop,System.String,Bunit.InvocationMatcher)
name: Setup<TResult>(BunitJSInterop, string, InvocationMatcher)
href: api/Bunit.BunitJSInteropSetupExtensions.html#Bunit_BunitJSInteropSetupExtensions_Setup__1_Bunit_BunitJSInterop_System_String_Bunit_InvocationMatcher_
commentId: M:Bunit.BunitJSInteropSetupExtensions.Setup``1(Bunit.BunitJSInterop,System.String,Bunit.InvocationMatcher)
name.vb: Setup(Of TResult)(BunitJSInterop, String, InvocationMatcher)
fullName: Bunit.BunitJSInteropSetupExtensions.Setup<TResult>(Bunit.BunitJSInterop, string, Bunit.InvocationMatcher)
fullName.vb: Bunit.BunitJSInteropSetupExtensions.Setup(Of TResult)(Bunit.BunitJSInterop, String, Bunit.InvocationMatcher)
nameWithType: BunitJSInteropSetupExtensions.Setup<TResult>(BunitJSInterop, string, InvocationMatcher)
nameWithType.vb: BunitJSInteropSetupExtensions.Setup(Of TResult)(BunitJSInterop, String, InvocationMatcher)
- uid: Bunit.BunitJSInteropSetupExtensions.Setup``1(Bunit.BunitJSInterop,System.String,System.Object[])
name: Setup<TResult>(BunitJSInterop, string, params object?[]?)
href: api/Bunit.BunitJSInteropSetupExtensions.html#Bunit_BunitJSInteropSetupExtensions_Setup__1_Bunit_BunitJSInterop_System_String_System_Object___
commentId: M:Bunit.BunitJSInteropSetupExtensions.Setup``1(Bunit.BunitJSInterop,System.String,System.Object[])
name.vb: Setup(Of TResult)(BunitJSInterop, String, ParamArray Object())
fullName: Bunit.BunitJSInteropSetupExtensions.Setup<TResult>(Bunit.BunitJSInterop, string, params object?[]?)
fullName.vb: Bunit.BunitJSInteropSetupExtensions.Setup(Of TResult)(Bunit.BunitJSInterop, String, ParamArray Object())
nameWithType: BunitJSInteropSetupExtensions.Setup<TResult>(BunitJSInterop, string, params object?[]?)
nameWithType.vb: BunitJSInteropSetupExtensions.Setup(Of TResult)(BunitJSInterop, String, ParamArray Object())
- uid: Bunit.BunitJSInteropSetupExtensions.TryGetInvokeHandler*
name: TryGetInvokeHandler
href: api/Bunit.BunitJSInteropSetupExtensions.html#Bunit_BunitJSInteropSetupExtensions_TryGetInvokeHandler_
commentId: Overload:Bunit.BunitJSInteropSetupExtensions.TryGetInvokeHandler
fullName: Bunit.BunitJSInteropSetupExtensions.TryGetInvokeHandler
nameWithType: BunitJSInteropSetupExtensions.TryGetInvokeHandler
- uid: Bunit.BunitJSInteropSetupExtensions.TryGetInvokeHandler``1(Bunit.BunitJSInterop,System.String,System.Object[])
name: TryGetInvokeHandler<TResult>(BunitJSInterop, string, params object?[]?)
href: api/Bunit.BunitJSInteropSetupExtensions.html#Bunit_BunitJSInteropSetupExtensions_TryGetInvokeHandler__1_Bunit_BunitJSInterop_System_String_System_Object___
commentId: M:Bunit.BunitJSInteropSetupExtensions.TryGetInvokeHandler``1(Bunit.BunitJSInterop,System.String,System.Object[])
name.vb: TryGetInvokeHandler(Of TResult)(BunitJSInterop, String, ParamArray Object())
fullName: Bunit.BunitJSInteropSetupExtensions.TryGetInvokeHandler<TResult>(Bunit.BunitJSInterop, string, params object?[]?)
fullName.vb: Bunit.BunitJSInteropSetupExtensions.TryGetInvokeHandler(Of TResult)(Bunit.BunitJSInterop, String, ParamArray Object())
nameWithType: BunitJSInteropSetupExtensions.TryGetInvokeHandler<TResult>(BunitJSInterop, string, params object?[]?)
nameWithType.vb: BunitJSInteropSetupExtensions.TryGetInvokeHandler(Of TResult)(BunitJSInterop, String, ParamArray Object())
- uid: Bunit.BunitJSInteropSetupExtensions.TryGetInvokeVoidHandler(Bunit.BunitJSInterop,System.String,System.Object[])
name: TryGetInvokeVoidHandler(BunitJSInterop, string, params object?[]?)
href: api/Bunit.BunitJSInteropSetupExtensions.html#Bunit_BunitJSInteropSetupExtensions_TryGetInvokeVoidHandler_Bunit_BunitJSInterop_System_String_System_Object___
commentId: M:Bunit.BunitJSInteropSetupExtensions.TryGetInvokeVoidHandler(Bunit.BunitJSInterop,System.String,System.Object[])
name.vb: TryGetInvokeVoidHandler(BunitJSInterop, String, ParamArray Object())
fullName: Bunit.BunitJSInteropSetupExtensions.TryGetInvokeVoidHandler(Bunit.BunitJSInterop, string, params object?[]?)
fullName.vb: Bunit.BunitJSInteropSetupExtensions.TryGetInvokeVoidHandler(Bunit.BunitJSInterop, String, ParamArray Object())
nameWithType: BunitJSInteropSetupExtensions.TryGetInvokeVoidHandler(BunitJSInterop, string, params object?[]?)
nameWithType.vb: BunitJSInteropSetupExtensions.TryGetInvokeVoidHandler(BunitJSInterop, String, ParamArray Object())
- uid: Bunit.BunitJSInteropSetupExtensions.TryGetInvokeVoidHandler*
name: TryGetInvokeVoidHandler
href: api/Bunit.BunitJSInteropSetupExtensions.html#Bunit_BunitJSInteropSetupExtensions_TryGetInvokeVoidHandler_
commentId: Overload:Bunit.BunitJSInteropSetupExtensions.TryGetInvokeVoidHandler
fullName: Bunit.BunitJSInteropSetupExtensions.TryGetInvokeVoidHandler
nameWithType: BunitJSInteropSetupExtensions.TryGetInvokeVoidHandler
- uid: Bunit.BunitJSInteropSetupExtensions.TryGetModuleJSInterop(Bunit.BunitJSInterop,System.String,System.Object[])
name: TryGetModuleJSInterop(BunitJSInterop, string, params object?[]?)
href: api/Bunit.BunitJSInteropSetupExtensions.html#Bunit_BunitJSInteropSetupExtensions_TryGetModuleJSInterop_Bunit_BunitJSInterop_System_String_System_Object___
commentId: M:Bunit.BunitJSInteropSetupExtensions.TryGetModuleJSInterop(Bunit.BunitJSInterop,System.String,System.Object[])
name.vb: TryGetModuleJSInterop(BunitJSInterop, String, ParamArray Object())
fullName: Bunit.BunitJSInteropSetupExtensions.TryGetModuleJSInterop(Bunit.BunitJSInterop, string, params object?[]?)
fullName.vb: Bunit.BunitJSInteropSetupExtensions.TryGetModuleJSInterop(Bunit.BunitJSInterop, String, ParamArray Object())
nameWithType: BunitJSInteropSetupExtensions.TryGetModuleJSInterop(BunitJSInterop, string, params object?[]?)
nameWithType.vb: BunitJSInteropSetupExtensions.TryGetModuleJSInterop(BunitJSInterop, String, ParamArray Object())
- uid: Bunit.BunitJSInteropSetupExtensions.TryGetModuleJSInterop*
name: TryGetModuleJSInterop
href: api/Bunit.BunitJSInteropSetupExtensions.html#Bunit_BunitJSInteropSetupExtensions_TryGetModuleJSInterop_
commentId: Overload:Bunit.BunitJSInteropSetupExtensions.TryGetModuleJSInterop
fullName: Bunit.BunitJSInteropSetupExtensions.TryGetModuleJSInterop
nameWithType: BunitJSInteropSetupExtensions.TryGetModuleJSInterop
- uid: Bunit.BunitJSModuleInterop
name: BunitJSModuleInterop
href: api/Bunit.BunitJSModuleInterop.html
commentId: T:Bunit.BunitJSModuleInterop
fullName: Bunit.BunitJSModuleInterop
nameWithType: BunitJSModuleInterop
- uid: Bunit.BunitJSModuleInterop.#ctor(Bunit.BunitJSInterop)
name: BunitJSModuleInterop(BunitJSInterop)
href: api/Bunit.BunitJSModuleInterop.html#Bunit_BunitJSModuleInterop__ctor_Bunit_BunitJSInterop_
commentId: M:Bunit.BunitJSModuleInterop.#ctor(Bunit.BunitJSInterop)
name.vb: New(BunitJSInterop)
fullName: Bunit.BunitJSModuleInterop.BunitJSModuleInterop(Bunit.BunitJSInterop)
fullName.vb: Bunit.BunitJSModuleInterop.New(Bunit.BunitJSInterop)
nameWithType: BunitJSModuleInterop.BunitJSModuleInterop(BunitJSInterop)
nameWithType.vb: BunitJSModuleInterop.New(BunitJSInterop)
- uid: Bunit.BunitJSModuleInterop.#ctor*
name: BunitJSModuleInterop
href: api/Bunit.BunitJSModuleInterop.html#Bunit_BunitJSModuleInterop__ctor_
commentId: Overload:Bunit.BunitJSModuleInterop.#ctor
name.vb: New
fullName: Bunit.BunitJSModuleInterop.BunitJSModuleInterop
fullName.vb: Bunit.BunitJSModuleInterop.New
nameWithType: BunitJSModuleInterop.BunitJSModuleInterop
nameWithType.vb: BunitJSModuleInterop.New
- uid: Bunit.BunitJSModuleInterop.Mode
name: Mode
href: api/Bunit.BunitJSModuleInterop.html#Bunit_BunitJSModuleInterop_Mode
commentId: P:Bunit.BunitJSModuleInterop.Mode
fullName: Bunit.BunitJSModuleInterop.Mode
nameWithType: BunitJSModuleInterop.Mode
- uid: Bunit.BunitJSModuleInterop.Mode*
name: Mode
href: api/Bunit.BunitJSModuleInterop.html#Bunit_BunitJSModuleInterop_Mode_
commentId: Overload:Bunit.BunitJSModuleInterop.Mode
fullName: Bunit.BunitJSModuleInterop.Mode
nameWithType: BunitJSModuleInterop.Mode
- uid: Bunit.ClipboardEventDispatchExtensions
name: ClipboardEventDispatchExtensions
href: api/Bunit.ClipboardEventDispatchExtensions.html
commentId: T:Bunit.ClipboardEventDispatchExtensions
fullName: Bunit.ClipboardEventDispatchExtensions
nameWithType: ClipboardEventDispatchExtensions
- uid: Bunit.ClipboardEventDispatchExtensions.BeforeCopy(AngleSharp.Dom.IElement)
name: BeforeCopy(IElement)
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_BeforeCopy_AngleSharp_Dom_IElement_
commentId: M:Bunit.ClipboardEventDispatchExtensions.BeforeCopy(AngleSharp.Dom.IElement)
fullName: Bunit.ClipboardEventDispatchExtensions.BeforeCopy(AngleSharp.Dom.IElement)
nameWithType: ClipboardEventDispatchExtensions.BeforeCopy(IElement)
- uid: Bunit.ClipboardEventDispatchExtensions.BeforeCopy*
name: BeforeCopy
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_BeforeCopy_
commentId: Overload:Bunit.ClipboardEventDispatchExtensions.BeforeCopy
fullName: Bunit.ClipboardEventDispatchExtensions.BeforeCopy
nameWithType: ClipboardEventDispatchExtensions.BeforeCopy
- uid: Bunit.ClipboardEventDispatchExtensions.BeforeCopyAsync(AngleSharp.Dom.IElement)
name: BeforeCopyAsync(IElement)
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_BeforeCopyAsync_AngleSharp_Dom_IElement_
commentId: M:Bunit.ClipboardEventDispatchExtensions.BeforeCopyAsync(AngleSharp.Dom.IElement)
fullName: Bunit.ClipboardEventDispatchExtensions.BeforeCopyAsync(AngleSharp.Dom.IElement)
nameWithType: ClipboardEventDispatchExtensions.BeforeCopyAsync(IElement)
- uid: Bunit.ClipboardEventDispatchExtensions.BeforeCopyAsync*
name: BeforeCopyAsync
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_BeforeCopyAsync_
commentId: Overload:Bunit.ClipboardEventDispatchExtensions.BeforeCopyAsync
fullName: Bunit.ClipboardEventDispatchExtensions.BeforeCopyAsync
nameWithType: ClipboardEventDispatchExtensions.BeforeCopyAsync
- uid: Bunit.ClipboardEventDispatchExtensions.BeforeCut(AngleSharp.Dom.IElement)
name: BeforeCut(IElement)
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_BeforeCut_AngleSharp_Dom_IElement_
commentId: M:Bunit.ClipboardEventDispatchExtensions.BeforeCut(AngleSharp.Dom.IElement)
fullName: Bunit.ClipboardEventDispatchExtensions.BeforeCut(AngleSharp.Dom.IElement)
nameWithType: ClipboardEventDispatchExtensions.BeforeCut(IElement)
- uid: Bunit.ClipboardEventDispatchExtensions.BeforeCut*
name: BeforeCut
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_BeforeCut_
commentId: Overload:Bunit.ClipboardEventDispatchExtensions.BeforeCut
fullName: Bunit.ClipboardEventDispatchExtensions.BeforeCut
nameWithType: ClipboardEventDispatchExtensions.BeforeCut
- uid: Bunit.ClipboardEventDispatchExtensions.BeforeCutAsync(AngleSharp.Dom.IElement)
name: BeforeCutAsync(IElement)
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_BeforeCutAsync_AngleSharp_Dom_IElement_
commentId: M:Bunit.ClipboardEventDispatchExtensions.BeforeCutAsync(AngleSharp.Dom.IElement)
fullName: Bunit.ClipboardEventDispatchExtensions.BeforeCutAsync(AngleSharp.Dom.IElement)
nameWithType: ClipboardEventDispatchExtensions.BeforeCutAsync(IElement)
- uid: Bunit.ClipboardEventDispatchExtensions.BeforeCutAsync*
name: BeforeCutAsync
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_BeforeCutAsync_
commentId: Overload:Bunit.ClipboardEventDispatchExtensions.BeforeCutAsync
fullName: Bunit.ClipboardEventDispatchExtensions.BeforeCutAsync
nameWithType: ClipboardEventDispatchExtensions.BeforeCutAsync
- uid: Bunit.ClipboardEventDispatchExtensions.BeforePaste(AngleSharp.Dom.IElement)
name: BeforePaste(IElement)
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_BeforePaste_AngleSharp_Dom_IElement_
commentId: M:Bunit.ClipboardEventDispatchExtensions.BeforePaste(AngleSharp.Dom.IElement)
fullName: Bunit.ClipboardEventDispatchExtensions.BeforePaste(AngleSharp.Dom.IElement)
nameWithType: ClipboardEventDispatchExtensions.BeforePaste(IElement)
- uid: Bunit.ClipboardEventDispatchExtensions.BeforePaste*
name: BeforePaste
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_BeforePaste_
commentId: Overload:Bunit.ClipboardEventDispatchExtensions.BeforePaste
fullName: Bunit.ClipboardEventDispatchExtensions.BeforePaste
nameWithType: ClipboardEventDispatchExtensions.BeforePaste
- uid: Bunit.ClipboardEventDispatchExtensions.BeforePasteAsync(AngleSharp.Dom.IElement)
name: BeforePasteAsync(IElement)
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_BeforePasteAsync_AngleSharp_Dom_IElement_
commentId: M:Bunit.ClipboardEventDispatchExtensions.BeforePasteAsync(AngleSharp.Dom.IElement)
fullName: Bunit.ClipboardEventDispatchExtensions.BeforePasteAsync(AngleSharp.Dom.IElement)
nameWithType: ClipboardEventDispatchExtensions.BeforePasteAsync(IElement)
- uid: Bunit.ClipboardEventDispatchExtensions.BeforePasteAsync*
name: BeforePasteAsync
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_BeforePasteAsync_
commentId: Overload:Bunit.ClipboardEventDispatchExtensions.BeforePasteAsync
fullName: Bunit.ClipboardEventDispatchExtensions.BeforePasteAsync
nameWithType: ClipboardEventDispatchExtensions.BeforePasteAsync
- uid: Bunit.ClipboardEventDispatchExtensions.Copy(AngleSharp.Dom.IElement,Microsoft.AspNetCore.Components.Web.ClipboardEventArgs)
name: Copy(IElement, ClipboardEventArgs)
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_Copy_AngleSharp_Dom_IElement_Microsoft_AspNetCore_Components_Web_ClipboardEventArgs_
commentId: M:Bunit.ClipboardEventDispatchExtensions.Copy(AngleSharp.Dom.IElement,Microsoft.AspNetCore.Components.Web.ClipboardEventArgs)
fullName: Bunit.ClipboardEventDispatchExtensions.Copy(AngleSharp.Dom.IElement, Microsoft.AspNetCore.Components.Web.ClipboardEventArgs)
nameWithType: ClipboardEventDispatchExtensions.Copy(IElement, ClipboardEventArgs)
- uid: Bunit.ClipboardEventDispatchExtensions.Copy(AngleSharp.Dom.IElement,System.String)
name: Copy(IElement, string?)
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_Copy_AngleSharp_Dom_IElement_System_String_
commentId: M:Bunit.ClipboardEventDispatchExtensions.Copy(AngleSharp.Dom.IElement,System.String)
name.vb: Copy(IElement, String)
fullName: Bunit.ClipboardEventDispatchExtensions.Copy(AngleSharp.Dom.IElement, string?)
fullName.vb: Bunit.ClipboardEventDispatchExtensions.Copy(AngleSharp.Dom.IElement, String)
nameWithType: ClipboardEventDispatchExtensions.Copy(IElement, string?)
nameWithType.vb: ClipboardEventDispatchExtensions.Copy(IElement, String)
- uid: Bunit.ClipboardEventDispatchExtensions.Copy*
name: Copy
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_Copy_
commentId: Overload:Bunit.ClipboardEventDispatchExtensions.Copy
fullName: Bunit.ClipboardEventDispatchExtensions.Copy
nameWithType: ClipboardEventDispatchExtensions.Copy
- uid: Bunit.ClipboardEventDispatchExtensions.CopyAsync(AngleSharp.Dom.IElement,Microsoft.AspNetCore.Components.Web.ClipboardEventArgs)
name: CopyAsync(IElement, ClipboardEventArgs)
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_CopyAsync_AngleSharp_Dom_IElement_Microsoft_AspNetCore_Components_Web_ClipboardEventArgs_
commentId: M:Bunit.ClipboardEventDispatchExtensions.CopyAsync(AngleSharp.Dom.IElement,Microsoft.AspNetCore.Components.Web.ClipboardEventArgs)
fullName: Bunit.ClipboardEventDispatchExtensions.CopyAsync(AngleSharp.Dom.IElement, Microsoft.AspNetCore.Components.Web.ClipboardEventArgs)
nameWithType: ClipboardEventDispatchExtensions.CopyAsync(IElement, ClipboardEventArgs)
- uid: Bunit.ClipboardEventDispatchExtensions.CopyAsync*
name: CopyAsync
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_CopyAsync_
commentId: Overload:Bunit.ClipboardEventDispatchExtensions.CopyAsync
fullName: Bunit.ClipboardEventDispatchExtensions.CopyAsync
nameWithType: ClipboardEventDispatchExtensions.CopyAsync
- uid: Bunit.ClipboardEventDispatchExtensions.Cut(AngleSharp.Dom.IElement,Microsoft.AspNetCore.Components.Web.ClipboardEventArgs)
name: Cut(IElement, ClipboardEventArgs)
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_Cut_AngleSharp_Dom_IElement_Microsoft_AspNetCore_Components_Web_ClipboardEventArgs_
commentId: M:Bunit.ClipboardEventDispatchExtensions.Cut(AngleSharp.Dom.IElement,Microsoft.AspNetCore.Components.Web.ClipboardEventArgs)
fullName: Bunit.ClipboardEventDispatchExtensions.Cut(AngleSharp.Dom.IElement, Microsoft.AspNetCore.Components.Web.ClipboardEventArgs)
nameWithType: ClipboardEventDispatchExtensions.Cut(IElement, ClipboardEventArgs)
- uid: Bunit.ClipboardEventDispatchExtensions.Cut(AngleSharp.Dom.IElement,System.String)
name: Cut(IElement, string)
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_Cut_AngleSharp_Dom_IElement_System_String_
commentId: M:Bunit.ClipboardEventDispatchExtensions.Cut(AngleSharp.Dom.IElement,System.String)
name.vb: Cut(IElement, String)
fullName: Bunit.ClipboardEventDispatchExtensions.Cut(AngleSharp.Dom.IElement, string)
fullName.vb: Bunit.ClipboardEventDispatchExtensions.Cut(AngleSharp.Dom.IElement, String)
nameWithType: ClipboardEventDispatchExtensions.Cut(IElement, string)
nameWithType.vb: ClipboardEventDispatchExtensions.Cut(IElement, String)
- uid: Bunit.ClipboardEventDispatchExtensions.Cut*
name: Cut
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_Cut_
commentId: Overload:Bunit.ClipboardEventDispatchExtensions.Cut
fullName: Bunit.ClipboardEventDispatchExtensions.Cut
nameWithType: ClipboardEventDispatchExtensions.Cut
- uid: Bunit.ClipboardEventDispatchExtensions.CutAsync(AngleSharp.Dom.IElement,Microsoft.AspNetCore.Components.Web.ClipboardEventArgs)
name: CutAsync(IElement, ClipboardEventArgs)
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_CutAsync_AngleSharp_Dom_IElement_Microsoft_AspNetCore_Components_Web_ClipboardEventArgs_
commentId: M:Bunit.ClipboardEventDispatchExtensions.CutAsync(AngleSharp.Dom.IElement,Microsoft.AspNetCore.Components.Web.ClipboardEventArgs)
fullName: Bunit.ClipboardEventDispatchExtensions.CutAsync(AngleSharp.Dom.IElement, Microsoft.AspNetCore.Components.Web.ClipboardEventArgs)
nameWithType: ClipboardEventDispatchExtensions.CutAsync(IElement, ClipboardEventArgs)
- uid: Bunit.ClipboardEventDispatchExtensions.CutAsync*
name: CutAsync
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_CutAsync_
commentId: Overload:Bunit.ClipboardEventDispatchExtensions.CutAsync
fullName: Bunit.ClipboardEventDispatchExtensions.CutAsync
nameWithType: ClipboardEventDispatchExtensions.CutAsync
- uid: Bunit.ClipboardEventDispatchExtensions.Paste(AngleSharp.Dom.IElement,Microsoft.AspNetCore.Components.Web.ClipboardEventArgs)
name: Paste(IElement, ClipboardEventArgs)
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_Paste_AngleSharp_Dom_IElement_Microsoft_AspNetCore_Components_Web_ClipboardEventArgs_
commentId: M:Bunit.ClipboardEventDispatchExtensions.Paste(AngleSharp.Dom.IElement,Microsoft.AspNetCore.Components.Web.ClipboardEventArgs)
fullName: Bunit.ClipboardEventDispatchExtensions.Paste(AngleSharp.Dom.IElement, Microsoft.AspNetCore.Components.Web.ClipboardEventArgs)
nameWithType: ClipboardEventDispatchExtensions.Paste(IElement, ClipboardEventArgs)
- uid: Bunit.ClipboardEventDispatchExtensions.Paste(AngleSharp.Dom.IElement,System.String)
name: Paste(IElement, string)
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_Paste_AngleSharp_Dom_IElement_System_String_
commentId: M:Bunit.ClipboardEventDispatchExtensions.Paste(AngleSharp.Dom.IElement,System.String)
name.vb: Paste(IElement, String)
fullName: Bunit.ClipboardEventDispatchExtensions.Paste(AngleSharp.Dom.IElement, string)
fullName.vb: Bunit.ClipboardEventDispatchExtensions.Paste(AngleSharp.Dom.IElement, String)
nameWithType: ClipboardEventDispatchExtensions.Paste(IElement, string)
nameWithType.vb: ClipboardEventDispatchExtensions.Paste(IElement, String)
- uid: Bunit.ClipboardEventDispatchExtensions.Paste*
name: Paste
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_Paste_
commentId: Overload:Bunit.ClipboardEventDispatchExtensions.Paste
fullName: Bunit.ClipboardEventDispatchExtensions.Paste
nameWithType: ClipboardEventDispatchExtensions.Paste
- uid: Bunit.ClipboardEventDispatchExtensions.PasteAsync(AngleSharp.Dom.IElement,Microsoft.AspNetCore.Components.Web.ClipboardEventArgs)
name: PasteAsync(IElement, ClipboardEventArgs)
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_PasteAsync_AngleSharp_Dom_IElement_Microsoft_AspNetCore_Components_Web_ClipboardEventArgs_
commentId: M:Bunit.ClipboardEventDispatchExtensions.PasteAsync(AngleSharp.Dom.IElement,Microsoft.AspNetCore.Components.Web.ClipboardEventArgs)
fullName: Bunit.ClipboardEventDispatchExtensions.PasteAsync(AngleSharp.Dom.IElement, Microsoft.AspNetCore.Components.Web.ClipboardEventArgs)
nameWithType: ClipboardEventDispatchExtensions.PasteAsync(IElement, ClipboardEventArgs)
- uid: Bunit.ClipboardEventDispatchExtensions.PasteAsync*
name: PasteAsync
href: api/Bunit.ClipboardEventDispatchExtensions.html#Bunit_ClipboardEventDispatchExtensions_PasteAsync_
commentId: Overload:Bunit.ClipboardEventDispatchExtensions.PasteAsync
fullName: Bunit.ClipboardEventDispatchExtensions.PasteAsync
nameWithType: ClipboardEventDispatchExtensions.PasteAsync
- uid: Bunit.CompareToExtensions
name: CompareToExtensions
href: api/Bunit.CompareToExtensions.html
commentId: T:Bunit.CompareToExtensions
fullName: Bunit.CompareToExtensions
nameWithType: CompareToExtensions
- uid: Bunit.CompareToExtensions.CompareTo(AngleSharp.Dom.INode,AngleSharp.Dom.INodeList)
name: CompareTo(INode, INodeList)
href: api/Bunit.CompareToExtensions.html#Bunit_CompareToExtensions_CompareTo_AngleSharp_Dom_INode_AngleSharp_Dom_INodeList_
commentId: M:Bunit.CompareToExtensions.CompareTo(AngleSharp.Dom.INode,AngleSharp.Dom.INodeList)
fullName: Bunit.CompareToExtensions.CompareTo(AngleSharp.Dom.INode, AngleSharp.Dom.INodeList)
nameWithType: CompareToExtensions.CompareTo(INode, INodeList)
- uid: Bunit.CompareToExtensions.CompareTo(AngleSharp.Dom.INodeList,AngleSharp.Dom.INode)
name: CompareTo(INodeList, INode)
href: api/Bunit.CompareToExtensions.html#Bunit_CompareToExtensions_CompareTo_AngleSharp_Dom_INodeList_AngleSharp_Dom_INode_
commentId: M:Bunit.CompareToExtensions.CompareTo(AngleSharp.Dom.INodeList,AngleSharp.Dom.INode)
fullName: Bunit.CompareToExtensions.CompareTo(AngleSharp.Dom.INodeList, AngleSharp.Dom.INode)
nameWithType: CompareToExtensions.CompareTo(INodeList, INode)
- uid: Bunit.CompareToExtensions.CompareTo(AngleSharp.Dom.INodeList,AngleSharp.Dom.INodeList)
name: CompareTo(INodeList, INodeList)
href: api/Bunit.CompareToExtensions.html#Bunit_CompareToExtensions_CompareTo_AngleSharp_Dom_INodeList_AngleSharp_Dom_INodeList_
commentId: M:Bunit.CompareToExtensions.CompareTo(AngleSharp.Dom.INodeList,AngleSharp.Dom.INodeList)
fullName: Bunit.CompareToExtensions.CompareTo(AngleSharp.Dom.INodeList, AngleSharp.Dom.INodeList)
nameWithType: CompareToExtensions.CompareTo(INodeList, INodeList)
- uid: Bunit.CompareToExtensions.CompareTo(Bunit.IRenderedFragment,Bunit.IRenderedFragment)
name: CompareTo(IRenderedFragment, IRenderedFragment)
href: api/Bunit.CompareToExtensions.html#Bunit_CompareToExtensions_CompareTo_Bunit_IRenderedFragment_Bunit_IRenderedFragment_
commentId: M:Bunit.CompareToExtensions.CompareTo(Bunit.IRenderedFragment,Bunit.IRenderedFragment)
fullName: Bunit.CompareToExtensions.CompareTo(Bunit.IRenderedFragment, Bunit.IRenderedFragment)
nameWithType: CompareToExtensions.CompareTo(IRenderedFragment, IRenderedFragment)
- uid: Bunit.CompareToExtensions.CompareTo(Bunit.IRenderedFragment,System.String)
name: CompareTo(IRenderedFragment, string)
href: api/Bunit.CompareToExtensions.html#Bunit_CompareToExtensions_CompareTo_Bunit_IRenderedFragment_System_String_
commentId: M:Bunit.CompareToExtensions.CompareTo(Bunit.IRenderedFragment,System.String)
name.vb: CompareTo(IRenderedFragment, String)
fullName: Bunit.CompareToExtensions.CompareTo(Bunit.IRenderedFragment, string)
fullName.vb: Bunit.CompareToExtensions.CompareTo(Bunit.IRenderedFragment, String)
nameWithType: CompareToExtensions.CompareTo(IRenderedFragment, string)
nameWithType.vb: CompareToExtensions.CompareTo(IRenderedFragment, String)
- uid: Bunit.CompareToExtensions.CompareTo*
name: CompareTo
href: api/Bunit.CompareToExtensions.html#Bunit_CompareToExtensions_CompareTo_
commentId: Overload:Bunit.CompareToExtensions.CompareTo
fullName: Bunit.CompareToExtensions.CompareTo
nameWithType: CompareToExtensions.CompareTo
- uid: Bunit.ComponentFactoryCollection
name: ComponentFactoryCollection
href: api/Bunit.ComponentFactoryCollection.html
commentId: T:Bunit.ComponentFactoryCollection
fullName: Bunit.ComponentFactoryCollection
nameWithType: ComponentFactoryCollection
- uid: Bunit.ComponentFactoryCollection.#ctor
name: ComponentFactoryCollection()
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection__ctor
commentId: M:Bunit.ComponentFactoryCollection.#ctor
name.vb: New()
fullName: Bunit.ComponentFactoryCollection.ComponentFactoryCollection()
fullName.vb: Bunit.ComponentFactoryCollection.New()
nameWithType: ComponentFactoryCollection.ComponentFactoryCollection()
nameWithType.vb: ComponentFactoryCollection.New()
- uid: Bunit.ComponentFactoryCollection.#ctor*
name: ComponentFactoryCollection
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection__ctor_
commentId: Overload:Bunit.ComponentFactoryCollection.#ctor
name.vb: New
fullName: Bunit.ComponentFactoryCollection.ComponentFactoryCollection
fullName.vb: Bunit.ComponentFactoryCollection.New
nameWithType: ComponentFactoryCollection.ComponentFactoryCollection
nameWithType.vb: ComponentFactoryCollection.New
- uid: Bunit.ComponentFactoryCollection.Add(Bunit.IComponentFactory)
name: Add(IComponentFactory)
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection_Add_Bunit_IComponentFactory_
commentId: M:Bunit.ComponentFactoryCollection.Add(Bunit.IComponentFactory)
fullName: Bunit.ComponentFactoryCollection.Add(Bunit.IComponentFactory)
nameWithType: ComponentFactoryCollection.Add(IComponentFactory)
- uid: Bunit.ComponentFactoryCollection.Add*
name: Add
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection_Add_
commentId: Overload:Bunit.ComponentFactoryCollection.Add
fullName: Bunit.ComponentFactoryCollection.Add
nameWithType: ComponentFactoryCollection.Add
- uid: Bunit.ComponentFactoryCollection.Clear
name: Clear()
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection_Clear
commentId: M:Bunit.ComponentFactoryCollection.Clear
fullName: Bunit.ComponentFactoryCollection.Clear()
nameWithType: ComponentFactoryCollection.Clear()
- uid: Bunit.ComponentFactoryCollection.Clear*
name: Clear
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection_Clear_
commentId: Overload:Bunit.ComponentFactoryCollection.Clear
fullName: Bunit.ComponentFactoryCollection.Clear
nameWithType: ComponentFactoryCollection.Clear
- uid: Bunit.ComponentFactoryCollection.Contains(Bunit.IComponentFactory)
name: Contains(IComponentFactory)
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection_Contains_Bunit_IComponentFactory_
commentId: M:Bunit.ComponentFactoryCollection.Contains(Bunit.IComponentFactory)
fullName: Bunit.ComponentFactoryCollection.Contains(Bunit.IComponentFactory)
nameWithType: ComponentFactoryCollection.Contains(IComponentFactory)
- uid: Bunit.ComponentFactoryCollection.Contains*
name: Contains
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection_Contains_
commentId: Overload:Bunit.ComponentFactoryCollection.Contains
fullName: Bunit.ComponentFactoryCollection.Contains
nameWithType: ComponentFactoryCollection.Contains
- uid: Bunit.ComponentFactoryCollection.CopyTo(Bunit.IComponentFactory[],System.Int32)
name: CopyTo(IComponentFactory[], int)
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection_CopyTo_Bunit_IComponentFactory___System_Int32_
commentId: M:Bunit.ComponentFactoryCollection.CopyTo(Bunit.IComponentFactory[],System.Int32)
name.vb: CopyTo(IComponentFactory(), Integer)
fullName: Bunit.ComponentFactoryCollection.CopyTo(Bunit.IComponentFactory[], int)
fullName.vb: Bunit.ComponentFactoryCollection.CopyTo(Bunit.IComponentFactory(), Integer)
nameWithType: ComponentFactoryCollection.CopyTo(IComponentFactory[], int)
nameWithType.vb: ComponentFactoryCollection.CopyTo(IComponentFactory(), Integer)
- uid: Bunit.ComponentFactoryCollection.CopyTo*
name: CopyTo
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection_CopyTo_
commentId: Overload:Bunit.ComponentFactoryCollection.CopyTo
fullName: Bunit.ComponentFactoryCollection.CopyTo
nameWithType: ComponentFactoryCollection.CopyTo
- uid: Bunit.ComponentFactoryCollection.Count
name: Count
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection_Count
commentId: P:Bunit.ComponentFactoryCollection.Count
fullName: Bunit.ComponentFactoryCollection.Count
nameWithType: ComponentFactoryCollection.Count
- uid: Bunit.ComponentFactoryCollection.Count*
name: Count
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection_Count_
commentId: Overload:Bunit.ComponentFactoryCollection.Count
fullName: Bunit.ComponentFactoryCollection.Count
nameWithType: ComponentFactoryCollection.Count
- uid: Bunit.ComponentFactoryCollection.GetEnumerator
name: GetEnumerator()
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection_GetEnumerator
commentId: M:Bunit.ComponentFactoryCollection.GetEnumerator
fullName: Bunit.ComponentFactoryCollection.GetEnumerator()
nameWithType: ComponentFactoryCollection.GetEnumerator()
- uid: Bunit.ComponentFactoryCollection.GetEnumerator*
name: GetEnumerator
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection_GetEnumerator_
commentId: Overload:Bunit.ComponentFactoryCollection.GetEnumerator
fullName: Bunit.ComponentFactoryCollection.GetEnumerator
nameWithType: ComponentFactoryCollection.GetEnumerator
- uid: Bunit.ComponentFactoryCollection.IndexOf(Bunit.IComponentFactory)
name: IndexOf(IComponentFactory)
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection_IndexOf_Bunit_IComponentFactory_
commentId: M:Bunit.ComponentFactoryCollection.IndexOf(Bunit.IComponentFactory)
fullName: Bunit.ComponentFactoryCollection.IndexOf(Bunit.IComponentFactory)
nameWithType: ComponentFactoryCollection.IndexOf(IComponentFactory)
- uid: Bunit.ComponentFactoryCollection.IndexOf*
name: IndexOf
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection_IndexOf_
commentId: Overload:Bunit.ComponentFactoryCollection.IndexOf
fullName: Bunit.ComponentFactoryCollection.IndexOf
nameWithType: ComponentFactoryCollection.IndexOf
- uid: Bunit.ComponentFactoryCollection.Insert(System.Int32,Bunit.IComponentFactory)
name: Insert(int, IComponentFactory)
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection_Insert_System_Int32_Bunit_IComponentFactory_
commentId: M:Bunit.ComponentFactoryCollection.Insert(System.Int32,Bunit.IComponentFactory)
name.vb: Insert(Integer, IComponentFactory)
fullName: Bunit.ComponentFactoryCollection.Insert(int, Bunit.IComponentFactory)
fullName.vb: Bunit.ComponentFactoryCollection.Insert(Integer, Bunit.IComponentFactory)
nameWithType: ComponentFactoryCollection.Insert(int, IComponentFactory)
nameWithType.vb: ComponentFactoryCollection.Insert(Integer, IComponentFactory)
- uid: Bunit.ComponentFactoryCollection.Insert*
name: Insert
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection_Insert_
commentId: Overload:Bunit.ComponentFactoryCollection.Insert
fullName: Bunit.ComponentFactoryCollection.Insert
nameWithType: ComponentFactoryCollection.Insert
- uid: Bunit.ComponentFactoryCollection.IsReadOnly
name: IsReadOnly
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection_IsReadOnly
commentId: P:Bunit.ComponentFactoryCollection.IsReadOnly
fullName: Bunit.ComponentFactoryCollection.IsReadOnly
nameWithType: ComponentFactoryCollection.IsReadOnly
- uid: Bunit.ComponentFactoryCollection.IsReadOnly*
name: IsReadOnly
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection_IsReadOnly_
commentId: Overload:Bunit.ComponentFactoryCollection.IsReadOnly
fullName: Bunit.ComponentFactoryCollection.IsReadOnly
nameWithType: ComponentFactoryCollection.IsReadOnly
- uid: Bunit.ComponentFactoryCollection.Item(System.Int32)
name: this[int]
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection_Item_System_Int32_
commentId: P:Bunit.ComponentFactoryCollection.Item(System.Int32)
name.vb: this[](Integer)
fullName: Bunit.ComponentFactoryCollection.this[int]
fullName.vb: Bunit.ComponentFactoryCollection.this[](Integer)
nameWithType: ComponentFactoryCollection.this[int]
nameWithType.vb: ComponentFactoryCollection.this[](Integer)
- uid: Bunit.ComponentFactoryCollection.Item*
name: this
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection_Item_
commentId: Overload:Bunit.ComponentFactoryCollection.Item
name.vb: this[]
fullName: Bunit.ComponentFactoryCollection.this
fullName.vb: Bunit.ComponentFactoryCollection.this[]
nameWithType: ComponentFactoryCollection.this
nameWithType.vb: ComponentFactoryCollection.this[]
- uid: Bunit.ComponentFactoryCollection.Remove(Bunit.IComponentFactory)
name: Remove(IComponentFactory)
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection_Remove_Bunit_IComponentFactory_
commentId: M:Bunit.ComponentFactoryCollection.Remove(Bunit.IComponentFactory)
fullName: Bunit.ComponentFactoryCollection.Remove(Bunit.IComponentFactory)
nameWithType: ComponentFactoryCollection.Remove(IComponentFactory)
- uid: Bunit.ComponentFactoryCollection.Remove*
name: Remove
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection_Remove_
commentId: Overload:Bunit.ComponentFactoryCollection.Remove
fullName: Bunit.ComponentFactoryCollection.Remove
nameWithType: ComponentFactoryCollection.Remove
- uid: Bunit.ComponentFactoryCollection.RemoveAt(System.Int32)
name: RemoveAt(int)
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection_RemoveAt_System_Int32_
commentId: M:Bunit.ComponentFactoryCollection.RemoveAt(System.Int32)
name.vb: RemoveAt(Integer)
fullName: Bunit.ComponentFactoryCollection.RemoveAt(int)
fullName.vb: Bunit.ComponentFactoryCollection.RemoveAt(Integer)
nameWithType: ComponentFactoryCollection.RemoveAt(int)
nameWithType.vb: ComponentFactoryCollection.RemoveAt(Integer)
- uid: Bunit.ComponentFactoryCollection.RemoveAt*
name: RemoveAt
href: api/Bunit.ComponentFactoryCollection.html#Bunit_ComponentFactoryCollection_RemoveAt_
commentId: Overload:Bunit.ComponentFactoryCollection.RemoveAt
fullName: Bunit.ComponentFactoryCollection.RemoveAt
nameWithType: ComponentFactoryCollection.RemoveAt
- uid: Bunit.ComponentFactoryCollectionExtensions
name: ComponentFactoryCollectionExtensions
href: api/Bunit.ComponentFactoryCollectionExtensions.html
commentId: T:Bunit.ComponentFactoryCollectionExtensions
fullName: Bunit.ComponentFactoryCollectionExtensions
nameWithType: ComponentFactoryCollectionExtensions
- uid: Bunit.ComponentFactoryCollectionExtensions.Add(Bunit.ComponentFactoryCollection,System.Predicate{System.Type},System.Func{System.Type,Microsoft.AspNetCore.Components.IComponent})
name: Add(ComponentFactoryCollection, Predicate<Type>, Func<Type, IComponent>)
href: api/Bunit.ComponentFactoryCollectionExtensions.html#Bunit_ComponentFactoryCollectionExtensions_Add_Bunit_ComponentFactoryCollection_System_Predicate_System_Type__System_Func_System_Type_Microsoft_AspNetCore_Components_IComponent__
commentId: M:Bunit.ComponentFactoryCollectionExtensions.Add(Bunit.ComponentFactoryCollection,System.Predicate{System.Type},System.Func{System.Type,Microsoft.AspNetCore.Components.IComponent})
name.vb: Add(ComponentFactoryCollection, Predicate(Of Type), Func(Of Type, IComponent))
fullName: Bunit.ComponentFactoryCollectionExtensions.Add(Bunit.ComponentFactoryCollection, System.Predicate<System.Type>, System.Func<System.Type, Microsoft.AspNetCore.Components.IComponent>)
fullName.vb: Bunit.ComponentFactoryCollectionExtensions.Add(Bunit.ComponentFactoryCollection, System.Predicate(Of System.Type), System.Func(Of System.Type, Microsoft.AspNetCore.Components.IComponent))
nameWithType: ComponentFactoryCollectionExtensions.Add(ComponentFactoryCollection, Predicate<Type>, Func<Type, IComponent>)
nameWithType.vb: ComponentFactoryCollectionExtensions.Add(ComponentFactoryCollection, Predicate(Of Type), Func(Of Type, IComponent))
- uid: Bunit.ComponentFactoryCollectionExtensions.Add*
name: Add
href: api/Bunit.ComponentFactoryCollectionExtensions.html#Bunit_ComponentFactoryCollectionExtensions_Add_
commentId: Overload:Bunit.ComponentFactoryCollectionExtensions.Add
fullName: Bunit.ComponentFactoryCollectionExtensions.Add
nameWithType: ComponentFactoryCollectionExtensions.Add
- uid: Bunit.ComponentFactoryCollectionExtensions.Add``1(Bunit.ComponentFactoryCollection,System.Func{``0})
name: Add<TComponent>(ComponentFactoryCollection, Func<TComponent>)
href: api/Bunit.ComponentFactoryCollectionExtensions.html#Bunit_ComponentFactoryCollectionExtensions_Add__1_Bunit_ComponentFactoryCollection_System_Func___0__
commentId: M:Bunit.ComponentFactoryCollectionExtensions.Add``1(Bunit.ComponentFactoryCollection,System.Func{``0})
name.vb: Add(Of TComponent)(ComponentFactoryCollection, Func(Of TComponent))
fullName: Bunit.ComponentFactoryCollectionExtensions.Add<TComponent>(Bunit.ComponentFactoryCollection, System.Func<TComponent>)
fullName.vb: Bunit.ComponentFactoryCollectionExtensions.Add(Of TComponent)(Bunit.ComponentFactoryCollection, System.Func(Of TComponent))
nameWithType: ComponentFactoryCollectionExtensions.Add<TComponent>(ComponentFactoryCollection, Func<TComponent>)
nameWithType.vb: ComponentFactoryCollectionExtensions.Add(Of TComponent)(ComponentFactoryCollection, Func(Of TComponent))
- uid: Bunit.ComponentFactoryCollectionExtensions.Add``1(Bunit.ComponentFactoryCollection,``0)
name: Add<TComponent>(ComponentFactoryCollection, TComponent)
href: api/Bunit.ComponentFactoryCollectionExtensions.html#Bunit_ComponentFactoryCollectionExtensions_Add__1_Bunit_ComponentFactoryCollection___0_
commentId: M:Bunit.ComponentFactoryCollectionExtensions.Add``1(Bunit.ComponentFactoryCollection,``0)
name.vb: Add(Of TComponent)(ComponentFactoryCollection, TComponent)
fullName: Bunit.ComponentFactoryCollectionExtensions.Add<TComponent>(Bunit.ComponentFactoryCollection, TComponent)
fullName.vb: Bunit.ComponentFactoryCollectionExtensions.Add(Of TComponent)(Bunit.ComponentFactoryCollection, TComponent)
nameWithType: ComponentFactoryCollectionExtensions.Add<TComponent>(ComponentFactoryCollection, TComponent)
nameWithType.vb: ComponentFactoryCollectionExtensions.Add(Of TComponent)(ComponentFactoryCollection, TComponent)
- uid: Bunit.ComponentFactoryCollectionExtensions.Add``2(Bunit.ComponentFactoryCollection)
name: Add<TComponent, TSubstituteComponent>(ComponentFactoryCollection)
href: api/Bunit.ComponentFactoryCollectionExtensions.html#Bunit_ComponentFactoryCollectionExtensions_Add__2_Bunit_ComponentFactoryCollection_
commentId: M:Bunit.ComponentFactoryCollectionExtensions.Add``2(Bunit.ComponentFactoryCollection)
name.vb: Add(Of TComponent, TSubstituteComponent)(ComponentFactoryCollection)
fullName: Bunit.ComponentFactoryCollectionExtensions.Add<TComponent, TSubstituteComponent>(Bunit.ComponentFactoryCollection)
fullName.vb: Bunit.ComponentFactoryCollectionExtensions.Add(Of TComponent, TSubstituteComponent)(Bunit.ComponentFactoryCollection)
nameWithType: ComponentFactoryCollectionExtensions.Add<TComponent, TSubstituteComponent>(ComponentFactoryCollection)
nameWithType.vb: ComponentFactoryCollectionExtensions.Add(Of TComponent, TSubstituteComponent)(ComponentFactoryCollection)
- uid: Bunit.ComponentParameter
name: ComponentParameter
href: api/Bunit.ComponentParameter.html
commentId: T:Bunit.ComponentParameter
fullName: Bunit.ComponentParameter
nameWithType: ComponentParameter
- uid: Bunit.ComponentParameter.CreateCascadingValue(System.String,System.Object)
name: CreateCascadingValue(string?, object)
href: api/Bunit.ComponentParameter.html#Bunit_ComponentParameter_CreateCascadingValue_System_String_System_Object_
commentId: M:Bunit.ComponentParameter.CreateCascadingValue(System.String,System.Object)
name.vb: CreateCascadingValue(String, Object)
fullName: Bunit.ComponentParameter.CreateCascadingValue(string?, object)
fullName.vb: Bunit.ComponentParameter.CreateCascadingValue(String, Object)
nameWithType: ComponentParameter.CreateCascadingValue(string?, object)
nameWithType.vb: ComponentParameter.CreateCascadingValue(String, Object)
- uid: Bunit.ComponentParameter.CreateCascadingValue*
name: CreateCascadingValue
href: api/Bunit.ComponentParameter.html#Bunit_ComponentParameter_CreateCascadingValue_
commentId: Overload:Bunit.ComponentParameter.CreateCascadingValue
fullName: Bunit.ComponentParameter.CreateCascadingValue
nameWithType: ComponentParameter.CreateCascadingValue
- uid: Bunit.ComponentParameter.CreateParameter(System.String,System.Object)
name: CreateParameter(string, object?)
href: api/Bunit.ComponentParameter.html#Bunit_ComponentParameter_CreateParameter_System_String_System_Object_
commentId: M:Bunit.ComponentParameter.CreateParameter(System.String,System.Object)
name.vb: CreateParameter(String, Object)
fullName: Bunit.ComponentParameter.CreateParameter(string, object?)
fullName.vb: Bunit.ComponentParameter.CreateParameter(String, Object)
nameWithType: ComponentParameter.CreateParameter(string, object?)
nameWithType.vb: ComponentParameter.CreateParameter(String, Object)
- uid: Bunit.ComponentParameter.CreateParameter*
name: CreateParameter
href: api/Bunit.ComponentParameter.html#Bunit_ComponentParameter_CreateParameter_
commentId: Overload:Bunit.ComponentParameter.CreateParameter
fullName: Bunit.ComponentParameter.CreateParameter
nameWithType: ComponentParameter.CreateParameter
- uid: Bunit.ComponentParameter.Equals(Bunit.ComponentParameter)
name: Equals(ComponentParameter)
href: api/Bunit.ComponentParameter.html#Bunit_ComponentParameter_Equals_Bunit_ComponentParameter_
commentId: M:Bunit.ComponentParameter.Equals(Bunit.ComponentParameter)
fullName: Bunit.ComponentParameter.Equals(Bunit.ComponentParameter)
nameWithType: ComponentParameter.Equals(ComponentParameter)
- uid: Bunit.ComponentParameter.Equals(System.Object)
name: Equals(object?)
href: api/Bunit.ComponentParameter.html#Bunit_ComponentParameter_Equals_System_Object_
commentId: M:Bunit.ComponentParameter.Equals(System.Object)
name.vb: Equals(Object)
fullName: Bunit.ComponentParameter.Equals(object?)
fullName.vb: Bunit.ComponentParameter.Equals(Object)
nameWithType: ComponentParameter.Equals(object?)
nameWithType.vb: ComponentParameter.Equals(Object)
- uid: Bunit.ComponentParameter.Equals*
name: Equals
href: api/Bunit.ComponentParameter.html#Bunit_ComponentParameter_Equals_
commentId: Overload:Bunit.ComponentParameter.Equals
fullName: Bunit.ComponentParameter.Equals
nameWithType: ComponentParameter.Equals
- uid: Bunit.ComponentParameter.GetHashCode
name: GetHashCode()
href: api/Bunit.ComponentParameter.html#Bunit_ComponentParameter_GetHashCode
commentId: M:Bunit.ComponentParameter.GetHashCode
fullName: Bunit.ComponentParameter.GetHashCode()
nameWithType: ComponentParameter.GetHashCode()
- uid: Bunit.ComponentParameter.GetHashCode*
name: GetHashCode
href: api/Bunit.ComponentParameter.html#Bunit_ComponentParameter_GetHashCode_
commentId: Overload:Bunit.ComponentParameter.GetHashCode
fullName: Bunit.ComponentParameter.GetHashCode
nameWithType: ComponentParameter.GetHashCode
- uid: Bunit.ComponentParameter.IsCascadingValue
name: IsCascadingValue
href: api/Bunit.ComponentParameter.html#Bunit_ComponentParameter_IsCascadingValue
commentId: P:Bunit.ComponentParameter.IsCascadingValue
fullName: Bunit.ComponentParameter.IsCascadingValue
nameWithType: ComponentParameter.IsCascadingValue
- uid: Bunit.ComponentParameter.IsCascadingValue*
name: IsCascadingValue
href: api/Bunit.ComponentParameter.html#Bunit_ComponentParameter_IsCascadingValue_
commentId: Overload:Bunit.ComponentParameter.IsCascadingValue
fullName: Bunit.ComponentParameter.IsCascadingValue
nameWithType: ComponentParameter.IsCascadingValue
- uid: Bunit.ComponentParameter.Name
name: Name
href: api/Bunit.ComponentParameter.html#Bunit_ComponentParameter_Name
commentId: P:Bunit.ComponentParameter.Name
fullName: Bunit.ComponentParameter.Name
nameWithType: ComponentParameter.Name
- uid: Bunit.ComponentParameter.Name*
name: Name
href: api/Bunit.ComponentParameter.html#Bunit_ComponentParameter_Name_
commentId: Overload:Bunit.ComponentParameter.Name
fullName: Bunit.ComponentParameter.Name
nameWithType: ComponentParameter.Name
- uid: Bunit.ComponentParameter.Value
name: Value
href: api/Bunit.ComponentParameter.html#Bunit_ComponentParameter_Value
commentId: P:Bunit.ComponentParameter.Value
fullName: Bunit.ComponentParameter.Value
nameWithType: ComponentParameter.Value
- uid: Bunit.ComponentParameter.Value*
name: Value
href: api/Bunit.ComponentParameter.html#Bunit_ComponentParameter_Value_
commentId: Overload:Bunit.ComponentParameter.Value
fullName: Bunit.ComponentParameter.Value
nameWithType: ComponentParameter.Value
- uid: Bunit.ComponentParameter.op_Equality(Bunit.ComponentParameter,Bunit.ComponentParameter)
name: operator ==(ComponentParameter, ComponentParameter)
href: api/Bunit.ComponentParameter.html#Bunit_ComponentParameter_op_Equality_Bunit_ComponentParameter_Bunit_ComponentParameter_
commentId: M:Bunit.ComponentParameter.op_Equality(Bunit.ComponentParameter,Bunit.ComponentParameter)
name.vb: =(ComponentParameter, ComponentParameter)
fullName: Bunit.ComponentParameter.operator ==(Bunit.ComponentParameter, Bunit.ComponentParameter)
fullName.vb: Bunit.ComponentParameter.=(Bunit.ComponentParameter, Bunit.ComponentParameter)
nameWithType: ComponentParameter.operator ==(ComponentParameter, ComponentParameter)
nameWithType.vb: ComponentParameter.=(ComponentParameter, ComponentParameter)
- uid: Bunit.ComponentParameter.op_Equality*
name: operator ==
href: api/Bunit.ComponentParameter.html#Bunit_ComponentParameter_op_Equality_
commentId: Overload:Bunit.ComponentParameter.op_Equality
name.vb: =
fullName: Bunit.ComponentParameter.operator ==
fullName.vb: Bunit.ComponentParameter.=
nameWithType: ComponentParameter.operator ==
nameWithType.vb: ComponentParameter.=
- uid: Bunit.ComponentParameter.op_Implicit(System.ValueTuple{System.String,System.Object,System.Boolean})~Bunit.ComponentParameter
name: implicit operator ComponentParameter((string? Name, object? Value, bool IsCascadingValue))
href: api/Bunit.ComponentParameter.html#Bunit_ComponentParameter_op_Implicit_System_ValueTuple_System_String_System_Object_System_Boolean___Bunit_ComponentParameter
commentId: M:Bunit.ComponentParameter.op_Implicit(System.ValueTuple{System.String,System.Object,System.Boolean})~Bunit.ComponentParameter
name.vb: CType((Name As String, Value As Object, IsCascadingValue As Boolean))
fullName: Bunit.ComponentParameter.implicit operator Bunit.ComponentParameter((string? Name, object? Value, bool IsCascadingValue))
fullName.vb: Bunit.ComponentParameter.CType((Name As String, Value As Object, IsCascadingValue As Boolean))
nameWithType: ComponentParameter.implicit operator ComponentParameter((string? Name, object? Value, bool IsCascadingValue))
nameWithType.vb: ComponentParameter.CType((Name As String, Value As Object, IsCascadingValue As Boolean))
- uid: Bunit.ComponentParameter.op_Implicit(System.ValueTuple{System.String,System.Object})~Bunit.ComponentParameter
name: implicit operator ComponentParameter((string Name, object? Value))
href: api/Bunit.ComponentParameter.html#Bunit_ComponentParameter_op_Implicit_System_ValueTuple_System_String_System_Object___Bunit_ComponentParameter
commentId: M:Bunit.ComponentParameter.op_Implicit(System.ValueTuple{System.String,System.Object})~Bunit.ComponentParameter
name.vb: CType((Name As String, Value As Object))
fullName: Bunit.ComponentParameter.implicit operator Bunit.ComponentParameter((string Name, object? Value))
fullName.vb: Bunit.ComponentParameter.CType((Name As String, Value As Object))
nameWithType: ComponentParameter.implicit operator ComponentParameter((string Name, object? Value))
nameWithType.vb: ComponentParameter.CType((Name As String, Value As Object))
- uid: Bunit.ComponentParameter.op_Implicit*
name: implicit operator
href: api/Bunit.ComponentParameter.html#Bunit_ComponentParameter_op_Implicit_
commentId: Overload:Bunit.ComponentParameter.op_Implicit
isSpec: "True"
name.vb: CType
fullName: Bunit.ComponentParameter.implicit operator
fullName.vb: Bunit.ComponentParameter.CType
nameWithType: ComponentParameter.implicit operator
nameWithType.vb: ComponentParameter.CType
- uid: Bunit.ComponentParameter.op_Inequality(Bunit.ComponentParameter,Bunit.ComponentParameter)
name: operator !=(ComponentParameter, ComponentParameter)
href: api/Bunit.ComponentParameter.html#Bunit_ComponentParameter_op_Inequality_Bunit_ComponentParameter_Bunit_ComponentParameter_
commentId: M:Bunit.ComponentParameter.op_Inequality(Bunit.ComponentParameter,Bunit.ComponentParameter)
name.vb: <>(ComponentParameter, ComponentParameter)
fullName: Bunit.ComponentParameter.operator !=(Bunit.ComponentParameter, Bunit.ComponentParameter)
fullName.vb: Bunit.ComponentParameter.<>(Bunit.ComponentParameter, Bunit.ComponentParameter)
nameWithType: ComponentParameter.operator !=(ComponentParameter, ComponentParameter)
nameWithType.vb: ComponentParameter.<>(ComponentParameter, ComponentParameter)
- uid: Bunit.ComponentParameter.op_Inequality*
name: operator !=
href: api/Bunit.ComponentParameter.html#Bunit_ComponentParameter_op_Inequality_
commentId: Overload:Bunit.ComponentParameter.op_Inequality
name.vb: <>
fullName: Bunit.ComponentParameter.operator !=
fullName.vb: Bunit.ComponentParameter.<>
nameWithType: ComponentParameter.operator !=
nameWithType.vb: ComponentParameter.<>
- uid: Bunit.ComponentParameterCollection
name: ComponentParameterCollection
href: api/Bunit.ComponentParameterCollection.html
commentId: T:Bunit.ComponentParameterCollection
fullName: Bunit.ComponentParameterCollection
nameWithType: ComponentParameterCollection
- uid: Bunit.ComponentParameterCollection.#ctor
name: ComponentParameterCollection()
href: api/Bunit.ComponentParameterCollection.html#Bunit_ComponentParameterCollection__ctor
commentId: M:Bunit.ComponentParameterCollection.#ctor
name.vb: New()
fullName: Bunit.ComponentParameterCollection.ComponentParameterCollection()
fullName.vb: Bunit.ComponentParameterCollection.New()
nameWithType: ComponentParameterCollection.ComponentParameterCollection()
nameWithType.vb: ComponentParameterCollection.New()