forked from dotnet/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmsdnsmallset.yml
2796 lines (2796 loc) · 138 KB
/
msdnsmallset.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
hrefUpdated: true
references:
- uid: System.Activities.CodeActivityContext.GetProperty*
commentId: M:System.Activities.CodeActivityContext.GetProperty``1
href: https://msdn.microsoft.com/library/dd987348(v=vs.110).aspx
name: GetProperty
name.vb: GetProperty
fullName: CodeActivityContext.GetProperty
fullName.vb: CodeActivityContext.GetProperty
- uid: System.Activities.Expressions.ExpressionServices.Convert*
commentId: M:System.Activities.Expressions.ExpressionServices.Convert``1(System.Linq.Expressions.Expression{System.Func{System.Activities.ActivityContext,``0}})
href: https://msdn.microsoft.com/library/dd780176(v=vs.110).aspx
name: Convert
name.vb: Convert
fullName: ExpressionServices.Convert
fullName.vb: ExpressionServices.Convert
- uid: System.Activities.Expressions.ExpressionServices.ConvertReference*
commentId: M:System.Activities.Expressions.ExpressionServices.ConvertReference``1(System.Linq.Expressions.Expression{System.Func{System.Activities.ActivityContext,``0}})
href: https://msdn.microsoft.com/library/dd780667(v=vs.110).aspx
name: ConvertReference
name.vb: ConvertReference
fullName: ExpressionServices.ConvertReference
fullName.vb: ExpressionServices.ConvertReference
- uid: System.Activities.NativeActivityContext.ScheduleFunc*
commentId: Overload:System.Activities.NativeActivityContext.ScheduleFunc
href: https://msdn.microsoft.com/library/system.activities.nativeactivitycontext.schedulefunc(v=vs.110).aspx
name: ScheduleFunc
name.vb: ScheduleFunc
fullName: NativeActivityContext.ScheduleFunc
fullName.vb: NativeActivityContext.ScheduleFunc
- uid: System.AddIn.Hosting.AddInToken.Activate*
commentId: Overload:System.AddIn.Hosting.AddInToken.Activate
href: https://msdn.microsoft.com/library/system.addin.hosting.addintoken.activate(v=vs.110).aspx
name: Activate
name.vb: Activate
fullName: AddInToken.Activate
fullName.vb: AddInToken.Activate
- uid: System.AddIn.Pipeline.ContractAdapter.ContractToViewAdapter*
commentId: Overload:System.AddIn.Pipeline.ContractAdapter.ContractToViewAdapter
href: https://msdn.microsoft.com/library/system.addin.pipeline.contractadapter.contracttoviewadapter(v=vs.110).aspx
name: ContractToViewAdapter
name.vb: ContractToViewAdapter
fullName: ContractAdapter.ContractToViewAdapter
fullName.vb: ContractAdapter.ContractToViewAdapter
- uid: System.Array.ConvertAll*
commentId: M:System.Array.ConvertAll``2(``0[],System.Converter{``0,``1})
href: https://msdn.microsoft.com/en-us/library/exc45z53(v=vs.110).aspx
name: ConvertAll
name.vb: ConvertAll
fullName: Array.ConvertAll
fullName.vb: Array.ConvertAll
- uid: System.Array.Exists*
commentId: M:System.Array.Exists``1(``0[],System.Predicate{``0})
href: https://msdn.microsoft.com/en-us/library/yw84x8be(v=vs.110).aspx
name: Exists
name.vb: Exists
fullName: Array.Exists
fullName.vb: Array.Exists
- uid: System.Array.Find*
commentId: M:System.Array.Find``1(``0[],System.Predicate{``0})
href: https://msdn.microsoft.com/en-us/library/d9hy2xwa(v=vs.110).aspx
name: Find
name.vb: Find
fullName: Array.Find
fullName.vb: Array.Find
- uid: System.Array.FindAll*
commentId: M:System.Array.FindAll``1(``0[],System.Predicate{``0})
href: https://msdn.microsoft.com/en-us/library/1kkxfxdd(v=vs.110).aspx
name: FindAll
name.vb: FindAll
fullName: Array.FindAll
fullName.vb: Array.FindAll
- uid: System.Array.FindIndex*
commentId: Overload:System.Array.FindIndex
href: https://msdn.microsoft.com/en-us/library/3kyey7x5(v=vs.110).aspx
name: FindIndex
name.vb: FindIndex
fullName: Array.FindIndex
fullName.vb: Array.FindIndex
- uid: System.Array.FindLast*
commentId: M:System.Array.FindLast``1(``0[],System.Predicate{``0})
href: https://msdn.microsoft.com/en-us/library/2857xz7b(v=vs.110).aspx
name: FindLast
name.vb: FindLast
fullName: Array.FindLast
fullName.vb: Array.FindLast
- uid: System.Array.FindLastIndex*
commentId: Overload:System.Array.FindLastIndex
href: https://msdn.microsoft.com/en-us/library/6k7h03y0(v=vs.110).aspx
name: FindLastIndex
name.vb: FindLastIndex
fullName: Array.FindLastIndex
fullName.vb: Array.FindLastIndex
- uid: System.Array.ForEach*
commentId: M:System.Array.ForEach``1(``0[],System.Action{``0})
href: https://msdn.microsoft.com/en-us/library/zecdkyw2(v=vs.110).aspx
name: ForEach
name.vb: ForEach
fullName: Array.ForEach
fullName.vb: Array.ForEach
- uid: System.Array.Resize*
commentId: M:System.Array.Resize``1(``0[]@,System.Int32)
href: https://msdn.microsoft.com/library/bb348051(v=vs.110).aspx
name: Resize
name.vb: Resize
fullName: Array.Resize
fullName.vb: Array.Resize
- uid: System.Array.TrueForAll*
commentId: M:System.Array.TrueForAll``1(``0[],System.Predicate{``0})
href: https://msdn.microsoft.com/en-us/library/x2kykt9x(v=vs.110).aspx
name: TrueForAll
name.vb: TrueForAll
fullName: Array.TrueForAll
fullName.vb: Array.TrueForAll
- uid: System.ComponentModel.DesignerProperties.IsInDesignMode*
commentId: P:System.ComponentModel.DesignerProperties.IsInDesignMode
href: https://msdn.microsoft.com/library/system.componentmodel.designerproperties.isindesignmode(v=vs.110).aspx
name: IsInDesignMode
name.vb: IsInDesignMode
fullName: DesignerProperties.IsInDesignMode
fullName.vb: DesignerProperties.IsInDesignMode
- uid: System.Data.Common.DbDataReader.GetFieldValue*
commentId: M:System.Data.Common.DbDataReader.GetFieldValue``1(System.Int32)
href: https://msdn.microsoft.com/library/hh462662(v=vs.110).aspx
name: GetFieldValue
name.vb: GetFieldValue
fullName: DbDataReader.GetFieldValue
fullName.vb: DbDataReader.GetFieldValue
- uid: System.Data.Common.DbDataReader.GetFieldValueAsync*
commentId: Overload:System.Data.Common.DbDataReader.GetFieldValueAsync
href: https://msdn.microsoft.com/library/system.data.common.dbdatareader.getfieldvalueasync(v=vs.110).aspx
name: GetFieldValueAsync
name.vb: GetFieldValueAsync
fullName: DbDataReader.GetFieldValueAsync
fullName.vb: DbDataReader.GetFieldValueAsync
- uid: System.Data.DataRowExtensions.Field*
commentId: Overload:System.Data.DataRowExtensions.Field
href: https://msdn.microsoft.com/library/system.data.datarowextensions.field(v=vs.110).aspx
name: Field
name.vb: Field
fullName: DataRowExtensions.Field
fullName.vb: DataRowExtensions.Field
- uid: System.Data.DataRowExtensions.SetField*
commentId: Overload:System.Data.DataRowExtensions.SetField
href: https://msdn.microsoft.com/library/system.data.datarowextensions.setfield(v=vs.110).aspx
name: SetField
name.vb: SetField
fullName: DataRowExtensions.SetField
fullName.vb: DataRowExtensions.SetField
- uid: System.Data.DataTableExtensions.CopyToDataTable*
commentId: Overload:System.Data.DataTableExtensions.CopyToDataTable
href: https://msdn.microsoft.com/library/system.data.datatableextensions.copytodatatable(v=vs.110).aspx
name: CopyToDataTable
name.vb: CopyToDataTable
fullName: DataTableExtensions.CopyToDataTable
fullName.vb: DataTableExtensions.CopyToDataTable
- uid: System.Data.EnumerableRowCollectionExtensions.Cast*
commentId: M:System.Data.EnumerableRowCollectionExtensions.Cast``1(System.Data.EnumerableRowCollection)
href: https://msdn.microsoft.com/library/bb908059(v=vs.110).aspx
name: Cast
name.vb: Cast
fullName: EnumerableRowCollectionExtensions.Cast
fullName.vb: EnumerableRowCollectionExtensions.Cast
- uid: System.Data.EnumerableRowCollectionExtensions.OrderBy*
commentId: Overload:System.Data.EnumerableRowCollectionExtensions.OrderBy
href: https://msdn.microsoft.com/library/system.data.enumerablerowcollectionextensions.orderby(v=vs.110).aspx
name: OrderBy
name.vb: OrderBy
fullName: EnumerableRowCollectionExtensions.OrderBy
fullName.vb: EnumerableRowCollectionExtensions.OrderBy
- uid: System.Data.EnumerableRowCollectionExtensions.OrderByDescending*
commentId: Overload:System.Data.EnumerableRowCollectionExtensions.OrderByDescending
href: https://msdn.microsoft.com/library/system.data.enumerablerowcollectionextensions.orderbydescending(v=vs.110).aspx
name: OrderByDescending
name.vb: OrderByDescending
fullName: EnumerableRowCollectionExtensions.OrderByDescending
fullName.vb: EnumerableRowCollectionExtensions.OrderByDescending
- uid: System.Data.EnumerableRowCollectionExtensions.Select*
commentId: M:System.Data.EnumerableRowCollectionExtensions.Select``2(System.Data.EnumerableRowCollection{``0},System.Func{``0,``1})
href: https://msdn.microsoft.com/library/bb907949(v=vs.110).aspx
name: Select
name.vb: Select
fullName: EnumerableRowCollectionExtensions.Select
fullName.vb: EnumerableRowCollectionExtensions.Select
- uid: System.Data.EnumerableRowCollectionExtensions.ThenBy*
commentId: Overload:System.Data.EnumerableRowCollectionExtensions.ThenBy
href: https://msdn.microsoft.com/library/system.data.enumerablerowcollectionextensions.thenby(v=vs.110).aspx
name: ThenBy
name.vb: ThenBy
fullName: EnumerableRowCollectionExtensions.ThenBy
fullName.vb: EnumerableRowCollectionExtensions.ThenBy
- uid: System.Data.EnumerableRowCollectionExtensions.ThenByDescending*
commentId: Overload:System.Data.EnumerableRowCollectionExtensions.ThenByDescending
href: https://msdn.microsoft.com/library/system.data.enumerablerowcollectionextensions.thenbydescending(v=vs.110).aspx
name: ThenByDescending
name.vb: ThenByDescending
fullName: EnumerableRowCollectionExtensions.ThenByDescending
fullName.vb: EnumerableRowCollectionExtensions.ThenByDescending
- uid: System.Data.EnumerableRowCollectionExtensions.Where*
commentId: M:System.Data.EnumerableRowCollectionExtensions.Where``1(System.Data.EnumerableRowCollection{``0},System.Func{``0,System.Boolean})
href: https://msdn.microsoft.com/library/bb907899(v=vs.110).aspx
name: Where
name.vb: Where
fullName: EnumerableRowCollectionExtensions.Where
fullName.vb: EnumerableRowCollectionExtensions.Where
- uid: System.Data.Linq.CompiledQuery.Compile*
commentId: Overload:System.Data.Linq.CompiledQuery.Compile
href: https://msdn.microsoft.com/library/system.data.linq.compiledquery.compile(v=vs.110).aspx
name: Compile
name.vb: Compile
fullName: CompiledQuery.Compile
fullName.vb: CompiledQuery.Compile
- uid: System.Data.Linq.DataContext.CreateMethodCallQuery*
commentId: M:System.Data.Linq.DataContext.CreateMethodCallQuery``1(System.Object,System.Reflection.MethodInfo,System.Object[])
href: https://msdn.microsoft.com/library/bb534261(v=vs.110).aspx
name: CreateMethodCallQuery
name.vb: CreateMethodCallQuery
fullName: DataContext.CreateMethodCallQuery
fullName.vb: DataContext.CreateMethodCallQuery
- uid: System.Data.Linq.IMultipleResults.GetResult*
commentId: M:System.Data.Linq.IMultipleResults.GetResult``1
href: https://msdn.microsoft.com/library/bb534218(v=vs.110).aspx
name: GetResult
name.vb: GetResult
fullName: IMultipleResults.GetResult
fullName.vb: IMultipleResults.GetResult
- uid: System.Data.Objects.DataClasses.RelationshipManager.InitializeRelatedCollection*
commentId: M:System.Data.Objects.DataClasses.RelationshipManager.InitializeRelatedCollection``1(System.String,System.String,System.Data.Objects.DataClasses.EntityCollection{``0})
href: https://msdn.microsoft.com/library/cc679591(v=vs.110).aspx
name: InitializeRelatedCollection
name.vb: InitializeRelatedCollection
fullName: RelationshipManager.InitializeRelatedCollection
fullName.vb: RelationshipManager.InitializeRelatedCollection
- uid: System.Data.Objects.DataClasses.RelationshipManager.InitializeRelatedReference*
commentId: M:System.Data.Objects.DataClasses.RelationshipManager.InitializeRelatedReference``1(System.String,System.String,System.Data.Objects.DataClasses.EntityReference{``0})
href: https://msdn.microsoft.com/library/bb896364(v=vs.110).aspx
name: InitializeRelatedReference
name.vb: InitializeRelatedReference
fullName: RelationshipManager.InitializeRelatedReference
fullName.vb: RelationshipManager.InitializeRelatedReference
- uid: System.Data.Objects.ObjectContext.ApplyCurrentValues*
commentId: M:System.Data.Objects.ObjectContext.ApplyCurrentValues``1(System.String,``0)
href: https://msdn.microsoft.com/library/dd487246(v=vs.110).aspx
name: ApplyCurrentValues
name.vb: ApplyCurrentValues
fullName: ObjectContext.ApplyCurrentValues
fullName.vb: ObjectContext.ApplyCurrentValues
- uid: System.Data.Objects.ObjectContext.ApplyOriginalValues*
commentId: M:System.Data.Objects.ObjectContext.ApplyOriginalValues``1(System.String,``0)
href: https://msdn.microsoft.com/library/dd487216(v=vs.110).aspx
name: ApplyOriginalValues
name.vb: ApplyOriginalValues
fullName: ObjectContext.ApplyOriginalValues
fullName.vb: ObjectContext.ApplyOriginalValues
- uid: System.Data.Objects.ObjectContext.CreateObject*
commentId: M:System.Data.Objects.ObjectContext.CreateObject``1
href: https://msdn.microsoft.com/library/dd487204(v=vs.110).aspx
name: CreateObject
name.vb: CreateObject
fullName: ObjectContext.CreateObject
fullName.vb: ObjectContext.CreateObject
- uid: System.Data.Objects.ObjectContext.CreateQuery*
commentId: M:System.Data.Objects.ObjectContext.CreateQuery``1(System.String,System.Data.Objects.ObjectParameter[])
href: https://msdn.microsoft.com/library/bb339670(v=vs.110).aspx
name: CreateQuery
name.vb: CreateQuery
fullName: ObjectContext.CreateQuery
fullName.vb: ObjectContext.CreateQuery
- uid: System.Data.Objects.ObjectContext.ExecuteStoreQuery*
commentId: Overload:System.Data.Objects.ObjectContext.ExecuteStoreQuery
href: https://msdn.microsoft.com/library/system.data.objects.objectcontext.executestorequery(v=vs.110).aspx
name: ExecuteStoreQuery
name.vb: ExecuteStoreQuery
fullName: ObjectContext.ExecuteStoreQuery
fullName.vb: ObjectContext.ExecuteStoreQuery
- uid: System.Data.Objects.ObjectContext.Translate*
commentId: Overload:System.Data.Objects.ObjectContext.Translate
href: https://msdn.microsoft.com/library/system.data.objects.objectcontext.translate(v=vs.110).aspx
name: Translate
name.vb: Translate
fullName: ObjectContext.Translate
fullName.vb: ObjectContext.Translate
- uid: System.Data.Services.Client.DataServiceContext.BeginExecute*
commentId: Overload:System.Data.Services.Client.DataServiceContext.BeginExecute
href: https://msdn.microsoft.com/library/system.data.services.client.dataservicecontext.beginexecute(v=vs.110).aspx
name: BeginExecute
name.vb: BeginExecute
fullName: DataServiceContext.BeginExecute
fullName.vb: DataServiceContext.BeginExecute
- uid: System.Data.Services.Client.DataServiceContext.CreateQuery*
commentId: M:System.Data.Services.Client.DataServiceContext.CreateQuery``1(System.String)
href: https://msdn.microsoft.com/library/cc679540(v=vs.110).aspx
name: CreateQuery
name.vb: CreateQuery
fullName: DataServiceContext.CreateQuery
fullName.vb: DataServiceContext.CreateQuery
- uid: System.Data.Services.Client.DataServiceContext.EndExecute*
commentId: M:System.Data.Services.Client.DataServiceContext.EndExecute``1(System.IAsyncResult)
href: https://msdn.microsoft.com/library/cc646771(v=vs.110).aspx
name: EndExecute
name.vb: EndExecute
fullName: DataServiceContext.EndExecute
fullName.vb: DataServiceContext.EndExecute
- uid: System.Data.Services.Client.DataServiceContext.Execute*
commentId: Overload:System.Data.Services.Client.DataServiceContext.Execute
href: https://msdn.microsoft.com/library/system.data.services.client.dataservicecontext.execute(v=vs.110).aspx
name: Execute
name.vb: Execute
fullName: DataServiceContext.Execute
fullName.vb: DataServiceContext.Execute
- uid: System.Data.SqlClient.SqlDataReader.GetFieldValue*
commentId: M:System.Data.SqlClient.SqlDataReader.GetFieldValue``1(System.Int32)
href: https://msdn.microsoft.com/library/hh485652(v=vs.110).aspx
name: GetFieldValue
name.vb: GetFieldValue
fullName: SqlDataReader.GetFieldValue
fullName.vb: SqlDataReader.GetFieldValue
- uid: System.Data.SqlClient.SqlDataReader.GetFieldValueAsync*
commentId: Overload:System.Data.SqlClient.SqlDataReader.GetFieldValueAsync
href: https://msdn.microsoft.com/library/system.data.sqlclient.sqldatareader.getfieldvalueasync(v=vs.110).aspx
name: GetFieldValueAsync
name.vb: GetFieldValueAsync
fullName: SqlDataReader.GetFieldValueAsync
fullName.vb: SqlDataReader.GetFieldValueAsync
- uid: System.Data.TypedTableBaseExtensions.AsEnumerable*
commentId: M:System.Data.TypedTableBaseExtensions.AsEnumerable``1(System.Data.TypedTableBase{``0})
href: https://msdn.microsoft.com/library/bb907896(v=vs.110).aspx
name: AsEnumerable
name.vb: AsEnumerable
fullName: TypedTableBaseExtensions.AsEnumerable
fullName.vb: TypedTableBaseExtensions.AsEnumerable
- uid: System.Diagnostics.Contracts.Contract.EnsuresOnThrow*
commentId: Overload:System.Diagnostics.Contracts.Contract.EnsuresOnThrow
href: https://msdn.microsoft.com/library/system.diagnostics.contracts.contract.ensuresonthrow(v=vs.110).aspx
name: EnsuresOnThrow
name.vb: EnsuresOnThrow
fullName: Contract.EnsuresOnThrow
fullName.vb: Contract.EnsuresOnThrow
- uid: System.Diagnostics.Contracts.Contract.OldValue*
commentId: M:System.Diagnostics.Contracts.Contract.OldValue``1(``0)
href: https://msdn.microsoft.com/library/dd412857(v=vs.110).aspx
name: OldValue
name.vb: OldValue
fullName: Contract.OldValue
fullName.vb: Contract.OldValue
- uid: System.Diagnostics.Contracts.Contract.ValueAtReturn*
commentId: M:System.Diagnostics.Contracts.Contract.ValueAtReturn``1(``0@)
href: https://msdn.microsoft.com/library/dd412864(v=vs.110).aspx
name: ValueAtReturn
name.vb: ValueAtReturn
fullName: Contract.ValueAtReturn
fullName.vb: Contract.ValueAtReturn
- uid: System.Diagnostics.PresentationTraceSources.TraceLevel*
commentId: P:System.Diagnostics.PresentationTraceSources.TraceLevel
href: https://msdn.microsoft.com/library/system.diagnostics.presentationtracesources.tracelevel(v=vs.110).aspx
name: TraceLevel
name.vb: TraceLevel
fullName: PresentationTraceSources.TraceLevel
fullName.vb: PresentationTraceSources.TraceLevel
- uid: System.EnterpriseServices
commentId: N:System.EnterpriseServices
href: https://msdn.microsoft.com/en-us/library/system.enterpriseservices(v=vs.110).aspx
name: System.EnterpriseServices
name.vb: System.EnterpriseServices
fullName: System.EnterpriseServices
fullName.vb: System.EnterpriseServices
- uid: System.EnterpriseServices.ContextUtil
commentId: T:System.EnterpriseServices.ContextUtil
href: https://msdn.microsoft.com/en-us/library/system.enterpriseservices.contextutil(v=vs.110).aspx
name: ContextUtil
name.vb: ContextUtil
fullName: System.EnterpriseServices.ContextUtil
fullName.vb: System.EnterpriseServices.ContextUtil
- uid: System.EnterpriseServices.ContextUtil.Transaction*
commentId: P:System.EnterpriseServices.ContextUtil.Transaction
href: https://msdn.microsoft.com/en-us/library/bc1h35sf(v=vs.110).aspx
name: Transaction
name.vb: Transaction
fullName: ContextUtil.Transaction
fullName.vb: ContextUtil.Transaction
- uid: System.EnterpriseServices.Internal.IComSoapPublisher.RegisterAssembly*
commentId: M:System.EnterpriseServices.Internal.IComSoapPublisher.RegisterAssembly(System.String)
href: https://msdn.microsoft.com/en-us/library/ks34tht8(v=vs.110).aspx
name: RegisterAssembly
name.vb: RegisterAssembly
fullName: IComSoapPublisher.RegisterAssembly
fullName.vb: IComSoapPublisher.RegisterAssembly
- uid: System.EnterpriseServices.Internal.IComSoapPublisher.UnRegisterAssembly*
commentId: M:System.EnterpriseServices.Internal.IComSoapPublisher.UnRegisterAssembly(System.String)
href: https://msdn.microsoft.com/en-us/library/yd9k1a66(v=vs.110).aspx
name: UnRegisterAssembly
name.vb: UnRegisterAssembly
fullName: IComSoapPublisher.UnRegisterAssembly
fullName.vb: IComSoapPublisher.UnRegisterAssembly
- uid: System.EnterpriseServices.Internal.Publish.GacRemove*
commentId: M:System.EnterpriseServices.Internal.Publish.GacRemove(System.String)
href: https://msdn.microsoft.com/en-us/library/hebdhws2(v=vs.110).aspx
name: GacRemove
name.vb: GacRemove
fullName: Publish.GacRemove
fullName.vb: Publish.GacRemove
- uid: System.EnterpriseServices.MustRunInClientContextAttribute
commentId: T:System.EnterpriseServices.MustRunInClientContextAttribute
href: https://msdn.microsoft.com/en-us/library/system.enterpriseservices.mustruninclientcontextattribute(v=vs.110).aspx
name: MustRunInClientContextAttribute
name.vb: MustRunInClientContextAttribute
fullName: System.EnterpriseServices.MustRunInClientContextAttribute
fullName.vb: System.EnterpriseServices.MustRunInClientContextAttribute
- uid: System.EnterpriseServices.ObjectPoolingAttribute
commentId: T:System.EnterpriseServices.ObjectPoolingAttribute
href: https://msdn.microsoft.com/en-us/library/system.enterpriseservices.objectpoolingattribute(v=vs.110).aspx
name: ObjectPoolingAttribute
name.vb: ObjectPoolingAttribute
fullName: System.EnterpriseServices.ObjectPoolingAttribute
fullName.vb: System.EnterpriseServices.ObjectPoolingAttribute
- uid: System.EnterpriseServices.ObjectPoolingAttribute.CreationTimeout*
commentId: P:System.EnterpriseServices.ObjectPoolingAttribute.CreationTimeout
href: https://msdn.microsoft.com/en-us/library/1dyyf9w5(v=vs.110).aspx
name: CreationTimeout
name.vb: CreationTimeout
fullName: ObjectPoolingAttribute.CreationTimeout
fullName.vb: ObjectPoolingAttribute.CreationTimeout
- uid: System.EnterpriseServices.ObjectPoolingAttribute.MaxPoolSize*
commentId: P:System.EnterpriseServices.ObjectPoolingAttribute.MaxPoolSize
href: https://msdn.microsoft.com/en-us/library/b8k8w1kx(v=vs.110).aspx
name: MaxPoolSize
name.vb: MaxPoolSize
fullName: ObjectPoolingAttribute.MaxPoolSize
fullName.vb: ObjectPoolingAttribute.MaxPoolSize
- uid: System.EnterpriseServices.ObjectPoolingAttribute.MinPoolSize*
commentId: P:System.EnterpriseServices.ObjectPoolingAttribute.MinPoolSize
href: https://msdn.microsoft.com/en-us/library/2z1b3k17(v=vs.110).aspx
name: MinPoolSize
name.vb: MinPoolSize
fullName: ObjectPoolingAttribute.MinPoolSize
fullName.vb: ObjectPoolingAttribute.MinPoolSize
- uid: System.EnterpriseServices.RegistrationHelperTx
commentId: T:System.EnterpriseServices.RegistrationHelperTx
href: https://msdn.microsoft.com/en-us/library/system.enterpriseservices.registrationhelpertx(v=vs.110).aspx
name: RegistrationHelperTx
name.vb: RegistrationHelperTx
fullName: System.EnterpriseServices.RegistrationHelperTx
fullName.vb: System.EnterpriseServices.RegistrationHelperTx
- uid: System.EnterpriseServices.ServicedComponent
commentId: T:System.EnterpriseServices.ServicedComponent
href: https://msdn.microsoft.com/en-us/library/system.enterpriseservices.servicedcomponent(v=vs.110).aspx
name: ServicedComponent
name.vb: ServicedComponent
fullName: System.EnterpriseServices.ServicedComponent
fullName.vb: System.EnterpriseServices.ServicedComponent
- uid: System.EnterpriseServices.SynchronizationAttribute
commentId: T:System.EnterpriseServices.SynchronizationAttribute
href: https://msdn.microsoft.com/en-us/library/system.enterpriseservices.synchronizationattribute(v=vs.110).aspx
name: SynchronizationAttribute
name.vb: SynchronizationAttribute
fullName: System.EnterpriseServices.SynchronizationAttribute
fullName.vb: System.EnterpriseServices.SynchronizationAttribute
- uid: System.Enum.TryParse*
commentId: Overload:System.Enum.TryParse
href: https://msdn.microsoft.com/library/system.enum.tryparse(v=vs.110).aspx
name: TryParse
name.vb: TryParse
fullName: Enum.TryParse
fullName.vb: Enum.TryParse
- uid: System.IdentityModel.Selectors.SecurityTokenRequirement.GetProperty*
commentId: M:System.IdentityModel.Selectors.SecurityTokenRequirement.GetProperty``1(System.String)
href: https://msdn.microsoft.com/library/ms569899(v=vs.110).aspx
name: GetProperty
name.vb: GetProperty
fullName: SecurityTokenRequirement.GetProperty
fullName.vb: SecurityTokenRequirement.GetProperty
- uid: System.IdentityModel.Services.FederatedAuthentication.GetHttpModule*
commentId: M:System.IdentityModel.Services.FederatedAuthentication.GetHttpModule``1
href: https://msdn.microsoft.com/library/hh551718(v=vs.110).aspx
name: GetHttpModule
name.vb: GetHttpModule
fullName: FederatedAuthentication.GetHttpModule
fullName.vb: FederatedAuthentication.GetHttpModule
- uid: System.IdentityModel.Tokens.GenericXmlSecurityToken.CreateKeyIdentifierClause*
commentId: M:System.IdentityModel.Tokens.GenericXmlSecurityToken.CreateKeyIdentifierClause``1
href: https://msdn.microsoft.com/library/aa344232(v=vs.110).aspx
name: CreateKeyIdentifierClause
name.vb: CreateKeyIdentifierClause
fullName: GenericXmlSecurityToken.CreateKeyIdentifierClause
fullName.vb: GenericXmlSecurityToken.CreateKeyIdentifierClause
- uid: System.IdentityModel.Tokens.KerberosReceiverSecurityToken.CanCreateKeyIdentifierClause*
commentId: M:System.IdentityModel.Tokens.KerberosReceiverSecurityToken.CanCreateKeyIdentifierClause``1
href: https://msdn.microsoft.com/library/ms569966(v=vs.110).aspx
name: CanCreateKeyIdentifierClause
name.vb: CanCreateKeyIdentifierClause
fullName: KerberosReceiverSecurityToken.CanCreateKeyIdentifierClause
fullName.vb: KerberosReceiverSecurityToken.CanCreateKeyIdentifierClause
- uid: System.IdentityModel.Tokens.KerberosReceiverSecurityToken.CreateKeyIdentifierClause*
commentId: M:System.IdentityModel.Tokens.KerberosReceiverSecurityToken.CreateKeyIdentifierClause``1
href: https://msdn.microsoft.com/library/ms569967(v=vs.110).aspx
name: CreateKeyIdentifierClause
name.vb: CreateKeyIdentifierClause
fullName: KerberosReceiverSecurityToken.CreateKeyIdentifierClause
fullName.vb: KerberosReceiverSecurityToken.CreateKeyIdentifierClause
- uid: System.IdentityModel.Tokens.KerberosRequestorSecurityToken.CanCreateKeyIdentifierClause*
commentId: M:System.IdentityModel.Tokens.KerberosRequestorSecurityToken.CanCreateKeyIdentifierClause``1
href: https://msdn.microsoft.com/library/ms569970(v=vs.110).aspx
name: CanCreateKeyIdentifierClause
name.vb: CanCreateKeyIdentifierClause
fullName: KerberosRequestorSecurityToken.CanCreateKeyIdentifierClause
fullName.vb: KerberosRequestorSecurityToken.CanCreateKeyIdentifierClause
- uid: System.IdentityModel.Tokens.KerberosRequestorSecurityToken.CreateKeyIdentifierClause*
commentId: M:System.IdentityModel.Tokens.KerberosRequestorSecurityToken.CreateKeyIdentifierClause``1
href: https://msdn.microsoft.com/library/ms569971(v=vs.110).aspx
name: CreateKeyIdentifierClause
name.vb: CreateKeyIdentifierClause
fullName: KerberosRequestorSecurityToken.CreateKeyIdentifierClause
fullName.vb: KerberosRequestorSecurityToken.CreateKeyIdentifierClause
- uid: System.IdentityModel.Tokens.RsaSecurityToken.CanCreateKeyIdentifierClause*
commentId: M:System.IdentityModel.Tokens.RsaSecurityToken.CanCreateKeyIdentifierClause``1
href: https://msdn.microsoft.com/library/ms570160(v=vs.110).aspx
name: CanCreateKeyIdentifierClause
name.vb: CanCreateKeyIdentifierClause
fullName: RsaSecurityToken.CanCreateKeyIdentifierClause
fullName.vb: RsaSecurityToken.CanCreateKeyIdentifierClause
- uid: System.IdentityModel.Tokens.RsaSecurityToken.CreateKeyIdentifierClause*
commentId: M:System.IdentityModel.Tokens.RsaSecurityToken.CreateKeyIdentifierClause``1
href: https://msdn.microsoft.com/library/ms570161(v=vs.110).aspx
name: CreateKeyIdentifierClause
name.vb: CreateKeyIdentifierClause
fullName: RsaSecurityToken.CreateKeyIdentifierClause
fullName.vb: RsaSecurityToken.CreateKeyIdentifierClause
- uid: System.IdentityModel.Tokens.Saml2SecurityToken.CanCreateKeyIdentifierClause*
commentId: M:System.IdentityModel.Tokens.Saml2SecurityToken.CanCreateKeyIdentifierClause``1
href: https://msdn.microsoft.com/library/hh137784(v=vs.110).aspx
name: CanCreateKeyIdentifierClause
name.vb: CanCreateKeyIdentifierClause
fullName: Saml2SecurityToken.CanCreateKeyIdentifierClause
fullName.vb: Saml2SecurityToken.CanCreateKeyIdentifierClause
- uid: System.IdentityModel.Tokens.SamlSecurityToken.CanCreateKeyIdentifierClause*
commentId: M:System.IdentityModel.Tokens.SamlSecurityToken.CanCreateKeyIdentifierClause``1
href: https://msdn.microsoft.com/library/ms570214(v=vs.110).aspx
name: CanCreateKeyIdentifierClause
name.vb: CanCreateKeyIdentifierClause
fullName: SamlSecurityToken.CanCreateKeyIdentifierClause
fullName.vb: SamlSecurityToken.CanCreateKeyIdentifierClause
- uid: System.IdentityModel.Tokens.SecurityToken.CanCreateKeyIdentifierClause*
commentId: M:System.IdentityModel.Tokens.SecurityToken.CanCreateKeyIdentifierClause``1
href: https://msdn.microsoft.com/library/ms570597(v=vs.110).aspx
name: CanCreateKeyIdentifierClause
name.vb: CanCreateKeyIdentifierClause
fullName: SecurityToken.CanCreateKeyIdentifierClause
fullName.vb: SecurityToken.CanCreateKeyIdentifierClause
- uid: System.IdentityModel.Tokens.SecurityToken.CreateKeyIdentifierClause*
commentId: M:System.IdentityModel.Tokens.SecurityToken.CreateKeyIdentifierClause``1
href: https://msdn.microsoft.com/library/ms570598(v=vs.110).aspx
name: CreateKeyIdentifierClause
name.vb: CreateKeyIdentifierClause
fullName: SecurityToken.CreateKeyIdentifierClause
fullName.vb: SecurityToken.CreateKeyIdentifierClause
- uid: System.IdentityModel.Tokens.X509SecurityToken.CreateKeyIdentifierClause*
commentId: M:System.IdentityModel.Tokens.X509SecurityToken.CreateKeyIdentifierClause``1
href: https://msdn.microsoft.com/library/ms570640(v=vs.110).aspx
name: CreateKeyIdentifierClause
name.vb: CreateKeyIdentifierClause
fullName: X509SecurityToken.CreateKeyIdentifierClause
fullName.vb: X509SecurityToken.CreateKeyIdentifierClause
- uid: System.Linq.Enumerable.Aggregate*
commentId: Overload:System.Linq.Enumerable.Aggregate
href: https://msdn.microsoft.com/library/system.linq.enumerable.aggregate(v=vs.110).aspx
name: Aggregate
name.vb: Aggregate
fullName: Enumerable.Aggregate
fullName.vb: Enumerable.Aggregate
- uid: System.Linq.Enumerable.All*
commentId: M:System.Linq.Enumerable.All``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean})
href: https://msdn.microsoft.com/library/bb548541(v=vs.110).aspx
name: All
name.vb: All
fullName: Enumerable.All
fullName.vb: Enumerable.All
- uid: System.Linq.Enumerable.Any*
commentId: Overload:System.Linq.Enumerable.Any
href: https://msdn.microsoft.com/library/system.linq.enumerable.any(v=vs.110).aspx
name: Any
name.vb: Any
fullName: Enumerable.Any
fullName.vb: Enumerable.Any
- uid: System.Linq.Enumerable.AsEnumerable*
commentId: M:System.Linq.Enumerable.AsEnumerable``1(System.Collections.Generic.IEnumerable{``0})
href: https://msdn.microsoft.com/library/bb335435(v=vs.110).aspx
name: AsEnumerable
name.vb: AsEnumerable
fullName: Enumerable.AsEnumerable
fullName.vb: Enumerable.AsEnumerable
- uid: System.Linq.Enumerable.Cast*
commentId: M:System.Linq.Enumerable.Cast``1(System.Collections.IEnumerable)
href: https://msdn.microsoft.com/library/bb341406(v=vs.110).aspx
name: Cast
name.vb: Cast
fullName: Enumerable.Cast
fullName.vb: Enumerable.Cast
- uid: System.Linq.Enumerable.Concat*
commentId: M:System.Linq.Enumerable.Concat``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})
href: https://msdn.microsoft.com/library/bb302894(v=vs.110).aspx
name: Concat
name.vb: Concat
fullName: Enumerable.Concat
fullName.vb: Enumerable.Concat
- uid: System.Linq.Enumerable.Contains*
commentId: Overload:System.Linq.Enumerable.Contains
href: https://msdn.microsoft.com/library/system.linq.enumerable.contains(v=vs.110).aspx
name: Contains
name.vb: Contains
fullName: Enumerable.Contains
fullName.vb: Enumerable.Contains
- uid: System.Linq.Enumerable.Count*
commentId: Overload:System.Linq.Enumerable.Count
href: https://msdn.microsoft.com/library/system.linq.enumerable.count(v=vs.110).aspx
name: Count
name.vb: Count
fullName: Enumerable.Count
fullName.vb: Enumerable.Count
- uid: System.Linq.Enumerable.DefaultIfEmpty*
commentId: Overload:System.Linq.Enumerable.DefaultIfEmpty
href: https://msdn.microsoft.com/library/system.linq.enumerable.defaultifempty(v=vs.110).aspx
name: DefaultIfEmpty
name.vb: DefaultIfEmpty
fullName: Enumerable.DefaultIfEmpty
fullName.vb: Enumerable.DefaultIfEmpty
- uid: System.Linq.Enumerable.Distinct*
commentId: Overload:System.Linq.Enumerable.Distinct
href: https://msdn.microsoft.com/library/system.linq.enumerable.distinct(v=vs.110).aspx
name: Distinct
name.vb: Distinct
fullName: Enumerable.Distinct
fullName.vb: Enumerable.Distinct
- uid: System.Linq.Enumerable.ElementAt*
commentId: M:System.Linq.Enumerable.ElementAt``1(System.Collections.Generic.IEnumerable{``0},System.Int32)
href: https://msdn.microsoft.com/library/bb299233(v=vs.110).aspx
name: ElementAt
name.vb: ElementAt
fullName: Enumerable.ElementAt
fullName.vb: Enumerable.ElementAt
- uid: System.Linq.Enumerable.ElementAtOrDefault*
commentId: M:System.Linq.Enumerable.ElementAtOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Int32)
href: https://msdn.microsoft.com/library/bb494386(v=vs.110).aspx
name: ElementAtOrDefault
name.vb: ElementAtOrDefault
fullName: Enumerable.ElementAtOrDefault
fullName.vb: Enumerable.ElementAtOrDefault
- uid: System.Linq.Enumerable.Empty*
commentId: M:System.Linq.Enumerable.Empty``1
href: https://msdn.microsoft.com/library/bb341042(v=vs.110).aspx
name: Empty
name.vb: Empty
fullName: Enumerable.Empty
fullName.vb: Enumerable.Empty
- uid: System.Linq.Enumerable.Except*
commentId: Overload:System.Linq.Enumerable.Except
href: https://msdn.microsoft.com/library/system.linq.enumerable.except(v=vs.110).aspx
name: Except
name.vb: Except
fullName: Enumerable.Except
fullName.vb: Enumerable.Except
- uid: System.Linq.Enumerable.First*
commentId: Overload:System.Linq.Enumerable.First
href: https://msdn.microsoft.com/library/system.linq.enumerable.first(v=vs.110).aspx
name: First
name.vb: First
fullName: Enumerable.First
fullName.vb: Enumerable.First
- uid: System.Linq.Enumerable.FirstOrDefault*
commentId: Overload:System.Linq.Enumerable.FirstOrDefault
href: https://msdn.microsoft.com/library/system.linq.enumerable.firstordefault(v=vs.110).aspx
name: FirstOrDefault
name.vb: FirstOrDefault
fullName: Enumerable.FirstOrDefault
fullName.vb: Enumerable.FirstOrDefault
- uid: System.Linq.Enumerable.GroupBy*
commentId: Overload:System.Linq.Enumerable.GroupBy
href: https://msdn.microsoft.com/library/system.linq.enumerable.groupby(v=vs.110).aspx
name: GroupBy
name.vb: GroupBy
fullName: Enumerable.GroupBy
fullName.vb: Enumerable.GroupBy
- uid: System.Linq.Enumerable.GroupJoin*
commentId: Overload:System.Linq.Enumerable.GroupJoin
href: https://msdn.microsoft.com/library/system.linq.enumerable.groupjoin(v=vs.110).aspx
name: GroupJoin
name.vb: GroupJoin
fullName: Enumerable.GroupJoin
fullName.vb: Enumerable.GroupJoin
- uid: System.Linq.Enumerable.Intersect*
commentId: Overload:System.Linq.Enumerable.Intersect
href: https://msdn.microsoft.com/library/system.linq.enumerable.intersect(v=vs.110).aspx
name: Intersect
name.vb: Intersect
fullName: Enumerable.Intersect
fullName.vb: Enumerable.Intersect
- uid: System.Linq.Enumerable.Join*
commentId: Overload:System.Linq.Enumerable.Join
href: https://msdn.microsoft.com/library/system.linq.enumerable.join(v=vs.110).aspx
name: Join
name.vb: Join
fullName: Enumerable.Join
fullName.vb: Enumerable.Join
- uid: System.Linq.Enumerable.Last*
commentId: Overload:System.Linq.Enumerable.Last
href: https://msdn.microsoft.com/library/system.linq.enumerable.last(v=vs.110).aspx
name: Last
name.vb: Last
fullName: Enumerable.Last
fullName.vb: Enumerable.Last
- uid: System.Linq.Enumerable.LastOrDefault*
commentId: Overload:System.Linq.Enumerable.LastOrDefault
href: https://msdn.microsoft.com/library/system.linq.enumerable.lastordefault(v=vs.110).aspx
name: LastOrDefault
name.vb: LastOrDefault
fullName: Enumerable.LastOrDefault
fullName.vb: Enumerable.LastOrDefault
- uid: System.Linq.Enumerable.LongCount*
commentId: Overload:System.Linq.Enumerable.LongCount
href: https://msdn.microsoft.com/library/system.linq.enumerable.longcount(v=vs.110).aspx
name: LongCount
name.vb: LongCount
fullName: Enumerable.LongCount
fullName.vb: Enumerable.LongCount
- uid: System.Linq.Enumerable.OfType*
commentId: M:System.Linq.Enumerable.OfType``1(System.Collections.IEnumerable)
href: https://msdn.microsoft.com/library/bb360913(v=vs.110).aspx
name: OfType
name.vb: OfType
fullName: Enumerable.OfType
fullName.vb: Enumerable.OfType
- uid: System.Linq.Enumerable.OrderBy*
commentId: Overload:System.Linq.Enumerable.OrderBy
href: https://msdn.microsoft.com/library/system.linq.enumerable.orderby(v=vs.110).aspx
name: OrderBy
name.vb: OrderBy
fullName: Enumerable.OrderBy
fullName.vb: Enumerable.OrderBy
- uid: System.Linq.Enumerable.OrderByDescending*
commentId: Overload:System.Linq.Enumerable.OrderByDescending
href: https://msdn.microsoft.com/library/system.linq.enumerable.orderbydescending(v=vs.110).aspx
name: OrderByDescending
name.vb: OrderByDescending
fullName: Enumerable.OrderByDescending
fullName.vb: Enumerable.OrderByDescending
- uid: System.Linq.Enumerable.Repeat*
commentId: M:System.Linq.Enumerable.Repeat``1(``0,System.Int32)
href: https://msdn.microsoft.com/library/bb348899(v=vs.110).aspx
name: Repeat
name.vb: Repeat
fullName: Enumerable.Repeat
fullName.vb: Enumerable.Repeat
- uid: System.Linq.Enumerable.Reverse*
commentId: M:System.Linq.Enumerable.Reverse``1(System.Collections.Generic.IEnumerable{``0})
href: https://msdn.microsoft.com/library/bb358497(v=vs.110).aspx
name: Reverse
name.vb: Reverse
fullName: Enumerable.Reverse
fullName.vb: Enumerable.Reverse
- uid: System.Linq.Enumerable.Select*
commentId: Overload:System.Linq.Enumerable.Select
href: https://msdn.microsoft.com/library/system.linq.enumerable.select(v=vs.110).aspx
name: Select
name.vb: Select
fullName: Enumerable.Select
fullName.vb: Enumerable.Select
- uid: System.Linq.Enumerable.SelectMany*
commentId: Overload:System.Linq.Enumerable.SelectMany
href: https://msdn.microsoft.com/library/system.linq.enumerable.selectmany(v=vs.110).aspx
name: SelectMany
name.vb: SelectMany
fullName: Enumerable.SelectMany
fullName.vb: Enumerable.SelectMany
- uid: System.Linq.Enumerable.SequenceEqual*
commentId: Overload:System.Linq.Enumerable.SequenceEqual
href: https://msdn.microsoft.com/library/system.linq.enumerable.sequenceequal(v=vs.110).aspx
name: SequenceEqual
name.vb: SequenceEqual
fullName: Enumerable.SequenceEqual
fullName.vb: Enumerable.SequenceEqual
- uid: System.Linq.Enumerable.Single*
commentId: Overload:System.Linq.Enumerable.Single
href: https://msdn.microsoft.com/library/system.linq.enumerable.single(v=vs.110).aspx
name: Single
name.vb: Single
fullName: Enumerable.Single
fullName.vb: Enumerable.Single
- uid: System.Linq.Enumerable.SingleOrDefault*
commentId: Overload:System.Linq.Enumerable.SingleOrDefault
href: https://msdn.microsoft.com/library/system.linq.enumerable.singleordefault(v=vs.110).aspx
name: SingleOrDefault
name.vb: SingleOrDefault
fullName: Enumerable.SingleOrDefault
fullName.vb: Enumerable.SingleOrDefault
- uid: System.Linq.Enumerable.Skip*
commentId: M:System.Linq.Enumerable.Skip``1(System.Collections.Generic.IEnumerable{``0},System.Int32)
href: https://msdn.microsoft.com/library/bb358985(v=vs.110).aspx
name: Skip
name.vb: Skip
fullName: Enumerable.Skip
fullName.vb: Enumerable.Skip
- uid: System.Linq.Enumerable.SkipWhile*
commentId: Overload:System.Linq.Enumerable.SkipWhile
href: https://msdn.microsoft.com/library/system.linq.enumerable.skipwhile(v=vs.110).aspx
name: SkipWhile
name.vb: SkipWhile
fullName: Enumerable.SkipWhile
fullName.vb: Enumerable.SkipWhile
- uid: System.Linq.Enumerable.Take*
commentId: M:System.Linq.Enumerable.Take``1(System.Collections.Generic.IEnumerable{``0},System.Int32)
href: https://msdn.microsoft.com/library/bb503062(v=vs.110).aspx
name: Take
name.vb: Take
fullName: Enumerable.Take
fullName.vb: Enumerable.Take
- uid: System.Linq.Enumerable.TakeWhile*
commentId: Overload:System.Linq.Enumerable.TakeWhile
href: https://msdn.microsoft.com/library/system.linq.enumerable.takewhile(v=vs.110).aspx
name: TakeWhile
name.vb: TakeWhile
fullName: Enumerable.TakeWhile
fullName.vb: Enumerable.TakeWhile
- uid: System.Linq.Enumerable.ThenBy*
commentId: Overload:System.Linq.Enumerable.ThenBy
href: https://msdn.microsoft.com/library/system.linq.enumerable.thenby(v=vs.110).aspx
name: ThenBy
name.vb: ThenBy
fullName: Enumerable.ThenBy
fullName.vb: Enumerable.ThenBy
- uid: System.Linq.Enumerable.ThenByDescending*
commentId: Overload:System.Linq.Enumerable.ThenByDescending
href: https://msdn.microsoft.com/library/system.linq.enumerable.thenbydescending(v=vs.110).aspx
name: ThenByDescending
name.vb: ThenByDescending
fullName: Enumerable.ThenByDescending
fullName.vb: Enumerable.ThenByDescending
- uid: System.Linq.Enumerable.ToArray*
commentId: M:System.Linq.Enumerable.ToArray``1(System.Collections.Generic.IEnumerable{``0})
href: https://msdn.microsoft.com/library/bb298736(v=vs.110).aspx
name: ToArray
name.vb: ToArray
fullName: Enumerable.ToArray
fullName.vb: Enumerable.ToArray
- uid: System.Linq.Enumerable.ToDictionary*
commentId: Overload:System.Linq.Enumerable.ToDictionary
href: https://msdn.microsoft.com/library/system.linq.enumerable.todictionary(v=vs.110).aspx
name: ToDictionary
name.vb: ToDictionary
fullName: Enumerable.ToDictionary
fullName.vb: Enumerable.ToDictionary
- uid: System.Linq.Enumerable.ToList*
commentId: M:System.Linq.Enumerable.ToList``1(System.Collections.Generic.IEnumerable{``0})
href: https://msdn.microsoft.com/library/bb342261(v=vs.110).aspx
name: ToList
name.vb: ToList
fullName: Enumerable.ToList
fullName.vb: Enumerable.ToList
- uid: System.Linq.Enumerable.ToLookup*
commentId: Overload:System.Linq.Enumerable.ToLookup
href: https://msdn.microsoft.com/library/system.linq.enumerable.tolookup(v=vs.110).aspx
name: ToLookup
name.vb: ToLookup
fullName: Enumerable.ToLookup
fullName.vb: Enumerable.ToLookup
- uid: System.Linq.Enumerable.Union*
commentId: Overload:System.Linq.Enumerable.Union
href: https://msdn.microsoft.com/library/system.linq.enumerable.union(v=vs.110).aspx
name: Union
name.vb: Union
fullName: Enumerable.Union
fullName.vb: Enumerable.Union
- uid: System.Linq.Enumerable.Where*
commentId: Overload:System.Linq.Enumerable.Where
href: https://msdn.microsoft.com/library/system.linq.enumerable.where(v=vs.110).aspx
name: Where
name.vb: Where
fullName: Enumerable.Where
fullName.vb: Enumerable.Where
- uid: System.Linq.Enumerable.Zip*
commentId: M:System.Linq.Enumerable.Zip``3(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``1,``2})
href: https://msdn.microsoft.com/library/dd267698(v=vs.110).aspx
name: Zip
name.vb: Zip
fullName: Enumerable.Zip
fullName.vb: Enumerable.Zip
- uid: System.Linq.ParallelEnumerable.Aggregate*
commentId: Overload:System.Linq.ParallelEnumerable.Aggregate
href: https://msdn.microsoft.com/library/system.linq.parallelenumerable.aggregate(v=vs.110).aspx
name: Aggregate
name.vb: Aggregate
fullName: ParallelEnumerable.Aggregate
fullName.vb: ParallelEnumerable.Aggregate
- uid: System.Linq.ParallelEnumerable.All*
commentId: M:System.Linq.ParallelEnumerable.All``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Boolean})
href: https://msdn.microsoft.com/library/dd383720(v=vs.110).aspx
name: All
name.vb: All
fullName: ParallelEnumerable.All
fullName.vb: ParallelEnumerable.All
- uid: System.Linq.ParallelEnumerable.Any*
commentId: Overload:System.Linq.ParallelEnumerable.Any
href: https://msdn.microsoft.com/library/system.linq.parallelenumerable.any(v=vs.110).aspx
name: Any
name.vb: Any
fullName: ParallelEnumerable.Any
fullName.vb: ParallelEnumerable.Any
- uid: System.Linq.ParallelEnumerable.AsEnumerable*
commentId: M:System.Linq.ParallelEnumerable.AsEnumerable``1(System.Linq.ParallelQuery{``0})
href: https://msdn.microsoft.com/library/dd413587(v=vs.110).aspx
name: AsEnumerable
name.vb: AsEnumerable
fullName: ParallelEnumerable.AsEnumerable
fullName.vb: ParallelEnumerable.AsEnumerable
- uid: System.Linq.ParallelEnumerable.AsSequential*
commentId: M:System.Linq.ParallelEnumerable.AsSequential``1(System.Linq.ParallelQuery{``0})
href: https://msdn.microsoft.com/library/dd383949(v=vs.110).aspx
name: AsSequential
name.vb: AsSequential
fullName: ParallelEnumerable.AsSequential
fullName.vb: ParallelEnumerable.AsSequential
- uid: System.Linq.ParallelEnumerable.AsUnordered*
commentId: M:System.Linq.ParallelEnumerable.AsUnordered``1(System.Linq.ParallelQuery{``0})
href: https://msdn.microsoft.com/library/dd383653(v=vs.110).aspx
name: AsUnordered
name.vb: AsUnordered
fullName: ParallelEnumerable.AsUnordered
fullName.vb: ParallelEnumerable.AsUnordered
- uid: System.Linq.ParallelEnumerable.Cast*
commentId: M:System.Linq.ParallelEnumerable.Cast``1(System.Linq.ParallelQuery)
href: https://msdn.microsoft.com/library/dd383842(v=vs.110).aspx
name: Cast
name.vb: Cast
fullName: ParallelEnumerable.Cast
fullName.vb: ParallelEnumerable.Cast
- uid: System.Linq.ParallelEnumerable.Concat*
commentId: Overload:System.Linq.ParallelEnumerable.Concat
href: https://msdn.microsoft.com/library/system.linq.parallelenumerable.concat(v=vs.110).aspx
name: Concat
name.vb: Concat
fullName: ParallelEnumerable.Concat
fullName.vb: ParallelEnumerable.Concat
- uid: System.Linq.ParallelEnumerable.Count*
commentId: Overload:System.Linq.ParallelEnumerable.Count
href: https://msdn.microsoft.com/library/system.linq.parallelenumerable.count(v=vs.110).aspx
name: Count
name.vb: Count
fullName: ParallelEnumerable.Count
fullName.vb: ParallelEnumerable.Count
- uid: System.Linq.ParallelEnumerable.DefaultIfEmpty*
commentId: Overload:System.Linq.ParallelEnumerable.DefaultIfEmpty
href: https://msdn.microsoft.com/library/system.linq.parallelenumerable.defaultifempty(v=vs.110).aspx
name: DefaultIfEmpty
name.vb: DefaultIfEmpty
fullName: ParallelEnumerable.DefaultIfEmpty
fullName.vb: ParallelEnumerable.DefaultIfEmpty
- uid: System.Linq.ParallelEnumerable.Distinct*
commentId: Overload:System.Linq.ParallelEnumerable.Distinct
href: https://msdn.microsoft.com/library/system.linq.parallelenumerable.distinct(v=vs.110).aspx
name: Distinct
name.vb: Distinct
fullName: ParallelEnumerable.Distinct
fullName.vb: ParallelEnumerable.Distinct
- uid: System.Linq.ParallelEnumerable.ElementAt*
commentId: M:System.Linq.ParallelEnumerable.ElementAt``1(System.Linq.ParallelQuery{``0},System.Int32)
href: https://msdn.microsoft.com/library/dd383982(v=vs.110).aspx
name: ElementAt
name.vb: ElementAt
fullName: ParallelEnumerable.ElementAt
fullName.vb: ParallelEnumerable.ElementAt
- uid: System.Linq.ParallelEnumerable.ElementAtOrDefault*
commentId: M:System.Linq.ParallelEnumerable.ElementAtOrDefault``1(System.Linq.ParallelQuery{``0},System.Int32)
href: https://msdn.microsoft.com/library/dd384169(v=vs.110).aspx
name: ElementAtOrDefault
name.vb: ElementAtOrDefault
fullName: ParallelEnumerable.ElementAtOrDefault
fullName.vb: ParallelEnumerable.ElementAtOrDefault
- uid: System.Linq.ParallelEnumerable.Except*
commentId: Overload:System.Linq.ParallelEnumerable.Except
href: https://msdn.microsoft.com/library/system.linq.parallelenumerable.except(v=vs.110).aspx
name: Except
name.vb: Except
fullName: ParallelEnumerable.Except
fullName.vb: ParallelEnumerable.Except
- uid: System.Linq.ParallelEnumerable.First*
commentId: Overload:System.Linq.ParallelEnumerable.First
href: https://msdn.microsoft.com/library/system.linq.parallelenumerable.first(v=vs.110).aspx
name: First
name.vb: First
fullName: ParallelEnumerable.First
fullName.vb: ParallelEnumerable.First
- uid: System.Linq.ParallelEnumerable.FirstOrDefault*
commentId: Overload:System.Linq.ParallelEnumerable.FirstOrDefault
href: https://msdn.microsoft.com/library/system.linq.parallelenumerable.firstordefault(v=vs.110).aspx
name: FirstOrDefault
name.vb: FirstOrDefault
fullName: ParallelEnumerable.FirstOrDefault
fullName.vb: ParallelEnumerable.FirstOrDefault
- uid: System.Linq.ParallelEnumerable.ForAll*
commentId: M:System.Linq.ParallelEnumerable.ForAll``1(System.Linq.ParallelQuery{``0},System.Action{``0})
href: https://msdn.microsoft.com/library/dd383744(v=vs.110).aspx