-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathSystem.Data.SqlClient.notsupported.cs
More file actions
1047 lines (1045 loc) · 130 KB
/
System.Data.SqlClient.notsupported.cs
File metadata and controls
1047 lines (1045 loc) · 130 KB
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#pragma warning disable CA2215,CS0114
namespace Microsoft.SqlServer.Server
{
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.SqlServer.Server package instead.")]
#endif
public enum DataAccessKind
{
None = 0,
Read = 1,
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.SqlServer.Server package instead.")]
#endif
public enum Format
{
Unknown = 0,
Native = 1,
UserDefined = 2,
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.SqlServer.Server package instead.")]
#endif
public partial interface IBinarySerialize
{
void Read(System.IO.BinaryReader r);
void Write(System.IO.BinaryWriter w);
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.SqlServer.Server package instead.")]
#endif
public sealed partial class InvalidUdtException : System.SystemException
{
internal InvalidUdtException() { }
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.SqlServer.Server package instead.")]
#endif
public partial class SqlDataRecord : System.Data.IDataRecord
{
public SqlDataRecord(params Microsoft.SqlServer.Server.SqlMetaData[] metaData) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual int FieldCount { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public virtual object this[int ordinal] { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public virtual object this[string name] { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public virtual bool GetBoolean(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual byte GetByte(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual long GetBytes(int ordinal, long fieldOffset, byte[] buffer, int bufferOffset, int length) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual char GetChar(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual long GetChars(int ordinal, long fieldOffset, char[] buffer, int bufferOffset, int length) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual string GetDataTypeName(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.DateTime GetDateTime(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.DateTimeOffset GetDateTimeOffset(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual decimal GetDecimal(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual double GetDouble(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Type GetFieldType(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual float GetFloat(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Guid GetGuid(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual short GetInt16(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual int GetInt32(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual long GetInt64(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual string GetName(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual int GetOrdinal(string name) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlBinary GetSqlBinary(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlBoolean GetSqlBoolean(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlByte GetSqlByte(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlBytes GetSqlBytes(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlChars GetSqlChars(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlDateTime GetSqlDateTime(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlDecimal GetSqlDecimal(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlDouble GetSqlDouble(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Type GetSqlFieldType(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlGuid GetSqlGuid(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlInt16 GetSqlInt16(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlInt32 GetSqlInt32(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlInt64 GetSqlInt64(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual Microsoft.SqlServer.Server.SqlMetaData GetSqlMetaData(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlMoney GetSqlMoney(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlSingle GetSqlSingle(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlString GetSqlString(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual object GetSqlValue(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual int GetSqlValues(object[] values) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlXml GetSqlXml(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual string GetString(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.TimeSpan GetTimeSpan(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual object GetValue(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual int GetValues(object[] values) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual bool IsDBNull(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetBoolean(int ordinal, bool value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetByte(int ordinal, byte value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetBytes(int ordinal, long fieldOffset, byte[] buffer, int bufferOffset, int length) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetChar(int ordinal, char value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetChars(int ordinal, long fieldOffset, char[] buffer, int bufferOffset, int length) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetDateTime(int ordinal, System.DateTime value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetDateTimeOffset(int ordinal, System.DateTimeOffset value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetDBNull(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetDecimal(int ordinal, decimal value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetDouble(int ordinal, double value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetFloat(int ordinal, float value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetGuid(int ordinal, System.Guid value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetInt16(int ordinal, short value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetInt32(int ordinal, int value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetInt64(int ordinal, long value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetSqlBinary(int ordinal, System.Data.SqlTypes.SqlBinary value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetSqlBoolean(int ordinal, System.Data.SqlTypes.SqlBoolean value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetSqlByte(int ordinal, System.Data.SqlTypes.SqlByte value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetSqlBytes(int ordinal, System.Data.SqlTypes.SqlBytes value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetSqlChars(int ordinal, System.Data.SqlTypes.SqlChars value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetSqlDateTime(int ordinal, System.Data.SqlTypes.SqlDateTime value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetSqlDecimal(int ordinal, System.Data.SqlTypes.SqlDecimal value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetSqlDouble(int ordinal, System.Data.SqlTypes.SqlDouble value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetSqlGuid(int ordinal, System.Data.SqlTypes.SqlGuid value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetSqlInt16(int ordinal, System.Data.SqlTypes.SqlInt16 value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetSqlInt32(int ordinal, System.Data.SqlTypes.SqlInt32 value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetSqlInt64(int ordinal, System.Data.SqlTypes.SqlInt64 value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetSqlMoney(int ordinal, System.Data.SqlTypes.SqlMoney value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetSqlSingle(int ordinal, System.Data.SqlTypes.SqlSingle value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetSqlString(int ordinal, System.Data.SqlTypes.SqlString value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetSqlXml(int ordinal, System.Data.SqlTypes.SqlXml value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetString(int ordinal, string value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetTimeSpan(int ordinal, System.TimeSpan value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual void SetValue(int ordinal, object value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual int SetValues(params object[] values) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
System.Data.IDataReader System.Data.IDataRecord.GetData(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
}
#if NET
#if NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.SqlServer.Server package instead.")]
#endif
[System.AttributeUsageAttribute(System.AttributeTargets.Field | System.AttributeTargets.Parameter | System.AttributeTargets.Property | System.AttributeTargets.ReturnValue, AllowMultiple=false, Inherited=false)]
public partial class SqlFacetAttribute : System.Attribute
{
public SqlFacetAttribute() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public bool IsFixedLength { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool IsNullable { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public int MaxSize { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public int Precision { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public int Scale { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
}
#endif
[System.AttributeUsageAttribute(System.AttributeTargets.Method, AllowMultiple=false, Inherited=false)]
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.SqlServer.Server package instead.")]
#endif
public partial class SqlFunctionAttribute : System.Attribute
{
public SqlFunctionAttribute() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public Microsoft.SqlServer.Server.DataAccessKind DataAccess { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string FillRowMethodName { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool IsDeterministic { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool IsPrecise { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string Name { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public Microsoft.SqlServer.Server.SystemDataAccessKind SystemDataAccess { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string TableDefinition { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.SqlServer.Server package instead.")]
#endif
public sealed partial class SqlMetaData
{
public SqlMetaData(string name, System.Data.SqlDbType dbType) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlMetaData(string name, System.Data.SqlDbType dbType, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlMetaData(string name, System.Data.SqlDbType dbType, byte precision, byte scale) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlMetaData(string name, System.Data.SqlDbType dbType, byte precision, byte scale, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength, byte precision, byte scale, long locale, System.Data.SqlTypes.SqlCompareOptions compareOptions, System.Type userDefinedType) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength, byte precision, byte scale, long localeId, System.Data.SqlTypes.SqlCompareOptions compareOptions, System.Type userDefinedType, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength, long locale, System.Data.SqlTypes.SqlCompareOptions compareOptions) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlMetaData(string name, System.Data.SqlDbType dbType, long maxLength, long locale, System.Data.SqlTypes.SqlCompareOptions compareOptions, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlMetaData(string name, System.Data.SqlDbType dbType, string database, string owningSchema, string objectName) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlMetaData(string name, System.Data.SqlDbType dbType, string database, string owningSchema, string objectName, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlMetaData(string name, System.Data.SqlDbType dbType, System.Type userDefinedType) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlMetaData(string name, System.Data.SqlDbType dbType, System.Type userDefinedType, string serverTypeName) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlMetaData(string name, System.Data.SqlDbType dbType, System.Type userDefinedType, string serverTypeName, bool useServerDefault, bool isUniqueKey, System.Data.SqlClient.SortOrder columnSortOrder, int sortOrdinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlTypes.SqlCompareOptions CompareOptions { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public System.Data.DbType DbType { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool IsUniqueKey { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public long LocaleId { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public static long Max { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public long MaxLength { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string Name { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public byte Precision { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public byte Scale { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public System.Data.SqlClient.SortOrder SortOrder { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public int SortOrdinal { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public System.Data.SqlDbType SqlDbType { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public System.Type Type { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string TypeName { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool UseServerDefault { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string XmlSchemaCollectionDatabase { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string XmlSchemaCollectionName { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string XmlSchemaCollectionOwningSchema { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool Adjust(bool value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public byte Adjust(byte value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public byte[] Adjust(byte[] value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public char Adjust(char value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public char[] Adjust(char[] value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlTypes.SqlBinary Adjust(System.Data.SqlTypes.SqlBinary value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlTypes.SqlBoolean Adjust(System.Data.SqlTypes.SqlBoolean value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlTypes.SqlByte Adjust(System.Data.SqlTypes.SqlByte value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlTypes.SqlBytes Adjust(System.Data.SqlTypes.SqlBytes value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlTypes.SqlChars Adjust(System.Data.SqlTypes.SqlChars value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlTypes.SqlDateTime Adjust(System.Data.SqlTypes.SqlDateTime value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlTypes.SqlDecimal Adjust(System.Data.SqlTypes.SqlDecimal value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlTypes.SqlDouble Adjust(System.Data.SqlTypes.SqlDouble value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlTypes.SqlGuid Adjust(System.Data.SqlTypes.SqlGuid value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlTypes.SqlInt16 Adjust(System.Data.SqlTypes.SqlInt16 value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlTypes.SqlInt32 Adjust(System.Data.SqlTypes.SqlInt32 value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlTypes.SqlInt64 Adjust(System.Data.SqlTypes.SqlInt64 value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlTypes.SqlMoney Adjust(System.Data.SqlTypes.SqlMoney value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlTypes.SqlSingle Adjust(System.Data.SqlTypes.SqlSingle value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlTypes.SqlString Adjust(System.Data.SqlTypes.SqlString value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlTypes.SqlXml Adjust(System.Data.SqlTypes.SqlXml value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.DateTime Adjust(System.DateTime value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.DateTimeOffset Adjust(System.DateTimeOffset value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public decimal Adjust(decimal value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public double Adjust(double value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Guid Adjust(System.Guid value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public short Adjust(short value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public int Adjust(int value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public long Adjust(long value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public object Adjust(object value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public float Adjust(float value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public string Adjust(string value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.TimeSpan Adjust(System.TimeSpan value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public static Microsoft.SqlServer.Server.SqlMetaData InferFromValue(object value, string name) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
}
[System.AttributeUsageAttribute(System.AttributeTargets.Method, AllowMultiple=false, Inherited=false)]
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.SqlServer.Server package instead.")]
#endif
public sealed partial class SqlMethodAttribute : Microsoft.SqlServer.Server.SqlFunctionAttribute
{
public SqlMethodAttribute() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public bool InvokeIfReceiverIsNull { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool IsMutator { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool OnNullCall { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
}
[System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Struct, AllowMultiple=false, Inherited=false)]
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.SqlServer.Server package instead.")]
#endif
public sealed partial class SqlUserDefinedAggregateAttribute : System.Attribute
{
public const int MaxByteSizeValue = 8000;
public SqlUserDefinedAggregateAttribute(Microsoft.SqlServer.Server.Format format) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public Microsoft.SqlServer.Server.Format Format { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool IsInvariantToDuplicates { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool IsInvariantToNulls { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool IsInvariantToOrder { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool IsNullIfEmpty { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public int MaxByteSize { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string Name { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
}
[System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Struct, AllowMultiple=false, Inherited=true)]
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.SqlServer.Server package instead.")]
#endif
public sealed partial class SqlUserDefinedTypeAttribute : System.Attribute
{
public SqlUserDefinedTypeAttribute(Microsoft.SqlServer.Server.Format format) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public Microsoft.SqlServer.Server.Format Format { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool IsByteOrdered { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool IsFixedLength { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public int MaxByteSize { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string Name { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string ValidationMethodName { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.SqlServer.Server package instead.")]
#endif
public enum SystemDataAccessKind
{
None = 0,
Read = 1,
}
}
namespace System.Data
{
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public sealed partial class OperationAbortedException : System.SystemException
{
internal OperationAbortedException() { }
}
}
namespace System.Data.Sql
{
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public sealed partial class SqlNotificationRequest
{
public SqlNotificationRequest() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlNotificationRequest(string userData, string options, int timeout) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public string Options { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public int Timeout { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string UserData { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
}
}
namespace System.Data.SqlClient
{
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public enum ApplicationIntent
{
ReadWrite = 0,
ReadOnly = 1,
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public delegate void OnChangeEventHandler(object sender, System.Data.SqlClient.SqlNotificationEventArgs e);
#if NET
#if NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public enum PoolBlockingPeriod
{
Auto = 0,
AlwaysBlock = 1,
NeverBlock = 2,
}
#endif
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public enum SortOrder
{
Unspecified = -1,
Ascending = 0,
Descending = 1,
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public sealed partial class SqlBulkCopy : System.IDisposable
{
public SqlBulkCopy(System.Data.SqlClient.SqlConnection connection) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlBulkCopy(System.Data.SqlClient.SqlConnection connection, System.Data.SqlClient.SqlBulkCopyOptions copyOptions, System.Data.SqlClient.SqlTransaction externalTransaction) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlBulkCopy(string connectionString) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlBulkCopy(string connectionString, System.Data.SqlClient.SqlBulkCopyOptions copyOptions) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public int BatchSize { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public int BulkCopyTimeout { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public System.Data.SqlClient.SqlBulkCopyColumnMappingCollection ColumnMappings { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string DestinationTableName { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool EnableStreaming { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public int NotifyAfter { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public event System.Data.SqlClient.SqlRowsCopiedEventHandler SqlRowsCopied { add { } remove { } }
public void Close() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
void System.IDisposable.Dispose() { }
public void WriteToServer(System.Data.Common.DbDataReader reader) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public void WriteToServer(System.Data.DataRow[] rows) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public void WriteToServer(System.Data.DataTable table) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public void WriteToServer(System.Data.DataTable table, System.Data.DataRowState rowState) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public void WriteToServer(System.Data.IDataReader reader) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Threading.Tasks.Task WriteToServerAsync(System.Data.Common.DbDataReader reader) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Threading.Tasks.Task WriteToServerAsync(System.Data.Common.DbDataReader reader, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Threading.Tasks.Task WriteToServerAsync(System.Data.DataRow[] rows) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Threading.Tasks.Task WriteToServerAsync(System.Data.DataRow[] rows, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Threading.Tasks.Task WriteToServerAsync(System.Data.DataTable table) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Threading.Tasks.Task WriteToServerAsync(System.Data.DataTable table, System.Data.DataRowState rowState) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Threading.Tasks.Task WriteToServerAsync(System.Data.DataTable table, System.Data.DataRowState rowState, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Threading.Tasks.Task WriteToServerAsync(System.Data.DataTable table, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Threading.Tasks.Task WriteToServerAsync(System.Data.IDataReader reader) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Threading.Tasks.Task WriteToServerAsync(System.Data.IDataReader reader, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public sealed partial class SqlBulkCopyColumnMapping
{
public SqlBulkCopyColumnMapping() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlBulkCopyColumnMapping(int sourceColumnOrdinal, int destinationOrdinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlBulkCopyColumnMapping(int sourceColumnOrdinal, string destinationColumn) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlBulkCopyColumnMapping(string sourceColumn, int destinationOrdinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlBulkCopyColumnMapping(string sourceColumn, string destinationColumn) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public string DestinationColumn { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public int DestinationOrdinal { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string SourceColumn { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public int SourceOrdinal { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public sealed partial class SqlBulkCopyColumnMappingCollection : System.Collections.CollectionBase
{
internal SqlBulkCopyColumnMappingCollection() { }
public System.Data.SqlClient.SqlBulkCopyColumnMapping this[int index] { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public System.Data.SqlClient.SqlBulkCopyColumnMapping Add(System.Data.SqlClient.SqlBulkCopyColumnMapping bulkCopyColumnMapping) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlClient.SqlBulkCopyColumnMapping Add(int sourceColumnIndex, int destinationColumnIndex) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlClient.SqlBulkCopyColumnMapping Add(int sourceColumnIndex, string destinationColumn) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlClient.SqlBulkCopyColumnMapping Add(string sourceColumn, int destinationColumnIndex) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlClient.SqlBulkCopyColumnMapping Add(string sourceColumn, string destinationColumn) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public new void Clear() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public bool Contains(System.Data.SqlClient.SqlBulkCopyColumnMapping value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public void CopyTo(System.Data.SqlClient.SqlBulkCopyColumnMapping[] array, int index) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public int IndexOf(System.Data.SqlClient.SqlBulkCopyColumnMapping value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public void Insert(int index, System.Data.SqlClient.SqlBulkCopyColumnMapping value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public void Remove(System.Data.SqlClient.SqlBulkCopyColumnMapping value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public new void RemoveAt(int index) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
}
[System.FlagsAttribute]
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public enum SqlBulkCopyOptions
{
Default = 0,
KeepIdentity = 1,
CheckConstraints = 2,
TableLock = 4,
KeepNulls = 8,
FireTriggers = 16,
UseInternalTransaction = 32,
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public sealed partial class SqlClientFactory : System.Data.Common.DbProviderFactory
{
internal SqlClientFactory() { }
public static readonly System.Data.SqlClient.SqlClientFactory Instance;
public override System.Data.Common.DbCommand CreateCommand() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override System.Data.Common.DbCommandBuilder CreateCommandBuilder() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override System.Data.Common.DbConnection CreateConnection() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override System.Data.Common.DbConnectionStringBuilder CreateConnectionStringBuilder() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override System.Data.Common.DbDataAdapter CreateDataAdapter() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override System.Data.Common.DbParameter CreateParameter() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public static partial class SqlClientMetaDataCollectionNames
{
public static readonly string Columns;
public static readonly string Databases;
public static readonly string ForeignKeys;
public static readonly string IndexColumns;
public static readonly string Indexes;
public static readonly string Parameters;
public static readonly string ProcedureColumns;
public static readonly string Procedures;
public static readonly string Tables;
public static readonly string UserDefinedTypes;
public static readonly string Users;
public static readonly string ViewColumns;
public static readonly string Views;
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public sealed partial class SqlCommand : System.Data.Common.DbCommand, System.ICloneable
{
public SqlCommand() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlCommand(string cmdText) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlCommand(string cmdText, System.Data.SqlClient.SqlConnection connection) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlCommand(string cmdText, System.Data.SqlClient.SqlConnection connection, System.Data.SqlClient.SqlTransaction transaction) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override string CommandText { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override int CommandTimeout { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override System.Data.CommandType CommandType { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public new System.Data.SqlClient.SqlConnection Connection { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
protected override System.Data.Common.DbConnection DbConnection { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
protected override System.Data.Common.DbParameterCollection DbParameterCollection { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
protected override System.Data.Common.DbTransaction DbTransaction { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override bool DesignTimeVisible { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public System.Data.Sql.SqlNotificationRequest Notification { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public new System.Data.SqlClient.SqlParameterCollection Parameters { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public new System.Data.SqlClient.SqlTransaction Transaction { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override System.Data.UpdateRowSource UpdatedRowSource { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public event System.Data.StatementCompletedEventHandler StatementCompleted { add { } remove { } }
public System.IAsyncResult BeginExecuteNonQuery() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.IAsyncResult BeginExecuteNonQuery(System.AsyncCallback callback, object stateObject) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.IAsyncResult BeginExecuteReader() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.IAsyncResult BeginExecuteReader(System.AsyncCallback callback, object stateObject) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.IAsyncResult BeginExecuteReader(System.AsyncCallback callback, object stateObject, System.Data.CommandBehavior behavior) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.IAsyncResult BeginExecuteReader(System.Data.CommandBehavior behavior) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.IAsyncResult BeginExecuteXmlReader() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.IAsyncResult BeginExecuteXmlReader(System.AsyncCallback callback, object stateObject) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override void Cancel() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlClient.SqlCommand Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
protected override System.Data.Common.DbParameter CreateDbParameter() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public new System.Data.SqlClient.SqlParameter CreateParameter() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
protected override void Dispose(bool disposing) { }
public int EndExecuteNonQuery(System.IAsyncResult asyncResult) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlClient.SqlDataReader EndExecuteReader(System.IAsyncResult asyncResult) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Xml.XmlReader EndExecuteXmlReader(System.IAsyncResult asyncResult) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
protected override System.Data.Common.DbDataReader ExecuteDbDataReader(System.Data.CommandBehavior behavior) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
protected override System.Threading.Tasks.Task<System.Data.Common.DbDataReader> ExecuteDbDataReaderAsync(System.Data.CommandBehavior behavior, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override int ExecuteNonQuery() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override System.Threading.Tasks.Task<int> ExecuteNonQueryAsync(System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public new System.Data.SqlClient.SqlDataReader ExecuteReader() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public new System.Data.SqlClient.SqlDataReader ExecuteReader(System.Data.CommandBehavior behavior) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public new System.Threading.Tasks.Task<System.Data.SqlClient.SqlDataReader> ExecuteReaderAsync() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public new System.Threading.Tasks.Task<System.Data.SqlClient.SqlDataReader> ExecuteReaderAsync(System.Data.CommandBehavior behavior) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public new System.Threading.Tasks.Task<System.Data.SqlClient.SqlDataReader> ExecuteReaderAsync(System.Data.CommandBehavior behavior, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public new System.Threading.Tasks.Task<System.Data.SqlClient.SqlDataReader> ExecuteReaderAsync(System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override object ExecuteScalar() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override System.Threading.Tasks.Task<object> ExecuteScalarAsync(System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Xml.XmlReader ExecuteXmlReader() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Threading.Tasks.Task<System.Xml.XmlReader> ExecuteXmlReaderAsync() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Threading.Tasks.Task<System.Xml.XmlReader> ExecuteXmlReaderAsync(System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override void Prepare() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public void ResetCommandTimeout() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public sealed partial class SqlCommandBuilder : System.Data.Common.DbCommandBuilder
{
public SqlCommandBuilder() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlCommandBuilder(System.Data.SqlClient.SqlDataAdapter adapter) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override System.Data.Common.CatalogLocation CatalogLocation { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override string CatalogSeparator { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public new System.Data.SqlClient.SqlDataAdapter DataAdapter { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override string QuotePrefix { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override string QuoteSuffix { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override string SchemaSeparator { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
protected override void ApplyParameterInfo(System.Data.Common.DbParameter parameter, System.Data.DataRow datarow, System.Data.StatementType statementType, bool whereClause) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public static void DeriveParameters(System.Data.SqlClient.SqlCommand command) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public new System.Data.SqlClient.SqlCommand GetDeleteCommand() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public new System.Data.SqlClient.SqlCommand GetDeleteCommand(bool useColumnsForParameterNames) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public new System.Data.SqlClient.SqlCommand GetInsertCommand() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public new System.Data.SqlClient.SqlCommand GetInsertCommand(bool useColumnsForParameterNames) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
protected override string GetParameterName(int parameterOrdinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
protected override string GetParameterName(string parameterName) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
protected override string GetParameterPlaceholder(int parameterOrdinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
protected override System.Data.DataTable GetSchemaTable(System.Data.Common.DbCommand srcCommand) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public new System.Data.SqlClient.SqlCommand GetUpdateCommand() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public new System.Data.SqlClient.SqlCommand GetUpdateCommand(bool useColumnsForParameterNames) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
protected override System.Data.Common.DbCommand InitializeCommand(System.Data.Common.DbCommand command) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override string QuoteIdentifier(string unquotedIdentifier) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
protected override void SetRowUpdatingHandler(System.Data.Common.DbDataAdapter adapter) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override string UnquoteIdentifier(string quotedIdentifier) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public sealed partial class SqlConnection : System.Data.Common.DbConnection, System.ICloneable
{
public SqlConnection() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlConnection(string connectionString) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlConnection(string connectionString, System.Data.SqlClient.SqlCredential credential) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public string AccessToken { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public System.Guid ClientConnectionId { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override string ConnectionString { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override int ConnectionTimeout { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public System.Data.SqlClient.SqlCredential Credential { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override string Database { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override string DataSource { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool FireInfoMessageEventOnUserErrors { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public int PacketSize { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override string ServerVersion { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override System.Data.ConnectionState State { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool StatisticsEnabled { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string WorkstationId { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public event System.Data.SqlClient.SqlInfoMessageEventHandler InfoMessage { add { } remove { } }
protected override System.Data.Common.DbTransaction BeginDbTransaction(System.Data.IsolationLevel isolationLevel) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public new System.Data.SqlClient.SqlTransaction BeginTransaction() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public new System.Data.SqlClient.SqlTransaction BeginTransaction(System.Data.IsolationLevel iso) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlClient.SqlTransaction BeginTransaction(System.Data.IsolationLevel iso, string transactionName) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlClient.SqlTransaction BeginTransaction(string transactionName) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override void ChangeDatabase(string database) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public static void ChangePassword(string connectionString, System.Data.SqlClient.SqlCredential credential, System.Security.SecureString newPassword) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public static void ChangePassword(string connectionString, string newPassword) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public static void ClearAllPools() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public static void ClearPool(System.Data.SqlClient.SqlConnection connection) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override void Close() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public new System.Data.SqlClient.SqlCommand CreateCommand() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
protected override System.Data.Common.DbCommand CreateDbCommand() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
protected override void Dispose(bool disposing) { }
public override System.Data.DataTable GetSchema() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override System.Data.DataTable GetSchema(string collectionName) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override System.Data.DataTable GetSchema(string collectionName, string[] restrictionValues) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override void Open() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override System.Threading.Tasks.Task OpenAsync(System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public void ResetStatistics() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Collections.IDictionary RetrieveStatistics() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public sealed partial class SqlConnectionStringBuilder : System.Data.Common.DbConnectionStringBuilder
{
public SqlConnectionStringBuilder() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlConnectionStringBuilder(string connectionString) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlClient.ApplicationIntent ApplicationIntent { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string ApplicationName { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string AttachDBFilename { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public int ConnectRetryCount { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public int ConnectRetryInterval { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public int ConnectTimeout { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string CurrentLanguage { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string DataSource { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool Encrypt { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool Enlist { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string FailoverPartner { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string InitialCatalog { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool IntegratedSecurity { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override object this[string keyword] { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override System.Collections.ICollection Keys { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public int LoadBalanceTimeout { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public int MaxPoolSize { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public int MinPoolSize { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool MultipleActiveResultSets { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool MultiSubnetFailover { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public int PacketSize { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string Password { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool PersistSecurityInfo { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
#if NET
public System.Data.SqlClient.PoolBlockingPeriod PoolBlockingPeriod { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
#endif
public bool Pooling { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool Replication { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string TransactionBinding { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool TrustServerCertificate { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string TypeSystemVersion { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string UserID { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public bool UserInstance { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override System.Collections.ICollection Values { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string WorkstationID { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override void Clear() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override bool ContainsKey(string keyword) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override bool Remove(string keyword) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override bool ShouldSerialize(string keyword) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override bool TryGetValue(string keyword, out object value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public sealed partial class SqlCredential
{
public SqlCredential(string userId, System.Security.SecureString password) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Security.SecureString Password { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string UserId { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public sealed partial class SqlDataAdapter : System.Data.Common.DbDataAdapter, System.Data.IDataAdapter, System.Data.IDbDataAdapter, System.ICloneable
{
public SqlDataAdapter() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlDataAdapter(System.Data.SqlClient.SqlCommand selectCommand) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlDataAdapter(string selectCommandText, System.Data.SqlClient.SqlConnection selectConnection) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlDataAdapter(string selectCommandText, string selectConnectionString) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public new System.Data.SqlClient.SqlCommand DeleteCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public new System.Data.SqlClient.SqlCommand InsertCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public new System.Data.SqlClient.SqlCommand SelectCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
System.Data.IDbCommand System.Data.IDbDataAdapter.DeleteCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
System.Data.IDbCommand System.Data.IDbDataAdapter.InsertCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
System.Data.IDbCommand System.Data.IDbDataAdapter.SelectCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
System.Data.IDbCommand System.Data.IDbDataAdapter.UpdateCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override int UpdateBatchSize { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public new System.Data.SqlClient.SqlCommand UpdateCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public event System.Data.SqlClient.SqlRowUpdatedEventHandler RowUpdated { add { } remove { } }
public event System.Data.SqlClient.SqlRowUpdatingEventHandler RowUpdating { add { } remove { } }
protected override void OnRowUpdated(System.Data.Common.RowUpdatedEventArgs value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
protected override void OnRowUpdating(System.Data.Common.RowUpdatingEventArgs value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public partial class SqlDataReader : System.Data.Common.DbDataReader
#if NET
, System.Data.Common.IDbColumnSchemaGenerator
#endif
, System.IDisposable
{
internal SqlDataReader() { }
protected System.Data.SqlClient.SqlConnection Connection { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override int Depth { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override int FieldCount { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override bool HasRows { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override bool IsClosed { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override object this[int i] { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override object this[string name] { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override int RecordsAffected { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override int VisibleFieldCount { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override bool GetBoolean(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override byte GetByte(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override long GetBytes(int i, long dataIndex, byte[] buffer, int bufferIndex, int length) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override char GetChar(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override long GetChars(int i, long dataIndex, char[] buffer, int bufferIndex, int length) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
#if NET
public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Common.DbColumn> GetColumnSchema() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
#endif
public override string GetDataTypeName(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override System.DateTime GetDateTime(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.DateTimeOffset GetDateTimeOffset(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override decimal GetDecimal(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override double GetDouble(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override System.Collections.IEnumerator GetEnumerator() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override System.Type GetFieldType(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override System.Threading.Tasks.Task<T> GetFieldValueAsync<T>(int i, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override T GetFieldValue<T>(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override float GetFloat(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override System.Guid GetGuid(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override short GetInt16(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override int GetInt32(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override long GetInt64(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override string GetName(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override int GetOrdinal(string name) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override System.Type GetProviderSpecificFieldType(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override object GetProviderSpecificValue(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override int GetProviderSpecificValues(object[] values) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override System.Data.DataTable GetSchemaTable() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlBinary GetSqlBinary(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlBoolean GetSqlBoolean(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlByte GetSqlByte(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlBytes GetSqlBytes(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlChars GetSqlChars(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlDateTime GetSqlDateTime(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlDecimal GetSqlDecimal(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlDouble GetSqlDouble(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlGuid GetSqlGuid(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlInt16 GetSqlInt16(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlInt32 GetSqlInt32(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlInt64 GetSqlInt64(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlMoney GetSqlMoney(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlSingle GetSqlSingle(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlString GetSqlString(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual object GetSqlValue(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual int GetSqlValues(object[] values) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Data.SqlTypes.SqlXml GetSqlXml(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override System.IO.Stream GetStream(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override string GetString(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override System.IO.TextReader GetTextReader(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.TimeSpan GetTimeSpan(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override object GetValue(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override int GetValues(object[] values) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public virtual System.Xml.XmlReader GetXmlReader(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
protected internal bool IsCommandBehavior(System.Data.CommandBehavior condition) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override bool IsDBNull(int i) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override System.Threading.Tasks.Task<bool> IsDBNullAsync(int i, System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override bool NextResult() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override System.Threading.Tasks.Task<bool> NextResultAsync(System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override bool Read() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override System.Threading.Tasks.Task<bool> ReadAsync(System.Threading.CancellationToken cancellationToken) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public sealed partial class SqlDependency
{
public SqlDependency() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlDependency(System.Data.SqlClient.SqlCommand command) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlDependency(System.Data.SqlClient.SqlCommand command, string options, int timeout) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public bool HasChanges { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string Id { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public event System.Data.SqlClient.OnChangeEventHandler OnChange { add { } remove { } }
public void AddCommandDependency(System.Data.SqlClient.SqlCommand command) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public static bool Start(string connectionString) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public static bool Start(string connectionString, string queue) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public static bool Stop(string connectionString) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public static bool Stop(string connectionString, string queue) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public sealed partial class SqlError
{
internal SqlError() { }
public byte Class { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public int LineNumber { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string Message { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public int Number { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string Procedure { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string Server { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string Source { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public byte State { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public sealed partial class SqlErrorCollection : System.Collections.ICollection, System.Collections.IEnumerable
{
internal SqlErrorCollection() { }
public int Count { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public System.Data.SqlClient.SqlError this[int index] { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
bool System.Collections.ICollection.IsSynchronized { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
object System.Collections.ICollection.SyncRoot { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public void CopyTo(System.Array array, int index) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public void CopyTo(System.Data.SqlClient.SqlError[] array, int index) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Collections.IEnumerator GetEnumerator() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public sealed partial class SqlException : System.Data.Common.DbException
{
internal SqlException() { }
public byte Class { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public System.Guid ClientConnectionId { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public System.Data.SqlClient.SqlErrorCollection Errors { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public int LineNumber { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public int Number { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string Procedure { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string Server { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override string Source { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public byte State { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override void GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public sealed partial class SqlInfoMessageEventArgs : System.EventArgs
{
internal SqlInfoMessageEventArgs() { }
public System.Data.SqlClient.SqlErrorCollection Errors { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string Message { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string Source { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public delegate void SqlInfoMessageEventHandler(object sender, System.Data.SqlClient.SqlInfoMessageEventArgs e);
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public partial class SqlNotificationEventArgs : System.EventArgs
{
public SqlNotificationEventArgs(System.Data.SqlClient.SqlNotificationType type, System.Data.SqlClient.SqlNotificationInfo info, System.Data.SqlClient.SqlNotificationSource source) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlClient.SqlNotificationInfo Info { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public System.Data.SqlClient.SqlNotificationSource Source { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public System.Data.SqlClient.SqlNotificationType Type { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public enum SqlNotificationInfo
{
AlreadyChanged = -2,
Unknown = -1,
Truncate = 0,
Insert = 1,
Update = 2,
Delete = 3,
Drop = 4,
Alter = 5,
Restart = 6,
Error = 7,
Query = 8,
Invalid = 9,
Options = 10,
Isolation = 11,
Expired = 12,
Resource = 13,
PreviousFire = 14,
TemplateLimit = 15,
Merge = 16,
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public enum SqlNotificationSource
{
Client = -2,
Unknown = -1,
Data = 0,
Timeout = 1,
Object = 2,
Database = 3,
System = 4,
Statement = 5,
Environment = 6,
Execution = 7,
Owner = 8,
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public enum SqlNotificationType
{
Unknown = -1,
Change = 0,
Subscribe = 1,
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public sealed partial class SqlParameter : System.Data.Common.DbParameter, System.ICloneable
{
public SqlParameter() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlParameter(string parameterName, System.Data.SqlDbType dbType) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlParameter(string parameterName, System.Data.SqlDbType dbType, int size) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlParameter(string parameterName, System.Data.SqlDbType dbType, int size, System.Data.ParameterDirection direction, bool isNullable, byte precision, byte scale, string sourceColumn, System.Data.DataRowVersion sourceVersion, object value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlParameter(string parameterName, System.Data.SqlDbType dbType, int size, System.Data.ParameterDirection direction, byte precision, byte scale, string sourceColumn, System.Data.DataRowVersion sourceVersion, bool sourceColumnNullMapping, object value, string xmlSchemaCollectionDatabase, string xmlSchemaCollectionOwningSchema, string xmlSchemaCollectionName) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlParameter(string parameterName, System.Data.SqlDbType dbType, int size, string sourceColumn) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public SqlParameter(string parameterName, object value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlTypes.SqlCompareOptions CompareInfo { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override System.Data.DbType DbType { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override System.Data.ParameterDirection Direction { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override bool IsNullable { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public int LocaleId { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public int Offset { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override string ParameterName { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public new byte Precision { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public new byte Scale { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override int Size { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override string SourceColumn { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override bool SourceColumnNullMapping { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override System.Data.DataRowVersion SourceVersion { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public System.Data.SqlDbType SqlDbType { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public object SqlValue { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string TypeName { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string UdtTypeName { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override object Value { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string XmlSchemaCollectionDatabase { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string XmlSchemaCollectionName { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public string XmlSchemaCollectionOwningSchema { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override void ResetDbType() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public void ResetSqlDbType() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
object System.ICloneable.Clone() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public sealed partial class SqlParameterCollection : System.Data.Common.DbParameterCollection
{
internal SqlParameterCollection() { }
public override int Count { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override bool IsFixedSize { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override bool IsReadOnly { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public new System.Data.SqlClient.SqlParameter this[int index] { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public new System.Data.SqlClient.SqlParameter this[string parameterName] { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public override object SyncRoot { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public System.Data.SqlClient.SqlParameter Add(System.Data.SqlClient.SqlParameter value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override int Add(object value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlClient.SqlParameter Add(string parameterName, System.Data.SqlDbType sqlDbType) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlClient.SqlParameter Add(string parameterName, System.Data.SqlDbType sqlDbType, int size) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlClient.SqlParameter Add(string parameterName, System.Data.SqlDbType sqlDbType, int size, string sourceColumn) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override void AddRange(System.Array values) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public void AddRange(System.Data.SqlClient.SqlParameter[] values) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public System.Data.SqlClient.SqlParameter AddWithValue(string parameterName, object value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override void Clear() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public bool Contains(System.Data.SqlClient.SqlParameter value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override bool Contains(object value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override bool Contains(string value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override void CopyTo(System.Array array, int index) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public void CopyTo(System.Data.SqlClient.SqlParameter[] array, int index) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override System.Collections.IEnumerator GetEnumerator() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
protected override System.Data.Common.DbParameter GetParameter(int index) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
protected override System.Data.Common.DbParameter GetParameter(string parameterName) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public int IndexOf(System.Data.SqlClient.SqlParameter value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override int IndexOf(object value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override int IndexOf(string parameterName) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public void Insert(int index, System.Data.SqlClient.SqlParameter value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override void Insert(int index, object value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public void Remove(System.Data.SqlClient.SqlParameter value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override void Remove(object value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override void RemoveAt(int index) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public override void RemoveAt(string parameterName) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
protected override void SetParameter(int index, System.Data.Common.DbParameter value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
protected override void SetParameter(string parameterName, System.Data.Common.DbParameter value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public partial class SqlRowsCopiedEventArgs : System.EventArgs
{
public SqlRowsCopiedEventArgs(long rowsCopied) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public bool Abort { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
public long RowsCopied { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public delegate void SqlRowsCopiedEventHandler(object sender, System.Data.SqlClient.SqlRowsCopiedEventArgs e);
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public sealed partial class SqlRowUpdatedEventArgs : System.Data.Common.RowUpdatedEventArgs
{
public SqlRowUpdatedEventArgs(System.Data.DataRow row, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping) : base (default(System.Data.DataRow), default(System.Data.IDbCommand), default(System.Data.StatementType), default(System.Data.Common.DataTableMapping)) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
public new System.Data.SqlClient.SqlCommand Command { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }
}
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public delegate void SqlRowUpdatedEventHandler(object sender, System.Data.SqlClient.SqlRowUpdatedEventArgs e);
#if NETSTANDARD || NET8_0_OR_GREATER
[System.Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
#endif
public sealed partial class SqlRowUpdatingEventArgs : System.Data.Common.RowUpdatingEventArgs
{
public SqlRowUpdatingEventArgs(System.Data.DataRow row, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping) : base (default(System.Data.DataRow), default(System.Data.IDbCommand), default(System.Data.StatementType), default(System.Data.Common.DataTableMapping)) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); }
protected override System.Data.IDbCommand BaseCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } }