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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
|
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Data.OracleClient</name>
</assembly>
<members>
<member name="E:System.Data.OracleClient.OracleConnection.InfoMessage">
<summary>Occurs when Oracle sends a warning or an informational message.</summary>
</member>
<member name="E:System.Data.OracleClient.OracleDataAdapter.RowUpdated">
<summary>Occurs during an update operation after a command is executed against the database.</summary>
</member>
<member name="E:System.Data.OracleClient.OracleDataAdapter.RowUpdating">
<summary>Occurs during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> before a command is executed against the data source.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleBFile.Null">
<summary>Represents a null <see cref="T:System.Data.OracleClient.OracleBFile" /> object that is not bound to a physical file.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleBinary.Null">
<summary>Represents a null value that can be assigned to the <see cref="P:System.Data.OracleClient.OracleBinary.Value" /> property of an <see cref="T:System.Data.OracleClient.OracleBinary" /> structure.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleBoolean.False">
<summary>Represents a false value that can be assigned to the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> property of an instance of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleBoolean.Null">
<summary>Represents a null value that can be assigned to the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> property of an instance of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleBoolean.One">
<summary>Represents a value of one that can be assigned to the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> property of an instance of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleBoolean.True">
<summary>Represents a true value that can be assigned to the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> property of an instance of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleBoolean.Zero">
<summary>Represents a value of zero that can be assigned to the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> property of an instance of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleClientFactory.Instance">
<summary>Gets an instance of the <see cref="T:System.Data.OracleClient.OracleClientFactory" />, which can be used to retrieve strongly typed data objects.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleDateTime.MaxValue">
<summary>Represents the maximum valid date value for an <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleDateTime.MinValue">
<summary>Represents the minimum valid date value for an <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleDateTime.Null">
<summary>Represents a null value that can be assigned to the <see cref="P:System.Data.OracleClient.OracleDateTime.Value" /> property of an instance of the <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleLob.Null">
<summary>Represents a null <see cref="T:System.Data.OracleClient.OracleLob" /> object.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleMonthSpan.MaxValue">
<summary>Represents the maximum valid date value for an <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleMonthSpan.MinValue">
<summary>Represents the minimum valid date value for an <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleMonthSpan.Null">
<summary>Represents a null value that can be assigned to the <see cref="P:System.Data.OracleClient.OracleMonthSpan.Value" /> property of an instance of the <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleNumber.E">
<summary>Returns the value e-2.718.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleNumber.MaxPrecision">
<summary>A constant representing the largest possible value for precision comparison.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleNumber.MaxScale">
<summary>A constant representing the maximum value for scale comparison.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleNumber.MaxValue">
<summary>A constant representing the maximum value of an <see cref="T:System.Data.OracleClient.OracleNumber" /> structure.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleNumber.MinScale">
<summary>A constant representing the minimum value for scale comparison.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleNumber.MinusOne">
<summary>Returns the value -1.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleNumber.MinValue">
<summary>A constant representing the minimum value for an <see cref="T:System.Data.OracleClient.OracleNumber" /> structure.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleNumber.Null">
<summary>Represents a null value that can be assigned to the <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> property of an instance of the <see cref="T:System.Data.OracleClient.OracleNumber" /> class.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleNumber.One">
<summary>Returns the value 1.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleNumber.PI">
<summary>Returns the value of pi-3.1415926535897932384626433832795028842.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleNumber.Zero">
<summary>Returns the value 0.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleString.Empty">
<summary>Represents an empty string that can be assigned to the <see cref="P:System.Data.OracleClient.OracleString.Value" /> property of an instance of the <see cref="T:System.Data.OracleClient.OracleString" /> structure.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleString.Null">
<summary>Represents a null value that can be assigned to the <see cref="P:System.Data.OracleClient.OracleString.Value" /> property of an instance of the <see cref="T:System.Data.OracleClient.OracleString" /> structure.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleTimeSpan.MaxValue">
<summary>Represents the maximum valid date value for an <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleTimeSpan.MinValue">
<summary>Represents the minimum valid date value for an <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleTimeSpan.Null">
<summary>Represents a null value that can be assigned to the <see cref="P:System.Data.OracleClient.OracleTimeSpan.Value" /> property of an instance of the <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure.</summary>
</member>
<member name="M:System.Data.OracleClient.OracleBFile.Clone">
<summary>Creates a copy of this <see cref="T:System.Data.OracleClient.OracleBFile" /> object associated with the same physical file as the original.</summary>
<returns>A new <see cref="T:System.Data.OracleClient.OracleBFile" /> object associated with the same physical file as the original <see langword="OracleBFile" /> object.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBFile.CopyTo(System.Data.OracleClient.OracleLob)">
<summary>Copies the entire contents of this <see cref="T:System.Data.OracleClient.OracleBFile" /> to the beginning of a destination <see cref="T:System.Data.OracleClient.OracleLob" />.</summary>
<param name="destination">The destination <see cref="T:System.Data.OracleClient.OracleLob" /></param>
<returns>The number of bytes copied.</returns>
<exception cref="T:System.ArgumentNullException">The destination <see langword="OracleLob" /> is a null object reference. </exception>
<exception cref="T:System.InvalidOperationException">The destination is a null <see langword="OracleLob" />.-or- The connection with which this <see langword="OracleBFile" /> is associated is closed. </exception>
<exception cref="T:System.ObjectDisposedException">The <see langword="OracleBFile" /> object is closed or disposed. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleBFile.CopyTo(System.Data.OracleClient.OracleLob,System.Int64)">
<summary>Copies the entire contents of this <see cref="T:System.Data.OracleClient.OracleBFile" /> to a destination <see cref="T:System.Data.OracleClient.OracleLob" /> at the specified offset.</summary>
<param name="destination">The destination <see cref="T:System.Data.OracleClient.OracleLob" />. </param>
<param name="destinationOffset">The offset to which to copy. </param>
<returns>The number of bytes copied.</returns>
<exception cref="T:System.ArgumentNullException">The destination <see langword="OracleLob" /> is a null object reference. </exception>
<exception cref="T:System.InvalidOperationException">The destination is a null <see langword="OracleLob" />.-or- The connection with which this <see langword="OracleBFile" /> is associated is closed. </exception>
<exception cref="T:System.ObjectDisposedException">The <see langword="OracleBFile" /> object is closed or disposed. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleBFile.CopyTo(System.Int64,System.Data.OracleClient.OracleLob,System.Int64,System.Int64)">
<summary>Copies from this <see cref="T:System.Data.OracleClient.OracleBFile" /> to a destination <see cref="T:System.Data.OracleClient.OracleLob" /> with the specified amount of data, the source offset, and the destination offset.</summary>
<param name="sourceOffset">The offset from which to copy. </param>
<param name="destination">The destination <see cref="T:System.Data.OracleClient.OracleLob" />. </param>
<param name="destinationOffset">The offset to which to copy. </param>
<param name="amount">The quantity of data, in bytes, to copy. </param>
<returns>The number of bytes copied.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The value of the amount parameter is less than zero or greater than 4 gigabytes. </exception>
<exception cref="T:System.ArgumentNullException">The destination <see langword="OracleLob" /> is a null object reference. </exception>
<exception cref="T:System.InvalidOperationException">The destination is a null <see langword="OracleLob" />.-or- The connection with which this <see langword="OracleBFile" /> is associated is closed. </exception>
<exception cref="T:System.ObjectDisposedException">The <see langword="OracleBFile" /> object is closed or disposed. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleBFile.Flush">
<summary>Not currently supported.</summary>
</member>
<member name="M:System.Data.OracleClient.OracleBFile.Read(System.Byte[],System.Int32,System.Int32)">
<summary>Reads a sequence of bytes from the current <see cref="T:System.Data.OracleClient.OracleBFile" /> stream and advances the position within the stream by the number of bytes read.</summary>
<param name="buffer">An array of bytes. When this method returns, the buffer contains the specified byte array with the values between <paramref name="offset" /> and (<paramref name="offset" /> + <paramref name="count" />) replaced by the bytes read from the current source. </param>
<param name="offset">The zero-based byte offset in <paramref name="buffer" /> at which to begin storing the data read from the current stream. </param>
<param name="count">The maximum number of bytes to be read from the current stream. </param>
<returns>The total number of bytes read into the buffer. This may be less than the number of bytes requested if that many bytes are not currently available, or zero if the end of the file has been reached.</returns>
<exception cref="T:System.ArgumentException">The sum of <paramref name="offset" /> and <paramref name="count" /> is larger than the buffer length. </exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="buffer" /> is a null reference (<see langword="Nothing" /> in Visual Basic). </exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="offset" /> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.InvalidOperationException">The connection with which a <see langword="BFILE" /> is associated is closed. </exception>
<exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
<exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed or disposed. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleBFile.Seek(System.Int64,System.IO.SeekOrigin)">
<summary>Sets the position on the current <see cref="T:System.Data.OracleClient.OracleBFile" /> stream.</summary>
<param name="offset">A byte offset relative to origin. If <paramref name="offset" /> is negative, the new position will precede the position specified by <paramref name="origin" /> by the number of bytes specified by <paramref name="offset" />. If <paramref name="offset" /> is zero, the new position will be the position specified by <paramref name="origin" />. If <paramref name="offset" /> is positive, the new position will follow the position specified by <paramref name="origin" /> by the number of bytes specified by <paramref name="offset" />. </param>
<param name="origin">A value of type <see langword="System.IO.SeekOrigin" /> indicating the reference point used to obtain the new position. </param>
<returns>The new position within the current stream.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">Attempted to set a position with a negative value or greater than the length of the stream. </exception>
<exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed or disposed. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleBFile.SetFileName(System.String,System.String)">
<summary>Binds the <see cref="T:System.Data.OracleClient.OracleBFile" /> object to a different file in the operating system.</summary>
<param name="directory">The alias of the directory object that contains a physical file. </param>
<param name="file">The name of the file in the operating system. </param>
<exception cref="T:System.InvalidOperationException">The operation must be within a transaction. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleBFile.SetLength(System.Int64)">
<summary>Not currently supported.</summary>
<param name="value">Not currently supported.</param>
<exception cref="T:System.NotSupportedException">The exception that is thrown when an invoked method is not supported, or when there is an attempt to read, seek, or write to a stream that does not support the invoked functionality.</exception>
</member>
<member name="M:System.Data.OracleClient.OracleBFile.Write(System.Byte[],System.Int32,System.Int32)">
<summary>Not currently supported.</summary>
<param name="buffer">Not currently supported.</param>
<param name="offset">Not currently supported.</param>
<param name="count">Not currently supported.</param>
<exception cref="T:System.NotSupportedException">The exception that is thrown when an invoked method is not supported, or when there is an attempt to read, seek, or write to a stream that does not support the invoked functionality.</exception>
</member>
<member name="M:System.Data.OracleClient.OracleBinary.#ctor(System.Byte[])">
<summary>Initializes a new instance of the <see langword="OracleBinary" /> structure, setting the <see cref="P:System.Data.OracleClient.OracleBinary.Value" /> property to the contents of the supplied byte array.</summary>
<param name="b">The byte array to be stored in the <see cref="P:System.Data.OracleClient.OracleBinary.Value" /> property. </param>
</member>
<member name="M:System.Data.OracleClient.OracleBinary.CompareTo(System.Object)">
<summary>Compares this <see cref="T:System.Data.OracleClient.OracleBinary" /> object to the supplied object and returns an indication of their relative values.</summary>
<param name="obj">The object to be compared to this <see langword="OracleBinary" /> structure. </param>
<returns>A signed number indicating the relative values of this <see langword="OracleBinary" /> structure and the object.Return Value Condition Less than zero The value of this <see langword="OracleBinary" /> object is less than the object. Zero This <see langword="OracleBinary" /> object is the same as the object. Greater than zero This <see langword="OracleBinary" /> object is greater than the object.-or- The object is a null reference. </returns>
</member>
<member name="M:System.Data.OracleClient.OracleBinary.Concat(System.Data.OracleClient.OracleBinary,System.Data.OracleClient.OracleBinary)">
<summary>Concatenates two <see cref="T:System.Data.OracleClient.OracleBinary" /> structures to create a new <see langword="OracleBinary" /> structure.</summary>
<param name="x">An <see langword="OracleBinary" /> structure. </param>
<param name="y">An <see langword="OracleBinary" /> structure. </param>
<returns>An <see langword="OracleBinary" /> structure with the concatenated values of the <paramref name="x" /> and <paramref name="y" /> parameters.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBinary.Equals(System.Data.OracleClient.OracleBinary,System.Data.OracleClient.OracleBinary)">
<summary>Compares two <see cref="T:System.Data.OracleClient.OracleBinary" /> structures to determine if they are equal.</summary>
<param name="x">An <see langword="OracleBinary" /> structure. </param>
<param name="y">An <see langword="OracleBinary" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.OracleClient.OracleBoolean.False" /> if the two instances are not equal. If either instance of <see langword="OracleBinary" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see langword="OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBinary.Equals(System.Object)">
<summary>Compares the supplied object parameter to the <see cref="P:System.Data.OracleClient.OracleBinary.Value" /> property of the <see cref="T:System.Data.OracleClient.OracleBinary" /> object.</summary>
<param name="value">The object to be compared. </param>
<returns>
<see langword="true" /> if object is an instance of <see cref="T:System.Data.OracleClient.OracleBinary" /> and the two are equal; otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBinary.GetHashCode">
<summary>Returns the hash code for this <see cref="T:System.Data.OracleClient.OracleBinary" /> structure.</summary>
<returns>A 32-bit signed integer hash code.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBinary.GreaterThan(System.Data.OracleClient.OracleBinary,System.Data.OracleClient.OracleBinary)">
<summary>Compares two <see cref="T:System.Data.OracleClient.OracleBinary" /> structures to determine if the first is greater than the second.</summary>
<param name="x">An <see langword="OracleBinary" /> structure. </param>
<param name="y">An <see langword="OracleBinary" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is greater than the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see langword="OracleBinary" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see langword="OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBinary.GreaterThanOrEqual(System.Data.OracleClient.OracleBinary,System.Data.OracleClient.OracleBinary)">
<summary>Compares two <see cref="T:System.Data.OracleClient.OracleBinary" /> structures to determine if the first is greater than or equal to the second.</summary>
<param name="x">An <see langword="OracleBinary" /> structure. </param>
<param name="y">An <see langword="OracleBinary" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is greater than or equal to the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see langword="OracleBinary" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see langword="OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBinary.LessThan(System.Data.OracleClient.OracleBinary,System.Data.OracleClient.OracleBinary)">
<summary>Compares two <see cref="T:System.Data.OracleClient.OracleBinary" /> structures to determine if the first is less than the second.</summary>
<param name="x">An <see langword="OracleBinary" /> structure. </param>
<param name="y">An <see langword="OracleBinary" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see langword="OracleBinary" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see langword="OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBinary.LessThanOrEqual(System.Data.OracleClient.OracleBinary,System.Data.OracleClient.OracleBinary)">
<summary>Compares two <see cref="T:System.Data.OracleClient.OracleBinary" /> structures to determine if the first is less than or equal to the second.</summary>
<param name="x">An <see langword="OracleBinary" /> structure. </param>
<param name="y">An <see langword="OracleBinary" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than or equal to the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see langword="OracleBinary" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see langword="OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBinary.NotEquals(System.Data.OracleClient.OracleBinary,System.Data.OracleClient.OracleBinary)">
<summary>Compares two <see cref="T:System.Data.OracleClient.OracleBinary" /> structures to determine if they are not equal.</summary>
<param name="x">An <see langword="OracleBinary" /> structure. </param>
<param name="y">An <see langword="OracleBinary" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.OracleClient.OracleBoolean.False" /> if the two instances are equal. If either instance of <see langword="OracleBinary" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see langword="OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBinary.op_Addition(System.Data.OracleClient.OracleBinary,System.Data.OracleClient.OracleBinary)">
<summary>Concatenates the two <see cref="T:System.Data.OracleClient.OracleBinary" /> parameters to create a new <see langword="OracleBinary" /> structure.</summary>
<param name="x">An <see langword="OracleBinary" /> object. </param>
<param name="y">An <see langword="OracleBinary" /> object. </param>
<returns>The concatenated values of the <paramref name="x" /> and <paramref name="y" /> parameters.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBinary.op_Equality(System.Data.OracleClient.OracleBinary,System.Data.OracleClient.OracleBinary)">
<summary>Compares two <see cref="T:System.Data.OracleClient.OracleBinary" /> structures to determine if they are equal.</summary>
<param name="x">An <see langword="OracleBinary" /> object. </param>
<param name="y">An <see langword="OracleBinary" /> object. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.OracleClient.OracleBoolean.False" /> if the two instances are not equal. If either instance of <see langword="OracleBinary" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see langword="OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBinary.op_Explicit(System.Data.OracleClient.OracleBinary)~System.Byte[]">
<summary>Gets the contents of the <see cref="P:System.Data.OracleClient.OracleBinary.Value" /> property of the <see cref="T:System.Data.OracleClient.OracleBinary" /> parameter as an array of bytes.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleBinary" />. </param>
<returns>An array of bytes.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBinary.op_GreaterThan(System.Data.OracleClient.OracleBinary,System.Data.OracleClient.OracleBinary)">
<summary>Compares two <see cref="T:System.Data.OracleClient.OracleBinary" /> structures to determine if the first is greater than the second.</summary>
<param name="x">An <see langword="OracleBinary" /> object. </param>
<param name="y">An <see langword="OracleBinary" /> object. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is greater than the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see langword="OracleBinary" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see langword="OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBinary.op_GreaterThanOrEqual(System.Data.OracleClient.OracleBinary,System.Data.OracleClient.OracleBinary)">
<summary>Compares two <see cref="T:System.Data.OracleClient.OracleBinary" /> structures to determine if the first is greater than or equal to the second.</summary>
<param name="x">An <see langword="OracleBinary" /> object. </param>
<param name="y">An <see langword="OracleBinary" /> object. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is greater than or equal to the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see langword="OracleBinary" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see langword="OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBinary.op_Implicit(System.Byte[])~System.Data.OracleClient.OracleBinary">
<summary>Converts an array of bytes to an <see cref="T:System.Data.OracleClient.OracleBinary" /> structure.</summary>
<param name="b">The array of bytes to be converted. </param>
<returns>An <see langword="OracleBinary" /> structure that represents the converted array of bytes.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBinary.op_Inequality(System.Data.OracleClient.OracleBinary,System.Data.OracleClient.OracleBinary)">
<summary>Compares two <see cref="T:System.Data.OracleClient.OracleBinary" /> structures to determine if they are equal.</summary>
<param name="x">An <see langword="OracleBinary" /> object. </param>
<param name="y">An <see langword="OracleBinary" /> object. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.OracleClient.OracleBoolean.False" /> if the two instances are equal. If either instance of <see langword="OracleBinary" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see langword="OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBinary.op_LessThan(System.Data.OracleClient.OracleBinary,System.Data.OracleClient.OracleBinary)">
<summary>Compares two <see cref="T:System.Data.OracleClient.OracleBinary" /> structures to determine if the first is less than the second.</summary>
<param name="x">An <see langword="OracleBinary" /> object. </param>
<param name="y">An <see langword="OracleBinary" /> object. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see langword="OracleBinary" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see langword="OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBinary.op_LessThanOrEqual(System.Data.OracleClient.OracleBinary,System.Data.OracleClient.OracleBinary)">
<summary>Compares two <see cref="T:System.Data.OracleClient.OracleBinary" /> structures to determine if the first is less than or equal to the second.</summary>
<param name="x">An <see langword="OracleBinary" /> object. </param>
<param name="y">An <see langword="OracleBinary" /> object. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than or equal to the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see langword="OracleBinary" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see langword="OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.#ctor(System.Boolean)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure using the specified <see langword="Boolean" />.</summary>
<param name="value">The <see langword="Boolean" /> to be used as the initial value of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure. </param>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.#ctor(System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure using the specified integer.</summary>
<param name="value">The <see langword="integer" /> to be used as the initial value of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure. </param>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.And(System.Data.OracleClient.OracleBoolean,System.Data.OracleClient.OracleBoolean)">
<summary>Computes the bitwise AND of two specified <see cref="T:System.Data.OracleClient.OracleBoolean" /> structures.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure. </param>
<returns>The result of the logical AND operation as shown in the following table.Value of <paramref name="x" />Value of <paramref name="y" />Result
<see langword="true" />
<see langword="true" />
<see langword="true" />
<see langword="true" />
<see langword="false" />
<see langword="false" />
<see langword="false" />
<see langword="false" />
<see langword="false" />
<see langword="true" />
<see langword="unknown" />
<see langword="unknown" />
<see langword="false" />
<see langword="unknown" />
<see langword="false" />
<see langword="unknown" />
<see langword="unknown" />
<see langword="unknown" />
</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.CompareTo(System.Object)">
<summary>Compares this <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure to a specified object and returns an indication of their relative values.</summary>
<param name="obj">An object to compare, or a null reference (<see langword="Nothing" /> in Visual Basic). </param>
<returns>A signed number indicating the relative values of the instance and value.Value Description A negative integer This instance is less than <paramref name="value" />. Zero This instance is equal to <paramref name="value" />. A positive integer This instance is greater than <paramref name="value" />.-or-
<paramref name="value" /> is a null reference (<see langword="Nothing" /> in Visual Basic). </returns>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.Equals(System.Data.OracleClient.OracleBoolean,System.Data.OracleClient.OracleBoolean)">
<summary>Compares two <see cref="T:System.Data.OracleClient.OracleBoolean" /> structures to determine if they are equal.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.OracleClient.OracleBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.OracleClient.OracleBoolean" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.Equals(System.Object)">
<summary>Compares the supplied object parameter to the <see cref="T:System.Data.OracleClient.OracleBoolean" />.</summary>
<param name="value">The object to be compared. </param>
<returns>
<see langword="true" /> if object is an instance of <see cref="T:System.Data.OracleClient.OracleBoolean" /> and the two are equal; otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.GetHashCode">
<summary>Returns the hash code for this instance.</summary>
<returns>A 32-bit signed integer hash code.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.NotEquals(System.Data.OracleClient.OracleBoolean,System.Data.OracleClient.OracleBoolean)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleBoolean" /> to determine if they are not equal.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.OracleClient.OracleBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.OracleClient.OracleBoolean" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.OnesComplement(System.Data.OracleClient.OracleBoolean)">
<summary>Performs a ones complement operation on the supplied <see cref="T:System.Data.OracleClient.OracleBoolean" /> structures.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure. </param>
<returns>The one's complement of the supplied <see cref="T:System.Data.OracleClient.OracleBoolean" />. If the <see langword="Boolean" /> contains a null value the result also is a null value.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.op_BitwiseAnd(System.Data.OracleClient.OracleBoolean,System.Data.OracleClient.OracleBoolean)">
<summary>Computes the bitwise AND of two specified <see cref="T:System.Data.OracleClient.OracleBoolean" /> structures.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure. </param>
<returns>The result of the logical AND operation as shown in the following table.Value of <paramref name="x" />Value of <paramref name="y" />Result
<see langword="true" />
<see langword="true" />
<see langword="true" />
<see langword="true" />
<see langword="false" />
<see langword="false" />
<see langword="false" />
<see langword="false" />
<see langword="false" />
<see langword="true" />
<see langword="unknown" />
<see langword="unknown" />
<see langword="false" />
<see langword="unknown" />
<see langword="unknown" />
<see langword="unknown" />
<see langword="unknown" />
<see langword="unknown" />
</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.op_BitwiseOr(System.Data.OracleClient.OracleBoolean,System.Data.OracleClient.OracleBoolean)">
<summary>Computes the bitwise OR of its two <see cref="T:System.Data.OracleClient.OracleBoolean" /> operands.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure. </param>
<returns>The result of the bitwise OR operation as shown in the following table.Value of <paramref name="x" />Value of <paramref name="y" />Result
<see langword="true" />
<see langword="true" />
<see langword="true" />
<see langword="true" />
<see langword="false" />
<see langword="true" />
<see langword="false" />
<see langword="false" />
<see langword="false" />
<see langword="true" />
<see langword="unknown" />
<see langword="true" />
<see langword="false" />
<see langword="unknown" />
<see langword="unknown" />
<see langword="unknown" />
<see langword="unknown" />
<see langword="unknown" />
</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.op_Equality(System.Data.OracleClient.OracleBoolean,System.Data.OracleClient.OracleBoolean)">
<summary>Compares two instances of an <see cref="T:System.Data.OracleClient.OracleBoolean" /> for equality.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleBoolean" />. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleBoolean" />. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.OracleClient.OracleBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.OracleClient.OracleBoolean" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.op_ExclusiveOr(System.Data.OracleClient.OracleBoolean,System.Data.OracleClient.OracleBoolean)">
<summary>Performs a bitwise exclusive-OR operation on the supplied <see cref="T:System.Data.OracleClient.OracleBoolean" /> parameters.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure. </param>
<returns>The results of the bitwise XOR operation as shown in the following table.Value of <paramref name="x" />Value of <paramref name="y" />Result
<see langword="true" />
<see langword="true" />
<see langword="false" />
<see langword="true" />
<see langword="false" />
<see langword="true" />
<see langword="false" />
<see langword="false" />
<see langword="false" />
<see langword="true" />
<see langword="unknown" />
<see langword="unknown" />
<see langword="false" />
<see langword="unknown" />
<see langword="unknown" />
<see langword="unknown" />
<see langword="unknown" />
<see langword="unknown" />
</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.op_Explicit(System.Data.OracleClient.OracleBoolean)~System.Boolean">
<summary>Converts an <see cref="T:System.Data.OracleClient.OracleBoolean" /> to a <see langword="Boolean" />.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleBoolean" /> to convert. </param>
<returns>A <see langword="Boolean" /> set to the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" />.</returns>
<exception cref="T:System.NullReferenceException">The <see cref="T:System.Data.OracleClient.OracleBoolean" /> contains a null value. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.op_Explicit(System.Data.OracleClient.OracleNumber)~System.Data.OracleClient.OracleBoolean">
<summary>Converts the <see cref="T:System.Data.OracleClient.OracleNumber" /> parameter to an <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> to be converted to an <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure. </param>
<returns>A new <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure whose value equals the <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> property of the <see cref="T:System.Data.OracleClient.OracleNumber" /> parameter.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.op_Explicit(System.String)~System.Data.OracleClient.OracleBoolean">
<summary>Converts a string to an <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure.</summary>
<param name="x">A string to be converted to an <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure. </param>
<returns>A new <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure whose value equals the <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> of the <see cref="T:System.Data.OracleClient.OracleNumber" /> parameter.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.op_False(System.Data.OracleClient.OracleBoolean)">
<summary>Used to test the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> to determine whether it is false.</summary>
<param name="x">The <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure to be tested. </param>
<returns>
<see langword="true" /> if the supplied parameter <see cref="T:System.Data.OracleClient.OracleBoolean" /> is false; otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.op_Implicit(System.Boolean)~System.Data.OracleClient.OracleBoolean">
<summary>Converts a <see langword="Boolean" /> value to an <see cref="T:System.Data.OracleClient.OracleBoolean" />.</summary>
<param name="x">A <see langword="Boolean" /> value to be converted to <see cref="T:System.Data.OracleClient.OracleBoolean" />. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> value containing 0 or 1.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.op_Inequality(System.Data.OracleClient.OracleBoolean,System.Data.OracleClient.OracleBoolean)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleBoolean" /> for inequality.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleBoolean" />. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleBoolean" />. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.OracleClient.OracleBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.OracleClient.OracleBoolean" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.op_LogicalNot(System.Data.OracleClient.OracleBoolean)">
<summary>Performs a NOT operation on an <see cref="T:System.Data.OracleClient.OracleBoolean" />.</summary>
<param name="x">The <see cref="T:System.Data.OracleClient.OracleBoolean" /> on which the NOT operation is performed. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> with the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /><see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if argument was true, <see cref="F:System.Data.OracleClient.OracleBoolean.Null" /> if argument was null, and <see cref="F:System.Data.OracleClient.OracleBoolean.False" /> otherwise.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.op_OnesComplement(System.Data.OracleClient.OracleBoolean)">
<summary>Performs a one's complement operation on the specified <see cref="T:System.Data.OracleClient.OracleBoolean" />.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure. </param>
<returns>The one's complement of the specified <see cref="T:System.Data.OracleClient.OracleBoolean" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.op_True(System.Data.OracleClient.OracleBoolean)">
<summary>Used to test the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> to determine whether it is true.</summary>
<param name="x">The <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure to be tested. </param>
<returns>
<see langword="true" /> if the supplied parameter <see cref="T:System.Data.OracleClient.OracleBoolean" /> is true; otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.Or(System.Data.OracleClient.OracleBoolean,System.Data.OracleClient.OracleBoolean)">
<summary>Performs a bitwise OR operation on the two specified <see cref="T:System.Data.OracleClient.OracleBoolean" /> structures.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure. </param>
<returns>The result of the bitwise OR operation as shown in the following table.Value of <paramref name="x" />Value of <paramref name="y" />Result
<see langword="true" />
<see langword="true" />
<see langword="true" />
<see langword="true" />
<see langword="false" />
<see langword="true" />
<see langword="false" />
<see langword="false" />
<see langword="false" />
<see langword="true" />
<see langword="unknown" />
<see langword="true" />
<see langword="false" />
<see langword="unknown" />
<see langword="unknown" />
<see langword="unknown" />
<see langword="unknown" />
<see langword="unknown" />
</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.Parse(System.String)">
<summary>Converts the specified <see cref="T:System.String" /> representation of a logical value to its <see cref="T:System.Data.OracleClient.OracleBoolean" /> equivalent.</summary>
<param name="s">The <see cref="T:System.String" /> to be converted. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure containing the parsed value.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.ToString">
<summary>Converts the current <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> to a string.</summary>
<returns>A string containing the value of the <see cref="T:System.Data.OracleClient.OracleBoolean" />. If the value is null, the string contains a null value.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleBoolean.Xor(System.Data.OracleClient.OracleBoolean,System.Data.OracleClient.OracleBoolean)">
<summary>Performs a bitwise exclusive-OR operation on the supplied parameters.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure. </param>
<returns>The results of the logical XOR operation as shown in the following table.Value of <paramref name="x" />Value of <paramref name="y" />Result
<see langword="true" />
<see langword="true" />
<see langword="false" />
<see langword="true" />
<see langword="false" />
<see langword="true" />
<see langword="false" />
<see langword="false" />
<see langword="false" />
<see langword="true" />
<see langword="unknown" />
<see langword="unknown" />
<see langword="false" />
<see langword="unknown" />
<see langword="unknown" />
<see langword="unknown" />
<see langword="unknown" />
<see langword="unknown" />
</returns>
</member>
<member name="M:System.Data.OracleClient.OracleClientFactory.CreateCommand">
<summary>Returns a strongly typed <see cref="T:System.Data.Common.DbCommand" /> instance.</summary>
<returns>A new strongly typed instance of <see cref="T:System.Data.Common.DbCommand" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleClientFactory.CreateCommandBuilder">
<summary>Returns a strongly typed <see cref="T:System.Data.Common.DbCommandBuilder" /> instance.</summary>
<returns>A new strongly typed instance of <see cref="T:System.Data.Common.DbCommandBuilder" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleClientFactory.CreateConnection">
<summary>Returns a strongly typed <see cref="T:System.Data.Common.DbConnection" /> instance.</summary>
<returns>A new strongly typed instance of <see cref="T:System.Data.Common.DbConnection" />. </returns>
</member>
<member name="M:System.Data.OracleClient.OracleClientFactory.CreateConnectionStringBuilder">
<summary>Returns a strongly typed <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance.</summary>
<returns>A new strongly typed instance of <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleClientFactory.CreateDataAdapter">
<summary>Returns a strongly typed <see cref="T:System.Data.Common.DbDataAdapter" /> instance.</summary>
<returns>A new strongly typed instance of <see cref="T:System.Data.Common.DbDataAdapter" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleClientFactory.CreateParameter">
<summary>Returns a strongly typed <see cref="T:System.Data.Common.DbParameter" /> instance.</summary>
<returns>A new strongly typed instance of <see cref="T:System.Data.Common.DbParameter" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleClientFactory.CreatePermission(System.Security.Permissions.PermissionState)">
<summary>Returns a strongly typed <see cref="T:System.Security.CodeAccessPermission" /> instance.</summary>
<param name="state">A member of the <see cref="T:System.Security.Permissions.PermissionState" /> enumeration.</param>
<returns>A strongly typed instance of <see cref="T:System.Security.CodeAccessPermission" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleCommand.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleCommand" />.</summary>
</member>
<member name="M:System.Data.OracleClient.OracleCommand.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleCommand" /> class with the text of the query.</summary>
<param name="commandText">The text of the query. </param>
</member>
<member name="M:System.Data.OracleClient.OracleCommand.#ctor(System.String,System.Data.OracleClient.OracleConnection)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleCommand" /> class with the text of the query and an <see cref="T:System.Data.OracleClient.OracleConnection" /> object.</summary>
<param name="commandText">The text of the query. </param>
<param name="connection">An <see cref="T:System.Data.OracleClient.OracleConnection" /> object that represents the connection to a database. </param>
</member>
<member name="M:System.Data.OracleClient.OracleCommand.#ctor(System.String,System.Data.OracleClient.OracleConnection,System.Data.OracleClient.OracleTransaction)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleCommand" /> class with the text of the query, an <see cref="T:System.Data.OracleClient.OracleConnection" /> object, and an <see cref="T:System.Data.OracleClient.OracleTransaction" />.</summary>
<param name="commandText">The text of the query. </param>
<param name="connection">An <see cref="T:System.Data.OracleClient.OracleConnection" /> object that represents the connection to a database. </param>
<param name="tx">The <see cref="T:System.Data.OracleClient.OracleTransaction" /> in which the <see cref="T:System.Data.OracleClient.OracleCommand" /> executes. </param>
</member>
<member name="M:System.Data.OracleClient.OracleCommand.Cancel">
<summary>Attempts to cancel the execution of an <see cref="T:System.Data.OracleClient.OracleCommand" />.</summary>
</member>
<member name="M:System.Data.OracleClient.OracleCommand.Clone">
<summary>Creates a copy of this <see cref="T:System.Data.OracleClient.OracleCommand" /> object.</summary>
<returns>A new <see cref="T:System.Data.OracleClient.OracleCommand" /> object in which all property values are the same as the original.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleCommand.CreateParameter">
<summary>Creates a new instance of an <see cref="T:System.Data.OracleClient.OracleParameter" /> object.</summary>
<returns>An <see cref="T:System.Data.OracleClient.OracleParameter" /> object.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleCommand.ExecuteNonQuery">
<summary>Executes an SQL statement against the <see cref="P:System.Data.OracleClient.OracleCommand.Connection" /> and returns the number of rows affected.</summary>
<returns>For UPDATE, INSERT, and DELETE statements, the return value is the number of rows affected by the command. For CREATE TABLE and DROP TABLE statements, the return value is 0. For all other types of statements, the return value is -1.</returns>
<exception cref="T:System.InvalidOperationException">The connection does not exist.-or- The connection is not open. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleCommand.ExecuteOracleNonQuery(System.Data.OracleClient.OracleString@)">
<summary>Executes an SQL statement against the <see cref="P:System.Data.OracleClient.OracleCommand.Connection" /> and returns the number of rows affected.</summary>
<param name="rowid">A base64 string representation of the actual row ID in the server. </param>
<returns>For UPDATE, INSERT, and DELETE statements, the return value is the number of rows affected by the command. For CREATE TABLE and DROP TABLE statements, the return value is 0. For all other types of statements, the return value is -1.</returns>
<exception cref="T:System.InvalidOperationException">The connection does not exist.-or- The connection is not open. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleCommand.ExecuteOracleScalar">
<summary>Executes the query, and returns the first column of the first row in the result set returned by the query as an Oracle-specific data type. Extra columns or rows are ignored.</summary>
<returns>The first column of the first row in the result set as an Oracle-specific data type, or a null reference if the result is a <see langword="REF CURSOR" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleCommand.ExecuteReader">
<summary>Sends the <see cref="P:System.Data.OracleClient.OracleCommand.CommandText" /> to the <see cref="P:System.Data.OracleClient.OracleCommand.Connection" /> and builds an <see cref="T:System.Data.OracleClient.OracleDataReader" />.</summary>
<returns>An <see cref="T:System.Data.OracleClient.OracleDataReader" /> object.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleCommand.ExecuteReader(System.Data.CommandBehavior)">
<summary>Sends the <see cref="P:System.Data.OracleClient.OracleCommand.CommandText" /> to the <see cref="P:System.Data.OracleClient.OracleCommand.Connection" />, and builds an <see cref="T:System.Data.OracleClient.OracleDataReader" /> using one of the <see cref="T:System.Data.CommandBehavior" /> values.</summary>
<param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleDataReader" /> object.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleCommand.ExecuteScalar">
<summary>Executes the query, and returns the first column of the first row in the result set returned by the query as a .NET Framework data type. Extra columns or rows are ignored.</summary>
<returns>The first column of the first row in the result set as a .NET Framework data type, or a null reference if the result set is empty or the result is a <see langword="REF CURSOR" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleCommand.Prepare">
<summary>Creates a prepared (or compiled) version of the command at the data source.</summary>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Data.OracleClient.OracleCommand.Connection" /> is not set.-or- The <see cref="P:System.Data.OracleClient.OracleCommand.Connection" /> is not <see cref="M:System.Data.OracleClient.OracleConnection.Open" />. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleCommand.ResetCommandTimeout">
<summary>Resets the <see cref="P:System.Data.OracleClient.OracleCommand.CommandTimeout" /> property to the default value.</summary>
</member>
<member name="M:System.Data.OracleClient.OracleCommandBuilder.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleCommandBuilder" />.</summary>
</member>
<member name="M:System.Data.OracleClient.OracleCommandBuilder.#ctor(System.Data.OracleClient.OracleDataAdapter)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleCommandBuilder" /> class with the associated <see cref="T:System.Data.OracleClient.OracleDataAdapter" /> object.</summary>
<param name="adapter">An <see cref="T:System.Data.OracleClient.OracleDataAdapter" /> object to associate with this <see cref="T:System.Data.OracleClient.OracleCommandBuilder" />. </param>
</member>
<member name="M:System.Data.OracleClient.OracleCommandBuilder.DeriveParameters(System.Data.OracleClient.OracleCommand)">
<summary>Retrieves parameter information from the stored procedure specified in the <see cref="T:System.Data.OracleClient.OracleCommand" /> and populates the <see cref="P:System.Data.OracleClient.OracleCommand.Parameters" /> collection of the specified <see cref="T:System.Data.OracleClient.OracleCommand" /> object.</summary>
<param name="command">The <see cref="T:System.Data.OracleClient.OracleCommand" /> referencing the stored procedure from which the parameter information is to be derived. The derived parameters are added to the <see cref="P:System.Data.OracleClient.OracleCommand.Parameters" /> collection of the <see cref="T:System.Data.OracleClient.OracleCommand" />. </param>
<exception cref="T:System.InvalidOperationException">The command text is not a valid stored procedure name, or the <see cref="T:System.Data.CommandType" /> specified was not <see cref="F:System.Data.CommandType.StoredProcedure" />. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleCommandBuilder.GetDeleteCommand">
<summary>Gets the automatically generated <see cref="T:System.Data.OracleClient.OracleCommand" /> object required to perform deletions on the database.</summary>
<returns>The automatically generated <see cref="T:System.Data.OracleClient.OracleCommand" /> object required to perform deletions.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleCommandBuilder.GetDeleteCommand(System.Boolean)">
<summary>Gets the automatically generated <see cref="T:System.Data.OracleClient.OracleCommand" /> object required to perform deletions on the database.</summary>
<param name="useColumnsForParameterNames">If true, generate parameter names matching column names, if possible. If false, generate @p1, @p2, and so on.</param>
<returns>The automatically generated <see cref="T:System.Data.OracleClient.OracleCommand" /> object required to perform deletions.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleCommandBuilder.GetInsertCommand">
<summary>Gets the automatically generated <see cref="T:System.Data.OracleClient.OracleCommand" /> object required to perform insertions on the database.</summary>
<returns>The automatically generated <see cref="T:System.Data.OracleClient.OracleCommand" /> object required to perform insertions.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleCommandBuilder.GetInsertCommand(System.Boolean)">
<summary>Gets the automatically generated <see cref="T:System.Data.OracleClient.OracleCommand" /> object required to perform insertions on the database.</summary>
<param name="useColumnsForParameterNames">If true, generate parameter names matching column names, if possible. If false, generate @p1, @p2, and so on.</param>
<returns>The automatically generated <see cref="T:System.Data.OracleClient.OracleCommand" /> object required to perform insertions.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleCommandBuilder.GetUpdateCommand">
<summary>Gets the automatically generated <see cref="T:System.Data.OracleClient.OracleCommand" /> object required to perform updates on the database.</summary>
<returns>The automatically generated <see cref="T:System.Data.OracleClient.OracleCommand" /> object required to perform updates.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleCommandBuilder.GetUpdateCommand(System.Boolean)">
<summary>Gets the automatically generated <see cref="T:System.Data.OracleClient.OracleCommand" /> object required to perform updates on the database.</summary>
<param name="useColumnsForParameterNames">If true, generate parameter names matching column names, if possible. If false, generate @p1, @p2, and so on.</param>
<returns>The automatically generated <see cref="T:System.Data.OracleClient.OracleCommand" /> object required to perform updates.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleCommandBuilder.QuoteIdentifier(System.String)">
<summary>Given an unquoted identifier in the correct catalog case, returns the correct quoted form of that identifier, including properly escaping any embedded quotes in the identifier.</summary>
<param name="unquotedIdentifier">The original unquoted identifier.</param>
<returns>The quoted version of the identifier. Embedded quotes within the identifier are properly escaped.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleCommandBuilder.UnquoteIdentifier(System.String)">
<summary>Given a quoted identifier, returns the correct unquoted form of that identifier, including properly un-escaping any embedded quotes in the identifier.</summary>
<param name="quotedIdentifier">The identifier that will have its embedded quotes removed.</param>
<returns>The unquoted identifier, with embedded quotes properly un-escaped.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleConnection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleConnection" />.</summary>
</member>
<member name="M:System.Data.OracleClient.OracleConnection.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleConnection" /> class with the specified connection string.</summary>
<param name="connectionString">The connection used to open the database. </param>
</member>
<member name="M:System.Data.OracleClient.OracleConnection.BeginTransaction">
<summary>Begins a transaction at the database.</summary>
<returns>An object representing the new transaction.</returns>
<exception cref="T:System.InvalidOperationException">Parallel transactions are not supported. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleConnection.BeginTransaction(System.Data.IsolationLevel)">
<summary>Begins a transaction at the database with the specified <see cref="T:System.Data.IsolationLevel" /> value.</summary>
<param name="il">The transaction isolation level for this connection. </param>
<returns>An object representing the new transaction.</returns>
<exception cref="T:System.InvalidOperationException">Parallel transactions are not supported. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleConnection.ChangeDatabase(System.String)">
<summary>Changes the current database for an open <see cref="T:System.Data.OracleClient.OracleConnection" />.</summary>
<param name="value">The name of the database to use instead of the current database. </param>
<exception cref="T:System.ArgumentException">The database name is not valid. </exception>
<exception cref="T:System.InvalidOperationException">The connection is not open. </exception>
<exception cref="T:System.Data.OracleClient.OracleException">Cannot change the database. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleConnection.ClearAllPools">
<summary>Empties the connection pool.</summary>
</member>
<member name="M:System.Data.OracleClient.OracleConnection.ClearPool(System.Data.OracleClient.OracleConnection)">
<summary>Empties the connection pool associated with the specified connection.</summary>
<param name="connection">The <see cref="T:System.Data.OracleClient.OracleConnection" /> to be cleared from the pool.</param>
</member>
<member name="M:System.Data.OracleClient.OracleConnection.Close">
<summary>Closes the connection to the database. </summary>
</member>
<member name="M:System.Data.OracleClient.OracleConnection.CreateCommand">
<summary>Creates and returns an <see cref="T:System.Data.OracleClient.OracleCommand" /> object associated with the <see cref="T:System.Data.OracleClient.OracleConnection" />.</summary>
<returns>An <see cref="T:System.Data.OracleClient.OracleCommand" /> object.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleConnection.EnlistDistributedTransaction(System.EnterpriseServices.ITransaction)">
<summary>Enlists in the specified transaction as a distributed transaction.</summary>
<param name="distributedTransaction">A reference to an existing <see cref="T:System.EnterpriseServices.ITransaction" /> in which to enlist.</param>
</member>
<member name="M:System.Data.OracleClient.OracleConnection.EnlistTransaction(System.Transactions.Transaction)">
<summary>Enlists in the specified transaction as a distributed transaction.</summary>
<param name="transaction">A reference to an existing <see cref="T:System.Transactions.Transaction" /> in which to enlist.</param>
</member>
<member name="M:System.Data.OracleClient.OracleConnection.GetSchema">
<summary>Returns schema information for the data source of this <see cref="T:System.Data.OracleClient.OracleConnection" />.</summary>
<returns>A <see cref="T:System.Data.DataTable" /> that contains schema information.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleConnection.GetSchema(System.String)">
<summary>Returns schema information for the data source of this <see cref="T:System.Data.OracleClient.OracleConnection" /> using the specified string for the schema name.</summary>
<param name="collectionName">Specifies the name of the schema to return.</param>
<returns>A <see cref="T:System.Data.DataTable" /> that contains schema information.</returns>
<exception cref="T:System.ArgumentException">
<paramref name="collectionName" /> is specified as null.</exception>
</member>
<member name="M:System.Data.OracleClient.OracleConnection.GetSchema(System.String,System.String[])">
<summary>Returns schema information for the data source of this <see cref="T:System.Data.OracleClient.OracleConnection" /> using the specified string for the schema name and the specified string array for the restriction values.</summary>
<param name="collectionName">Specifies the name of the schema to return.</param>
<param name="restrictionValues">A set of restriction values for the requested schema.</param>
<returns>A <see cref="T:System.Data.DataTable" /> that contains schema information.</returns>
<exception cref="T:System.ArgumentException">
<paramref name="collectionName" /> is specified as null.</exception>
</member>
<member name="M:System.Data.OracleClient.OracleConnection.Open">
<summary>Opens a connection to a database with the property settings specified by the <see cref="P:System.Data.OracleClient.OracleConnection.ConnectionString" />.</summary>
<exception cref="T:System.InvalidOperationException">The connection is not open. </exception>
<exception cref="T:System.Data.OracleClient.OracleException">Cannot change the database. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleConnection.System#ICloneable#Clone">
<summary>Creates a new object that is a copy of the current instance.</summary>
<returns>A new object that is a copy of this instance..</returns>
</member>
<member name="M:System.Data.OracleClient.OracleConnectionStringBuilder.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleConnectionStringBuilder" /> class.</summary>
</member>
<member name="M:System.Data.OracleClient.OracleConnectionStringBuilder.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleConnectionStringBuilder" /> class. The provided connection string provides the data for the instance's internal connection information.</summary>
<param name="connectionString">The basis for the object's internal connection information. Parsed into name/value pairs. Invalid key names raise a <see cref="T:System.Collections.Generic.KeyNotFoundException" />.</param>
<exception cref="T:System.Collections.Generic.KeyNotFoundException">Invalid key name within the connection string.</exception>
<exception cref="T:System.FormatException">Invalid value within the connection string (specifically, when a Boolean or numeric value was expected but not supplied).</exception>
</member>
<member name="M:System.Data.OracleClient.OracleConnectionStringBuilder.Clear">
<summary>Clears the contents of the <see cref="T:System.Data.OracleClient.OracleConnectionStringBuilder" /> instance.</summary>
</member>
<member name="M:System.Data.OracleClient.OracleConnectionStringBuilder.ContainsKey(System.String)">
<summary>Determines whether the <see cref="T:System.Data.OracleClient.OracleConnectionStringBuilder" /> contains a specific key.</summary>
<param name="keyword">The key to locate in the <see cref="T:System.Data.OracleClient.OracleConnectionStringBuilder" />.</param>
<returns>
<see langword="true" /> if the <see cref="T:System.Data.OracleClient.OracleConnectionStringBuilder" /> contains an element that has the specified key; otherwise, <see langword="false" />.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="keyword" /> is null (<see langword="Nothing" /> in Visual Basic)</exception>
</member>
<member name="M:System.Data.OracleClient.OracleConnectionStringBuilder.Remove(System.String)">
<summary>Removes the entry with the specified key from the <see cref="T:System.Data.OracleClient.OracleConnectionStringBuilder" /> instance.</summary>
<param name="keyword">The key of the key/value pair to be removed from the connection string in this <see cref="T:System.Data.OracleClient.OracleConnectionStringBuilder" />.</param>
<returns>
<see langword="true" /> if the key existed within the connection string and was removed, <see langword="false" /> if the key did not exist.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="keyword" /> is null (<see langword="Nothing" /> in Visual Basic).</exception>
</member>
<member name="M:System.Data.OracleClient.OracleConnectionStringBuilder.ShouldSerialize(System.String)">
<summary>Indicates whether the specified key exists in this <see cref="T:System.Data.OracleClient.OracleConnectionStringBuilder" /> instance.</summary>
<param name="keyword">The key to locate in the <see cref="T:System.Data.OracleClient.OracleConnectionStringBuilder" />.</param>
<returns>
<see langword="true" /> if the <see cref="T:System.Data.OracleClient.OracleConnectionStringBuilder" /> contains an entry with the specified key; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleConnectionStringBuilder.TryGetValue(System.String,System.Object@)">
<summary>Retrieves a value corresponding to the supplied key from this <see cref="T:System.Data.OracleClient.OracleConnectionStringBuilder" />.</summary>
<param name="keyword">The key of the item to retrieve.</param>
<param name="value">The value corresponding to <paramref name="keyword." /></param>
<returns>
<see langword="true" /> if <paramref name="keyword" /> was found within the connection string; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDataAdapter.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleDataAdapter" /> class.</summary>
</member>
<member name="M:System.Data.OracleClient.OracleDataAdapter.#ctor(System.Data.OracleClient.OracleCommand)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleDataAdapter" /> class with the specified SQL SELECT statement.</summary>
<param name="selectCommand">An <see cref="T:System.Data.OracleClient.OracleCommand" /> that is an SQL SELECT statement or stored procedure, and is set as the <see cref="P:System.Data.OracleClient.OracleDataAdapter.SelectCommand" /> property of the <see cref="T:System.Data.OracleClient.OracleDataAdapter" />. </param>
</member>
<member name="M:System.Data.OracleClient.OracleDataAdapter.#ctor(System.String,System.Data.OracleClient.OracleConnection)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleDataAdapter" /> class with an SQL SELECT statement and an <see cref="T:System.Data.OracleClient.OracleConnection" />.</summary>
<param name="selectCommandText">A string that is an SQL SELECT statement or stored procedure to be used by the <see cref="P:System.Data.OracleClient.OracleDataAdapter.SelectCommand" /> property of the <see cref="T:System.Data.OracleClient.OracleDataAdapter" />. </param>
<param name="selectConnection">An <see cref="T:System.Data.OracleClient.OracleConnection" /> that represents the connection. </param>
</member>
<member name="M:System.Data.OracleClient.OracleDataAdapter.#ctor(System.String,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleDataAdapter" /> class with an SQL SELECT statement and a connection string.</summary>
<param name="selectCommandText">A string that is an SQL SELECT statement or stored procedure to be used by the <see cref="P:System.Data.OracleClient.OracleDataAdapter.SelectCommand" /> property of the <see cref="T:System.Data.OracleClient.OracleDataAdapter" />. </param>
<param name="selectConnectionString">The connection string. </param>
</member>
<member name="M:System.Data.OracleClient.OracleDataAdapter.System#ICloneable#Clone">
<summary>For a description of this member, see <see cref="M:System.ICloneable.Clone" />.</summary>
<returns>A new object that is a copy of this instance. </returns>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.Close">
<summary>Closes the <see cref="T:System.Data.OracleClient.OracleDataReader" /> object.</summary>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetBoolean(System.Int32)">
<summary>Gets the value of the specified column as a Boolean.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>A Boolean that is the value of the column.</returns>
<exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetByte(System.Int32)">
<summary>Gets the value of the specified column as a byte.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>The value of the specified column as a byte.</returns>
<exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
<summary>Reads a stream of bytes from the specified column offset into the buffer as an array, starting at the given buffer offset.</summary>
<param name="i">The zero-based column ordinal. </param>
<param name="fieldOffset">The index within the field where the read operation is to begin. </param>
<param name="buffer2">The buffer into which to read the stream of bytes. </param>
<param name="bufferoffset">The index where <paramref name="buffer" /> is to begin the write operation. </param>
<param name="length">The number of bytes to read. </param>
<returns>The actual number of bytes read.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetChar(System.Int32)">
<summary>Gets the value of the specified column as a character.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>The value of the specified column as a character.</returns>
<exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)">
<summary>Reads a stream of characters from the specified column offset into the buffer as an array, starting at the given buffer offset.</summary>
<param name="i">The zero-based column ordinal. </param>
<param name="fieldOffset">The index within the row where the read operation is to begin. </param>
<param name="buffer2">The buffer into which to copy data. </param>
<param name="bufferoffset">The index where <paramref name="buffer" /> is to begin the write operation. </param>
<param name="length">The number of characters to read. </param>
<returns>The actual number of characters read.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetDataTypeName(System.Int32)">
<summary>Gets the name of the source data type.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>The name of the source data type.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetDateTime(System.Int32)">
<summary>Gets the value of the specified column as a <see langword="DateTime" /> object.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>The value of the specified column as a <see langword="DateTime" /> object.</returns>
<exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetDecimal(System.Int32)">
<summary>Gets the value of the specified column as a <see langword="Decimal" /> object.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>The value of the specified column as a <see langword="Decimal" /> object.</returns>
<exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetDouble(System.Int32)">
<summary>Gets the value of the specified column as a double-precision floating point number.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>The value of the specified column as a double-precision floating point number.</returns>
<exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetEnumerator">
<summary>Returns an <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the rows in the data reader.</summary>
<returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the rows in the data reader.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetFieldType(System.Int32)">
<summary>Gets the <see cref="T:System.Type" /> that is the data type of the object.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>The <see cref="T:System.Type" /> that is the data type of the object.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetFloat(System.Int32)">
<summary>Gets the value of the specified column as a single-precision floating-point number.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>The value of the specified column as a single-precision floating-point number.</returns>
<exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetGuid(System.Int32)">
<summary>Gets the value of the specified column as a globally-unique identifier (GUID).</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>The value of the specified column as a GUID.</returns>
<exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetInt16(System.Int32)">
<summary>Gets the value of the specified column as a 16-bit signed integer.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>The value of the specified column as a 16-bit signed integer.</returns>
<exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetInt32(System.Int32)">
<summary>Gets the value of the specified column as a 32-bit signed integer.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>The value of the specified column as a 32-bit signed integer.</returns>
<exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetInt64(System.Int32)">
<summary>Gets the value of the specified column as a 64-bit signed integer.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>The value of the specified column as a 64-bit signed integer.</returns>
<exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetName(System.Int32)">
<summary>Gets the name of the specified column.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>A string that is the name of the specified column.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetOracleBFile(System.Int32)">
<summary>Gets the value of the specified column as an <see cref="T:System.Data.OracleClient.OracleBFile" /> object.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>The value of the specified column as an <see cref="T:System.Data.OracleClient.OracleBFile" /> object.</returns>
<exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetOracleBinary(System.Int32)">
<summary>Gets the value of the specified column as an <see cref="T:System.Data.OracleClient.OracleBinary" /> object.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>The value of the specified column as an <see cref="T:System.Data.OracleClient.OracleBinary" /> object.</returns>
<exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetOracleDateTime(System.Int32)">
<summary>Gets the value of the specified column as an <see cref="T:System.Data.OracleClient.OracleDateTime" /> object.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>The value of the specified column as an <see cref="T:System.Data.OracleClient.OracleDateTime" /> object.</returns>
<exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetOracleLob(System.Int32)">
<summary>Gets the value of the specified column as an <see cref="T:System.Data.OracleClient.OracleLob" /> object.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>The value of the specified column as an <see cref="T:System.Data.OracleClient.OracleLob" /> object.</returns>
<exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetOracleMonthSpan(System.Int32)">
<summary>Gets the value of the specified column as an <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> object.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>The value of the specified column as an <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> object.</returns>
<exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetOracleNumber(System.Int32)">
<summary>Gets the value of the specified column as an <see cref="T:System.Data.OracleClient.OracleNumber" /> object.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>The value of the specified column as an <see cref="T:System.Data.OracleClient.OracleNumber" /> object.</returns>
<exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetOracleString(System.Int32)">
<summary>Gets the value of the specified column as an <see cref="T:System.Data.OracleClient.OracleString" /> object.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>The value of the specified column as an <see cref="T:System.Data.OracleClient.OracleString" /> object.</returns>
<exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetOracleTimeSpan(System.Int32)">
<summary>Gets the value of the specified column as an <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> object.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>The value of the specified column as an <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> object.</returns>
<exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetOracleValue(System.Int32)">
<summary>Gets the value of the column at the specified ordinal in its Oracle format.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>The Oracle value to return.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetOracleValues(System.Object[])">
<summary>Gets all the attribute columns in the current row in Oracle format.</summary>
<param name="values">An array of type <see cref="T:System.Object" /> into which to copy the attribute columns. </param>
<returns>The number of instances of <see cref="T:System.Object" /> in the array.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetOrdinal(System.String)">
<summary>Gets the column ordinal, given the name of the column.</summary>
<param name="name">The name of the column.</param>
<returns>The zero-based column ordinal.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetProviderSpecificFieldType(System.Int32)">
<summary>Gets an <see langword="Object" /> that is a representation of the underlying provider specific field type.</summary>
<param name="i">An <see cref="T:System.Int32" />.</param>
<returns>Gets an <see cref="T:System.Object" /> that is a representation of the underlying provider specific field type.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetProviderSpecificValue(System.Int32)">
<summary>Gets an <see langword="Object" /> that is a representation of the underlying provider specific field type.</summary>
<param name="i">An <see cref="T:System.Int32" />.</param>
<returns>Gets an <see cref="T:System.Object" /> that is a representation of the underlying provider specific field type.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetProviderSpecificValues(System.Object[])">
<summary>Gets an array of objects that are a representation of the underlying provider specific values.</summary>
<param name="values">An array of <see cref="T:System.Object" />.</param>
<returns>The number of instances of <see cref="T:System.Object" /> in the array.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetSchemaTable">
<summary>Returns a <see cref="T:System.Data.DataTable" /> that describes the column metadata of the OracleDataReader.</summary>
<returns>A <see cref="T:System.Data.DataTable" /> that describes the column metadata.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetString(System.Int32)">
<summary>Gets the value of the specified column as a string.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>The value of the specified column as a string.</returns>
<exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetTimeSpan(System.Int32)">
<summary>Gets the value of the specified column as a <see langword="System.TimeSpan" />.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>The value of the specified column as a <see cref="T:System.TimeSpan" />.</returns>
<exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetValue(System.Int32)">
<summary>Gets the value of the column at the specified ordinal in its native format.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>The value to return.</returns>
<exception cref="T:System.Data.OracleClient.OracleException">The value is too large to be stored in the .NET Decimal.</exception>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.GetValues(System.Object[])">
<summary>Populates an array of objects with the column values of the current row.</summary>
<param name="values">An array of type <see cref="T:System.Object" /> into which to copy the attribute columns. </param>
<returns>The number of instances of <see cref="T:System.Object" /> in the array.</returns>
<exception cref="T:System.Data.OracleClient.OracleException">The value is too large to be stored in the .NET Decimal.</exception>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.IsDBNull(System.Int32)">
<summary>Gets a value indicating whether the column contains non-existent or missing values.</summary>
<param name="i">The zero-based column ordinal. </param>
<returns>
<see langword="true" /> if the specified column value is equivalent to <see cref="T:System.DBNull" />; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.NextResult">
<summary>Advances the <see cref="T:System.Data.OracleClient.OracleDataReader" /> to the next result </summary>
<returns>
<see langword="true" /> if there are more result sets; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDataReader.Read">
<summary>Advances the <see cref="T:System.Data.OracleClient.OracleDataReader" /> to the next record.</summary>
<returns>
<see langword="true" /> if there are more rows; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.#ctor(System.Data.OracleClient.OracleDateTime)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure from an existing <see cref="T:System.Data.OracleClient.OracleDateTime" /> object.</summary>
<param name="from">An existing <see cref="T:System.Data.OracleClient.OracleDateTime" /> object from which to copy. </param>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.#ctor(System.DateTime)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure with the specified <see cref="T:System.DateTime" />.</summary>
<param name="dt">The specified <see cref="T:System.DateTime" />. </param>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.#ctor(System.Int32,System.Int32,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure using the supplied parameters to initialize the year, month, and day of the new structure.</summary>
<param name="year">An integer value representing the year of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="month">An integer value representing the month of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="day">An integer value representing the day of the month of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Globalization.Calendar)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure using the supplied parameters to initialize the year, month, day, and calendar of the new structure.</summary>
<param name="year">An integer value representing the year of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="month">An integer value representing the month of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="day">An integer value representing the day of the month of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="calendar">The <see cref="T:System.Globalization.Calendar" /> for this instance of <see cref="T:System.Data.OracleClient.OracleDateTime" />. </param>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure using the supplied parameters to initialize the year, month, day, hour, minute, and second of the new structure.</summary>
<param name="year">An integer value representing the year of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="month">An integer value representing the month of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="day">An integer value representing the day of the month of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="hour">An integer value representing the hour of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="minute">An integer value representing the minute of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="second">An integer value representing the second of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Globalization.Calendar)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure using the supplied parameters to initialize the year, month, day, hour, minute, and second for the specified calendar of the new structure.</summary>
<param name="year">An integer value representing the year of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="month">An integer value representing the month of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="day">An integer value representing the day of the month of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="hour">An integer value representing the hour of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="minute">An integer value representing the minute of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="second">An integer value representing the second of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="calendar">The <see cref="T:System.Globalization.Calendar" /> for this instance of <see cref="T:System.Data.OracleClient.OracleDateTime" />. </param>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure using the supplied parameters to initialize the year, month, day, hour, minute, second, and millisecond of the new structure.</summary>
<param name="year">An integer value representing the year of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="month">An integer value representing the month of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="day">An integer value representing the day of the month of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="hour">An integer value representing the hour of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="minute">An integer value representing the minute of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="second">An integer value representing the second of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="millisecond">An integer value representing the millisecond of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Globalization.Calendar)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure using the supplied parameters to initialize the year, month, day, hour, minute, second, and millisecond for the specified calendar of the new structure.</summary>
<param name="year">An integer value representing the year of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="month">An integer value representing the month of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="day">An integer value representing the day of the month of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="hour">An integer value representing the hour of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="minute">An integer value representing the minute of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="second">An integer value representing the second of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="millisecond">An integer value representing the millisecond of the new <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="calendar">The <see cref="T:System.Globalization.Calendar" /> for this instance of <see cref="T:System.Data.OracleClient.OracleDateTime" />. </param>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.#ctor(System.Int64)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure using the supplied number of ticks.</summary>
<param name="ticks">A time period expressed in 100-nanosecond units. </param>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.CompareTo(System.Object)">
<summary>Compares this <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure to the supplied object and returns an indication of their relative values.</summary>
<param name="obj">The object to be compared. </param>
<returns>A signed number indicating the relative values of the instance and the object.Return value Condition Less than zero This structure is less than the object. Zero This structure is the same as the object. Greater than zero This structure is greater than the object, object is a null reference (<see langword="Nothing" /> in Visual Basic) </returns>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.Equals(System.Data.OracleClient.OracleDateTime,System.Data.OracleClient.OracleDateTime)">
<summary>Performs a logical comparison of two <see cref="T:System.Data.OracleClient.OracleDateTime" /> structures to determine whether they are equal.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<returns>
<see langword="true" /> if the two values are equal, otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.Equals(System.Object)">
<summary>Compares the supplied object parameter to the <see cref="P:System.Data.OracleClient.OracleDateTime.Value" /> property of the <see cref="T:System.Data.OracleClient.OracleDateTime" /> object.</summary>
<param name="value">The object to be compared. </param>
<returns>
<see langword="true" /> if object is an instance of <see cref="T:System.Data.OracleClient.OracleDateTime" /> and the two are equal, otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.GetHashCode">
<summary>Gets the hash code for this instance.</summary>
<returns>A 32-bit signed integer hash code.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.GreaterThan(System.Data.OracleClient.OracleDateTime,System.Data.OracleClient.OracleDateTime)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleDateTime" /> to determine whether the first is greater than the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is greater than the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleDateTime" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.GreaterThanOrEqual(System.Data.OracleClient.OracleDateTime,System.Data.OracleClient.OracleDateTime)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleDateTime" /> to determine whether the first is greater than or equal to the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is greater than or equal to the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleDateTime" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.LessThan(System.Data.OracleClient.OracleDateTime,System.Data.OracleClient.OracleDateTime)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleDateTime" /> to determine whether the first is less than the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleDateTime" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.LessThanOrEqual(System.Data.OracleClient.OracleDateTime,System.Data.OracleClient.OracleDateTime)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleDateTime" /> to determine whether the first is less than or equal to the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than or equal to the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleDateTime" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.NotEquals(System.Data.OracleClient.OracleDateTime,System.Data.OracleClient.OracleDateTime)">
<summary>Performs a logical comparison of two instances of <see cref="T:System.Data.OracleClient.OracleDateTime" /> to determine if they are not equal.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.OracleClient.OracleBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.OracleClient.OracleDateTime" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.op_Equality(System.Data.OracleClient.OracleDateTime,System.Data.OracleClient.OracleDateTime)">
<summary>Performs a logical comparison of two <see cref="T:System.Data.OracleClient.OracleDateTime" /> structures to determine if they are equal.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<returns>
<see langword="true" /> if the two values are equal, otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.op_Explicit(System.Data.OracleClient.OracleDateTime)~System.DateTime">
<summary>Converts an <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure to a <see cref="T:System.DateTime" /> structure.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<returns>A <see cref="T:System.DateTime" /> structure whose <see cref="P:System.DateTime.Date" /> and <see cref="P:System.DateTime.TimeOfDay" /> properties contain the same date and time values as the <see cref="P:System.Data.OracleClient.OracleDateTime.Value" /> property of the supplied <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.op_Explicit(System.String)~System.Data.OracleClient.OracleDateTime">
<summary>Converts a <see langword="String" /> to an <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure.</summary>
<param name="x">A <see langword="String" /> to be converted to an <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure whose <see cref="P:System.Data.OracleClient.OracleDateTime.Value" /> is equal to the values contained in the <see langword="String" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.op_GreaterThan(System.Data.OracleClient.OracleDateTime,System.Data.OracleClient.OracleDateTime)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleDateTime" /> to determine if the first is greater than the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is greater than the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleDateTime" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.op_GreaterThanOrEqual(System.Data.OracleClient.OracleDateTime,System.Data.OracleClient.OracleDateTime)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleDateTime" /> to determine if the first is greater than or equal to the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is greater than or equal to the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleDateTime" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.op_Inequality(System.Data.OracleClient.OracleDateTime,System.Data.OracleClient.OracleDateTime)">
<summary>Performs a logical comparison of two instances of <see cref="T:System.Data.OracleClient.OracleDateTime" /> to determine if they are equal.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.OracleClient.OracleBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.OracleClient.OracleDateTime" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.op_LessThan(System.Data.OracleClient.OracleDateTime,System.Data.OracleClient.OracleDateTime)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleDateTime" /> to determine if the first is less than the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleDateTime" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.op_LessThanOrEqual(System.Data.OracleClient.OracleDateTime,System.Data.OracleClient.OracleDateTime)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleDateTime" /> to determine if the first is less than or equal to the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than or equal to the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleDateTime" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.Parse(System.String)">
<summary>Converts the specified <see cref="T:System.String" /> representation of a date and time to its <see cref="T:System.Data.OracleClient.OracleDateTime" /> equivalent.</summary>
<param name="s">The <see langword="String" /> to be parsed. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure equal to the date and time represented by the specified <see langword="String" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleDateTime.ToString">
<summary>Converts this <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure to a <see cref="T:System.String" />.</summary>
<returns>A <see langword="String" /> representing the <see cref="P:System.Data.OracleClient.OracleDateTime.Value" /> property of this <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception.</summary>
<param name="si">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown. </param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
</member>
<member name="M:System.Data.OracleClient.OracleInfoMessageEventArgs.ToString">
<summary>Retrieves a string representation of the <see cref="E:System.Data.OracleClient.OracleConnection.InfoMessage" /> event.</summary>
<returns>A string representing the <see cref="E:System.Data.OracleClient.OracleConnection.InfoMessage" /> event.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleLob.Append(System.Data.OracleClient.OracleLob)">
<summary>Appends data from the specified <see langword="LOB" /> to the current <see langword="LOB" />.</summary>
<param name="source">The <see langword="LOB" /> from which to append data. </param>
<exception cref="T:System.ArgumentNullException">The source <see cref="T:System.Data.OracleClient.OracleLob" /> is null. </exception>
<exception cref="T:System.InvalidOperationException">The source <see cref="T:System.Data.OracleClient.OracleLob" /> is null, or the connection is closed. </exception>
<exception cref="T:System.ObjectDisposedException">The source <see cref="T:System.Data.OracleClient.OracleLob" /> object was closed or disposed. </exception>
<exception cref="T:System.Data.OracleClient.OracleException">An Oracle error has occurred. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleLob.BeginBatch">
<summary>Prevents server-side triggers from firing while performing multiple read operations.</summary>
<exception cref="T:System.InvalidOperationException">The connection is closed. </exception>
<exception cref="T:System.ObjectDisposedException">The object was closed or disposed. </exception>
<exception cref="T:System.Data.OracleClient.OracleException">An Oracle error has occurred. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleLob.BeginBatch(System.Data.OracleClient.OracleLobOpenMode)">
<summary>Prevents server-side triggers from firing while performing multiple read and write operations in the specified access mode.</summary>
<param name="mode">Mode (one of the <see cref="T:System.Data.OracleClient.OracleLobOpenMode" /> values) in which the <see langword="LOB" /> can be accessed between this <see cref="M:System.Data.OracleClient.OracleLob.BeginBatch(System.Data.OracleClient.OracleLobOpenMode)" /> call and the corresponding <see cref="M:System.Data.OracleClient.OracleLob.EndBatch" /> call. </param>
<exception cref="T:System.InvalidOperationException">The connection is closed. </exception>
<exception cref="T:System.ObjectDisposedException">The object was closed or disposed. </exception>
<exception cref="T:System.Data.OracleClient.OracleException">An Oracle error has occurred. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleLob.Clone">
<summary>Creates a new <see cref="T:System.Data.OracleClient.OracleLob" /> object that references the same Oracle <see langword="LOB" /> as the original <see cref="T:System.Data.OracleClient.OracleLob" /> object.</summary>
<returns>A new <see cref="T:System.Data.OracleClient.OracleLob" /> object that references the same Oracle <see langword="LOB" /> as the original <see cref="T:System.Data.OracleClient.OracleLob" /> object.</returns>
<exception cref="T:System.InvalidOperationException">The connection is closed. </exception>
<exception cref="T:System.ObjectDisposedException">The object was closed or disposed. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleLob.CopyTo(System.Data.OracleClient.OracleLob)">
<summary>Copies from this <see cref="T:System.Data.OracleClient.OracleLob" /> to a destination <see cref="T:System.Data.OracleClient.OracleLob" />.</summary>
<param name="destination">The destination <see cref="T:System.Data.OracleClient.OracleLob" />. </param>
<returns>The number of bytes copied. This excludes any padded bytes.</returns>
<exception cref="T:System.ArgumentNullException">The <see cref="T:System.Data.OracleClient.OracleLob" /> specified in the <paramref name="destination" /> parameter is null. </exception>
<exception cref="T:System.InvalidOperationException">The operation is not within a transaction, the <see cref="T:System.Data.OracleClient.OracleLob" /> object is null, or the connection is closed. </exception>
<exception cref="T:System.Data.OracleClient.OracleException">An Oracle error has occurred. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleLob.CopyTo(System.Data.OracleClient.OracleLob,System.Int64)">
<summary>Copies from this <see cref="T:System.Data.OracleClient.OracleLob" /> to a destination <see cref="T:System.Data.OracleClient.OracleLob" /> with the specified amount of data.</summary>
<param name="destination">The destination <see cref="T:System.Data.OracleClient.OracleLob" /></param>
<param name="destinationOffset">The offset to which to copy. For <see langword="CLOB" /> and <see langword="NCLOB" /> data types, this must be an even number of bytes. </param>
<returns>The number of bytes copied. This excludes any padded bytes.</returns>
<exception cref="T:System.ArgumentNullException">The <see cref="T:System.Data.OracleClient.OracleLob" /> specified in the <paramref name="destination" /> parameter is full. </exception>
<exception cref="T:System.ArgumentOutOfRangeException">A value specified in the <paramref name="destinationOffset" /> parameter is less than zero or greater than 4 gigabytes.-or- A value specified in the <paramref name="destinationOffset" /> parameter for a <see langword="CLOB" /> or <see langword="NCLOB" /> data type is not even. -or- You must specify <see langword="CLOB" /> and <see langword="NCLOB" /> data types as an even number of bytes. </exception>
<exception cref="T:System.InvalidOperationException">The operation is not within a transaction, the <see cref="T:System.Data.OracleClient.OracleLob" /> object is null, or the connection is closed. </exception>
<exception cref="T:System.Data.OracleClient.OracleException">An Oracle error has occurred. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleLob.CopyTo(System.Int64,System.Data.OracleClient.OracleLob,System.Int64,System.Int64)">
<summary>Copies from this <see cref="T:System.Data.OracleClient.OracleLob" /> to a destination <see cref="T:System.Data.OracleClient.OracleLob" /> with the specified amount of data, and the source offset.</summary>
<param name="sourceOffset">The offset from which to copy. For <see langword="CLOB" /> and <see langword="NCLOB" /> data types, this must be an even number. </param>
<param name="destination">The destination <see langword="OracleLob" /><see cref="N:System.Data.OracleClient" />. </param>
<param name="destinationOffset">The destination offset to which to copy. For <see langword="CLOB" /> and <see langword="NCLOB" /> data types, this must be an even number. </param>
<param name="amount">The quantity of data, in bytes, to copy. For <see langword="CLOB" /> and <see langword="NCLOB" /> data types, this must be an even number. </param>
<returns>The number of bytes copied. This excludes any padded bytes.</returns>
<exception cref="T:System.ArgumentNullException">The <see cref="T:System.Data.OracleClient.OracleLob" /> specified in the <paramref name="destination" /> parameter is full. </exception>
<exception cref="T:System.ArgumentOutOfRangeException">A value specified in the <paramref name="amount" />, <paramref name="sourceOffset" />, or <paramref name="destinationOffset" /> parameter is less than zero or greater than 4 gigabytes.-or- A value specified in the <paramref name="amount" />, <paramref name="sourceOffset" />, or <paramref name="destinationOffset" /> parameter for a <see langword="CLOB" /> or <see langword="NCLOB" /> data type is not even. </exception>
<exception cref="T:System.InvalidOperationException">The operation is not within a transaction, the <see cref="T:System.Data.OracleClient.OracleLob" /> object is null, or the connection is closed. </exception>
<exception cref="T:System.Data.OracleClient.OracleException">An Oracle error has occurred. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleLob.EndBatch">
<summary>Allows server-side triggers to resume firing after performing multiple write operations.</summary>
<exception cref="T:System.InvalidOperationException">The connection is closed. </exception>
<exception cref="T:System.ObjectDisposedException">The object was closed or disposed. </exception>
<exception cref="T:System.Data.OracleClient.OracleException">An Oracle error has occurred. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleLob.Erase">
<summary>Erases all data from this <see cref="T:System.Data.OracleClient.OracleLob" />.</summary>
<returns>The number of bytes erased.</returns>
<exception cref="T:System.InvalidOperationException">The operation is not within a transaction, the <see cref="T:System.Data.OracleClient.OracleLob" /> object is null, or the connection is closed. </exception>
<exception cref="T:System.ObjectDisposedException">The object was closed or disposed. </exception>
<exception cref="T:System.Data.OracleClient.OracleException">An Oracle error has occurred. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleLob.Erase(System.Int64,System.Int64)">
<summary>Erases the specified amount of data from this <see cref="T:System.Data.OracleClient.OracleLob" />.</summary>
<param name="offset">The offset from which to erase. For <see langword="CLOB" /> and <see langword="NCLOB" /> data types, this must be an even number. </param>
<param name="amount">The quantity of data, in bytes, to erase. For <see langword="CLOB" /> and <see langword="NCLOB" /> data types, this must be an even number. </param>
<returns>The number of bytes erased.</returns>
<exception cref="T:System.InvalidOperationException">The operation is not within a transaction, the <see cref="T:System.Data.OracleClient.OracleLob" /> object is null, or the connection is closed. </exception>
<exception cref="T:System.ObjectDisposedException">The object was closed or disposed. </exception>
<exception cref="T:System.Data.OracleClient.OracleException">An Oracle error has occurred. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleLob.Flush">
<summary>Not currently supported.</summary>
</member>
<member name="M:System.Data.OracleClient.OracleLob.Read(System.Byte[],System.Int32,System.Int32)">
<summary>Reads a sequence of bytes from the current <see cref="T:System.Data.OracleClient.OracleLob" /> stream and advances the position within the stream by the number of bytes read.</summary>
<param name="buffer">An array of bytes. When this method returns, the buffer contains the specified byte array with the values between <paramref name="offset" /> and (<paramref name="offset" /> + <paramref name="count" />) replaced by the bytes read from the current source. </param>
<param name="offset">The zero-based byte offset in <paramref name="buffer" /> at which to begin storing the data read from the current stream. For <see langword="CLOB" /> and <see langword="NCLOB" /> data types, this must be an even number. </param>
<param name="count">The maximum number of bytes to be read from the current stream. For <see langword="CLOB" /> and <see langword="NCLOB" /> data types, this must be an even number. </param>
<returns>The total number of bytes read into the buffer. This may be less than the number of bytes requested if that many bytes are not currently available, or zero (0) if the end of the stream has been reached.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> is a null reference (<see langword="Nothing" /> in Visual Basic). </exception>
<exception cref="T:System.ArgumentOutOfRangeException">A value in the <paramref name="offset" /> or <paramref name="count" /> parameter is not positive.-or- The sum of the offset and count parameters is larger than the buffer length.-or- A value specified in the <paramref name="amount" /> or <paramref name="offset" /> parameter is less than zero or greater than 4 gigabytes. </exception>
<exception cref="T:System.InvalidOperationException">The operation is not within a transaction, the <see cref="T:System.Data.OracleClient.OracleLob" /> object is null, or the connection is closed. </exception>
<exception cref="T:System.ObjectDisposedException">The object was closed or disposed. </exception>
<exception cref="T:System.Data.OracleClient.OracleException">An Oracle error has occurred. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleLob.Seek(System.Int64,System.IO.SeekOrigin)">
<summary>Sets the position on the current <see cref="T:System.Data.OracleClient.OracleLob" /> stream.</summary>
<param name="offset">A byte offset relative to origin. If <paramref name="offset" /> is negative, the new position precedes the position specified by <paramref name="origin" /> by the number of bytes specified by <paramref name="offset" />. If <paramref name="offset" /> is zero, the new position is the position specified by <paramref name="origin" />. If <paramref name="offset" /> is positive, the new position follows the position specified by <paramref name="origin" /> by the number of bytes specified by <paramref name="offset" />. </param>
<param name="origin">A value of type <see cref="T:System.IO.SeekOrigin" /> indicating the reference point used to obtain the new position. </param>
<returns>The new position within the current stream.</returns>
<exception cref="T:System.ArgumentException">The <paramref name="origin" /> parameter does not contain a valid value. </exception>
<exception cref="T:System.ArgumentOutOfRangeException">The resulting position is beyond the length of the value. </exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Data.OracleClient.OracleLob" /> object was closed or disposed. </exception>
<exception cref="T:System.Data.OracleClient.OracleException">An Oracle error has occurred. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleLob.SetLength(System.Int64)">
<summary>Sets the length of the <see cref="T:System.Data.OracleClient.OracleLob" /> stream to a value less than the current length.</summary>
<param name="value">The desired length of the current <see cref="T:System.Data.OracleClient.OracleLob" /> stream in bytes. For <see langword="CLOB" /> and <see langword="NCLOB" /> data types, this must be an even number. </param>
<exception cref="T:System.ArgumentOutOfRangeException">A value specified in the <paramref name="value" /> parameter for a <see langword="CLOB" /> or <see langword="NCLOB" /> data type is not even.-or- A value specified in the <paramref name="value" /> parameter is less than zero or greater than 4 gigabytes. </exception>
<exception cref="T:System.InvalidOperationException">The operation is not within a transaction, the <see cref="T:System.Data.OracleClient.OracleLob" /> object is null, or the connection is closed. </exception>
<exception cref="T:System.ObjectDisposedException">The object was closed or disposed. </exception>
<exception cref="T:System.Data.OracleClient.OracleException">An Oracle error has occurred. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleLob.Write(System.Byte[],System.Int32,System.Int32)">
<summary>Writes a sequence of bytes to the current <see cref="T:System.Data.OracleClient.OracleLob" /> stream, and advances the current position within this stream by the number of bytes written.</summary>
<param name="buffer">An array of bytes. This method copies the number of bytes specified in <paramref name="count" /> from <paramref name="buffer" /> to the current stream. </param>
<param name="offset">The zero-based byte offset in <paramref name="buffer" /> at which to begin copying bytes to the current stream. For <see langword="CLOB" /> and <see langword="NCLOB" /> data types, this must be an even number. </param>
<param name="count">The number of bytes to be written to the current stream. For <see langword="CLOB" /> and <see langword="NCLOB" /> data types, this must be an even number. </param>
<exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> parameter is a null reference (<see langword="Nothing" /> in Visual Basic). </exception>
<exception cref="T:System.ArgumentOutOfRangeException">A value in the <paramref name="offset" /> or <paramref name="count" /> parameter is not positive.-or- The sum of the <paramref name="offset" /> and <paramref name="count" /> parameters is larger than the <paramref name="buffer" /> length.-or- A value specified in the <paramref name="count" /> or <paramref name="offset" /> parameter is less than zero or greater than 4 gigabytes.-or- You must specify <see langword="CLOB" /> and <see langword="NCLOB" /> data types as an even number of bytes. </exception>
<exception cref="T:System.InvalidOperationException">The operation is not within a transaction, the <see cref="T:System.Data.OracleClient.OracleLob" /> object is null, or the connection is closed. </exception>
<exception cref="T:System.ObjectDisposedException">The object was closed or disposed. </exception>
<exception cref="T:System.Data.OracleClient.OracleException">An Oracle error has occurred. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleLob.WriteByte(System.Byte)">
<summary>Writes a byte to the current position in the <see cref="T:System.Data.OracleClient.OracleLob" /> stream, and advances the position within the stream by one byte.</summary>
<param name="value">The byte to write to the stream. </param>
</member>
<member name="M:System.Data.OracleClient.OracleMonthSpan.#ctor(System.Data.OracleClient.OracleMonthSpan)">
<summary>Initializes a new <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure from an existing one.</summary>
<param name="from">An existing <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure from which to create the new structure. </param>
</member>
<member name="M:System.Data.OracleClient.OracleMonthSpan.#ctor(System.Int32)">
<summary>Initializes a new <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure to the specified number of months.</summary>
<param name="months">Number of months. </param>
</member>
<member name="M:System.Data.OracleClient.OracleMonthSpan.#ctor(System.Int32,System.Int32)">
<summary>Initializes a new <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure to a specified number years and months.</summary>
<param name="years">Number of years. </param>
<param name="months">Number of months. </param>
<exception cref="T:System.ArgumentOutOfRangeException">The parameters specify an <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> value less than <see cref="F:System.Data.OracleClient.OracleMonthSpan.MinValue" /> or greater than <see cref="F:System.Data.OracleClient.OracleMonthSpan.MaxValue" />. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleMonthSpan.CompareTo(System.Object)">
<summary>Compares this <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure to the supplied object and returns an indication of their relative values.</summary>
<param name="obj">The object to be compared. </param>
<returns>A signed number indicating the relative values of the instance and the object.Return Value Condition Less than zero This instance is less than the object. Zero This instance is the same as the object. Greater than zero This instance is greater than the object -or- The object is a null reference (<see langword="Nothing" />). </returns>
</member>
<member name="M:System.Data.OracleClient.OracleMonthSpan.Equals(System.Data.OracleClient.OracleMonthSpan,System.Data.OracleClient.OracleMonthSpan)">
<summary>Performs a logical comparison of two <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structures to determine if they are equal.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure. </param>
<returns>
<see langword="true" /> if the two values are equal, otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleMonthSpan.Equals(System.Object)">
<summary>Compares the supplied object parameter to the <see cref="P:System.Data.OracleClient.OracleMonthSpan.Value" /> property of the <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> object.</summary>
<param name="value">The object to be compared. </param>
<returns>
<see langword="true" /> if object is an instance of <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> and the two are equal; otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleMonthSpan.GetHashCode">
<summary>Gets the hash code for this instance.</summary>
<returns>A 32-bit signed integer hash code.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleMonthSpan.GreaterThan(System.Data.OracleClient.OracleMonthSpan,System.Data.OracleClient.OracleMonthSpan)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> to determine if the first is greater than the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is greater than the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleMonthSpan.GreaterThanOrEqual(System.Data.OracleClient.OracleMonthSpan,System.Data.OracleClient.OracleMonthSpan)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> to determine if the first is greater than or equal to the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is greater than or equal to the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleMonthSpan.LessThan(System.Data.OracleClient.OracleMonthSpan,System.Data.OracleClient.OracleMonthSpan)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> to determine if the first is less than the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleMonthSpan.LessThanOrEqual(System.Data.OracleClient.OracleMonthSpan,System.Data.OracleClient.OracleMonthSpan)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> to determine if the first is less than or equal to the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than or equal to the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleMonthSpan.NotEquals(System.Data.OracleClient.OracleMonthSpan,System.Data.OracleClient.OracleMonthSpan)">
<summary>Performs a logical comparison of two instances of <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> to determine if they are not equal.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.OracleClient.OracleBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleMonthSpan.op_Equality(System.Data.OracleClient.OracleMonthSpan,System.Data.OracleClient.OracleMonthSpan)">
<summary>Performs a logical comparison of two <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structures to determine if they are equal.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure. </param>
<returns>
<see langword="true" /> if the two values are equal, otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleMonthSpan.op_Explicit(System.Data.OracleClient.OracleMonthSpan)~System.Int32">
<summary>Converts an <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure to an <see langword="Int32" />.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure to convert to an <see langword="Int32" />. </param>
<returns>An <see langword="Int32" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleMonthSpan.op_Explicit(System.String)~System.Data.OracleClient.OracleMonthSpan">
<summary>Converts a string to an <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure.</summary>
<param name="x">A string to convert to an <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleMonthSpan.op_GreaterThan(System.Data.OracleClient.OracleMonthSpan,System.Data.OracleClient.OracleMonthSpan)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> to determine if the first is greater than the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is greater than the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleMonthSpan.op_GreaterThanOrEqual(System.Data.OracleClient.OracleMonthSpan,System.Data.OracleClient.OracleMonthSpan)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> to determine if the first is greater than or equal to the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is greater than or equal to the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleMonthSpan.op_Inequality(System.Data.OracleClient.OracleMonthSpan,System.Data.OracleClient.OracleMonthSpan)">
<summary>Performs a logical comparison of two instances of <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> to determine if they are equal.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.OracleClient.OracleBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleMonthSpan.op_LessThan(System.Data.OracleClient.OracleMonthSpan,System.Data.OracleClient.OracleMonthSpan)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> to determine if the first is less than the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleMonthSpan.op_LessThanOrEqual(System.Data.OracleClient.OracleMonthSpan,System.Data.OracleClient.OracleMonthSpan)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> to determine if the first is less than or equal to the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than or equal to the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleMonthSpan.Parse(System.String)">
<summary>Converts the specified <see cref="T:System.String" /> representation of a date and time to its <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> equivalent.</summary>
<param name="s">The <see langword="String" /> to be converted. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure equal to the date and time represented by the specified <see langword="String" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleMonthSpan.ToString">
<summary>Converts this <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure to a <see cref="T:System.String" />.</summary>
<returns>A <see langword="String" /> representing the <see cref="P:System.Data.OracleClient.OracleMonthSpan.Value" /> property of this <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.#ctor(System.Data.OracleClient.OracleNumber)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleNumber" /> structure using the supplied <see cref="T:System.Data.OracleClient.OracleNumber" />.</summary>
<param name="from">The supplied <see cref="T:System.Data.OracleClient.OracleNumber" /> that will be used as the value of the new <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.#ctor(System.Decimal)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleNumber" /> structure using the supplied <see cref="T:System.Decimal" /> value.</summary>
<param name="decValue">The <see cref="T:System.Decimal" /> value to be stored as an <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.#ctor(System.Double)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleNumber" /> using the supplied double precision value.</summary>
<param name="dblValue">The supplied double precision value that will the used as the value of the new <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.#ctor(System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleNumber" /> structure using the supplied integer value.</summary>
<param name="intValue">The supplied integer value that will be used as the value of the new <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.#ctor(System.Int64)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleNumber" /> structure using the supplied long integer value.</summary>
<param name="longValue">The supplied long integer value that will be used as the value of the new <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Abs(System.Data.OracleClient.OracleNumber)">
<summary>Gets the absolute value of the <see cref="T:System.Data.OracleClient.OracleNumber" /> parameter.</summary>
<param name="n">An <see langword="OracleNumber" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure whose <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> property contains the unsigned number representing the absolute value of the <see cref="T:System.Data.OracleClient.OracleNumber" /> parameter.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Acos(System.Data.OracleClient.OracleNumber)">
<summary>Calculates the inverse hyperbolic cosine of an <see cref="T:System.Data.OracleClient.OracleNumber" />.</summary>
<param name="n">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>An angle, measured in radians.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Add(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Calculates the sum of the two <see cref="T:System.Data.OracleClient.OracleNumber" /> structures.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>A new <see cref="T:System.Data.OracleClient.OracleNumber" /> structure whose <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> property contains the sum.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Asin(System.Data.OracleClient.OracleNumber)">
<summary>Calculates the inverse hyperbolic sine of an <see cref="T:System.Data.OracleClient.OracleNumber" />.</summary>
<param name="n">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>An angle, measured in radians.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Atan(System.Data.OracleClient.OracleNumber)">
<summary>Calculates the inverse hyperbolic tangent of an <see cref="T:System.Data.OracleClient.OracleNumber" />.</summary>
<param name="n">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>An angle, measured in radians.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Atan2(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Calculates the inverse hyperbolic tangent of two <see cref="T:System.Data.OracleClient.OracleNumber" /> structures.</summary>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>An angle, measured in radians.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Ceiling(System.Data.OracleClient.OracleNumber)">
<summary>Returns the smallest whole number greater than or equal to the specified <see cref="T:System.Data.OracleClient.OracleNumber" /> structure.</summary>
<param name="n">The <see cref="T:System.Data.OracleClient.OracleNumber" /> structure for which the ceiling value is to be calculated. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleNumber" /> representing the smallest whole number greater than or equal to the specified <see cref="T:System.Data.OracleClient.OracleNumber" /> structure.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.CompareTo(System.Object)">
<summary>Compares this instance of the <see cref="T:System.Data.OracleClient.OracleNumber" /> structure to the supplied object and returns an indication of their relative values.</summary>
<param name="obj">The object to be compared. </param>
<returns>A signed number indicating the relative values of the instance and the object.Return Value Condition Less than zero This instance is less than the object. Zero This instance is the same as the object. Greater than zero This instance is greater than the object, or the object is a null reference (<see langword="Nothing" /> in Visual Basic) </returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Cos(System.Data.OracleClient.OracleNumber)">
<summary>Calculates the cosine of an <see cref="T:System.Data.OracleClient.OracleNumber" />.</summary>
<param name="n">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>The cosine of <paramref name="n" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Cosh(System.Data.OracleClient.OracleNumber)">
<summary>Calculates the hyperbolic cosine of an <see cref="T:System.Data.OracleClient.OracleNumber" />.</summary>
<param name="n">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>The hyperbolic cosine of <paramref name="n" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Divide(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Calculates the results of dividing the first <see cref="T:System.Data.OracleClient.OracleNumber" /> structure by the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>A new <see cref="T:System.Data.OracleClient.OracleNumber" /> structure whose <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> property contains the results of the division.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Equals(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Performs a logical comparison of the two <see cref="T:System.Data.OracleClient.OracleNumber" /> structures to determine if they are equal.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.OracleClient.OracleBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.OracleClient.OracleNumber" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Equals(System.Object)">
<summary>Compares the supplied object parameter to the <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> property of the <see cref="T:System.Data.OracleClient.OracleNumber" /> object.</summary>
<param name="value">The object to be compared. </param>
<returns>
<see langword="true" /> if the object is an instance of <see cref="T:System.Data.OracleClient.OracleNumber" /> and the two are equal, otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Exp(System.Data.OracleClient.OracleNumber)">
<summary>Calculates e raised to the power of an <see cref="T:System.Data.OracleClient.OracleNumber" />. The constant e equals 2.71828182845904, the base of the natural logarithm.</summary>
<param name="p">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>A number raised to the power of <paramref name="p" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Floor(System.Data.OracleClient.OracleNumber)">
<summary>Rounds a specified <see cref="T:System.Data.OracleClient.OracleNumber" /> number to the next lower whole number.</summary>
<param name="n">The <see cref="T:System.Data.OracleClient.OracleNumber" /> structure for which the floor value is to be calculated. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure containing the whole number portion of this <see cref="T:System.Data.OracleClient.OracleNumber" /> structure.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.GetHashCode">
<summary>Returns the hash code for this instance of the <see cref="T:System.Data.OracleClient.OracleNumber" /> structure.</summary>
<returns>A 32-bit signed integer hash code.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.GreaterThan(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Performs a logical comparison of two <see cref="T:System.Data.OracleClient.OracleNumber" /> structures to determine whether the first is greater than the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleNumber" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.GreaterThanOrEqual(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Performs a logical comparison of the two <see cref="T:System.Data.OracleClient.OracleNumber" /> parameters to determine whether the first is greater than or equal to the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is greater than or equal to the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleNumber" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.LessThan(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Performs a logical comparison of two <see cref="T:System.Data.OracleClient.OracleNumber" /> structures to determine whether the first is less than the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleNumber" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.LessThanOrEqual(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Performs a logical comparison of the two <see cref="T:System.Data.OracleClient.OracleNumber" /> parameters to determine whether the first is less than or equal to the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than or equal to the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleNumber" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Log(System.Data.OracleClient.OracleNumber)">
<summary>Calculates natural logarithm of an <see cref="T:System.Data.OracleClient.OracleNumber" />. Natural logarithms are based on the constant e (2.71828182845904).</summary>
<param name="n">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>The natural logarithm of <paramref name="n" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Log(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Calculates an <see cref="T:System.Data.OracleClient.OracleNumber" /> to the base you specify.</summary>
<param name="n">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="newBase">A user-specified <see cref="T:System.Data.OracleClient.OracleNumber" />. </param>
<returns>The logarithm of a specified number in a specified base.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Log(System.Data.OracleClient.OracleNumber,System.Int32)">
<summary>Calculates an <see cref="T:System.Data.OracleClient.OracleNumber" /> to the base you specify.</summary>
<param name="n">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="newBase">User-specified integer. </param>
<returns>The logarithm of a specified number in a specified base.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Log10(System.Data.OracleClient.OracleNumber)">
<summary>Calculates the base 10 logarithm of a number.</summary>
<param name="n">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>The base 10 logarithm of the specified number.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Max(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Returns the larger of the two <see cref="T:System.Data.OracleClient.OracleNumber" /> parameter values.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>The larger of <paramref name="x" /> or <paramref name="y" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Min(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Returns the smaller of the two <see cref="T:System.Data.OracleClient.OracleNumber" /> parameter values.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>The smaller of <paramref name="x" /> or <paramref name="y" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Modulo(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Calculates the modulus from dividing the first <see cref="T:System.Data.OracleClient.OracleNumber" /> structure by the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>A new <see cref="T:System.Data.OracleClient.OracleNumber" /> structure whose <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> property contains the modulus from the results of the division operation.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Multiply(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Calculates the product of the two <see cref="T:System.Data.OracleClient.OracleNumber" /> parameters.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>A new <see cref="T:System.Data.OracleClient.OracleNumber" /> structure whose <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> property contains the product of the multiplication.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Negate(System.Data.OracleClient.OracleNumber)">
<summary>Negates the value of the <see cref="T:System.Data.OracleClient.OracleNumber" /> parameter.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleNumber" /> with the negative value of x , or zero, if <paramref name="x" /> is zero.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.NotEquals(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Performs a logical comparison of the two <see cref="T:System.Data.OracleClient.OracleNumber" /> parameters to determine whether they are not equal.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.OracleClient.OracleBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.OracleClient.OracleNumber" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.op_Addition(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Calculates the sum of the two <see cref="T:System.Data.OracleClient.OracleNumber" /> structures.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>A new <see cref="T:System.Data.OracleClient.OracleNumber" /> structure whose <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> property contains the sum.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.op_Division(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Calculates the results of dividing the first <see cref="T:System.Data.OracleClient.OracleNumber" /> structure by the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>A new <see cref="T:System.Data.OracleClient.OracleNumber" /> structure whose <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> property contains the results of the division.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.op_Equality(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Performs a logical comparison of the two <see cref="T:System.Data.OracleClient.OracleNumber" /> structures to determine whether they are equal.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.OracleClient.OracleBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.OracleClient.OracleNumber" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.op_Explicit(System.Data.OracleClient.OracleNumber)~System.Decimal">
<summary>Converts the <see cref="T:System.Data.OracleClient.OracleNumber" /> structure to <see cref="T:System.Decimal" />.</summary>
<param name="x">The <see cref="T:System.Data.OracleClient.OracleNumber" /> structure to be converted. </param>
<returns>A new <see langword="Decimal" /> structure whose value equals the <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> of the <see cref="T:System.Data.OracleClient.OracleNumber" /> structure.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.op_Explicit(System.Data.OracleClient.OracleNumber)~System.Double">
<summary>Converts the <see cref="T:System.Data.OracleClient.OracleNumber" /> structure to <see cref="T:System.Double" />.</summary>
<param name="x">The <see cref="T:System.Data.OracleClient.OracleNumber" /> structure to be converted. </param>
<returns>A new <see langword="Double" /> structure whose value equals the <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> of the <see cref="T:System.Data.OracleClient.OracleNumber" /> structure.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.op_Explicit(System.Data.OracleClient.OracleNumber)~System.Int32">
<summary>Converts the <see cref="T:System.Data.OracleClient.OracleNumber" /> structure to <see cref="T:System.Int32" />.</summary>
<param name="x">The <see cref="T:System.Data.OracleClient.OracleNumber" /> structure to be converted. </param>
<returns>A new <see langword="Int32" /> structure whose value equals the <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> of the <see cref="T:System.Data.OracleClient.OracleNumber" /> structure.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.op_Explicit(System.Data.OracleClient.OracleNumber)~System.Int64">
<summary>Converts the <see cref="T:System.Data.OracleClient.OracleNumber" /> structure to <see cref="T:System.Int64" />.</summary>
<param name="x">The <see cref="T:System.Data.OracleClient.OracleNumber" /> structure to be converted. </param>
<returns>A new <see langword="Int64" /> structure whose value equals the <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> of the <see cref="T:System.Data.OracleClient.OracleNumber" /> structure.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.op_Explicit(System.Decimal)~System.Data.OracleClient.OracleNumber">
<summary>Converts the supplied <see langword="Decimal" /> structure to an <see cref="T:System.Data.OracleClient.OracleNumber" /> structure.</summary>
<param name="x">The <see langword="Decimal" /> structure to be converted. </param>
<returns>A new <see cref="T:System.Data.OracleClient.OracleNumber" /> structure whose <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> is equal to the value of the <see langword="Decimal" /> structure.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.op_Explicit(System.Double)~System.Data.OracleClient.OracleNumber">
<summary>Converts the supplied <see langword="Double" /> structure to an <see cref="T:System.Data.OracleClient.OracleNumber" /> structure.</summary>
<param name="x">The <see langword="Double" /> structure to be converted. </param>
<returns>A new <see cref="T:System.Data.OracleClient.OracleNumber" /> structure whose <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> property equals the value of the <see langword="Double" /> structure.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.op_Explicit(System.Int32)~System.Data.OracleClient.OracleNumber">
<summary>Converts the supplied <see langword="Int32" /> structure to an <see cref="T:System.Data.OracleClient.OracleNumber" /> structure.</summary>
<param name="x">The integer structure to be converted. </param>
<returns>A new <see cref="T:System.Data.OracleClient.OracleNumber" /> structure whose <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> property equals the value of the <see langword="Int32" /> structure.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.op_Explicit(System.Int64)~System.Data.OracleClient.OracleNumber">
<summary>Converts the supplied <see langword="Int64" /> structure to an <see cref="T:System.Data.OracleClient.OracleNumber" /> structure.</summary>
<param name="x">The <see langword="Int64" /> structure to be converted. </param>
<returns>A new <see cref="T:System.Data.OracleClient.OracleNumber" /> structure whose <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> property is equal to the value of the <see langword="Int64" /> structure.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.op_Explicit(System.String)~System.Data.OracleClient.OracleNumber">
<summary>Converts the supplied <see langword="String" /> to an <see cref="T:System.Data.OracleClient.OracleNumber" /> structure.</summary>
<param name="x">The <see langword="String" /> to be converted. </param>
<returns>A new <see cref="T:System.Data.OracleClient.OracleNumber" /> structure whose <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> equals the value of the <see langword="String" /> structure.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.op_GreaterThan(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Performs a logical comparison of two <see cref="T:System.Data.OracleClient.OracleNumber" /> structures to determine whether the first is greater than the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleNumber" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.op_GreaterThanOrEqual(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Performs a logical comparison of the two <see cref="T:System.Data.OracleClient.OracleNumber" /> parameters to determine whether the first is greater than or equal to the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is greater than or equal to the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleNumber" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.op_Inequality(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Performs a logical comparison of the two <see cref="T:System.Data.OracleClient.OracleNumber" /> parameters to determine whether they are equal.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.OracleClient.OracleBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.OracleClient.OracleNumber" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.op_LessThan(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Performs a logical comparison of two <see cref="T:System.Data.OracleClient.OracleNumber" /> structures to determine whether the first is less than the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleNumber" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.op_LessThanOrEqual(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Performs a logical comparison of the two <see cref="T:System.Data.OracleClient.OracleNumber" /> parameters to determine whether the first is less than or equal to the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than or equal to the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleNumber" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.op_Modulus(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Calculates the remainder left over from dividing an <see cref="T:System.Data.OracleClient.OracleNumber" /> structure by a second <see cref="T:System.Data.OracleClient.OracleNumber" /> structure.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>A new <see cref="T:System.Data.OracleClient.OracleNumber" /> structure whose <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> property contains the modulus of the division.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.op_Multiply(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Calculates the product of two <see cref="T:System.Data.OracleClient.OracleNumber" /> structures.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>A new <see cref="T:System.Data.OracleClient.OracleNumber" /> structure whose <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> property contains the product of the multiplication.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.op_Subtraction(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Calculates the result of subtracting the second <see cref="T:System.Data.OracleClient.OracleNumber" /> structure from the first.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>A new <see cref="T:System.Data.OracleClient.OracleNumber" /> structure whose <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> property contains the results of the subtraction.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.op_UnaryNegation(System.Data.OracleClient.OracleNumber)">
<summary>Negates the <see cref="T:System.Data.OracleClient.OracleNumber" /> structure.</summary>
<param name="x">The <see cref="T:System.Data.OracleClient.OracleNumber" /> structure to be negated. </param>
<returns>A new <see cref="T:System.Data.OracleClient.OracleNumber" /> structure whose value contains the results of the negation.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Parse(System.String)">
<summary>Converts the <see cref="T:System.String" /> representation of a number to its <see cref="T:System.Data.OracleClient.OracleNumber" /> equivalent.</summary>
<param name="s">The <see langword="String" /> to be parsed. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleNumber" /> equivalent to the value contained in the specified <see cref="T:System.String" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Pow(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Calculates the result of raising a specified <see cref="T:System.Data.OracleClient.OracleNumber" /> structure to the power specified by a second <see cref="T:System.Data.OracleClient.OracleNumber" /> structure.</summary>
<param name="x">The <see cref="T:System.Data.OracleClient.OracleNumber" /> to be raised to a power. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> that specifies a power. </param>
<returns>The number <paramref name="x" /> raised to the power <paramref name="y" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Pow(System.Data.OracleClient.OracleNumber,System.Int32)">
<summary>Calculates the result of raising a specified <see cref="T:System.Data.OracleClient.OracleNumber" /> structure to the power specified by an <see langword="Int32" /> structure.</summary>
<param name="x">The <see cref="T:System.Data.OracleClient.OracleNumber" /> to be raised to a power. </param>
<param name="y">An <see langword="Int32" /> structure that specifies a power. </param>
<returns>The number <paramref name="x" /> raised to the power <paramref name="y" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Round(System.Data.OracleClient.OracleNumber,System.Int32)">
<summary>Gets the number nearest the specified <see cref="T:System.Data.OracleClient.OracleNumber" /> structure's value with the specified precision.</summary>
<param name="n">The <see cref="T:System.Data.OracleClient.OracleNumber" /> structure to be rounded. </param>
<param name="position">The number of significant fractional digits (precision) in the return value. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure containing the results of the rounding operation.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Shift(System.Data.OracleClient.OracleNumber,System.Int32)">
<summary>Shifts the specified number of digits to the left or right.</summary>
<param name="n">Number to operate on. </param>
<param name="digits">The number of decimal places to shift. </param>
<returns>The result of the operation.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Sign(System.Data.OracleClient.OracleNumber)">
<summary>Gets a value indicating the sign of an <see cref="T:System.Data.OracleClient.OracleNumber" /> structure's <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> property.</summary>
<param name="n">The <see cref="T:System.Data.OracleClient.OracleNumber" /> structure whose sign is to be evaluated. </param>
<returns>A number indicating the sign of the <see cref="T:System.Data.OracleClient.OracleNumber" /> structure.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Sin(System.Data.OracleClient.OracleNumber)">
<summary>Calculates the sine of an <see cref="T:System.Data.OracleClient.OracleNumber" />.</summary>
<param name="n">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>The sine of <paramref name="n" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Sinh(System.Data.OracleClient.OracleNumber)">
<summary>Calculates the hyperbolic sine of an <see cref="T:System.Data.OracleClient.OracleNumber" />.</summary>
<param name="n">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>The hyperbolic sine of <paramref name="n" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Sqrt(System.Data.OracleClient.OracleNumber)">
<summary>Calculates the square root of the <see cref="T:System.Data.OracleClient.OracleNumber" /> parameter.</summary>
<param name="n">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>The square root of <paramref name="n" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Subtract(System.Data.OracleClient.OracleNumber,System.Data.OracleClient.OracleNumber)">
<summary>Calculates the result of subtracting the second <see cref="T:System.Data.OracleClient.OracleNumber" /> structure from the first.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>A new <see cref="T:System.Data.OracleClient.OracleNumber" /> structure whose Value property contains the results of the subtraction.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Tan(System.Data.OracleClient.OracleNumber)">
<summary>Calculates the tangent of an <see cref="T:System.Data.OracleClient.OracleNumber" />.</summary>
<param name="n">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>The tangent of <paramref name="n" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Tanh(System.Data.OracleClient.OracleNumber)">
<summary>Calculates the hyperbolic tangent of an <see cref="T:System.Data.OracleClient.OracleNumber" />.</summary>
<param name="n">An <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. </param>
<returns>The hyperbolic tangent of <paramref name="n" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.ToString">
<summary>Converts this <see cref="T:System.Data.OracleClient.OracleNumber" /> structure to <see cref="T:System.String" />.</summary>
<returns>A new <see cref="T:System.String" /> object containing the string representation of the <see cref="T:System.Data.OracleClient.OracleNumber" /> structure's <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> property.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleNumber.Truncate(System.Data.OracleClient.OracleNumber,System.Int32)">
<summary>Truncates the specified <see cref="T:System.Data.OracleClient.OracleNumber" /> structure's value to the desired position.</summary>
<param name="n">The <see cref="T:System.Data.OracleClient.OracleNumber" /> structure to be truncated. </param>
<param name="position">The decimal position to which the number will be truncated. </param>
<returns>A <see cref="T:System.Data.OracleClient.OracleNumber" /> structure with its <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> truncated to the specified <paramref name="position" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleParameter.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleParameter" /> class.</summary>
</member>
<member name="M:System.Data.OracleClient.OracleParameter.#ctor(System.String,System.Data.OracleClient.OracleType)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleParameter" /> class that uses the parameter name and data type.</summary>
<param name="name">The name of the parameter. </param>
<param name="oracleType">One of the <see cref="T:System.Data.OracleClient.OracleType" /> values. </param>
<exception cref="T:System.ArgumentException">The value supplied in the <paramref name="oracleType" /> parameter is an invalid back-end data type. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleParameter.#ctor(System.String,System.Data.OracleClient.OracleType,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleParameter" /> class that uses the parameter name, data type, and length.</summary>
<param name="name">The name of the parameter. </param>
<param name="oracleType">One of the <see cref="T:System.Data.OracleClient.OracleType" /> values. </param>
<param name="size">The length of the parameter. </param>
<exception cref="T:System.ArgumentException">The value supplied in the <paramref name="oracleType" /> parameter is an invalid back-end data type. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleParameter.#ctor(System.String,System.Data.OracleClient.OracleType,System.Int32,System.Data.ParameterDirection,System.Boolean,System.Byte,System.Byte,System.String,System.Data.DataRowVersion,System.Object)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleParameter" /> class that uses the parameter name, data type, length, source column name, parameter direction, numeric precision, and other properties.</summary>
<param name="name">The name of the parameter. </param>
<param name="oracleType">One of the <see cref="T:System.Data.OracleClient.OracleType" /> values. </param>
<param name="size">The length of the parameter. </param>
<param name="direction">One of the <see cref="T:System.Data.ParameterDirection" /> values. </param>
<param name="isNullable">
<see langword="true" /> if the value of the field can be null, otherwise, <see langword="false" />. </param>
<param name="precision">The total number of digits to the left and right of the decimal point to which <see cref="P:System.Data.OracleClient.OracleParameter.Value" /> is resolved. </param>
<param name="scale">The total number of decimal places to which <see cref="P:System.Data.OracleClient.OracleParameter.Value" /> is resolved. </param>
<param name="srcColumn">The name of the source column. </param>
<param name="srcVersion">One of the <see cref="T:System.Data.DataRowVersion" /> values. </param>
<param name="value">An <see cref="T:System.Object" /> that is the value of the <see cref="T:System.Data.OracleClient.OracleParameter" />. </param>
<exception cref="T:System.ArgumentException">The value supplied in the <paramref name="oracleType" /> parameter is an invalid back-end data type. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleParameter.#ctor(System.String,System.Data.OracleClient.OracleType,System.Int32,System.Data.ParameterDirection,System.String,System.Data.DataRowVersion,System.Boolean,System.Object)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleParameter" /> class that uses the parameter name, data type, size, direction, source column, source version, and other properties.</summary>
<param name="name">The name of the parameter to map.</param>
<param name="oracleType">One of the <see cref="T:System.Data.OracleClient.OracleType" /> values.</param>
<param name="size">The length of the parameter.</param>
<param name="direction">One of the <see cref="T:System.Data.ParameterDirection" /> values.</param>
<param name="sourceColumn">The name of the source column. </param>
<param name="sourceVersion">One of the <see cref="T:System.Data.DataRowVersion" /> values. </param>
<param name="sourceColumnNullMapping">
<see langword="true" /> if the source column is nullable, otherwise <see langword="false" />.</param>
<param name="value">An <see cref="T:System.Object" /> that is the value of the <see cref="T:System.Data.OracleClient.OracleParameter" />.</param>
<exception cref="T:System.ArgumentException">The value supplied in the <paramref name="oracleType" /> parameter is an invalid back-end data type.</exception>
</member>
<member name="M:System.Data.OracleClient.OracleParameter.#ctor(System.String,System.Data.OracleClient.OracleType,System.Int32,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleParameter" /> class that uses the parameter name, data type, length, and source column name.</summary>
<param name="name">The name of the parameter. </param>
<param name="oracleType">One of the <see cref="T:System.Data.OracleClient.OracleType" /> values. </param>
<param name="size">The length of the parameter. </param>
<param name="srcColumn">The name of the source column. </param>
<exception cref="T:System.ArgumentException">The value supplied in the <paramref name="oracleType" /> parameter is an invalid back-end data type. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleParameter.#ctor(System.String,System.Object)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleParameter" /> class that uses the parameter name and an <see cref="T:System.Data.OracleClient.OracleParameter" /> object.</summary>
<param name="name">The name of the parameter. </param>
<param name="value">An <see cref="T:System.Data.OracleClient.OracleParameter" /> object. </param>
</member>
<member name="M:System.Data.OracleClient.OracleParameter.ResetDbType">
<summary>Resets the type associated with this <see cref="T:System.Data.OracleClient.OracleParameter" />.</summary>
</member>
<member name="M:System.Data.OracleClient.OracleParameter.ResetOracleType">
<summary>Resets the type associated with this <see cref="T:System.Data.OracleClient.OracleParameter" />.</summary>
</member>
<member name="M:System.Data.OracleClient.OracleParameter.System#ICloneable#Clone">
<summary>For a description of this member, see <see cref="M:System.ICloneable.Clone" />.</summary>
<returns>A new object that is a copy of this instance.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleParameter.ToString">
<summary>Gets a string that contains the <see cref="P:System.Data.OracleClient.OracleParameter.ParameterName" />.</summary>
<returns>A string that contains the <see cref="P:System.Data.OracleClient.OracleParameter.ParameterName" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleParameterCollection" /> class.</summary>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.Add(System.Data.OracleClient.OracleParameter)">
<summary>Adds the specified <see cref="T:System.Data.OracleClient.OracleParameter" /> to the <see cref="T:System.Data.OracleClient.OracleParameterCollection" />.</summary>
<param name="value">The <see cref="T:System.Data.OracleClient.OracleParameter" /> to add to the collection. </param>
<returns>A reference to the new <see cref="T:System.Data.OracleClient.OracleParameter" /> object.</returns>
<exception cref="T:System.ArgumentException">The <see cref="T:System.Data.OracleClient.OracleParameter" /> specified in the <paramref name="value" /> parameter is already added to this or another <see cref="T:System.Data.OracleClient.OracleParameterCollection" />. </exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="value" /> parameter is null. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.Add(System.Object)">
<summary>Adds the specified <see cref="T:System.Data.OracleClient.OracleParameter" /> object to the <see cref="T:System.Data.OracleClient.OracleParameterCollection" />.</summary>
<param name="value">The <see cref="T:System.Data.OracleClient.OracleParameter" /> object to add to the collection.</param>
<returns>The index of the new <see cref="T:System.Data.OracleClient.OracleParameter" /> object in the collection.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.Add(System.String,System.Data.OracleClient.OracleType)">
<summary>Adds an <see cref="T:System.Data.OracleClient.OracleParameter" /> to the <see cref="T:System.Data.OracleClient.OracleParameterCollection" /> given the parameter name and data type.</summary>
<param name="parameterName">The name of the parameter. </param>
<param name="dataType">One of the <see cref="T:System.Data.OracleClient.OracleType" /> values. </param>
<returns>A reference to the new <see cref="T:System.Data.OracleClient.OracleParameter" /> object.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.Add(System.String,System.Data.OracleClient.OracleType,System.Int32)">
<summary>Adds an <see cref="T:System.Data.OracleClient.OracleParameter" /> to the <see cref="T:System.Data.OracleClient.OracleParameterCollection" /> given the parameter name, data type, and column length.</summary>
<param name="parameterName">The name of the parameter. </param>
<param name="dataType">One of the <see cref="T:System.Data.OracleClient.OracleType" /> values. </param>
<param name="size">The length of the column. </param>
<returns>A reference to the new <see cref="T:System.Data.OracleClient.OracleParameter" /> object.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.Add(System.String,System.Data.OracleClient.OracleType,System.Int32,System.String)">
<summary>Adds an <see cref="T:System.Data.OracleClient.OracleParameter" /> to the <see cref="T:System.Data.OracleClient.OracleParameterCollection" /> given the parameter name, data type, column length, and source column name.</summary>
<param name="parameterName">The name of the parameter. </param>
<param name="dataType">One of the <see cref="T:System.Data.OracleClient.OracleType" /> values. </param>
<param name="size">The length of the column. </param>
<param name="srcColumn">The name of the source column. </param>
<returns>A reference to the new <see cref="T:System.Data.OracleClient.OracleParameter" /> object.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.Add(System.String,System.Object)">
<summary>Adds an <see cref="T:System.Data.OracleClient.OracleParameter" /> to the <see cref="T:System.Data.OracleClient.OracleParameterCollection" /> given the parameter name and value.</summary>
<param name="parameterName">The name of the parameter. </param>
<param name="value">The <see cref="P:System.Data.OracleClient.OracleParameter.Value" /> of the <see cref="T:System.Data.OracleClient.OracleParameter" /> to add to the collection. </param>
<returns>A reference to the new <see cref="T:System.Data.OracleClient.OracleParameter" /> object.</returns>
<exception cref="T:System.InvalidCastException">The <paramref name="value" /> parameter is not an <see cref="T:System.Data.OracleClient.OracleParameter" />. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.AddRange(System.Array)">
<summary>Adds an array of values to the end of the <see cref="T:System.Data.OracleClient.OracleParameterCollection" />.</summary>
<param name="values">The <see cref="T:System.Array" /> values to add.</param>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.AddRange(System.Data.OracleClient.OracleParameter[])">
<summary>Adds an array of <see cref="T:System.Data.OracleClient.OracleParameter" /> values to the end of the <see cref="T:System.Data.OracleClient.OracleParameterCollection" />.</summary>
<param name="values">The <see cref="T:System.Data.OracleClient.OracleParameter" /> values to add.</param>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.AddWithValue(System.String,System.Object)">
<summary>Adds a value to the end of the <see cref="T:System.Data.OracleClient.OracleParameterCollection" />.</summary>
<param name="parameterName">The name of the parameter.</param>
<param name="value">The value to be added.</param>
<returns>A <see cref="T:System.Data.OracleClient.OracleParameter" /> object.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.Clear">
<summary>Removes all of the <see cref="T:System.Data.OracleClient.OracleParameter" /> objects from the <see cref="T:System.Data.OracleClient.OracleParameterCollection" />.</summary>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.Contains(System.Data.OracleClient.OracleParameter)">
<summary>Determines whether the specified <see cref="T:System.Data.OracleClient.OracleParameter" /> is in the <see cref="T:System.Data.OracleClient.OracleParameterCollection" />.</summary>
<param name="value">The <see cref="T:System.Data.OracleClient.OracleParameter" /> value.</param>
<returns>
<see langword="true" /> if the <see cref="T:System.Data.OracleClient.OracleParameterCollection" /> contains the value, <see langword="false" /> otherwise.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.Contains(System.Object)">
<summary>Determines whether the specified object is in the <see cref="T:System.Data.OracleClient.OracleParameterCollection" />.</summary>
<param name="value">The <see cref="T:System.Object" /> value.</param>
<returns>
<see langword="true" /> if the <see cref="T:System.Data.OracleClient.OracleParameterCollection" /> contains the value, <see langword="false" /> otherwise.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.Contains(System.String)">
<summary>Indicates whether an <see cref="T:System.Data.OracleClient.OracleParameter" /> with the specified name is contained in the collection.</summary>
<param name="parameterName">The name of the <see cref="T:System.Data.OracleClient.OracleParameter" /> to look for in the collection.</param>
<returns>
<see langword="true" /> if the <see cref="T:System.Data.OracleClient.OracleParameter" /> is in the collection; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.CopyTo(System.Array,System.Int32)">
<summary>Copies all the elements of the current <see cref="T:System.Data.OracleClient.OracleParameterCollection" /> to the specified one-dimensional <see cref="T:System.Array" /> starting at the specified destination <see cref="T:System.Array" /> index.</summary>
<param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from the current <see cref="T:System.Data.OracleClient.OracleParameterCollection" />.</param>
<param name="index">A 32-bit integer that represents the index in the <see cref="T:System.Array" /> at which copying begins.</param>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.CopyTo(System.Data.OracleClient.OracleParameter[],System.Int32)">
<summary>Copies all the elements of the current <see cref="T:System.Data.OracleClient.OracleParameterCollection" /> to the specified <see cref="T:System.Data.OracleClient.OracleParameterCollection" /> starting at the specified destination index.</summary>
<param name="array">The <see cref="T:System.Data.OracleClient.OracleParameterCollection" /> that is the destination of the elements copied from the current <see cref="T:System.Data.OracleClient.OracleParameterCollection" />.</param>
<param name="index">A 32-bit integer that represents the index in the <see cref="T:System.Data.OracleClient.OracleParameterCollection" /> at which copying begins.</param>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.GetEnumerator">
<summary>Returns an enumerator that iterates through the <see cref="T:System.Data.OracleClient.OracleParameterCollection" />.</summary>
<returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.IndexOf(System.Data.OracleClient.OracleParameter)">
<summary>Gets the location of the specified <see cref="T:System.Data.OracleClient.OracleParameter" /> within the collection.</summary>
<param name="value">The <see cref="T:System.Data.OracleClient.OracleParameter" /> to find.</param>
<returns>The zero-based location of the specified <see cref="T:System.Data.OracleClient.OracleParameter" /> that is a <see cref="T:System.Data.OracleClient.OracleParameter" /> within the collection. </returns>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.IndexOf(System.Object)">
<summary>Gets the location of the specified <see cref="T:System.Object" /> within the collection.</summary>
<param name="value">The <see cref="T:System.Object" /> to find.</param>
<returns>The zero-based location of the specified <see cref="T:System.Object" /> that is a <see cref="T:System.Data.OracleClient.OracleParameter" /> within the collection. </returns>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.IndexOf(System.String)">
<summary>Gets the location of the specified <see cref="T:System.Data.OracleClient.OracleParameter" /> with the specified name.</summary>
<param name="parameterName">The case-sensitive name of the <see cref="T:System.Data.OracleClient.OracleParameter" /> to find.</param>
<returns>The zero-based location of the specified <see cref="T:System.Data.OracleClient.OracleParameter" /> that is a <see cref="T:System.Data.OracleClient.OracleParameter" /> within the collection. </returns>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.Insert(System.Int32,System.Data.OracleClient.OracleParameter)">
<summary>Inserts a <see cref="T:System.Data.OracleClient.OracleParameter" /> object into the <see cref="T:System.Data.OracleClient.OracleParameterCollection" /> at the specified index.</summary>
<param name="index">The zero-based index at which value should be inserted.</param>
<param name="value">A <see cref="T:System.Data.OracleClient.OracleParameter" /> object to be inserted in the <see cref="T:System.Data.OracleClient.OracleParameterCollection" />.</param>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.Insert(System.Int32,System.Object)">
<summary>Inserts a <see cref="T:System.Object" /> into the <see cref="T:System.Data.OracleClient.OracleParameterCollection" /> at the specified index.</summary>
<param name="index">The zero-based index at which value should be inserted.</param>
<param name="value">A <see cref="T:System.Object" /> to be inserted in the <see cref="T:System.Data.OracleClient.OracleParameterCollection" />.</param>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.Remove(System.Data.OracleClient.OracleParameter)">
<summary>Removes the specified <see cref="T:System.Data.OracleClient.OracleParameter" /> object from the collection.</summary>
<param name="value">A <see cref="T:System.Data.OracleClient.OracleParameter" /> object to remove from the collection.</param>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.Remove(System.Object)">
<summary>Removes the specified <see cref="T:System.Data.OracleClient.OracleParameter" /> object from the collection.</summary>
<param name="value">A <see cref="T:System.Object" /> object to remove from the collection.</param>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.RemoveAt(System.Int32)">
<summary>Removes the <see cref="T:System.Data.OracleClient.OracleParameter" /> object at the specified index from the collection.</summary>
<param name="index">The zero-based index of the <see cref="T:System.Data.OracleClient.OracleParameter" /> object to remove.</param>
</member>
<member name="M:System.Data.OracleClient.OracleParameterCollection.RemoveAt(System.String)">
<summary>Removes the <see cref="T:System.Data.OracleClient.OracleParameter" /> object with the specified name from the collection.</summary>
<param name="parameterName">The name of the <see cref="T:System.Data.OracleClient.OracleParameter" /> object to remove.</param>
</member>
<member name="M:System.Data.OracleClient.OraclePermission.#ctor(System.Security.Permissions.PermissionState)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OraclePermission" /> class with one of the <see cref="T:System.Security.Permissions.PermissionState" /> values.</summary>
<param name="state">One of the <see cref="T:System.Security.Permissions.PermissionState" /> values. </param>
</member>
<member name="M:System.Data.OracleClient.OraclePermission.Add(System.String,System.String,System.Data.KeyRestrictionBehavior)">
<summary>Creates a new set of permissions.</summary>
<param name="connectionString">The connection string.</param>
<param name="restrictions">The key restrictions.</param>
<param name="behavior">One of the <see cref="T:System.Data.KeyRestrictionBehavior" /> enumerations.</param>
</member>
<member name="M:System.Data.OracleClient.OraclePermission.Copy">
<summary>When implemented by a derived class, creates and returns an identical copy of the current permission object.</summary>
<returns>A copy of the current permission object.</returns>
</member>
<member name="M:System.Data.OracleClient.OraclePermission.FromXml(System.Security.SecurityElement)">
<summary>When overridden in a derived class, reconstructs a security object with a specified state from an XML encoding.</summary>
<param name="securityElement">A <see cref="T:System.Security.SecurityElement" /> expression.</param>
</member>
<member name="M:System.Data.OracleClient.OraclePermission.Intersect(System.Security.IPermission)">
<summary>When implemented by a derived class, creates and returns a permission that is the intersection of the current permission and the specified permission.</summary>
<param name="target">A permission to intersect with the current permission. It must be of the same type as the current permission.</param>
<returns>A new permission that represents the intersection of the current permission and the specified permission. This new permission is <see langword="null" /> if the intersection is empty.</returns>
</member>
<member name="M:System.Data.OracleClient.OraclePermission.IsSubsetOf(System.Security.IPermission)">
<summary>When implemented by a derived class, determines whether the current permission is a subset of the specified permission.</summary>
<param name="target">A permission that is to be tested for the subset relationship. This permission must be of the same type as the current permission.</param>
<returns>
<see langword="true" /> if the current permission is a subset of the specified permission; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OraclePermission.IsUnrestricted">
<summary>Returns a value indicating whether the permission can be represented as unrestricted without any knowledge of the permission semantics.</summary>
<returns>
<see langword="true" /> if the permission can be represented as unrestricted.</returns>
</member>
<member name="M:System.Data.OracleClient.OraclePermission.ToXml">
<summary>Creates an XML encoding of the security object and its current state.</summary>
<returns>An XML encoding of the security object, including any state information.</returns>
</member>
<member name="M:System.Data.OracleClient.OraclePermission.Union(System.Security.IPermission)">
<summary>Creates a permission that is the union of the current permission and the specified permission.</summary>
<param name="target">A permission to combine with the current permission. It must be of the same type as the current permission.</param>
<returns>A new permission that represents the union of the current permission and the specified permission.</returns>
</member>
<member name="M:System.Data.OracleClient.OraclePermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OraclePermissionAttribute" /> class.</summary>
<param name="action">One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values representing an action that can be performed using declarative security. </param>
</member>
<member name="M:System.Data.OracleClient.OraclePermissionAttribute.CreatePermission">
<summary>Returns an <see cref="T:System.Data.OracleClient.OraclePermission" /> object that is configured according to the attribute properties.</summary>
<returns>An <see cref="T:System.Data.OracleClient.OraclePermission" /> object.</returns>
</member>
<member name="M:System.Data.OracleClient.OraclePermissionAttribute.ShouldSerializeConnectionString">
<summary>Identifies whether the attribute should serialize the connection string.</summary>
<returns>
<see langword="true" /> if the attribute should serialize the connection string; otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OraclePermissionAttribute.ShouldSerializeKeyRestrictions">
<summary>Identifies whether the attribute should serialize the set of key restrictions.</summary>
<returns>
<see langword="true" /> if the attribute should serialize the set of key restrictions, otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleRowUpdatedEventArgs.#ctor(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleRowUpdatedEventArgs" /> class.</summary>
<param name="row">The <see cref="T:System.Data.DataRow" /> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />. </param>
<param name="command">The <see cref="T:System.Data.IDbCommand" /> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> is called. </param>
<param name="statementType">One of the <see cref="T:System.Data.StatementType" /> values that specifies the type of query executed. </param>
<param name="tableMapping">The <see cref="T:System.Data.Common.DataTableMapping" /> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />. </param>
</member>
<member name="M:System.Data.OracleClient.OracleRowUpdatingEventArgs.#ctor(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleRowUpdatingEventArgs" /> class.</summary>
<param name="row">The <see cref="T:System.Data.DataRow" /> to update. </param>
<param name="command">The <see cref="T:System.Data.IDbCommand" /> to execute during update. </param>
<param name="statementType">One of the <see cref="T:System.Data.StatementType" /> values that specifies the type of query executed. </param>
<param name="tableMapping">The <see cref="T:System.Data.Common.DataTableMapping" /> sent through an update. </param>
</member>
<member name="M:System.Data.OracleClient.OracleString.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleString" /> class and specifies the string to store.</summary>
<param name="s">The string to store. </param>
</member>
<member name="M:System.Data.OracleClient.OracleString.CompareTo(System.Object)">
<summary>Compares this instance of <see cref="T:System.Data.OracleClient.OracleString" /> to the supplied object and returns an indication of their relative values.</summary>
<param name="obj">The object to be compared. </param>
<returns>A signed number indicating the relative values of the instance and the object.Return Value Condition Less than zero This instance is less than object. Zero This instance is the same as object. Greater than zero This instance is greater than object -or- object is a null reference (<see langword="Nothing" />) </returns>
</member>
<member name="M:System.Data.OracleClient.OracleString.Concat(System.Data.OracleClient.OracleString,System.Data.OracleClient.OracleString)">
<summary>Concatenates the two specified <see cref="T:System.Data.OracleClient.OracleString" /> structures.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleString" /> containing the newly concatenated value representing the contents of the two <see cref="T:System.Data.OracleClient.OracleString" /> parameters.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleString.Equals(System.Data.OracleClient.OracleString,System.Data.OracleClient.OracleString)">
<summary>Performs a logical comparison of the two <see cref="T:System.Data.OracleClient.OracleString" /> operands to determine if they are equal.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.OracleClient.OracleBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.OracleClient.OracleString" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleString.Equals(System.Object)">
<summary>Compares the supplied object parameter to the <see cref="P:System.Data.OracleClient.OracleString.Value" /> property of the <see cref="T:System.Data.OracleClient.OracleString" /> object.</summary>
<param name="value">The object to be compared. </param>
<returns>Equals will return <see langword="true" /> if the object is an instance of <see cref="T:System.Data.OracleClient.OracleString" /> and the two are equal; otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleString.GetHashCode">
<summary>Gets the hash code for this instance.</summary>
<returns>A 32-bit signed integer hash code.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleString.GreaterThan(System.Data.OracleClient.OracleString,System.Data.OracleClient.OracleString)">
<summary>Performs a logical comparison of the two <see cref="T:System.Data.OracleClient.OracleString" /> operands to determine if the first is greater than the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is greater than the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleString" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleString.GreaterThanOrEqual(System.Data.OracleClient.OracleString,System.Data.OracleClient.OracleString)">
<summary>Performs a logical comparison of the two <see cref="T:System.Data.OracleClient.OracleString" /> operands to determine if the first is greater than or equal to the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is greater than or equal to the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleString" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleString.LessThan(System.Data.OracleClient.OracleString,System.Data.OracleClient.OracleString)">
<summary>Performs a logical comparison of the two <see cref="T:System.Data.OracleClient.OracleString" /> operands to determine if the first is less than the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleString" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleString.LessThanOrEqual(System.Data.OracleClient.OracleString,System.Data.OracleClient.OracleString)">
<summary>Performs a logical comparison of the two <see cref="T:System.Data.OracleClient.OracleString" /> operands to determine if the first is less than or equal to the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than or equal to the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleString" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleString.NotEquals(System.Data.OracleClient.OracleString,System.Data.OracleClient.OracleString)">
<summary>Performs a logical comparison of the two <see cref="T:System.Data.OracleClient.OracleString" /> operands to determine if they are not equal.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.OracleClient.OracleBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.OracleClient.OracleString" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleString.op_Addition(System.Data.OracleClient.OracleString,System.Data.OracleClient.OracleString)">
<summary>Concatenates the two specified <see cref="T:System.Data.OracleClient.OracleString" /> structures.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleString" /> containing the newly concatenated value representing the contents of the two <see cref="T:System.Data.OracleClient.OracleString" /> parameters.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleString.op_Equality(System.Data.OracleClient.OracleString,System.Data.OracleClient.OracleString)">
<summary>Performs a logical comparison of the two <see cref="T:System.Data.OracleClient.OracleString" /> operands to determine if they are equal.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.OracleClient.OracleBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.OracleClient.OracleString" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleString.op_Explicit(System.Data.OracleClient.OracleString)~System.String">
<summary>Converts an <see cref="T:System.Data.OracleClient.OracleString" /> to a <see cref="T:System.String" />.</summary>
<param name="x">The <see langword="OracleString" /> to be converted. </param>
<returns>A <see langword="String" />, whose contents are the same as the <see cref="P:System.Data.OracleClient.OracleString.Value" /> property of the <see langword="OracleString" /> parameter.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleString.op_GreaterThan(System.Data.OracleClient.OracleString,System.Data.OracleClient.OracleString)">
<summary>Performs a logical comparison of the two <see cref="T:System.Data.OracleClient.OracleString" /> operands to determine if the first is greater than the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is greater than the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleString" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleString.op_GreaterThanOrEqual(System.Data.OracleClient.OracleString,System.Data.OracleClient.OracleString)">
<summary>Performs a logical comparison of the two <see cref="T:System.Data.OracleClient.OracleString" /> operands to determine if the first is greater than or equal to the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is greater than or equal to the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleString" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleString.op_Implicit(System.String)~System.Data.OracleClient.OracleString">
<summary>Converts the <see cref="T:System.String" /> parameter to an <see cref="T:System.Data.OracleClient.OracleString" />.</summary>
<param name="s">The <see cref="T:System.String" /> to be converted. </param>
<returns>An <see langword="OracleString" /> containing the value of the specified <see langword="String" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleString.op_Inequality(System.Data.OracleClient.OracleString,System.Data.OracleClient.OracleString)">
<summary>Performs a logical comparison of the two <see cref="T:System.Data.OracleClient.OracleString" /> operands to determine if they are equal.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.OracleClient.OracleBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.OracleClient.OracleString" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleString.op_LessThan(System.Data.OracleClient.OracleString,System.Data.OracleClient.OracleString)">
<summary>Performs a logical comparison of the two <see cref="T:System.Data.OracleClient.OracleString" /> operands to determine if the first is less than the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleString" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleString.op_LessThanOrEqual(System.Data.OracleClient.OracleString,System.Data.OracleClient.OracleString)">
<summary>Performs a logical comparison of the two <see cref="T:System.Data.OracleClient.OracleString" /> operands to determine if the first is less than or equal to the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleString" />. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than or equal to the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleString" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleString.ToString">
<summary>Converts an <see langword="OracleString" /> object to a <see langword="String" />.</summary>
<returns>A <see langword="String" /> with the same value as this <see langword="OracleString" /> structure.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleTimeSpan.#ctor(System.Data.OracleClient.OracleTimeSpan)">
<summary>Initializes a new <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure from an existing one.</summary>
<param name="from">An existing <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure from which to create the new structure. </param>
</member>
<member name="M:System.Data.OracleClient.OracleTimeSpan.#ctor(System.Int32,System.Int32,System.Int32)">
<summary>Initializes a new <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure to a specified number of hours, minutes, and seconds.</summary>
<param name="hours">Number of hours. </param>
<param name="minutes">Number of minutes. </param>
<param name="seconds">Number of seconds. </param>
<exception cref="T:System.ArgumentOutOfRangeException">The parameters specify an <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> value less than <see cref="F:System.Data.OracleClient.OracleTimeSpan.MinValue" /> or greater than <see cref="F:System.Data.OracleClient.OracleTimeSpan.MaxValue" />. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleTimeSpan.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>Initializes a new <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure to a specified number of days, hours, minutes, and seconds.</summary>
<param name="days">Number of days. </param>
<param name="hours">Number of hours. </param>
<param name="minutes">Number of minutes. </param>
<param name="seconds">Number of seconds. </param>
<exception cref="T:System.ArgumentOutOfRangeException">The parameters specify an <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> value less than <see cref="F:System.Data.OracleClient.OracleTimeSpan.MinValue" /> or greater than <see cref="F:System.Data.OracleClient.OracleTimeSpan.MaxValue" />. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleTimeSpan.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>Initializes a new <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure to a specified number of days, hours, minutes, seconds, and milliseconds.</summary>
<param name="days">Number of days. </param>
<param name="hours">Number of hours. </param>
<param name="minutes">Number of minutes. </param>
<param name="seconds">Number of seconds. </param>
<param name="milliseconds">Number of milliseconds. </param>
<exception cref="T:System.ArgumentOutOfRangeException">The parameters specify an <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> value less than <see cref="F:System.Data.OracleClient.OracleTimeSpan.MinValue" /> or greater than <see cref="F:System.Data.OracleClient.OracleTimeSpan.MaxValue" />. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleTimeSpan.#ctor(System.Int64)">
<summary>Initializes a new <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure to the specified number of ticks.</summary>
<param name="ticks">A time period expressed in 100-nanosecond units. </param>
</member>
<member name="M:System.Data.OracleClient.OracleTimeSpan.#ctor(System.TimeSpan)">
<summary>Initializes a new instance of the <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure with the specified <see cref="T:System.TimeSpan" />.</summary>
<param name="ts">The specified <see cref="T:System.TimeSpan" />. </param>
</member>
<member name="M:System.Data.OracleClient.OracleTimeSpan.CompareTo(System.Object)">
<summary>Compares this <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure to the supplied object and returns an indication of their relative values.</summary>
<param name="obj">The object to be compared. </param>
<returns>A signed number indicating the relative values of the instance of the <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure and the object.Return Value Condition Less than zero This instance is less than the object. Zero This instance is the same as the object. Greater than zero This instance is greater than the object, or the object is a null reference (<see langword="Nothing" /> in Visual Basic). </returns>
</member>
<member name="M:System.Data.OracleClient.OracleTimeSpan.Equals(System.Data.OracleClient.OracleTimeSpan,System.Data.OracleClient.OracleTimeSpan)">
<summary>Performs a logical comparison of two <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structures to determine whether they are equal.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure. </param>
<returns>
<see langword="true" /> if the two values are equal, otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleTimeSpan.Equals(System.Object)">
<summary>Compares the supplied object parameter to the <see cref="P:System.Data.OracleClient.OracleTimeSpan.Value" /> property of the <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> object.</summary>
<param name="value">The object to be compared. </param>
<returns>
<see langword="true" /> if the object is an instance of <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> and the two are equal, otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleTimeSpan.GetHashCode">
<summary>Gets the hash code for this instance.</summary>
<returns>A 32-bit signed integer hash code.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleTimeSpan.GreaterThan(System.Data.OracleClient.OracleTimeSpan,System.Data.OracleClient.OracleTimeSpan)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> to determine whether the first is greater than the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is greater than the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleTimeSpan.GreaterThanOrEqual(System.Data.OracleClient.OracleTimeSpan,System.Data.OracleClient.OracleTimeSpan)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> to determine whether the first is greater than or equal to the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is greater than or equal to the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> will be <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleTimeSpan.LessThan(System.Data.OracleClient.OracleTimeSpan,System.Data.OracleClient.OracleTimeSpan)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> to determine whether the first is less than the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleTimeSpan.LessThanOrEqual(System.Data.OracleClient.OracleTimeSpan,System.Data.OracleClient.OracleTimeSpan)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> to determine whether the first is less than or equal to the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than or equal to the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleTimeSpan.NotEquals(System.Data.OracleClient.OracleTimeSpan,System.Data.OracleClient.OracleTimeSpan)">
<summary>Performs a logical comparison of two instances of <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> to determine whether they are not equal.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.OracleClient.OracleBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleTimeSpan.op_Equality(System.Data.OracleClient.OracleTimeSpan,System.Data.OracleClient.OracleTimeSpan)">
<summary>Performs a logical comparison of two <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structures to determine whether they are equal.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure. </param>
<returns>
<see langword="true" /> if the two values are equal, otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleTimeSpan.op_Explicit(System.Data.OracleClient.OracleTimeSpan)~System.TimeSpan">
<summary>Converts an <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure to a <see cref="T:System.TimeSpan" /> structure.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure to convert to a <see cref="T:System.TimeSpan" /> structure. </param>
<returns>A <see cref="T:System.TimeSpan" /> structure.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleTimeSpan.op_Explicit(System.String)~System.Data.OracleClient.OracleTimeSpan">
<summary>Converts a string to an <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure.</summary>
<param name="x">A string to convert to an <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleTimeSpan.op_GreaterThan(System.Data.OracleClient.OracleTimeSpan,System.Data.OracleClient.OracleTimeSpan)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> to determine whether the first is greater than the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is greater than the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleTimeSpan.op_GreaterThanOrEqual(System.Data.OracleClient.OracleTimeSpan,System.Data.OracleClient.OracleTimeSpan)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> to determine whether the first is greater than or equal to the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is greater than or equal to the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleTimeSpan.op_Inequality(System.Data.OracleClient.OracleTimeSpan,System.Data.OracleClient.OracleTimeSpan)">
<summary>Performs a logical comparison of two instances of <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> to determine whether they are equal.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.OracleClient.OracleBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleTimeSpan.op_LessThan(System.Data.OracleClient.OracleTimeSpan,System.Data.OracleClient.OracleTimeSpan)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> to determine whether the first is less than the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleTimeSpan.op_LessThanOrEqual(System.Data.OracleClient.OracleTimeSpan,System.Data.OracleClient.OracleTimeSpan)">
<summary>Compares two instances of <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> to determine whether the first is less than or equal to the second.</summary>
<param name="x">An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure. </param>
<param name="y">An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleBoolean" /> that is <see cref="F:System.Data.OracleClient.OracleBoolean.True" /> if the first instance is less than or equal to the second instance, otherwise <see cref="F:System.Data.OracleClient.OracleBoolean.False" />. If either instance of <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> is null, the <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.Null" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleTimeSpan.Parse(System.String)">
<summary>Converts the specified <see cref="T:System.String" /> representation of a date and time to its <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> equivalent.</summary>
<param name="s">The <see langword="String" /> to be parsed. </param>
<returns>An <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure equal to the date and time represented by the specified <see langword="String" />.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleTimeSpan.ToString">
<summary>Converts this <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure to a <see cref="T:System.String" />.</summary>
<returns>A <see langword="String" /> representing the <see cref="P:System.Data.OracleClient.OracleTimeSpan.Value" /> property of this <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure.</returns>
</member>
<member name="M:System.Data.OracleClient.OracleTransaction.Commit">
<summary>Commits the SQL database transaction.</summary>
<exception cref="T:System.Exception">An error occurred while trying to commit the transaction. </exception>
<exception cref="T:System.InvalidOperationException">The transaction has already been committed or rolled back.-or- The connection is broken. </exception>
</member>
<member name="M:System.Data.OracleClient.OracleTransaction.Rollback">
<summary>Rolls back a transaction from a pending state.</summary>
<exception cref="T:System.Exception">An error occurred while trying to commit the transaction. </exception>
<exception cref="T:System.InvalidOperationException">The transaction has already been committed or rolled back.-or- The connection is broken. </exception>
</member>
<member name="P:System.Data.OracleClient.OracleBFile.CanRead">
<summary>Gets a value indicating whether the <see langword="BFILE" /> stream can be read.</summary>
<returns>
<see langword="false" /> if a <see langword="BFILE" /> is closed or disposed; otherwise <see langword="true" />. Always <see langword="true" /> for <see cref="F:System.Data.OracleClient.OracleBFile.Null" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleBFile.CanSeek">
<summary>Gets a value indicating whether forward-seek and backward-seek operations can be performed.</summary>
<returns>
<see langword="false" /> if a <see langword="BFILE" /> is closed or disposed; otherwise <see langword="true" />. Always <see langword="true" /> for <see cref="F:System.Data.OracleClient.OracleBFile.Null" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleBFile.CanWrite">
<summary>Gets a value indicating whether the object supports writing.</summary>
<returns>Always returns <see langword="false" /> because the Oracle <see langword="BFILE" /> data type is read-only.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleBFile.Connection">
<summary>Gets the <see cref="T:System.Data.OracleClient.OracleConnection" /> used by this instance of the <see cref="T:System.Data.OracleClient.OracleBFile" />.</summary>
<returns>The connection to a data source. The default is a null value.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleBFile.DirectoryName">
<summary>Gets the name of the DIRECTORY object, with which an <see cref="T:System.Data.OracleClient.OracleBFile" /> object is associated.</summary>
<returns>The name of the DIRECTORY object.</returns>
<exception cref="T:System.ObjectDisposedException">Attempted to call <see langword="DirectoryName" /> on a closed or disposed <see langword="OracleBFile" /> object. </exception>
</member>
<member name="P:System.Data.OracleClient.OracleBFile.FileExists">
<summary>Gets a value indicating whether a physical file containing <see langword="BFILE" /> data exists in the operating system.</summary>
<returns>
<see langword="true" /> if a physical file containing <see langword="BFILE" /> data exists; otherwise <see langword="false" />.</returns>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Data.OracleClient.OracleBFile" /> object is closed or disposed. </exception>
<exception cref="T:System.InvalidOperationException">The connection with which a <see langword="BFILE" /> is associated is closed. </exception>
</member>
<member name="P:System.Data.OracleClient.OracleBFile.FileName">
<summary>Gets the name of the <see langword="BFILE" /> without the path.</summary>
<returns>The name of the BFILE.</returns>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Data.OracleClient.OracleBFile" /> object is closed or disposed. </exception>
</member>
<member name="P:System.Data.OracleClient.OracleBFile.IsNull">
<summary>Gets a value that indicates whether the <see cref="T:System.Data.OracleClient.OracleBFile" /> is a <see cref="F:System.Data.OracleClient.OracleBFile.Null" /> stream.</summary>
<returns>
<see langword="true" /> if the <see cref="T:System.Data.OracleClient.OracleBFile" /> is a <see cref="F:System.Data.OracleClient.OracleBFile.Null" /> stream; otherwise <see langword="false" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleBFile.Length">
<summary>Gets a value that returns the length in bytes of the physical file with which the <see cref="T:System.Data.OracleClient.OracleBFile" /> object is associated.</summary>
<returns>A long value representing the length of the physical file in bytes.</returns>
<exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed or disposed. </exception>
</member>
<member name="P:System.Data.OracleClient.OracleBFile.Position">
<summary>Gets the current read position in the <see cref="T:System.Data.OracleClient.OracleBFile" /> stream.</summary>
<returns>The current position within the <see cref="T:System.Data.OracleClient.OracleBFile" /> stream.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">Attempted to set a position with a negative value or greater than the length of the stream. </exception>
<exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed or disposed. </exception>
</member>
<member name="P:System.Data.OracleClient.OracleBFile.Value">
<summary>Gets an <see cref="T:System.Array" /> of type <see cref="T:System.Byte" /> that contains the <see cref="T:System.Data.OracleClient.OracleBFile" /> data.</summary>
<returns>An <see cref="T:System.Array" /> of type <see cref="T:System.Byte" /> that contains the <see cref="T:System.Data.OracleClient.OracleBFile" /> data.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleBinary.IsNull">
<summary>Gets a value indicating whether the <see cref="P:System.Data.OracleClient.OracleBinary.Value" /> property of the <see cref="T:System.Data.OracleClient.OracleBinary" /> structure is null.</summary>
<returns>
<see langword="true" /> if <see langword="Value" /> is null, otherwise <see langword="false" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleBinary.Item(System.Int32)">
<summary>Gets the single byte from the <see langword="Value" /> property located at the position indicated by the integer parameter, <paramref name="index" />. If <paramref name="index" /> indicates a position beyond the end of the byte array, an exception is raised.</summary>
<param name="index">The position of the byte to be retrieved. </param>
<returns>The byte located at the position indicated by the integer parameter.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleBinary.Length">
<summary>Gets the length in bytes of the <see cref="P:System.Data.OracleClient.OracleBinary.Value" /> property. This property is read-only.</summary>
<returns>The length of the binary data in the <see langword="Value" /> property.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleBinary.Value">
<summary>Gets the value of the <see cref="T:System.Data.OracleClient.OracleBinary" /> structure. This property is read-only.</summary>
<returns>The value of the <see langword="OracleBinary" /> structure.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleBoolean.IsFalse">
<summary>Indicates whether the current <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.False" />.</summary>
<returns>
<see langword="true" /> if <see langword="Value" /> is <see langword="False" />, otherwise <see langword="false" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleBoolean.IsNull">
<summary>Indicates whether or not the value of the <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure is null.</summary>
<returns>
<see langword="true" /> if the <see cref="T:System.Data.OracleClient.OracleBoolean" /> value of the structure is Null, otherwise <see langword="false" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleBoolean.IsTrue">
<summary>Indicates whether the current <see cref="P:System.Data.OracleClient.OracleBoolean.Value" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.True" />.</summary>
<returns>
<see langword="true" /> if <see langword="Value" /> is <see langword="True" />, otherwise <see langword="false" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleBoolean.Value">
<summary>Gets the <see cref="T:System.Data.OracleClient.OracleBoolean" /> structure's value. This property is read-only.</summary>
<returns>
<see langword="true" /> if the <see cref="T:System.Data.OracleClient.OracleBoolean" /> is <see cref="F:System.Data.OracleClient.OracleBoolean.True" />; otherwise <see langword="false" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleCommand.CommandText">
<summary>Gets or sets the SQL statement or stored procedure to execute against the database.</summary>
<returns>The SQL statement or stored procedure to execute. The default value is an empty string ("").</returns>
</member>
<member name="P:System.Data.OracleClient.OracleCommand.CommandTimeout">
<summary>Gets or sets the wait time before terminating the attempt to execute a command and generating an error.</summary>
<returns>The time (in seconds) to wait for the command to execute. The default value is 30 seconds.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleCommand.CommandType">
<summary>Gets or sets a value indicating how the <see cref="P:System.Data.OracleClient.OracleCommand.CommandText" /> property is interpreted.</summary>
<returns>One of the <see cref="T:System.Data.CommandType" /> values. The default is <see langword="Text" />.</returns>
<exception cref="T:System.ArgumentException">The value was not a valid <see cref="T:System.Data.CommandType" />. </exception>
</member>
<member name="P:System.Data.OracleClient.OracleCommand.Connection">
<summary>Gets or sets the <see cref="T:System.Data.OracleClient.OracleConnection" /> used by this instance of the <see cref="T:System.Data.OracleClient.OracleCommand" />.</summary>
<returns>The connection to a data source. The default is a null value.</returns>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Data.OracleClient.OracleCommand.Connection" /> property was changed while a transaction was in progress. </exception>
</member>
<member name="P:System.Data.OracleClient.OracleCommand.DesignTimeVisible">
<summary>Gets or sets a value indicating whether the command object should be visible in a customized interface control.</summary>
<returns>
<see langword="true" />, if the command object should be visible in a control; otherwise <see langword="false" />. The default is <see langword="true" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleCommand.Parameters">
<summary>Gets the <see cref="T:System.Data.OracleClient.OracleParameterCollection" />.</summary>
<returns>The parameters of the SQL statement or stored procedure. The default is an empty collection.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleCommand.Transaction">
<summary>Gets or sets the <see cref="T:System.Data.OracleClient.OracleTransaction" /> within which the <see cref="T:System.Data.OracleClient.OracleCommand" /> executes.</summary>
<returns>An <see cref="T:System.Data.OracleClient.OracleTransaction" />. The default is a null value.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleCommand.UpdatedRowSource">
<summary>Gets or sets a value that specifies how the <see langword="Update" /> method should apply command results to the <see cref="T:System.Data.DataRow" />.</summary>
<returns>One of the <see cref="T:System.Data.UpdateRowSource" /> values.</returns>
<exception cref="T:System.ArgumentException">The value entered was not one of the <see cref="T:System.Data.UpdateRowSource" /> values.</exception>
</member>
<member name="P:System.Data.OracleClient.OracleCommandBuilder.CatalogLocation">
<summary>Sets or gets the <see cref="T:System.Data.Common.CatalogLocation" /> for an instance of the <see cref="T:System.Data.Common.DbCommandBuilder" /> class.</summary>
<returns>A <see cref="T:System.Data.Common.CatalogLocation" /> object.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleCommandBuilder.CatalogSeparator">
<summary>Sets or gets a string used as the catalog separator for an instance of the <see cref="T:System.Data.Common.DbCommandBuilder" /> class.</summary>
<returns>A string indicating the catalog separator for use with an instance of the <see cref="T:System.Data.Common.DbCommandBuilder" /> class.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleCommandBuilder.DataAdapter">
<summary>Gets or sets an <see cref="T:System.Data.OracleClient.OracleDataAdapter" /> object for which this <see cref="T:System.Data.OracleClient.OracleCommandBuilder" /> object will generate SQL statements.</summary>
<returns>An <see cref="T:System.Data.OracleClient.OracleDataAdapter" /> object that is associated with this <see cref="T:System.Data.OracleClient.OracleCommandBuilder" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleCommandBuilder.SchemaSeparator">
<summary>Gets or sets the character to be used for the separator between the schema identifier and any other identifiers.</summary>
<returns>The character to be used as the schema separator.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleConnection.ConnectionString">
<summary>Gets or sets the string used to open an Oracle database.</summary>
<returns>The Oracle connection string that includes settings, such as the server name, needed to establish the initial connection. The default value is an empty string ("").</returns>
</member>
<member name="P:System.Data.OracleClient.OracleConnection.ConnectionTimeout">
<summary>Gets the time to wait to establish a connection before terminating the attempt and generating an error.</summary>
<returns>The time (in seconds) to wait for a connection to open. The default value is 15 seconds.</returns>
<exception cref="T:System.ArgumentException">The value specified is less than 0. </exception>
</member>
<member name="P:System.Data.OracleClient.OracleConnection.Database">
<summary>Gets the name of the current database or the database to be used after a connection is opened.</summary>
<returns>The name of the current database or the name of the database to be used after a connection is opened. The default value is an empty string.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleConnection.DataSource">
<summary>Gets the name of the Oracle server to which to connect.</summary>
<returns>The name of the Oracle server to which to connect. The default value is an empty string ("").</returns>
</member>
<member name="P:System.Data.OracleClient.OracleConnection.ServerVersion">
<summary>Gets a string containing the version of the server to which the client is connected.</summary>
<returns>The version of the connected server.</returns>
<exception cref="T:System.InvalidOperationException">The connection is closed. </exception>
</member>
<member name="P:System.Data.OracleClient.OracleConnection.State">
<summary>Gets the current state of the connection.</summary>
<returns>A bitwise combination of the <see cref="T:System.Data.ConnectionState" /> values. The default is <see langword="Closed" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleConnectionStringBuilder.DataSource">
<summary>Gets or sets the name of the Oracle data source to connect to.</summary>
<returns>The value of the <see cref="P:System.Data.OracleClient.OracleConnectionStringBuilder.DataSource" /> property, or <see cref="F:System.String.Empty" /> if none has been supplied.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleConnectionStringBuilder.Enlist">
<summary>Gets or sets a value that indicates whether the pooler automatically enlists the connection in the creation thread's current transaction context.</summary>
<returns>The value of the <see cref="P:System.Data.OracleClient.OracleConnectionStringBuilder.Enlist" /> property, or <see langword="true" /> if the property has not been previously set.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleConnectionStringBuilder.IntegratedSecurity">
<summary>Gets or sets a value that indicates whether "User ID" and "Password" are specified in the connection (when <see langword="false" />) or whether the current Windows account credentials are used for authentication (when <see langword="true" />).</summary>
<returns>The value of the <see cref="P:System.Data.OracleClient.OracleConnectionStringBuilder.IntegratedSecurity" /> property, or a <see langword="false" /> if none has been supplied.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleConnectionStringBuilder.IsFixedSize">
<summary>Gets a value that indicates whether the <see cref="T:System.Data.OracleClient.OracleConnectionStringBuilder" /> has a fixed size.</summary>
<returns>
<see langword="true" /> in every case, because the <see cref="T:System.Data.OracleClient.OracleConnectionStringBuilder" /> supplies a fixed-size collection of key/value pairs.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleConnectionStringBuilder.Item(System.String)">
<summary>Gets or sets the value associated with the specified key. In C#, this property is the indexer.</summary>
<param name="keyword">The key of the item to get or set.</param>
<returns>The value associated with the specified key. </returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="keyword" /> is a null reference (<see langword="Nothing" /> in Visual Basic).</exception>
<exception cref="T:System.Collections.Generic.KeyNotFoundException">Tried to add a key which does not exist within the available keys.</exception>
<exception cref="T:System.FormatException">Invalid value within the connection string (specifically, when a Boolean or numeric value was expected but not supplied).</exception>
</member>
<member name="P:System.Data.OracleClient.OracleConnectionStringBuilder.Keys">
<summary>Gets an <see cref="T:System.Collections.ICollection" /> that contains the keys in the <see cref="T:System.Data.OracleClient.OracleConnectionStringBuilder" />.</summary>
<returns>An <see cref="T:System.Collections.ICollection" /> that contains the keys in the <see cref="T:System.Data.OracleClient.OracleConnectionStringBuilder" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleConnectionStringBuilder.LoadBalanceTimeout">
<summary>Gets or sets the minimum time, in seconds, for the connection to live in the connection pool before it is removed.</summary>
<returns>The value of the <see cref="P:System.Data.OracleClient.OracleConnectionStringBuilder.LoadBalanceTimeout" /> property, or 0 if none has been supplied.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleConnectionStringBuilder.MaxPoolSize">
<summary>Gets or sets the maximum number of connections allowed in the connection pool for this specific connection string.</summary>
<returns>The value of the <see cref="P:System.Data.OracleClient.OracleConnectionStringBuilder.MaxPoolSize" /> property, or 100 if none has been supplied.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleConnectionStringBuilder.MinPoolSize">
<summary>Gets or sets the minimum number of connections allowed in the connection pool for this specific connection string.</summary>
<returns>The value of the <see cref="P:System.Data.OracleClient.OracleConnectionStringBuilder.MinPoolSize" /> property, or 0 if none has been supplied.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleConnectionStringBuilder.OmitOracleConnectionName">
<summary>Gets or sets the flag that enables transaction rollbacks on earlier versions of Oracle (prior to 8.1.7.4.1). </summary>
<returns>
<see langword="true" /> if transaction rollbacks are enabled; otherwise <see langword="false" />. </returns>
</member>
<member name="P:System.Data.OracleClient.OracleConnectionStringBuilder.Password">
<summary>Gets or sets the password for the Oracle account.</summary>
<returns>The value of the <see cref="P:System.Data.OracleClient.OracleConnectionStringBuilder.Password" /> property, or <see cref="F:System.String.Empty" /> if none has been supplied.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleConnectionStringBuilder.PersistSecurityInfo">
<summary>Gets or sets a Boolean value that indicates if security-sensitive information, such as the password, is not returned as part of the connection if the connection is open or has ever been in an open state.</summary>
<returns>The value of the <see cref="P:System.Data.OracleClient.OracleConnectionStringBuilder.PersistSecurityInfo" /> property, or <see langword="false" /> if none has been supplied.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleConnectionStringBuilder.Pooling">
<summary>Gets or sets a Boolean value that indicates whether the connection will be pooled, or whether each connection will be explicitly opened every time that the connection is requested.</summary>
<returns>The value of the <see cref="P:System.Data.OracleClient.OracleConnectionStringBuilder.Pooling" /> property, or <see langword="true " />if none has been supplied.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleConnectionStringBuilder.Unicode">
<summary>Gets or sets a Boolean value that indicates if the client supports the Unicode functionality available in later Oracle clients, or if it is non-Unicode aware.</summary>
<returns>The value of the <see cref="P:System.Data.OracleClient.OracleConnectionStringBuilder.Unicode" /> property, or <see langword="false " />if none has been supplied.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleConnectionStringBuilder.UserID">
<summary>Gets or sets the user ID to be used when connecting to Oracle.</summary>
<returns>The value of the <see cref="P:System.Data.OracleClient.OracleConnectionStringBuilder.UserID" /> property, or <see cref="F:System.String.Empty" /> if none has been supplied.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleConnectionStringBuilder.Values">
<summary>Gets an <see cref="T:System.Collections.ICollection" /> that contains the values in the <see cref="T:System.Data.OracleClient.OracleConnectionStringBuilder" />.</summary>
<returns>An <see cref="T:System.Collections.ICollection" /> that contains the values in the <see cref="T:System.Data.OracleClient.OracleConnectionStringBuilder" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleDataAdapter.DeleteCommand">
<summary>Gets or sets an SQL statement or stored procedure used to delete records in the database.</summary>
<returns>An <see cref="T:System.Data.OracleClient.OracleCommand" /> used during an update operation to delete records in the database that correspond to deleted rows in the <see langword="DataSet" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleDataAdapter.InsertCommand">
<summary>Gets or sets an SQL statement or stored procedure used to insert new records into the database.</summary>
<returns>An <see cref="T:System.Data.OracleClient.OracleCommand" /> used during an update operation to insert records in the database that correspond to new rows in the <see cref="T:System.Data.DataSet" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleDataAdapter.SelectCommand">
<summary>Gets or sets an SQL statement or stored procedure used to select records in the database.</summary>
<returns>An <see cref="T:System.Data.OracleClient.OracleCommand" /> that is used during a fill operation to select records from database for placement in the <see cref="T:System.Data.DataSet" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleDataAdapter.System#Data#IDbDataAdapter#DeleteCommand">
<summary>For a description of this member, see <see cref="P:System.Data.IDbDataAdapter.DeleteCommand" />.</summary>
<returns>A string representing the command.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleDataAdapter.System#Data#IDbDataAdapter#InsertCommand">
<summary>For a description of this member, see <see cref="P:System.Data.IDbDataAdapter.InsertCommand" />.</summary>
<returns>A string representing the command.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleDataAdapter.System#Data#IDbDataAdapter#SelectCommand">
<summary>For a description of this member, see <see cref="P:System.Data.IDbDataAdapter.SelectCommand" />.</summary>
<returns>A string representing the command.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleDataAdapter.System#Data#IDbDataAdapter#UpdateCommand">
<summary>For a description of this member, see <see cref="P:System.Data.IDbDataAdapter.UpdateCommand" />.</summary>
<returns>A string representing the command.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleDataAdapter.UpdateBatchSize">
<summary>Gets or sets a value that enables or disables batch processing support, and specifies the number of commands that can be executed in a batch.</summary>
<returns>The number of rows to process per batch. Value:Effect:0There is no limit on the batch size.1Disables batch updating.> 1Changes are sent using batches of <see cref="P:System.Data.OracleClient.OracleDataAdapter.UpdateBatchSize" /> operations at a time.When setting this to a value other than 1 all the commands associated with the <see cref="T:System.Data.OracleClient.OracleDataAdapter" /> have to have their <see cref="P:System.Data.IDbCommand.UpdatedRowSource" /> property set to <see langword="None" /> or <see langword="OutputParameters" />. An exception is thrown otherwise. </returns>
</member>
<member name="P:System.Data.OracleClient.OracleDataAdapter.UpdateCommand">
<summary>Gets or sets an SQL statement or stored procedure used to update records in the database.</summary>
<returns>An <see cref="T:System.Data.OracleClient.OracleCommand" /> used during an update operation to update records in the database that correspond to modified rows in the <see cref="T:System.Data.DataSet" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleDataReader.Depth">
<summary>Gets a value indicating the depth of nesting for the current row.</summary>
<returns>The depth of nesting for the current row.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleDataReader.FieldCount">
<summary>Gets the number of columns in the current row.</summary>
<returns>When not positioned in a valid record set, 0; otherwise the number of columns in the current record. The default is -1.</returns>
<exception cref="T:System.NotSupportedException">There is no current connection to a data source. </exception>
</member>
<member name="P:System.Data.OracleClient.OracleDataReader.HasRows">
<summary>Gets a value indicating whether the <see cref="T:System.Data.OracleClient.OracleDataReader" /> contains one or more rows.</summary>
<returns>
<see langword="true" /> if the <see cref="T:System.Data.OracleClient.OracleDataReader" /> contains one or more rows; otherwise <see langword="false" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleDataReader.IsClosed">
<summary>Indicates whether the <see cref="T:System.Data.OracleClient.OracleDataReader" /> is closed.</summary>
<returns>
<see langword="true" /> if the <see cref="T:System.Data.OracleClient.OracleDataReader" /> is closed; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleDataReader.Item(System.Int32)">
<summary>Gets the value of the specified column in its native format given the column ordinal.</summary>
<param name="i">The column ordinal. </param>
<returns>The value of the specified column in its native format.</returns>
<exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />. </exception>
</member>
<member name="P:System.Data.OracleClient.OracleDataReader.Item(System.String)">
<summary>Gets the value of the specified column in its native format given the column name.</summary>
<param name="name">The column name.</param>
<returns>The value of the specified column in its native format.</returns>
<exception cref="T:System.IndexOutOfRangeException">No column with the specified name was found. </exception>
</member>
<member name="P:System.Data.OracleClient.OracleDataReader.RecordsAffected">
<summary>Gets the number of rows changed, inserted, or deleted by execution of the SQL statement.</summary>
<returns>The number of rows changed, inserted, or deleted. -1 for SELECT statements; 0 if no rows were affected, or the statement failed.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleDateTime.Day">
<summary>Gets the value of the <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure as a day.</summary>
<returns>A day value between 1 and 31.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleDateTime.Hour">
<summary>Gets the value of the <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure as an hour.</summary>
<returns>An hour between 0 and 23.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleDateTime.IsNull">
<summary>Gets a value indicating whether the <see cref="P:System.Data.OracleClient.OracleDateTime.Value" /> property of the <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure is null.</summary>
<returns>
<see langword="true" /> if <see cref="P:System.Data.OracleClient.OracleDateTime.Value" /> is null, otherwise <see langword="false" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleDateTime.Millisecond">
<summary>Gets the milliseconds component of the date represented by this instance.</summary>
<returns>The millisecond, between 0 and 999.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleDateTime.Minute">
<summary>Gets the value of the <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure as a minute.</summary>
<returns>The minute, between 0 and 59.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleDateTime.Month">
<summary>Gets the value of the <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure as a month.</summary>
<returns>The month, between 1 and 12.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleDateTime.Second">
<summary>Gets the value of the <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure as a second.</summary>
<returns>A second between 0 and 59.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleDateTime.Value">
<summary>Gets the value of the <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure.</summary>
<returns>The value of this <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleDateTime.Year">
<summary>Gets the value of the <see cref="T:System.Data.OracleClient.OracleDateTime" /> structure as a year.</summary>
<returns>A year between 1 and 4712.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleException.Code">
<summary>Gets the code portion of the error as an integer.</summary>
<returns>The code portion of the error as an integer.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleInfoMessageEventArgs.Code">
<summary>Gets the code portion of the message as an <see langword="int" />.</summary>
<returns>The code portion of the message as an <see langword="int" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleInfoMessageEventArgs.Message">
<summary>Gets the full text of the message sent from the database.</summary>
<returns>The text describing the message.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleInfoMessageEventArgs.Source">
<summary>Gets the name of the object that generated the error.</summary>
<returns>The name of the object that generated the error.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleLob.CanRead">
<summary>Gets a value indicating whether the <see langword="LOB" /> stream can be read.</summary>
<returns>
<see langword="true" /> if the <see langword="LOB" /> stream supports reading, otherwise <see langword="false" /> if a <see langword="LOB" /> is closed or disposed.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleLob.CanSeek">
<summary>Gets a value indicating whether forward and backward seek operations can be performed.</summary>
<returns>
<see langword="false" /> if a <see langword="LOB" /> is closed or disposed, otherwise <see langword="true" />. Always <see langword="true" /> for <see cref="F:System.Data.OracleClient.OracleLob.Null" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleLob.CanWrite">
<summary>Always returns true, regardless of whether the <see langword="LOB" /> supports writing or not.</summary>
<returns>Always returns <see langword="true" />, regardless of whether an opened or undisposed <see langword="LOB" /> supports writing or not, <see langword="false" /> if a <see langword="LOB" /> is closed or disposed.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleLob.ChunkSize">
<summary>Gets a value indicating the minimum number of bytes to retrieve from or send to the server during a read/write operation.</summary>
<returns>The minimum number of bytes to retrieve or send.</returns>
<exception cref="T:System.InvalidOperationException">The connection is closed. </exception>
<exception cref="T:System.ObjectDisposedException">The object was closed or disposed. </exception>
<exception cref="T:System.Data.OracleClient.OracleException">An Oracle error has occurred. </exception>
</member>
<member name="P:System.Data.OracleClient.OracleLob.Connection">
<summary>Gets the <see cref="T:System.Data.OracleClient.OracleConnection" /> used by this instance of the <see cref="T:System.Data.OracleClient.OracleLob" />.</summary>
<returns>The connection to a data source.</returns>
<exception cref="T:System.ObjectDisposedException">The object was closed or disposed. </exception>
</member>
<member name="P:System.Data.OracleClient.OracleLob.IsBatched">
<summary>Gets a value indicating whether an application called the <see cref="M:System.Data.OracleClient.OracleLob.BeginBatch" /> method.</summary>
<returns>
<see langword="true" /> if application called the <see cref="M:System.Data.OracleClient.OracleLob.BeginBatch" /> method, otherwise <see langword="false" />.</returns>
<exception cref="T:System.Data.OracleClient.OracleException">An Oracle error has occurred. </exception>
</member>
<member name="P:System.Data.OracleClient.OracleLob.IsNull">
<summary>Gets a value that indicates whether the <see cref="T:System.Data.OracleClient.OracleLob" /> is a <see cref="F:System.Data.OracleClient.OracleBFile.Null" /> stream.</summary>
<returns>
<see langword="true" /> if the <see cref="T:System.Data.OracleClient.OracleLob" /> is a <see cref="F:System.Data.OracleClient.OracleBFile.Null" /> stream, otherwise <see langword="false" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleLob.IsTemporary">
<summary>Gets a value indicating whether the <see cref="T:System.Data.OracleClient.OracleLob" /> is a temporary <see langword="LOB" />.</summary>
<returns>
<see langword="true" /> if the <see cref="T:System.Data.OracleClient.OracleLob" /> is a temporary <see langword="LOB" />, otherwise <see langword="false" />.</returns>
<exception cref="T:System.InvalidOperationException">The connection is closed. </exception>
<exception cref="T:System.ObjectDisposedException">The object was closed or disposed. </exception>
<exception cref="T:System.Data.OracleClient.OracleException">An Oracle error has occurred. </exception>
</member>
<member name="P:System.Data.OracleClient.OracleLob.Length">
<summary>Gets a value that returns the size of the <see cref="T:System.Data.OracleClient.OracleLob" />.</summary>
<returns>The size of the <see cref="T:System.Data.OracleClient.OracleLob" /> in bytes.</returns>
<exception cref="T:System.InvalidOperationException">The connection is closed. </exception>
<exception cref="T:System.ObjectDisposedException">The object was closed or disposed. </exception>
<exception cref="T:System.Data.OracleClient.OracleException">An Oracle error has occurred. </exception>
</member>
<member name="P:System.Data.OracleClient.OracleLob.LobType">
<summary>Gets a value that returns the <see langword="LOB" /> data type.</summary>
<returns>One of the <see cref="T:System.Data.OracleClient.OracleType" /><see langword="LOB" /> data types.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleLob.Position">
<summary>Gets the current read position in the <see cref="T:System.Data.OracleClient.OracleLob" /> stream.</summary>
<returns>The current position within the <see cref="T:System.Data.OracleClient.OracleLob" /> stream.</returns>
<exception cref="T:System.InvalidOperationException">The connection is closed. </exception>
<exception cref="T:System.ObjectDisposedException">The object was closed or disposed. </exception>
</member>
<member name="P:System.Data.OracleClient.OracleLob.Value">
<summary>Gets the common language runtime stream value equivalent of the underlying value.</summary>
<returns>For <see cref="F:System.Data.OracleClient.OracleType.Blob" />, an array of type <see langword="Byte[]" />. For <see cref="F:System.Data.OracleClient.OracleType.Clob" /> and <see cref="F:System.Data.OracleClient.OracleType.NClob" />, a <see langword="String" />. For null data, <see cref="T:System.DBNull" />.</returns>
<exception cref="T:System.ObjectDisposedException">The object was closed or disposed. </exception>
<exception cref="T:System.Data.OracleClient.OracleException">An Oracle error has occurred. </exception>
</member>
<member name="P:System.Data.OracleClient.OracleMonthSpan.IsNull">
<summary>Gets a value indicating whether the <see cref="P:System.Data.OracleClient.OracleMonthSpan.Value" /> property of the <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure is null.</summary>
<returns>
<see langword="true" /> if <see cref="P:System.Data.OracleClient.OracleMonthSpan.Value" /> is null, otherwise <see langword="false" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleMonthSpan.Value">
<summary>Gets the value of the <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure.</summary>
<returns>The value of this <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> structure.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleNumber.IsNull">
<summary>Indicates whether or not the <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> of this <see cref="T:System.Data.OracleClient.OracleNumber" /> structure is null.</summary>
<returns>
<see langword="true" /> if <see cref="P:System.Data.OracleClient.OracleNumber.Value" /> is null, otherwise <see langword="false" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleNumber.Value">
<summary>Gets the value of the <see cref="T:System.Data.OracleClient.OracleNumber" /> structure. This property is read-only.</summary>
<returns>A number in the range -79,228,162,514,264,337,593,543,950,335 through 79,228,162,514, 264,337,593,543,950,335.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleParameter.DbType">
<summary>Gets or sets the <see cref="T:System.Data.DbType" /> of the parameter.</summary>
<returns>One of the <see cref="T:System.Data.DbType" /> values. The default is <see cref="F:System.Data.DbType.AnsiString" />.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The property was not set to a valid <see cref="T:System.Data.DbType" />. </exception>
</member>
<member name="P:System.Data.OracleClient.OracleParameter.Direction">
<summary>Gets or sets a value that indicates whether the parameter is input-only, output-only, bidirectional, or a stored procedure return value parameter.</summary>
<returns>One of the <see cref="T:System.Data.ParameterDirection" /> values. The default is <see langword="Input" />.</returns>
<exception cref="T:System.ArgumentException">The property was not set to one of the valid <see cref="T:System.Data.ParameterDirection" /> values.</exception>
</member>
<member name="P:System.Data.OracleClient.OracleParameter.IsNullable">
<summary>Gets or sets a value that indicates whether the parameter accepts null values.</summary>
<returns>
<see langword="true" /> if null values are accepted, otherwise <see langword="false" />. The default is <see langword="false" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleParameter.Offset">
<summary>Gets or sets the offset to the <see cref="P:System.Data.OracleClient.OracleParameter.Value" /> property.</summary>
<returns>The offset to the <see cref="P:System.Data.OracleClient.OracleParameter.Value" />. The default is 0.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleParameter.OracleType">
<summary>Gets or sets the <see cref="T:System.Data.OracleClient.OracleType" /> of the parameter.</summary>
<returns>An <see cref="T:System.Data.OracleClient.OracleType" /> value that is the <see cref="T:System.Data.OracleClient.OracleType" /> of the parameter. The default is <see cref="F:System.Data.OracleClient.OracleType.VarChar" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleParameter.ParameterName">
<summary>Gets or sets the name of the <see cref="T:System.Data.OracleClient.OracleParameter" />.</summary>
<returns>The name of the <see cref="T:System.Data.OracleClient.OracleParameter" />. The default is an empty string.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleParameter.Precision">
<summary>Gets or sets the maximum number of digits used to represent the <see cref="P:System.Data.OracleClient.OracleParameter.Value" /> property.</summary>
<returns>The maximum number of digits used to represent the <see cref="P:System.Data.OracleClient.OracleParameter.Value" /> property. The default value is 0, which indicates that the data provider sets the precision for <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleParameter.Scale">
<summary>Gets or sets the number of decimal places to which <see cref="P:System.Data.OracleClient.OracleParameter.Value" /> is resolved.</summary>
<returns>The number of decimal places to which <see cref="P:System.Data.OracleClient.OracleParameter.Value" /> is resolved. The default is 0.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleParameter.Size">
<summary>Gets or sets the maximum size, in bytes, of the data within the column.</summary>
<returns>The maximum size, in bytes, of the data within the column. The default value is 0 (to be used when you do not want to specify the maximum size of the value).</returns>
</member>
<member name="P:System.Data.OracleClient.OracleParameter.SourceColumn">
<summary>Gets or sets the name of the source column mapped to the <see cref="T:System.Data.DataSet" /> and used for loading or returning the <see cref="P:System.Data.OracleClient.OracleParameter.Value" /></summary>
<returns>The name of the source column mapped to the <see cref="T:System.Data.DataSet" />. The default is an empty string ("").</returns>
</member>
<member name="P:System.Data.OracleClient.OracleParameter.SourceColumnNullMapping">
<summary>Sets or gets a value which indicates whether the source column is nullable. This allows <see cref="T:System.Data.OracleClient.OracleCommandBuilder" /> to correctly generate Update statements for nullable columns.</summary>
<returns>
<see langword="True" /> if the source column is nullable, otherwise <see langword="false" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleParameter.SourceVersion">
<summary>Gets or sets the <see cref="T:System.Data.DataRowVersion" /> to use when you load <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
<returns>One of the <see cref="T:System.Data.DataRowVersion" /> values. The default is <see langword="Current" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleParameter.Value">
<summary>Gets or sets the value of the parameter.</summary>
<returns>An object that is the value of the parameter. The default value is null.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleParameterCollection.Count">
<summary>Returns an Integer containing the number of elements in the <see cref="T:System.Data.OracleClient.OracleParameterCollection" />. Read-only. </summary>
<returns>The number of elements in the <see cref="T:System.Data.OracleClient.OracleParameterCollection" /> as an Integer.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleParameterCollection.IsFixedSize">
<summary>Gets a value that indicates whether the <see cref="T:System.Data.OracleClient.OracleParameterCollection" /> has a fixed size. </summary>
<returns>Returns <see langword="true" /> if the <see cref="T:System.Data.OracleClient.OracleParameterCollection" /> has a fixed size, <see langword="false" /> otherwise.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleParameterCollection.IsReadOnly">
<summary>Gets a value that indicates whether the <see cref="T:System.Data.OracleClient.OracleParameterCollection" /> is read-only. </summary>
<returns>Returns <see langword="true" /> if the <see cref="T:System.Data.OracleClient.OracleParameterCollection" /> is read only, <see langword="false" /> otherwise.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleParameterCollection.IsSynchronized">
<summary>Gets a value that indicates whether the <see cref="T:System.Data.OracleClient.OracleParameterCollection" /> is synchronized.</summary>
<returns>Returns <see langword="true" /> if the <see cref="T:System.Data.OracleClient.OracleParameterCollection" /> is synchronized, <see langword="false" /> otherwise.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleParameterCollection.Item(System.Int32)">
<summary>Gets or sets the <see cref="T:System.Data.OracleClient.OracleParameter" /> at the specified index.</summary>
<param name="index">The zero-based index of the parameter to retrieve. </param>
<returns>The <see cref="T:System.Data.OracleClient.OracleParameter" /> at the specified index.</returns>
<exception cref="T:System.IndexOutOfRangeException">The index specified does not exist. </exception>
</member>
<member name="P:System.Data.OracleClient.OracleParameterCollection.Item(System.String)">
<summary>Gets or sets the <see cref="T:System.Data.OracleClient.OracleParameter" /> with the specified name.</summary>
<param name="parameterName">The name of the parameter to retrieve. </param>
<returns>The <see cref="T:System.Data.OracleClient.OracleParameter" /> with the specified name.</returns>
<exception cref="T:System.IndexOutOfRangeException">The name specified does not exist. </exception>
</member>
<member name="P:System.Data.OracleClient.OracleParameterCollection.SyncRoot">
<summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Data.OracleClient.OracleParameterCollection" />.</summary>
<returns>An object that can be used to synchronize access to the <see cref="T:System.Data.OracleClient.OracleParameterCollection" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OraclePermission.AllowBlankPassword">
<summary>Gets a value indicating whether a blank password is allowed.</summary>
<returns>
<see langword="true" /> if a blank password is allowed, otherwise <see langword="false" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OraclePermissionAttribute.AllowBlankPassword">
<summary>Gets or sets a value indicating whether a blank password is allowed.</summary>
<returns>
<see langword="true" /> if a blank password is allowed, otherwise <see langword="false" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OraclePermissionAttribute.ConnectionString">
<summary>Gets or sets a permitted connection string.</summary>
<returns>A permitted connection string.</returns>
</member>
<member name="P:System.Data.OracleClient.OraclePermissionAttribute.KeyRestrictionBehavior">
<summary>Identifies whether the list of connection string parameters identified by the <see cref="P:System.Data.OracleClient.OraclePermissionAttribute.KeyRestrictions" /> property are the only connection string parameters allowed.</summary>
<returns>One of the <see cref="P:System.Data.OracleClient.OraclePermissionAttribute.KeyRestrictionBehavior" /> values.</returns>
</member>
<member name="P:System.Data.OracleClient.OraclePermissionAttribute.KeyRestrictions">
<summary>Gets or sets connection string parameters that are allowed or disallowed.</summary>
<returns>One or more connection string parameters that are allowed or disallowed.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleRowUpdatedEventArgs.Command">
<summary>Gets or sets the <see cref="T:System.Data.OracleClient.OracleCommand" /> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> is called.</summary>
<returns>The <see cref="T:System.Data.OracleClient.OracleCommand" /> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> is called.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleRowUpdatingEventArgs.Command">
<summary>Gets or sets the <see cref="T:System.Data.OracleClient.OracleCommand" /> to execute when performing the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</summary>
<returns>The <see cref="T:System.Data.OracleClient.OracleCommand" /> to execute when performing the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleString.IsNull">
<summary>Indicates whether the <see cref="P:System.Data.OracleClient.OracleString.Value" /> of the <see cref="T:System.Data.OracleClient.OracleString" /> is <see cref="F:System.Data.OracleClient.OracleString.Null" />.</summary>
<returns>
<see langword="true" /> if <see cref="P:System.Data.OracleClient.OracleString.Value" /> is <see cref="F:System.Data.OracleClient.OracleString.Null" />, otherwise <see langword="false" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleString.Item(System.Int32)">
<summary>Gets the single byte from the <see langword="Value" /> property located at the position indicated by the integer parameter, <paramref name="index" />.</summary>
<param name="index">The position of the byte to be retrieved. </param>
<returns>The byte located at the position indicated by the integer parameter.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleString.Length">
<summary>Gets the length of the string that is stored in this <see cref="T:System.Data.OracleClient.OracleString" /> structure.</summary>
<returns>The length of the string that is stored.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleString.Value">
<summary>Gets the string that is stored in the <see cref="T:System.Data.OracleClient.OracleString" /> structure.</summary>
<returns>The string that is stored.This property is read-only.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleTimeSpan.Days">
<summary>Gets the number of whole days represented by this instance.</summary>
<returns>The day component of this instance.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleTimeSpan.Hours">
<summary>Gets the number of whole hours represented by this instance.</summary>
<returns>The hour component of this instance between 0 and 23.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleTimeSpan.IsNull">
<summary>Gets a value indicating whether the <see cref="P:System.Data.OracleClient.OracleTimeSpan.Value" /> property of the <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure is null.</summary>
<returns>
<see langword="true" /> if <see cref="P:System.Data.OracleClient.OracleTimeSpan.Value" /> is null, otherwise <see langword="false" />.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleTimeSpan.Milliseconds">
<summary>Gets the number of whole milliseconds represented by this instance.</summary>
<returns>The millisecond component of this instance between 0 and 999.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleTimeSpan.Minutes">
<summary>Gets the number of whole minutes represented by this instance.</summary>
<returns>The minute component of this instance between 0 and 59.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleTimeSpan.Seconds">
<summary>Gets the number of whole seconds represented by this instance.</summary>
<returns>The second component of this instance between 0 and 59.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleTimeSpan.Value">
<summary>Gets the value of the <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure.</summary>
<returns>The value of this <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> structure.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleTransaction.Connection">
<summary>Specifies the <see cref="T:System.Data.OracleClient.OracleConnection" /> object associated with the transaction.</summary>
<returns>The <see cref="T:System.Data.OracleClient.OracleConnection" /> object associated with the transaction.</returns>
</member>
<member name="P:System.Data.OracleClient.OracleTransaction.IsolationLevel">
<summary>Specifies the <see cref="T:System.Data.IsolationLevel" /> for this transaction.</summary>
<returns>The <see cref="T:System.Data.IsolationLevel" /> for this transaction. The default is <see langword="ReadCommitted" />.</returns>
</member>
<member name="T:System.Data.OracleClient.OracleBFile">
<summary>Represents a managed <see cref="T:System.Data.OracleClient.OracleBFile" /> object designed to work with the Oracle <see langword="BFILE" /> data type. This class cannot be inherited.</summary>
</member>
<member name="T:System.Data.OracleClient.OracleBinary">
<summary>Represents a variable-length stream of binary data to be stored in or retrieved from a database.</summary>
</member>
<member name="T:System.Data.OracleClient.OracleBoolean">
<summary>Represents the value returned from a database comparison operation between Oracle data types, and exposes methods used to perform data type conversions.</summary>
</member>
<member name="T:System.Data.OracleClient.OracleClientFactory">
<summary>Represents a set of methods for creating instances of the Oracle provider's implementation of the data source classes. </summary>
</member>
<member name="T:System.Data.OracleClient.OracleCommand">
<summary>Represents an SQL statement or stored procedure to execute against a database. This class cannot be inherited.</summary>
</member>
<member name="T:System.Data.OracleClient.OracleCommandBuilder">
<summary>Automatically generates single-table commands used to reconcile changes made to a <see cref="T:System.Data.DataSet" /> with the associated database. This class cannot be inherited.</summary>
</member>
<member name="T:System.Data.OracleClient.OracleConnection">
<summary>Represents an open connection to a database. This class cannot be inherited.</summary>
</member>
<member name="T:System.Data.OracleClient.OracleConnectionStringBuilder">
<summary>Provides a simple way to create and manage the contents of connection strings used by the <see cref="T:System.Data.OracleClient.OracleConnection" /> class. </summary>
</member>
<member name="T:System.Data.OracleClient.OracleDataAdapter">
<summary>Represents a set of data commands and a connection to a database that are used to fill the <see cref="T:System.Data.DataSet" /> and update the database. This class cannot be inherited.</summary>
</member>
<member name="T:System.Data.OracleClient.OracleDataReader">
<summary>Provides a way of reading a forward-only stream of data rows from a data source. This class cannot be inherited.</summary>
</member>
<member name="T:System.Data.OracleClient.OracleDateTime">
<summary>Represents date and time data ranging in value from January 1, 4712 BC to December 31, 4712 AD.</summary>
</member>
<member name="T:System.Data.OracleClient.OracleException">
<summary>The exception that is generated when a warning or error is returned by an Oracle database or the .NET Framework Data Provider for Oracle. This class cannot be inherited.</summary>
</member>
<member name="T:System.Data.OracleClient.OracleInfoMessageEventArgs">
<summary>Provides data for the <see cref="E:System.Data.OracleClient.OracleConnection.InfoMessage" /> event. This class cannot be inherited.</summary>
</member>
<member name="T:System.Data.OracleClient.OracleInfoMessageEventHandler">
<summary>Represents the method that will handle the <see cref="E:System.Data.OracleClient.OracleConnection.InfoMessage" /> event of an <see cref="T:System.Data.OracleClient.OracleConnection" />.</summary>
<param name="sender">The source of the event. </param>
<param name="e">An <see cref="T:System.Data.OracleClient.OracleInfoMessageEventArgs" /> object that contains the event data. </param>
</member>
<member name="T:System.Data.OracleClient.OracleLob">
<summary>Represents a large object binary (<see langword="LOB" />) data type stored on an Oracle server. This class cannot be inherited. </summary>
</member>
<member name="T:System.Data.OracleClient.OracleLobOpenMode">
<summary>Specifies whether an <see cref="T:System.Data.OracleClient.OracleLob" /> should be opened in read-only or read/write mode.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleLobOpenMode.ReadOnly">
<summary>The <see cref="T:System.Data.OracleClient.OracleLob" /> is opened in read-only mode.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleLobOpenMode.ReadWrite">
<summary>The <see cref="T:System.Data.OracleClient.OracleLob" /> is opened in read/write mode.</summary>
</member>
<member name="T:System.Data.OracleClient.OracleMonthSpan">
<summary>Represents a time interval in months and corresponds to the Oracle 9i <see langword="INTERVAL YEAR TO MONTH" /> data type.</summary>
</member>
<member name="T:System.Data.OracleClient.OracleNumber">
<summary>Represents a fixed precision and scale numeric value between -10 27 -1 and 10 27 -1 to be stored in or retrieved from a database. </summary>
</member>
<member name="T:System.Data.OracleClient.OracleParameter">
<summary>Represents a parameter to an <see cref="T:System.Data.OracleClient.OracleCommand" /> and optionally its mapping to a <see cref="T:System.Data.DataColumn" />. This class cannot be inherited.</summary>
</member>
<member name="T:System.Data.OracleClient.OracleParameterCollection">
<summary>Represents a collection of parameters relevant to an <see cref="T:System.Data.OracleClient.OracleCommand" /> as well as their respective mappings to columns in a <see cref="T:System.Data.DataSet" />. This class cannot be inherited.</summary>
</member>
<member name="T:System.Data.OracleClient.OraclePermission">
<summary>Enables the .NET Framework Data Provider for Oracle to help ensure that a user has a security level adequate to access an Oracle database. </summary>
</member>
<member name="T:System.Data.OracleClient.OraclePermissionAttribute">
<summary>Associates a security action with a custom security attribute. </summary>
</member>
<member name="T:System.Data.OracleClient.OracleRowUpdatedEventArgs">
<summary>Provides data for the <see cref="E:System.Data.OracleClient.OracleDataAdapter.RowUpdated" /> event. This class cannot be inherited.</summary>
</member>
<member name="T:System.Data.OracleClient.OracleRowUpdatedEventHandler">
<summary>Represents the method that will handle the <see cref="E:System.Data.OracleClient.OracleDataAdapter.RowUpdated" /> event of an <see cref="T:System.Data.OracleClient.OracleDataAdapter" />.</summary>
<param name="sender">The source of the event. </param>
<param name="e">The <see cref="T:System.Data.OracleClient.OracleRowUpdatedEventArgs" /> that contains the event data. </param>
</member>
<member name="T:System.Data.OracleClient.OracleRowUpdatingEventArgs">
<summary>Provides data for the <see cref="E:System.Data.OracleClient.OracleDataAdapter.RowUpdating" /> event.</summary>
</member>
<member name="T:System.Data.OracleClient.OracleRowUpdatingEventHandler">
<summary>Represents the method that will handle the <see cref="E:System.Data.OracleClient.OracleDataAdapter.RowUpdating" /> event of an <see cref="T:System.Data.OracleClient.OracleDataAdapter" />.</summary>
<param name="sender">The source of the event. </param>
<param name="e">The <see cref="T:System.Data.OracleClient.OracleRowUpdatingEventArgs" /> that contains the event data. </param>
</member>
<member name="T:System.Data.OracleClient.OracleString">
<summary>Represents a variable-length stream of characters to be stored in or retrieved from the database.</summary>
</member>
<member name="T:System.Data.OracleClient.OracleTimeSpan">
<summary>Represents a time interval and corresponds to the Oracle 9i <see langword="INTERVAL DAY TO SECOND" /> data type.</summary>
</member>
<member name="T:System.Data.OracleClient.OracleTransaction">
<summary>Represents a transaction to be made in the database.</summary>
</member>
<member name="T:System.Data.OracleClient.OracleType">
<summary>Specifies the data type of a field or property for use in an <see cref="T:System.Data.OracleClient.OracleParameter" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.BFile">
<summary>An Oracle <see langword="BFILE" /> data type that contains a reference to binary data with a maximum size of 4 gigabytes that is stored in an external file. Use the OracleClient <see cref="T:System.Data.OracleClient.OracleBFile" /> data type with the <see cref="P:System.Data.OracleClient.OracleParameter.Value" /> property.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.Blob">
<summary>An Oracle <see langword="BLOB" /> data type that contains binary data with a maximum size of 4 gigabytes. Use the OracleClient <see cref="T:System.Data.OracleClient.OracleLob" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.Char">
<summary>An Oracle <see langword="CHAR" /> data type that contains a fixed-length character string with a maximum size of 2,000 bytes. Use the .NET Framework <see cref="T:System.String" /> or OracleClient <see cref="T:System.Data.OracleClient.OracleString" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.Clob">
<summary>An Oracle <see langword="CLOB" /> data type that contains character data, based on the default character set on the server, with a maximum size of 4 gigabytes. Use the OracleClient <see cref="T:System.Data.OracleClient.OracleLob" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.Cursor">
<summary>An Oracle <see langword="REF CURSOR" />. The <see cref="T:System.Data.OracleClient.OracleDataReader" /> object is not available.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.DateTime">
<summary>An Oracle <see langword="DATE" /> data type that contains a fixed-length representation of a date and time, ranging from January 1, 4712 B.C. to December 31, A.D. 4712, with the default format dd-mmm-yy. For A.D. dates, <see langword="DATE" /> maps to <see cref="T:System.DateTime" />. To bind B.C. dates, use a <see langword="String" /> parameter and the Oracle TO_DATE or TO_CHAR conversion functions for input and output parameters respectively. Use the .NET Framework <see cref="T:System.DateTime" /> or OracleClient <see cref="T:System.Data.OracleClient.OracleDateTime" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.IntervalDayToSecond">
<summary>An Oracle <see langword="INTERVAL DAY TO SECOND" /> data type (Oracle 9i or later) that contains an interval of time in days, hours, minutes, and seconds, and has a fixed size of 11 bytes. Use the .NET Framework <see cref="T:System.TimeSpan" /> or OracleClient <see cref="T:System.Data.OracleClient.OracleTimeSpan" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.IntervalYearToMonth">
<summary>An Oracle <see langword="INTERVAL YEAR TO MONTH" /> data type (Oracle 9i or later) that contains an interval of time in years and months, and has a fixed size of 5 bytes. Use the .NET Framework <see cref="T:System.Int32" /> or OracleClient <see cref="T:System.Data.OracleClient.OracleMonthSpan" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.LongRaw">
<summary>An Oracle <see langword="LONGRAW" /> data type that contains variable-length binary data with a maximum size of 2 gigabytes. Use the .NET Framework <see langword="Byte[]" /> or OracleClient <see cref="T:System.Data.OracleClient.OracleBinary" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.LongVarChar">
<summary>An Oracle <see langword="LONG" /> data type that contains a variable-length character string with a maximum size of 2 gigabytes. Use the .NET Framework <see cref="T:System.String" /> or OracleClient <see cref="T:System.Data.OracleClient.OracleString" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.NChar">
<summary>An Oracle <see langword="NCHAR" /> data type that contains fixed-length character string to be stored in the national character set of the database, with a maximum size of 2,000 bytes (not characters) when stored in the database. The size of the value depends on the national character set of the database. See your Oracle documentation for more information. Use the .NET Framework <see cref="T:System.String" /> or OracleClient <see cref="T:System.Data.OracleClient.OracleString" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.NClob">
<summary>An Oracle <see langword="NCLOB" /> data type that contains character data to be stored in the national character set of the database, with a maximum size of 4 gigabytes (not characters) when stored in the database. The size of the value depends on the national character set of the database. See your Oracle documentation for more information. Use the .NET Framework <see cref="T:System.String" /> or OracleClient <see cref="T:System.Data.OracleClient.OracleString" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.Number">
<summary>An Oracle <see langword="NUMBER" /> data type that contains variable-length numeric data with a maximum precision and scale of 38. This maps to <see cref="T:System.Decimal" />. To bind an Oracle <see langword="NUMBER" /> that exceeds what <see cref="F:System.Decimal.MaxValue" /> can contain, either use an <see cref="T:System.Data.OracleClient.OracleNumber" /> data type, or use a <see langword="String" /> parameter and the Oracle TO_NUMBER or TO_CHAR conversion functions for input and output parameters respectively. Use the .NET Framework <see cref="T:System.Decimal" /> or OracleClient <see cref="T:System.Data.OracleClient.OracleNumber" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.NVarChar">
<summary>An Oracle <see langword="NVARCHAR2" /> data type that contains a variable-length character string stored in the national character set of the database, with a maximum size of 4,000 bytes (not characters) when stored in the database. The size of the value depends on the national character set of the database. See your Oracle documentation for more information. Use the .NET Framework <see cref="T:System.String" /> or OracleClient <see cref="T:System.Data.OracleClient.OracleString" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.Raw">
<summary>An Oracle <see langword="RAW" /> data type that contains variable-length binary data with a maximum size of 2,000 bytes. Use the .NET Framework <see langword="Byte[]" /> or OracleClient <see cref="T:System.Data.OracleClient.OracleBinary" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.RowId">
<summary>The base64 string representation of an Oracle <see langword="ROWID" /> data type. Use the .NET Framework <see cref="T:System.String" /> or OracleClient <see cref="T:System.Data.OracleClient.OracleString" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.Timestamp">
<summary>An Oracle <see langword="TIMESTAMP" /> (Oracle 9i or later) that contains date and time (including seconds), and ranges in size from 7 to 11 bytes. Use the .NET Framework <see cref="T:System.DateTime" /> or OracleClient <see cref="T:System.Data.OracleClient.OracleDateTime" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.TimestampLocal">
<summary>An Oracle <see langword="TIMESTAMP WITH LOCAL TIMEZONE" /> (Oracle 9i or later) that contains date, time, and a reference to the original time zone, and ranges in size from 7 to 11 bytes. Use the .NET Framework <see cref="T:System.DateTime" /> or OracleClient <see cref="T:System.Data.OracleClient.OracleDateTime" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.TimestampWithTZ">
<summary>An Oracle <see langword="TIMESTAMP WITH TIMEZONE" /> (Oracle 9i or later) that contains date, time, and a specified time zone, and has a fixed size of 13 bytes. Use the .NET Framework <see cref="T:System.DateTime" /> or OracleClient <see cref="T:System.Data.OracleClient.OracleDateTime" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.VarChar">
<summary>An Oracle <see langword="VARCHAR2" /> data type that contains a variable-length character string with a maximum size of 4,000 bytes. Use the .NET Framework <see cref="T:System.String" /> or OracleClient <see cref="T:System.Data.OracleClient.OracleString" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.Byte">
<summary>An integral type representing unsigned 8-bit integers with values between 0 and 255. This is not a native Oracle data type, but is provided to improve performance when binding input parameters. Use the .NET Framework <see cref="T:System.Byte" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.UInt16">
<summary>An integral type representing unsigned 16-bit integers with values between 0 and 65535. This is not a native Oracle data type, but is provided to improve performance when binding input parameters. For information about conversion of Oracle numeric values to common language runtime (CLR) data types, see <see cref="T:System.Data.OracleClient.OracleNumber" />. Use the .NET Framework <see cref="T:System.UInt16" /> or OracleClient <see cref="T:System.Data.OracleClient.OracleNumber" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.UInt32">
<summary>An integral type representing unsigned 32-bit integers with values between 0 and 4294967295. This is not a native Oracle data type, but is provided to improve performance when binding input parameters. For information about conversion of Oracle numeric values to common language runtime (CLR) data types, see <see cref="T:System.Data.OracleClient.OracleNumber" />. Use the .NET Framework <see cref="T:System.UInt32" /> or OracleClient <see cref="T:System.Data.OracleClient.OracleNumber" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.SByte">
<summary>An integral type representing signed 8 bit integers with values between -128 and 127. This is not a native Oracle data type, but is provided to improve performance when binding input parameters. Use the .NET Framework <see cref="T:System.SByte" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.Int16">
<summary>An integral type representing signed 16-bit integers with values between -32768 and 32767. This is not a native Oracle data type, but is provided to improve performance when binding input parameters. For information about conversion of Oracle numeric values to common language runtime (CLR) data types, see <see cref="T:System.Data.OracleClient.OracleNumber" />. Use the .NET Framework <see cref="T:System.Int16" /> or OracleClient <see cref="T:System.Data.OracleClient.OracleNumber" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.Int32">
<summary>An integral type representing signed 32-bit integers with values between -2147483648 and 2147483647. This is not a native Oracle data type, but is provided for performance when binding input parameters. For information about conversion of Oracle numeric values to common language runtime data types, see <see cref="T:System.Data.OracleClient.OracleNumber" />. Use the .NET Framework <see cref="T:System.Int32" /> or OracleClient <see cref="T:System.Data.OracleClient.OracleNumber" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.Float">
<summary>A single-precision floating-point value. This is not a native Oracle data type, but is provided to improve performance when binding input parameters. For information about conversion of Oracle numeric values to common language runtime data types, see <see cref="T:System.Data.OracleClient.OracleNumber" />. Use the .NET Framework <see cref="T:System.Single" /> or OracleClient <see cref="T:System.Data.OracleClient.OracleNumber" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
<member name="F:System.Data.OracleClient.OracleType.Double">
<summary>A double-precision floating-point value. This is not a native Oracle data type, but is provided to improve performance when binding input parameters. For information about conversion of Oracle numeric values to common language runtime (CLR) data types, see <see cref="T:System.Data.OracleClient.OracleNumber" />. Use the .NET Framework <see cref="T:System.Double" /> or OracleClient <see cref="T:System.Data.OracleClient.OracleNumber" /> data type in <see cref="P:System.Data.OracleClient.OracleParameter.Value" />.</summary>
</member>
</members>
</doc>
|