-
Notifications
You must be signed in to change notification settings - Fork 874
Expand file tree
/
Copy pathPublicAPI.Shipped.txt
More file actions
1938 lines (1938 loc) · 160 KB
/
PublicAPI.Shipped.txt
File metadata and controls
1938 lines (1938 loc) · 160 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
#nullable enable
abstract Npgsql.Replication.PgOutput.Messages.UpdateMessage.NewRow.get -> Npgsql.Replication.PgOutput.ReplicationTuple!
abstract NpgsqlTypes.NpgsqlTsQuery.Equals(NpgsqlTypes.NpgsqlTsQuery? other) -> bool
const Npgsql.NpgsqlConnection.DefaultPort = 5432 -> int
const Npgsql.PostgresErrorCodes.ActiveSqlTransaction = "25001" -> string!
const Npgsql.PostgresErrorCodes.AdminShutdown = "57P01" -> string!
const Npgsql.PostgresErrorCodes.AmbiguousAlias = "42P09" -> string!
const Npgsql.PostgresErrorCodes.AmbiguousColumn = "42702" -> string!
const Npgsql.PostgresErrorCodes.AmbiguousFunction = "42725" -> string!
const Npgsql.PostgresErrorCodes.AmbiguousParameter = "42P08" -> string!
const Npgsql.PostgresErrorCodes.ArraySubscriptError = "2202E" -> string!
const Npgsql.PostgresErrorCodes.AssertFailure = "P0004" -> string!
const Npgsql.PostgresErrorCodes.BadCopyFileFormat = "22P04" -> string!
const Npgsql.PostgresErrorCodes.BranchTransactionAlreadyActive = "25002" -> string!
const Npgsql.PostgresErrorCodes.CannotCoerce = "42846" -> string!
const Npgsql.PostgresErrorCodes.CannotConnectNow = "57P03" -> string!
const Npgsql.PostgresErrorCodes.CantChangeRuntimeParam = "55P02" -> string!
const Npgsql.PostgresErrorCodes.CardinalityViolation = "21000" -> string!
const Npgsql.PostgresErrorCodes.CaseNotFound = "20000" -> string!
const Npgsql.PostgresErrorCodes.CharacterNotInRepertoire = "22021" -> string!
const Npgsql.PostgresErrorCodes.CheckViolation = "23514" -> string!
const Npgsql.PostgresErrorCodes.CollationMismatch = "42P21" -> string!
const Npgsql.PostgresErrorCodes.ConfigFileError = "F0000" -> string!
const Npgsql.PostgresErrorCodes.ConfigurationLimitExceeded = "53400" -> string!
const Npgsql.PostgresErrorCodes.ConnectionDoesNotExist = "08003" -> string!
const Npgsql.PostgresErrorCodes.ConnectionException = "08000" -> string!
const Npgsql.PostgresErrorCodes.ConnectionFailure = "08006" -> string!
const Npgsql.PostgresErrorCodes.ContainingSqlNotPermittedExternalRoutineException = "38001" -> string!
const Npgsql.PostgresErrorCodes.CrashShutdown = "57P02" -> string!
const Npgsql.PostgresErrorCodes.DatabaseDropped = "57P04" -> string!
const Npgsql.PostgresErrorCodes.DataCorrupted = "XX001" -> string!
const Npgsql.PostgresErrorCodes.DataException = "22000" -> string!
const Npgsql.PostgresErrorCodes.DatatypeMismatch = "42804" -> string!
const Npgsql.PostgresErrorCodes.DatetimeFieldOverflow = "22008" -> string!
const Npgsql.PostgresErrorCodes.DeadlockDetected = "40P01" -> string!
const Npgsql.PostgresErrorCodes.DependentObjectsStillExist = "2BP01" -> string!
const Npgsql.PostgresErrorCodes.DependentPrivilegeDescriptorsStillExist = "2B000" -> string!
const Npgsql.PostgresErrorCodes.DeprecatedFeatureWarning = "01P01" -> string!
const Npgsql.PostgresErrorCodes.DiagnosticsException = "0Z000" -> string!
const Npgsql.PostgresErrorCodes.DiskFull = "53100" -> string!
const Npgsql.PostgresErrorCodes.DivisionByZero = "22012" -> string!
const Npgsql.PostgresErrorCodes.DuplicateAlias = "42712" -> string!
const Npgsql.PostgresErrorCodes.DuplicateColumn = "42701" -> string!
const Npgsql.PostgresErrorCodes.DuplicateCursor = "42P03" -> string!
const Npgsql.PostgresErrorCodes.DuplicateDatabase = "42P04" -> string!
const Npgsql.PostgresErrorCodes.DuplicateFile = "58P02" -> string!
const Npgsql.PostgresErrorCodes.DuplicateFunction = "42723" -> string!
const Npgsql.PostgresErrorCodes.DuplicateObject = "42710" -> string!
const Npgsql.PostgresErrorCodes.DuplicatePreparedStatement = "42P05" -> string!
const Npgsql.PostgresErrorCodes.DuplicateSchema = "42P06" -> string!
const Npgsql.PostgresErrorCodes.DuplicateTable = "42P07" -> string!
const Npgsql.PostgresErrorCodes.DynamicResultSetsReturnedWarning = "0100C" -> string!
const Npgsql.PostgresErrorCodes.ErrorInAssignment = "22005" -> string!
const Npgsql.PostgresErrorCodes.EscapeCharacterConflict = "2200B" -> string!
const Npgsql.PostgresErrorCodes.EventTriggerProtocolViolatedExternalRoutineInvocationException = "39P03" -> string!
const Npgsql.PostgresErrorCodes.ExclusionViolation = "23P01" -> string!
const Npgsql.PostgresErrorCodes.ExternalRoutineException = "38000" -> string!
const Npgsql.PostgresErrorCodes.ExternalRoutineInvocationException = "39000" -> string!
const Npgsql.PostgresErrorCodes.FdwColumnNameNotFound = "HV005" -> string!
const Npgsql.PostgresErrorCodes.FdwDynamicParameterValueNeeded = "HV002" -> string!
const Npgsql.PostgresErrorCodes.FdwError = "HV000" -> string!
const Npgsql.PostgresErrorCodes.FdwFunctionSequenceError = "HV010" -> string!
const Npgsql.PostgresErrorCodes.FdwInconsistentDescriptorInformation = "HV021" -> string!
const Npgsql.PostgresErrorCodes.FdwInvalidAttributeValue = "HV024" -> string!
const Npgsql.PostgresErrorCodes.FdwInvalidColumnName = "HV007" -> string!
const Npgsql.PostgresErrorCodes.FdwInvalidColumnNumber = "HV008" -> string!
const Npgsql.PostgresErrorCodes.FdwInvalidDataType = "HV004" -> string!
const Npgsql.PostgresErrorCodes.FdwInvalidDataTypeDescriptors = "HV006" -> string!
const Npgsql.PostgresErrorCodes.FdwInvalidDescriptorFieldIdentifier = "HV091" -> string!
const Npgsql.PostgresErrorCodes.FdwInvalidHandle = "HV00B" -> string!
const Npgsql.PostgresErrorCodes.FdwInvalidOptionIndex = "HV00C" -> string!
const Npgsql.PostgresErrorCodes.FdwInvalidOptionName = "HV00D" -> string!
const Npgsql.PostgresErrorCodes.FdwInvalidStringFormat = "HV00A" -> string!
const Npgsql.PostgresErrorCodes.FdwInvalidStringLengthOrBufferLength = "HV090" -> string!
const Npgsql.PostgresErrorCodes.FdwInvalidUseOfNullPointer = "HV009" -> string!
const Npgsql.PostgresErrorCodes.FdwNoSchemas = "HV00P" -> string!
const Npgsql.PostgresErrorCodes.FdwOptionNameNotFound = "HV00J" -> string!
const Npgsql.PostgresErrorCodes.FdwOutOfMemory = "HV001" -> string!
const Npgsql.PostgresErrorCodes.FdwReplyHandle = "HV00K" -> string!
const Npgsql.PostgresErrorCodes.FdwSchemaNotFound = "HV00Q" -> string!
const Npgsql.PostgresErrorCodes.FdwTableNotFound = "HV00R" -> string!
const Npgsql.PostgresErrorCodes.FdwTooManyHandles = "HV014" -> string!
const Npgsql.PostgresErrorCodes.FdwUnableToCreateExecution = "HV00L" -> string!
const Npgsql.PostgresErrorCodes.FdwUnableToCreateReply = "HV00M" -> string!
const Npgsql.PostgresErrorCodes.FdwUnableToEstablishConnection = "HV00N" -> string!
const Npgsql.PostgresErrorCodes.FeatureNotSupported = "0A000" -> string!
const Npgsql.PostgresErrorCodes.FloatingPointException = "22P01" -> string!
const Npgsql.PostgresErrorCodes.ForeignKeyViolation = "23503" -> string!
const Npgsql.PostgresErrorCodes.FunctionExecutedNoReturnStatementSqlRoutineException = "2F005" -> string!
const Npgsql.PostgresErrorCodes.GroupingError = "42803" -> string!
const Npgsql.PostgresErrorCodes.HeldCursorRequiresSameIsolationLevel = "25008" -> string!
const Npgsql.PostgresErrorCodes.IdleSessionTimeout = "57P05" -> string!
const Npgsql.PostgresErrorCodes.ImplicitZeroBitPaddingWarning = "01008" -> string!
const Npgsql.PostgresErrorCodes.InappropriateAccessModeForBranchTransaction = "25003" -> string!
const Npgsql.PostgresErrorCodes.InappropriateIsolationLevelForBranchTransaction = "25004" -> string!
const Npgsql.PostgresErrorCodes.IndeterminateCollation = "42P22" -> string!
const Npgsql.PostgresErrorCodes.IndeterminateDatatype = "42P18" -> string!
const Npgsql.PostgresErrorCodes.IndexCorrupted = "XX002" -> string!
const Npgsql.PostgresErrorCodes.IndicatorOverflow = "22022" -> string!
const Npgsql.PostgresErrorCodes.InFailedSqlTransaction = "25P02" -> string!
const Npgsql.PostgresErrorCodes.InsufficientPrivilege = "42501" -> string!
const Npgsql.PostgresErrorCodes.InsufficientResources = "53000" -> string!
const Npgsql.PostgresErrorCodes.IntegrityConstraintViolation = "23000" -> string!
const Npgsql.PostgresErrorCodes.InternalError = "XX000" -> string!
const Npgsql.PostgresErrorCodes.IntervalFieldOverflow = "22015" -> string!
const Npgsql.PostgresErrorCodes.InvalidArgumentForLogarithm = "2201E" -> string!
const Npgsql.PostgresErrorCodes.InvalidArgumentForNthValueFunction = "22016" -> string!
const Npgsql.PostgresErrorCodes.InvalidArgumentForNtileFunction = "22014" -> string!
const Npgsql.PostgresErrorCodes.InvalidArgumentForPowerFunction = "2201F" -> string!
const Npgsql.PostgresErrorCodes.InvalidArgumentForWidthBucketFunction = "2201G" -> string!
const Npgsql.PostgresErrorCodes.InvalidAuthorizationSpecification = "28000" -> string!
const Npgsql.PostgresErrorCodes.InvalidBinaryRepresentation = "22P03" -> string!
const Npgsql.PostgresErrorCodes.InvalidCatalogName = "3D000" -> string!
const Npgsql.PostgresErrorCodes.InvalidCharacterValueForCast = "22018" -> string!
const Npgsql.PostgresErrorCodes.InvalidColumnDefinition = "42611" -> string!
const Npgsql.PostgresErrorCodes.InvalidColumnReference = "42P10" -> string!
const Npgsql.PostgresErrorCodes.InvalidCursorDefinition = "42P11" -> string!
const Npgsql.PostgresErrorCodes.InvalidCursorName = "34000" -> string!
const Npgsql.PostgresErrorCodes.InvalidCursorState = "24000" -> string!
const Npgsql.PostgresErrorCodes.InvalidDatabaseDefinition = "42P12" -> string!
const Npgsql.PostgresErrorCodes.InvalidDatetimeFormat = "22007" -> string!
const Npgsql.PostgresErrorCodes.InvalidEscapeCharacter = "22019" -> string!
const Npgsql.PostgresErrorCodes.InvalidEscapeOctet = "2200D" -> string!
const Npgsql.PostgresErrorCodes.InvalidEscapeSequence = "22025" -> string!
const Npgsql.PostgresErrorCodes.InvalidForeignKey = "42830" -> string!
const Npgsql.PostgresErrorCodes.InvalidFunctionDefinition = "42P13" -> string!
const Npgsql.PostgresErrorCodes.InvalidGrantOperation = "0LP01" -> string!
const Npgsql.PostgresErrorCodes.InvalidGrantor = "0L000" -> string!
const Npgsql.PostgresErrorCodes.InvalidIndicatorParameterValue = "22010" -> string!
const Npgsql.PostgresErrorCodes.InvalidLocatorSpecification = "0F001" -> string!
const Npgsql.PostgresErrorCodes.InvalidName = "42602" -> string!
const Npgsql.PostgresErrorCodes.InvalidObjectDefinition = "42P17" -> string!
const Npgsql.PostgresErrorCodes.InvalidParameterValue = "22023" -> string!
const Npgsql.PostgresErrorCodes.InvalidPassword = "28P01" -> string!
const Npgsql.PostgresErrorCodes.InvalidPreparedStatementDefinition = "42P14" -> string!
const Npgsql.PostgresErrorCodes.InvalidRecursion = "42P19" -> string!
const Npgsql.PostgresErrorCodes.InvalidRegularExpression = "2201B" -> string!
const Npgsql.PostgresErrorCodes.InvalidRoleSpecification = "0P000" -> string!
const Npgsql.PostgresErrorCodes.InvalidRowCountInLimitClause = "2201W" -> string!
const Npgsql.PostgresErrorCodes.InvalidRowCountInResultOffsetClause = "2201X" -> string!
const Npgsql.PostgresErrorCodes.InvalidSavepointSpecification = "3B001" -> string!
const Npgsql.PostgresErrorCodes.InvalidSchemaDefinition = "42P15" -> string!
const Npgsql.PostgresErrorCodes.InvalidSchemaName = "3F000" -> string!
const Npgsql.PostgresErrorCodes.InvalidSqlStatementName = "26000" -> string!
const Npgsql.PostgresErrorCodes.InvalidSqlstateReturnedExternalRoutineInvocationException = "39001" -> string!
const Npgsql.PostgresErrorCodes.InvalidTableDefinition = "42P16" -> string!
const Npgsql.PostgresErrorCodes.InvalidTablesampleArgument = "2202H" -> string!
const Npgsql.PostgresErrorCodes.InvalidTablesampleRepeat = "2202G" -> string!
const Npgsql.PostgresErrorCodes.InvalidTextRepresentation = "22P02" -> string!
const Npgsql.PostgresErrorCodes.InvalidTimeZoneDisplacementValue = "22009" -> string!
const Npgsql.PostgresErrorCodes.InvalidTransactionInitiation = "0B000" -> string!
const Npgsql.PostgresErrorCodes.InvalidTransactionState = "25000" -> string!
const Npgsql.PostgresErrorCodes.InvalidTransactionTermination = "2D000" -> string!
const Npgsql.PostgresErrorCodes.InvalidUseOfEscapeCharacter = "2200C" -> string!
const Npgsql.PostgresErrorCodes.InvalidXmlComment = "2200S" -> string!
const Npgsql.PostgresErrorCodes.InvalidXmlContent = "2200N" -> string!
const Npgsql.PostgresErrorCodes.InvalidXmlDocument = "2200M" -> string!
const Npgsql.PostgresErrorCodes.InvalidXmlProcessingInstruction = "2200T" -> string!
const Npgsql.PostgresErrorCodes.IoError = "58030" -> string!
const Npgsql.PostgresErrorCodes.LocatorException = "0F000" -> string!
const Npgsql.PostgresErrorCodes.LockFileExists = "F0001" -> string!
const Npgsql.PostgresErrorCodes.LockNotAvailable = "55P03" -> string!
const Npgsql.PostgresErrorCodes.ModifyingSqlDataNotPermittedExternalRoutineException = "38002" -> string!
const Npgsql.PostgresErrorCodes.ModifyingSqlDataNotPermittedSqlRoutineException = "2F002" -> string!
const Npgsql.PostgresErrorCodes.MostSpecificTypeMismatch = "2200G" -> string!
const Npgsql.PostgresErrorCodes.NameTooLong = "42622" -> string!
const Npgsql.PostgresErrorCodes.NoActiveSqlTransaction = "25P01" -> string!
const Npgsql.PostgresErrorCodes.NoActiveSqlTransactionForBranchTransaction = "25005" -> string!
const Npgsql.PostgresErrorCodes.NoAdditionalDynamicResultSetsReturned = "02001" -> string!
const Npgsql.PostgresErrorCodes.NoData = "02000" -> string!
const Npgsql.PostgresErrorCodes.NoDataFound = "P0002" -> string!
const Npgsql.PostgresErrorCodes.NonstandardUseOfEscapeCharacter = "22P06" -> string!
const Npgsql.PostgresErrorCodes.NotAnXmlDocument = "2200L" -> string!
const Npgsql.PostgresErrorCodes.NotNullViolation = "23502" -> string!
const Npgsql.PostgresErrorCodes.NullValueEliminatedInSetFunctionWarning = "01003" -> string!
const Npgsql.PostgresErrorCodes.NullValueNoIndicatorParameter = "22002" -> string!
const Npgsql.PostgresErrorCodes.NullValueNotAllowed = "22004" -> string!
const Npgsql.PostgresErrorCodes.NullValueNotAllowedExternalRoutineInvocationException = "39004" -> string!
const Npgsql.PostgresErrorCodes.NumericValueOutOfRange = "22003" -> string!
const Npgsql.PostgresErrorCodes.ObjectInUse = "55006" -> string!
const Npgsql.PostgresErrorCodes.ObjectNotInPrerequisiteState = "55000" -> string!
const Npgsql.PostgresErrorCodes.OperatorIntervention = "57000" -> string!
const Npgsql.PostgresErrorCodes.OutOfMemory = "53200" -> string!
const Npgsql.PostgresErrorCodes.PlpgsqlError = "P0000" -> string!
const Npgsql.PostgresErrorCodes.PrivilegeNotGrantedWarning = "01007" -> string!
const Npgsql.PostgresErrorCodes.PrivilegeNotRevokedWarning = "01006" -> string!
const Npgsql.PostgresErrorCodes.ProgramLimitExceeded = "54000" -> string!
const Npgsql.PostgresErrorCodes.ProhibitedSqlStatementAttemptedExternalRoutineException = "38003" -> string!
const Npgsql.PostgresErrorCodes.ProhibitedSqlStatementAttemptedSqlRoutineException = "2F003" -> string!
const Npgsql.PostgresErrorCodes.ProtocolViolation = "08P01" -> string!
const Npgsql.PostgresErrorCodes.QueryCanceled = "57014" -> string!
const Npgsql.PostgresErrorCodes.RaiseException = "P0001" -> string!
const Npgsql.PostgresErrorCodes.ReadingSqlDataNotPermittedExternalRoutineException = "38004" -> string!
const Npgsql.PostgresErrorCodes.ReadingSqlDataNotPermittedSqlRoutineException = "2F004" -> string!
const Npgsql.PostgresErrorCodes.ReadOnlySqlTransaction = "25006" -> string!
const Npgsql.PostgresErrorCodes.ReservedName = "42939" -> string!
const Npgsql.PostgresErrorCodes.RestrictViolation = "23001" -> string!
const Npgsql.PostgresErrorCodes.SavepointException = "3B000" -> string!
const Npgsql.PostgresErrorCodes.SchemaAndDataStatementMixingNotSupported = "25007" -> string!
const Npgsql.PostgresErrorCodes.SerializationFailure = "40001" -> string!
const Npgsql.PostgresErrorCodes.SnapshotFailure = "72000" -> string!
const Npgsql.PostgresErrorCodes.SqlClientUnableToEstablishSqlConnection = "08001" -> string!
const Npgsql.PostgresErrorCodes.SqlRoutineException = "2F000" -> string!
const Npgsql.PostgresErrorCodes.SqlServerRejectedEstablishmentOfSqlConnection = "08004" -> string!
const Npgsql.PostgresErrorCodes.SqlStatementNotYetComplete = "03000" -> string!
const Npgsql.PostgresErrorCodes.SrfProtocolViolatedExternalRoutineInvocationException = "39P02" -> string!
const Npgsql.PostgresErrorCodes.StackedDiagnosticsAccessedWithoutActiveHandler = "0Z002" -> string!
const Npgsql.PostgresErrorCodes.StatementCompletionUnknown = "40003" -> string!
const Npgsql.PostgresErrorCodes.StatementTooComplex = "54001" -> string!
const Npgsql.PostgresErrorCodes.StringDataLengthMismatch = "22026" -> string!
const Npgsql.PostgresErrorCodes.StringDataRightTruncation = "22001" -> string!
const Npgsql.PostgresErrorCodes.StringDataRightTruncationWarning = "01004" -> string!
const Npgsql.PostgresErrorCodes.SubstringError = "22011" -> string!
const Npgsql.PostgresErrorCodes.SuccessfulCompletion = "00000" -> string!
const Npgsql.PostgresErrorCodes.SyntaxError = "42601" -> string!
const Npgsql.PostgresErrorCodes.SyntaxErrorOrAccessRuleViolation = "42000" -> string!
const Npgsql.PostgresErrorCodes.SystemError = "58000" -> string!
const Npgsql.PostgresErrorCodes.TooManyArguments = "54023" -> string!
const Npgsql.PostgresErrorCodes.TooManyColumns = "54011" -> string!
const Npgsql.PostgresErrorCodes.TooManyConnections = "53300" -> string!
const Npgsql.PostgresErrorCodes.TooManyRows = "P0003" -> string!
const Npgsql.PostgresErrorCodes.TransactionIntegrityConstraintViolation = "40002" -> string!
const Npgsql.PostgresErrorCodes.TransactionResolutionUnknown = "08007" -> string!
const Npgsql.PostgresErrorCodes.TransactionRollback = "40000" -> string!
const Npgsql.PostgresErrorCodes.TriggeredActionException = "09000" -> string!
const Npgsql.PostgresErrorCodes.TriggeredDataChangeViolation = "27000" -> string!
const Npgsql.PostgresErrorCodes.TriggerProtocolViolatedExternalRoutineInvocationException = "39P01" -> string!
const Npgsql.PostgresErrorCodes.TrimError = "22027" -> string!
const Npgsql.PostgresErrorCodes.UndefinedColumn = "42703" -> string!
const Npgsql.PostgresErrorCodes.UndefinedFile = "58P01" -> string!
const Npgsql.PostgresErrorCodes.UndefinedFunction = "42883" -> string!
const Npgsql.PostgresErrorCodes.UndefinedObject = "42704" -> string!
const Npgsql.PostgresErrorCodes.UndefinedParameter = "42P02" -> string!
const Npgsql.PostgresErrorCodes.UndefinedTable = "42P01" -> string!
const Npgsql.PostgresErrorCodes.UniqueViolation = "23505" -> string!
const Npgsql.PostgresErrorCodes.UnterminatedCString = "22024" -> string!
const Npgsql.PostgresErrorCodes.UntranslatableCharacter = "22P05" -> string!
const Npgsql.PostgresErrorCodes.Warning = "01000" -> string!
const Npgsql.PostgresErrorCodes.WindowingError = "42P20" -> string!
const Npgsql.PostgresErrorCodes.WithCheckOptionViolation = "44000" -> string!
const Npgsql.PostgresErrorCodes.WrongObjectType = "42809" -> string!
const Npgsql.PostgresErrorCodes.ZeroLengthCharacterString = "2200F" -> string!
Npgsql.ArrayNullabilityMode
Npgsql.ArrayNullabilityMode.Always = 1 -> Npgsql.ArrayNullabilityMode
Npgsql.ArrayNullabilityMode.Never = 0 -> Npgsql.ArrayNullabilityMode
Npgsql.ArrayNullabilityMode.PerInstance = 2 -> Npgsql.ArrayNullabilityMode
Npgsql.BackendMessages.FieldDescription
Npgsql.BackendMessages.FieldDescription.TypeModifier.get -> int
Npgsql.BackendMessages.FieldDescription.TypeModifier.set -> void
Npgsql.BackendMessages.FieldDescription.TypeSize.get -> short
Npgsql.BackendMessages.FieldDescription.TypeSize.set -> void
Npgsql.ChannelBinding
Npgsql.ChannelBinding.Disable = 0 -> Npgsql.ChannelBinding
Npgsql.ChannelBinding.Prefer = 1 -> Npgsql.ChannelBinding
Npgsql.ChannelBinding.Require = 2 -> Npgsql.ChannelBinding
Npgsql.INpgsqlNameTranslator
Npgsql.INpgsqlNameTranslator.TranslateMemberName(string! clrName) -> string!
Npgsql.INpgsqlNameTranslator.TranslateTypeName(string! clrName) -> string!
Npgsql.NameTranslation.NpgsqlNullNameTranslator
Npgsql.NameTranslation.NpgsqlNullNameTranslator.NpgsqlNullNameTranslator() -> void
Npgsql.NameTranslation.NpgsqlNullNameTranslator.TranslateMemberName(string! clrName) -> string!
Npgsql.NameTranslation.NpgsqlNullNameTranslator.TranslateTypeName(string! clrName) -> string!
Npgsql.NameTranslation.NpgsqlSnakeCaseNameTranslator
Npgsql.NameTranslation.NpgsqlSnakeCaseNameTranslator.NpgsqlSnakeCaseNameTranslator(bool legacyMode, System.Globalization.CultureInfo? culture = null) -> void
Npgsql.NameTranslation.NpgsqlSnakeCaseNameTranslator.NpgsqlSnakeCaseNameTranslator(System.Globalization.CultureInfo? culture = null) -> void
Npgsql.NameTranslation.NpgsqlSnakeCaseNameTranslator.TranslateMemberName(string! clrName) -> string!
Npgsql.NameTranslation.NpgsqlSnakeCaseNameTranslator.TranslateTypeName(string! clrName) -> string!
Npgsql.NoticeEventHandler
Npgsql.NotificationEventHandler
Npgsql.NpgsqlBatch
Npgsql.NpgsqlBatch.BatchCommands.get -> Npgsql.NpgsqlBatchCommandCollection!
Npgsql.NpgsqlBatch.Connection.get -> Npgsql.NpgsqlConnection?
Npgsql.NpgsqlBatch.Connection.set -> void
Npgsql.NpgsqlBatch.CreateBatchCommand() -> Npgsql.NpgsqlBatchCommand!
Npgsql.NpgsqlBatch.EnableErrorBarriers.get -> bool
Npgsql.NpgsqlBatch.EnableErrorBarriers.set -> void
Npgsql.NpgsqlBatch.ExecuteReader(System.Data.CommandBehavior behavior = System.Data.CommandBehavior.Default) -> Npgsql.NpgsqlDataReader!
Npgsql.NpgsqlBatch.ExecuteReaderAsync(System.Data.CommandBehavior behavior, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task<Npgsql.NpgsqlDataReader!>!
Npgsql.NpgsqlBatch.ExecuteReaderAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task<Npgsql.NpgsqlDataReader!>!
Npgsql.NpgsqlBatch.NpgsqlBatch(Npgsql.NpgsqlConnection? connection = null, Npgsql.NpgsqlTransaction? transaction = null) -> void
Npgsql.NpgsqlBatch.Transaction.get -> Npgsql.NpgsqlTransaction?
Npgsql.NpgsqlBatch.Transaction.set -> void
Npgsql.NpgsqlBatchCommand
Npgsql.NpgsqlBatchCommand.AppendErrorBarrier.get -> bool?
Npgsql.NpgsqlBatchCommand.AppendErrorBarrier.set -> void
Npgsql.NpgsqlBatchCommand.NpgsqlBatchCommand() -> void
Npgsql.NpgsqlBatchCommand.NpgsqlBatchCommand(string! commandText) -> void
Npgsql.NpgsqlBatchCommand.OID.get -> uint
Npgsql.NpgsqlBatchCommand.Parameters.get -> Npgsql.NpgsqlParameterCollection!
Npgsql.NpgsqlBatchCommand.Rows.get -> ulong
Npgsql.NpgsqlBatchCommand.StatementType.get -> Npgsql.StatementType
Npgsql.NpgsqlBatchCommandCollection
Npgsql.NpgsqlBatchCommandCollection.Add(Npgsql.NpgsqlBatchCommand! item) -> void
Npgsql.NpgsqlBatchCommandCollection.Contains(Npgsql.NpgsqlBatchCommand! item) -> bool
Npgsql.NpgsqlBatchCommandCollection.CopyTo(Npgsql.NpgsqlBatchCommand![]! array, int arrayIndex) -> void
Npgsql.NpgsqlBatchCommandCollection.IndexOf(Npgsql.NpgsqlBatchCommand! item) -> int
Npgsql.NpgsqlBatchCommandCollection.Insert(int index, Npgsql.NpgsqlBatchCommand! item) -> void
Npgsql.NpgsqlBatchCommandCollection.Remove(Npgsql.NpgsqlBatchCommand! item) -> bool
Npgsql.NpgsqlBatchCommandCollection.this[int index].get -> Npgsql.NpgsqlBatchCommand!
Npgsql.NpgsqlBatchCommandCollection.this[int index].set -> void
Npgsql.NpgsqlBinaryExporter
Npgsql.NpgsqlBinaryExporter.Cancel() -> void
Npgsql.NpgsqlBinaryExporter.CancelAsync() -> System.Threading.Tasks.Task!
Npgsql.NpgsqlBinaryExporter.Dispose() -> void
Npgsql.NpgsqlBinaryExporter.DisposeAsync() -> System.Threading.Tasks.ValueTask
Npgsql.NpgsqlBinaryExporter.IsNull.get -> bool
Npgsql.NpgsqlBinaryExporter.Read<T>() -> T
Npgsql.NpgsqlBinaryExporter.Read<T>(NpgsqlTypes.NpgsqlDbType type) -> T
Npgsql.NpgsqlBinaryExporter.ReadAsync<T>(NpgsqlTypes.NpgsqlDbType type, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<T>
Npgsql.NpgsqlBinaryExporter.ReadAsync<T>(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<T>
Npgsql.NpgsqlBinaryExporter.Skip() -> void
Npgsql.NpgsqlBinaryExporter.SkipAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!
Npgsql.NpgsqlBinaryExporter.StartRow() -> int
Npgsql.NpgsqlBinaryExporter.StartRowAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<int>
Npgsql.NpgsqlBinaryExporter.Timeout.set -> void
Npgsql.NpgsqlBinaryImporter
Npgsql.NpgsqlBinaryImporter.Close() -> void
Npgsql.NpgsqlBinaryImporter.CloseAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask
Npgsql.NpgsqlBinaryImporter.Complete() -> ulong
Npgsql.NpgsqlBinaryImporter.CompleteAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<ulong>
Npgsql.NpgsqlBinaryImporter.Dispose() -> void
Npgsql.NpgsqlBinaryImporter.DisposeAsync() -> System.Threading.Tasks.ValueTask
Npgsql.NpgsqlBinaryImporter.StartRow() -> void
Npgsql.NpgsqlBinaryImporter.StartRowAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!
Npgsql.NpgsqlBinaryImporter.Timeout.set -> void
Npgsql.NpgsqlBinaryImporter.Write<T>(T value) -> void
Npgsql.NpgsqlBinaryImporter.Write<T>(T value, NpgsqlTypes.NpgsqlDbType npgsqlDbType) -> void
Npgsql.NpgsqlBinaryImporter.Write<T>(T value, string! dataTypeName) -> void
Npgsql.NpgsqlBinaryImporter.WriteAsync<T>(T value, NpgsqlTypes.NpgsqlDbType npgsqlDbType, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!
Npgsql.NpgsqlBinaryImporter.WriteAsync<T>(T value, string! dataTypeName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!
Npgsql.NpgsqlBinaryImporter.WriteAsync<T>(T value, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!
Npgsql.NpgsqlBinaryImporter.WriteNull() -> void
Npgsql.NpgsqlBinaryImporter.WriteNullAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!
Npgsql.NpgsqlBinaryImporter.WriteRow(params object?[]! values) -> void
Npgsql.NpgsqlBinaryImporter.WriteRowAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken), params object?[]! values) -> System.Threading.Tasks.Task!
Npgsql.NpgsqlCommand
Npgsql.NpgsqlCommand.AllResultTypesAreUnknown.get -> bool
Npgsql.NpgsqlCommand.AllResultTypesAreUnknown.set -> void
Npgsql.NpgsqlCommand.Connection.get -> Npgsql.NpgsqlConnection?
Npgsql.NpgsqlCommand.Connection.set -> void
Npgsql.NpgsqlCommand.CreateParameter() -> Npgsql.NpgsqlParameter!
Npgsql.NpgsqlCommand.Disposed -> System.EventHandler?
Npgsql.NpgsqlCommand.ExecuteReader(System.Data.CommandBehavior behavior = System.Data.CommandBehavior.Default) -> Npgsql.NpgsqlDataReader!
Npgsql.NpgsqlCommand.ExecuteReaderAsync(System.Data.CommandBehavior behavior, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task<Npgsql.NpgsqlDataReader!>!
Npgsql.NpgsqlCommand.ExecuteReaderAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task<Npgsql.NpgsqlDataReader!>!
Npgsql.NpgsqlCommand.IsPrepared.get -> bool
Npgsql.NpgsqlCommand.NpgsqlCommand() -> void
Npgsql.NpgsqlCommand.NpgsqlCommand(string? cmdText) -> void
Npgsql.NpgsqlCommand.NpgsqlCommand(string? cmdText, Npgsql.NpgsqlConnection? connection) -> void
Npgsql.NpgsqlCommand.NpgsqlCommand(string? cmdText, Npgsql.NpgsqlConnection? connection, Npgsql.NpgsqlTransaction? transaction) -> void
Npgsql.NpgsqlCommand.Parameters.get -> Npgsql.NpgsqlParameterCollection!
Npgsql.NpgsqlCommand.Statements.get -> System.Collections.Generic.IReadOnlyList<Npgsql.NpgsqlBatchCommand!>!
Npgsql.NpgsqlCommand.Transaction.get -> Npgsql.NpgsqlTransaction?
Npgsql.NpgsqlCommand.Transaction.set -> void
Npgsql.NpgsqlCommand.UnknownResultTypeList.get -> bool[]?
Npgsql.NpgsqlCommand.UnknownResultTypeList.set -> void
Npgsql.NpgsqlCommand.Unprepare() -> void
Npgsql.NpgsqlCommand.UnprepareAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!
Npgsql.NpgsqlCommandBuilder
Npgsql.NpgsqlCommandBuilder.GetDeleteCommand() -> Npgsql.NpgsqlCommand!
Npgsql.NpgsqlCommandBuilder.GetDeleteCommand(bool useColumnsForParameterNames) -> Npgsql.NpgsqlCommand!
Npgsql.NpgsqlCommandBuilder.GetInsertCommand() -> Npgsql.NpgsqlCommand!
Npgsql.NpgsqlCommandBuilder.GetInsertCommand(bool useColumnsForParameterNames) -> Npgsql.NpgsqlCommand!
Npgsql.NpgsqlCommandBuilder.GetUpdateCommand() -> Npgsql.NpgsqlCommand!
Npgsql.NpgsqlCommandBuilder.GetUpdateCommand(bool useColumnsForParameterNames) -> Npgsql.NpgsqlCommand!
Npgsql.NpgsqlCommandBuilder.NpgsqlCommandBuilder() -> void
Npgsql.NpgsqlCommandBuilder.NpgsqlCommandBuilder(Npgsql.NpgsqlDataAdapter? adapter) -> void
Npgsql.NpgsqlConnection
Npgsql.NpgsqlConnection.BeginBinaryExport(string! copyToCommand) -> Npgsql.NpgsqlBinaryExporter!
Npgsql.NpgsqlConnection.BeginBinaryExportAsync(string! copyToCommand, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task<Npgsql.NpgsqlBinaryExporter!>!
Npgsql.NpgsqlConnection.BeginBinaryImport(string! copyFromCommand) -> Npgsql.NpgsqlBinaryImporter!
Npgsql.NpgsqlConnection.BeginBinaryImportAsync(string! copyFromCommand, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task<Npgsql.NpgsqlBinaryImporter!>!
Npgsql.NpgsqlConnection.BeginRawBinaryCopy(string! copyCommand) -> Npgsql.NpgsqlRawCopyStream!
Npgsql.NpgsqlConnection.BeginRawBinaryCopyAsync(string! copyCommand, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task<Npgsql.NpgsqlRawCopyStream!>!
Npgsql.NpgsqlConnection.BeginTextExport(string! copyToCommand) -> System.IO.TextReader!
Npgsql.NpgsqlConnection.BeginTextExportAsync(string! copyToCommand, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task<System.IO.TextReader!>!
Npgsql.NpgsqlConnection.BeginTextImport(string! copyFromCommand) -> System.IO.TextWriter!
Npgsql.NpgsqlConnection.BeginTextImportAsync(string! copyFromCommand, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task<System.IO.TextWriter!>!
Npgsql.NpgsqlConnection.BeginTransaction() -> Npgsql.NpgsqlTransaction!
Npgsql.NpgsqlConnection.BeginTransaction(System.Data.IsolationLevel level) -> Npgsql.NpgsqlTransaction!
Npgsql.NpgsqlConnection.BeginTransactionAsync(System.Data.IsolationLevel level, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<Npgsql.NpgsqlTransaction!>
Npgsql.NpgsqlConnection.BeginTransactionAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<Npgsql.NpgsqlTransaction!>
Npgsql.NpgsqlConnection.CloneWith(string! connectionString) -> Npgsql.NpgsqlConnection!
Npgsql.NpgsqlConnection.CommandTimeout.get -> int
Npgsql.NpgsqlConnection.CreateBatch() -> Npgsql.NpgsqlBatch!
Npgsql.NpgsqlConnection.CreateCommand() -> Npgsql.NpgsqlCommand!
Npgsql.NpgsqlConnection.Disposed -> System.EventHandler?
Npgsql.NpgsqlConnection.FullState.get -> System.Data.ConnectionState
Npgsql.NpgsqlConnection.HasIntegerDateTimes.get -> bool
Npgsql.NpgsqlConnection.Host.get -> string?
Npgsql.NpgsqlConnection.Notice -> Npgsql.NoticeEventHandler?
Npgsql.NpgsqlConnection.Notification -> Npgsql.NotificationEventHandler?
Npgsql.NpgsqlConnection.NpgsqlConnection() -> void
Npgsql.NpgsqlConnection.NpgsqlConnection(string? connectionString) -> void
Npgsql.NpgsqlConnection.Port.get -> int
Npgsql.NpgsqlConnection.PostgresParameters.get -> System.Collections.Generic.IReadOnlyDictionary<string!, string!>!
Npgsql.NpgsqlConnection.PostgreSqlVersion.get -> System.Version!
Npgsql.NpgsqlConnection.ProcessID.get -> int
Npgsql.NpgsqlConnection.ProvideClientCertificatesCallback.get -> Npgsql.ProvideClientCertificatesCallback?
Npgsql.NpgsqlConnection.ProvideClientCertificatesCallback.set -> void
Npgsql.NpgsqlConnection.ProvidePasswordCallback.get -> Npgsql.ProvidePasswordCallback?
Npgsql.NpgsqlConnection.ProvidePasswordCallback.set -> void
Npgsql.NpgsqlConnection.ReloadTypes() -> void
Npgsql.NpgsqlConnection.ReloadTypesAsync() -> System.Threading.Tasks.Task!
Npgsql.NpgsqlConnection.Timezone.get -> string!
Npgsql.NpgsqlConnection.TypeMapper.get -> Npgsql.TypeMapping.INpgsqlTypeMapper!
Npgsql.NpgsqlConnection.UnprepareAll() -> void
Npgsql.NpgsqlConnection.UserCertificateValidationCallback.get -> System.Net.Security.RemoteCertificateValidationCallback?
Npgsql.NpgsqlConnection.UserCertificateValidationCallback.set -> void
Npgsql.NpgsqlConnection.UserName.get -> string?
Npgsql.NpgsqlConnection.Wait() -> void
Npgsql.NpgsqlConnection.Wait(int timeout) -> bool
Npgsql.NpgsqlConnection.Wait(System.TimeSpan timeout) -> bool
Npgsql.NpgsqlConnection.WaitAsync(int timeout, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task<bool>!
Npgsql.NpgsqlConnection.WaitAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!
Npgsql.NpgsqlConnection.WaitAsync(System.TimeSpan timeout, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task<bool>!
Npgsql.NpgsqlConnectionStringBuilder
Npgsql.NpgsqlConnectionStringBuilder.Add(System.Collections.Generic.KeyValuePair<string!, object?> item) -> void
Npgsql.NpgsqlConnectionStringBuilder.ApplicationName.get -> string?
Npgsql.NpgsqlConnectionStringBuilder.ApplicationName.set -> void
Npgsql.NpgsqlConnectionStringBuilder.ArrayNullabilityMode.get -> Npgsql.ArrayNullabilityMode
Npgsql.NpgsqlConnectionStringBuilder.ArrayNullabilityMode.set -> void
Npgsql.NpgsqlConnectionStringBuilder.AutoPrepareMinUsages.get -> int
Npgsql.NpgsqlConnectionStringBuilder.AutoPrepareMinUsages.set -> void
Npgsql.NpgsqlConnectionStringBuilder.CancellationTimeout.get -> int
Npgsql.NpgsqlConnectionStringBuilder.CancellationTimeout.set -> void
Npgsql.NpgsqlConnectionStringBuilder.ChannelBinding.get -> Npgsql.ChannelBinding
Npgsql.NpgsqlConnectionStringBuilder.ChannelBinding.set -> void
Npgsql.NpgsqlConnectionStringBuilder.CheckCertificateRevocation.get -> bool
Npgsql.NpgsqlConnectionStringBuilder.CheckCertificateRevocation.set -> void
Npgsql.NpgsqlConnectionStringBuilder.ClientEncoding.get -> string?
Npgsql.NpgsqlConnectionStringBuilder.ClientEncoding.set -> void
Npgsql.NpgsqlConnectionStringBuilder.CommandTimeout.get -> int
Npgsql.NpgsqlConnectionStringBuilder.CommandTimeout.set -> void
Npgsql.NpgsqlConnectionStringBuilder.ConnectionIdleLifetime.get -> int
Npgsql.NpgsqlConnectionStringBuilder.ConnectionIdleLifetime.set -> void
Npgsql.NpgsqlConnectionStringBuilder.ConnectionLifetime.get -> int
Npgsql.NpgsqlConnectionStringBuilder.ConnectionLifetime.set -> void
Npgsql.NpgsqlConnectionStringBuilder.ConnectionPruningInterval.get -> int
Npgsql.NpgsqlConnectionStringBuilder.ConnectionPruningInterval.set -> void
Npgsql.NpgsqlConnectionStringBuilder.Contains(System.Collections.Generic.KeyValuePair<string!, object?> item) -> bool
Npgsql.NpgsqlConnectionStringBuilder.CopyTo(System.Collections.Generic.KeyValuePair<string!, object?>[]! array, int arrayIndex) -> void
Npgsql.NpgsqlConnectionStringBuilder.Database.get -> string?
Npgsql.NpgsqlConnectionStringBuilder.Database.set -> void
Npgsql.NpgsqlConnectionStringBuilder.Encoding.get -> string!
Npgsql.NpgsqlConnectionStringBuilder.Encoding.set -> void
Npgsql.NpgsqlConnectionStringBuilder.Enlist.get -> bool
Npgsql.NpgsqlConnectionStringBuilder.Enlist.set -> void
Npgsql.NpgsqlConnectionStringBuilder.GetEnumerator() -> System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string!, object?>>!
Npgsql.NpgsqlConnectionStringBuilder.Host.get -> string?
Npgsql.NpgsqlConnectionStringBuilder.Host.set -> void
Npgsql.NpgsqlConnectionStringBuilder.HostRecheckSeconds.get -> int
Npgsql.NpgsqlConnectionStringBuilder.HostRecheckSeconds.set -> void
Npgsql.NpgsqlConnectionStringBuilder.IncludeErrorDetail.get -> bool
Npgsql.NpgsqlConnectionStringBuilder.IncludeErrorDetail.set -> void
Npgsql.NpgsqlConnectionStringBuilder.IncludeRealm.get -> bool
Npgsql.NpgsqlConnectionStringBuilder.IncludeRealm.set -> void
Npgsql.NpgsqlConnectionStringBuilder.InternalCommandTimeout.get -> int
Npgsql.NpgsqlConnectionStringBuilder.InternalCommandTimeout.set -> void
Npgsql.NpgsqlConnectionStringBuilder.KeepAlive.get -> int
Npgsql.NpgsqlConnectionStringBuilder.KeepAlive.set -> void
Npgsql.NpgsqlConnectionStringBuilder.KerberosServiceName.get -> string!
Npgsql.NpgsqlConnectionStringBuilder.KerberosServiceName.set -> void
Npgsql.NpgsqlConnectionStringBuilder.Keys.get -> System.Collections.Generic.ICollection<string!>!
Npgsql.NpgsqlConnectionStringBuilder.LoadBalanceHosts.get -> bool
Npgsql.NpgsqlConnectionStringBuilder.LoadBalanceHosts.set -> void
Npgsql.NpgsqlConnectionStringBuilder.LoadTableComposites.get -> bool
Npgsql.NpgsqlConnectionStringBuilder.LoadTableComposites.set -> void
Npgsql.NpgsqlConnectionStringBuilder.LogParameters.get -> bool
Npgsql.NpgsqlConnectionStringBuilder.LogParameters.set -> void
Npgsql.NpgsqlConnectionStringBuilder.MaxAutoPrepare.get -> int
Npgsql.NpgsqlConnectionStringBuilder.MaxAutoPrepare.set -> void
Npgsql.NpgsqlConnectionStringBuilder.MaxPoolSize.get -> int
Npgsql.NpgsqlConnectionStringBuilder.MaxPoolSize.set -> void
Npgsql.NpgsqlConnectionStringBuilder.MinPoolSize.get -> int
Npgsql.NpgsqlConnectionStringBuilder.MinPoolSize.set -> void
Npgsql.NpgsqlConnectionStringBuilder.Multiplexing.get -> bool
Npgsql.NpgsqlConnectionStringBuilder.Multiplexing.set -> void
Npgsql.NpgsqlConnectionStringBuilder.NoResetOnClose.get -> bool
Npgsql.NpgsqlConnectionStringBuilder.NoResetOnClose.set -> void
Npgsql.NpgsqlConnectionStringBuilder.NpgsqlConnectionStringBuilder() -> void
Npgsql.NpgsqlConnectionStringBuilder.NpgsqlConnectionStringBuilder(bool useOdbcRules) -> void
Npgsql.NpgsqlConnectionStringBuilder.NpgsqlConnectionStringBuilder(string? connectionString) -> void
Npgsql.NpgsqlConnectionStringBuilder.Options.get -> string?
Npgsql.NpgsqlConnectionStringBuilder.Options.set -> void
Npgsql.NpgsqlConnectionStringBuilder.Passfile.get -> string?
Npgsql.NpgsqlConnectionStringBuilder.Passfile.set -> void
Npgsql.NpgsqlConnectionStringBuilder.Password.get -> string?
Npgsql.NpgsqlConnectionStringBuilder.Password.set -> void
Npgsql.NpgsqlConnectionStringBuilder.PersistSecurityInfo.get -> bool
Npgsql.NpgsqlConnectionStringBuilder.PersistSecurityInfo.set -> void
Npgsql.NpgsqlConnectionStringBuilder.Pooling.get -> bool
Npgsql.NpgsqlConnectionStringBuilder.Pooling.set -> void
Npgsql.NpgsqlConnectionStringBuilder.Port.get -> int
Npgsql.NpgsqlConnectionStringBuilder.Port.set -> void
Npgsql.NpgsqlConnectionStringBuilder.ReadBufferSize.get -> int
Npgsql.NpgsqlConnectionStringBuilder.ReadBufferSize.set -> void
Npgsql.NpgsqlConnectionStringBuilder.Remove(System.Collections.Generic.KeyValuePair<string!, object?> item) -> bool
Npgsql.NpgsqlConnectionStringBuilder.RootCertificate.get -> string?
Npgsql.NpgsqlConnectionStringBuilder.RootCertificate.set -> void
Npgsql.NpgsqlConnectionStringBuilder.SearchPath.get -> string?
Npgsql.NpgsqlConnectionStringBuilder.SearchPath.set -> void
Npgsql.NpgsqlConnectionStringBuilder.ServerCompatibilityMode.get -> Npgsql.ServerCompatibilityMode
Npgsql.NpgsqlConnectionStringBuilder.ServerCompatibilityMode.set -> void
Npgsql.NpgsqlConnectionStringBuilder.SocketReceiveBufferSize.get -> int
Npgsql.NpgsqlConnectionStringBuilder.SocketReceiveBufferSize.set -> void
Npgsql.NpgsqlConnectionStringBuilder.SocketSendBufferSize.get -> int
Npgsql.NpgsqlConnectionStringBuilder.SocketSendBufferSize.set -> void
Npgsql.NpgsqlConnectionStringBuilder.SslCertificate.get -> string?
Npgsql.NpgsqlConnectionStringBuilder.SslCertificate.set -> void
Npgsql.NpgsqlConnectionStringBuilder.SslKey.get -> string?
Npgsql.NpgsqlConnectionStringBuilder.SslKey.set -> void
Npgsql.NpgsqlConnectionStringBuilder.SslMode.get -> Npgsql.SslMode
Npgsql.NpgsqlConnectionStringBuilder.SslMode.set -> void
Npgsql.NpgsqlConnectionStringBuilder.SslPassword.get -> string?
Npgsql.NpgsqlConnectionStringBuilder.SslPassword.set -> void
Npgsql.NpgsqlConnectionStringBuilder.TargetSessionAttributes.get -> string?
Npgsql.NpgsqlConnectionStringBuilder.TargetSessionAttributes.set -> void
Npgsql.NpgsqlConnectionStringBuilder.TcpKeepAlive.get -> bool
Npgsql.NpgsqlConnectionStringBuilder.TcpKeepAlive.set -> void
Npgsql.NpgsqlConnectionStringBuilder.TcpKeepAliveInterval.get -> int
Npgsql.NpgsqlConnectionStringBuilder.TcpKeepAliveInterval.set -> void
Npgsql.NpgsqlConnectionStringBuilder.TcpKeepAliveTime.get -> int
Npgsql.NpgsqlConnectionStringBuilder.TcpKeepAliveTime.set -> void
Npgsql.NpgsqlConnectionStringBuilder.Timeout.get -> int
Npgsql.NpgsqlConnectionStringBuilder.Timeout.set -> void
Npgsql.NpgsqlConnectionStringBuilder.Timezone.get -> string?
Npgsql.NpgsqlConnectionStringBuilder.Timezone.set -> void
Npgsql.NpgsqlConnectionStringBuilder.TrustServerCertificate.get -> bool
Npgsql.NpgsqlConnectionStringBuilder.TrustServerCertificate.set -> void
Npgsql.NpgsqlConnectionStringBuilder.Username.get -> string?
Npgsql.NpgsqlConnectionStringBuilder.Username.set -> void
Npgsql.NpgsqlConnectionStringBuilder.Values.get -> System.Collections.Generic.ICollection<object?>!
Npgsql.NpgsqlConnectionStringBuilder.WriteBufferSize.get -> int
Npgsql.NpgsqlConnectionStringBuilder.WriteBufferSize.set -> void
Npgsql.NpgsqlConnectionStringBuilder.WriteCoalescingBufferThresholdBytes.get -> int
Npgsql.NpgsqlConnectionStringBuilder.WriteCoalescingBufferThresholdBytes.set -> void
Npgsql.NpgsqlCopyTextReader
Npgsql.NpgsqlCopyTextReader.Cancel() -> void
Npgsql.NpgsqlCopyTextReader.CancelAsync() -> System.Threading.Tasks.Task!
Npgsql.NpgsqlCopyTextReader.DisposeAsync() -> System.Threading.Tasks.ValueTask
Npgsql.NpgsqlCopyTextWriter
Npgsql.NpgsqlCopyTextWriter.Cancel() -> void
Npgsql.NpgsqlCopyTextWriter.CancelAsync() -> System.Threading.Tasks.Task!
Npgsql.NpgsqlDataAdapter
Npgsql.NpgsqlDataAdapter.DeleteCommand.get -> Npgsql.NpgsqlCommand?
Npgsql.NpgsqlDataAdapter.DeleteCommand.set -> void
Npgsql.NpgsqlDataAdapter.InsertCommand.get -> Npgsql.NpgsqlCommand?
Npgsql.NpgsqlDataAdapter.InsertCommand.set -> void
Npgsql.NpgsqlDataAdapter.NpgsqlDataAdapter() -> void
Npgsql.NpgsqlDataAdapter.NpgsqlDataAdapter(Npgsql.NpgsqlCommand! selectCommand) -> void
Npgsql.NpgsqlDataAdapter.NpgsqlDataAdapter(string! selectCommandText, Npgsql.NpgsqlConnection! selectConnection) -> void
Npgsql.NpgsqlDataAdapter.NpgsqlDataAdapter(string! selectCommandText, string! selectConnectionString) -> void
Npgsql.NpgsqlDataAdapter.RowUpdated -> Npgsql.NpgsqlRowUpdatedEventHandler?
Npgsql.NpgsqlDataAdapter.RowUpdating -> Npgsql.NpgsqlRowUpdatingEventHandler?
Npgsql.NpgsqlDataAdapter.SelectCommand.get -> Npgsql.NpgsqlCommand?
Npgsql.NpgsqlDataAdapter.SelectCommand.set -> void
Npgsql.NpgsqlDataAdapter.UpdateCommand.get -> Npgsql.NpgsqlCommand?
Npgsql.NpgsqlDataAdapter.UpdateCommand.set -> void
Npgsql.NpgsqlDataReader
Npgsql.NpgsqlDataReader.GetColumnSchema() -> System.Collections.ObjectModel.ReadOnlyCollection<Npgsql.Schema.NpgsqlDbColumn!>!
Npgsql.NpgsqlDataReader.GetColumnSchemaAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task<System.Collections.ObjectModel.ReadOnlyCollection<Npgsql.Schema.NpgsqlDbColumn!>!>!
Npgsql.NpgsqlDataReader.GetData(int ordinal) -> Npgsql.NpgsqlNestedDataReader!
Npgsql.NpgsqlDataReader.GetDataTypeOID(int ordinal) -> uint
Npgsql.NpgsqlDataReader.GetPostgresType(int ordinal) -> Npgsql.PostgresTypes.PostgresType!
Npgsql.NpgsqlDataReader.GetStreamAsync(int ordinal, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task<System.IO.Stream!>!
Npgsql.NpgsqlDataReader.GetTextReaderAsync(int ordinal, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task<System.IO.TextReader!>!
Npgsql.NpgsqlDataReader.GetTimeSpan(int ordinal) -> System.TimeSpan
Npgsql.NpgsqlDataReader.IsOnRow.get -> bool
Npgsql.NpgsqlDataReader.ReaderClosed -> System.EventHandler?
Npgsql.NpgsqlDataReader.Rows.get -> ulong
Npgsql.NpgsqlDataReader.Statements.get -> System.Collections.Generic.IReadOnlyList<Npgsql.NpgsqlBatchCommand!>!
Npgsql.NpgsqlDataSource
Npgsql.NpgsqlDataSource.CreateBatch() -> Npgsql.NpgsqlBatch!
Npgsql.NpgsqlDataSource.CreateCommand(string? commandText = null) -> Npgsql.NpgsqlCommand!
Npgsql.NpgsqlDataSource.CreateConnection() -> Npgsql.NpgsqlConnection!
Npgsql.NpgsqlDataSource.OpenConnection() -> Npgsql.NpgsqlConnection!
Npgsql.NpgsqlDataSource.OpenConnectionAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<Npgsql.NpgsqlConnection!>
Npgsql.NpgsqlDataSource.Password.set -> void
Npgsql.NpgsqlDataSourceBuilder
Npgsql.NpgsqlDataSourceBuilder.AddTypeInfoResolverFactory(Npgsql.Internal.PgTypeInfoResolverFactory! factory) -> void
Npgsql.NpgsqlDataSourceBuilder.Build() -> Npgsql.NpgsqlDataSource!
Npgsql.NpgsqlDataSourceBuilder.BuildMultiHost() -> Npgsql.NpgsqlMultiHostDataSource!
Npgsql.NpgsqlDataSourceBuilder.ConfigureJsonOptions(System.Text.Json.JsonSerializerOptions! serializerOptions) -> Npgsql.NpgsqlDataSourceBuilder!
Npgsql.NpgsqlDataSourceBuilder.ConnectionString.get -> string!
Npgsql.NpgsqlDataSourceBuilder.ConnectionStringBuilder.get -> Npgsql.NpgsqlConnectionStringBuilder!
Npgsql.NpgsqlDataSourceBuilder.DefaultNameTranslator.get -> Npgsql.INpgsqlNameTranslator!
Npgsql.NpgsqlDataSourceBuilder.DefaultNameTranslator.set -> void
Npgsql.NpgsqlDataSourceBuilder.EnableDynamicJson(System.Type![]? jsonbClrTypes = null, System.Type![]? jsonClrTypes = null) -> Npgsql.NpgsqlDataSourceBuilder!
Npgsql.NpgsqlDataSourceBuilder.EnableParameterLogging(bool parameterLoggingEnabled = true) -> Npgsql.NpgsqlDataSourceBuilder!
Npgsql.NpgsqlDataSourceBuilder.EnableRecordsAsTuples() -> Npgsql.NpgsqlDataSourceBuilder!
Npgsql.NpgsqlDataSourceBuilder.EnableUnmappedTypes() -> Npgsql.NpgsqlDataSourceBuilder!
Npgsql.NpgsqlDataSourceBuilder.MapComposite(System.Type! clrType, string? pgName = null, Npgsql.INpgsqlNameTranslator? nameTranslator = null) -> Npgsql.TypeMapping.INpgsqlTypeMapper!
Npgsql.NpgsqlDataSourceBuilder.MapComposite<T>(string? pgName = null, Npgsql.INpgsqlNameTranslator? nameTranslator = null) -> Npgsql.TypeMapping.INpgsqlTypeMapper!
Npgsql.NpgsqlDataSourceBuilder.MapEnum(System.Type! clrType, string? pgName = null, Npgsql.INpgsqlNameTranslator? nameTranslator = null) -> Npgsql.TypeMapping.INpgsqlTypeMapper!
Npgsql.NpgsqlDataSourceBuilder.MapEnum<TEnum>(string? pgName = null, Npgsql.INpgsqlNameTranslator? nameTranslator = null) -> Npgsql.TypeMapping.INpgsqlTypeMapper!
Npgsql.NpgsqlDataSourceBuilder.Name.get -> string?
Npgsql.NpgsqlDataSourceBuilder.Name.set -> void
Npgsql.NpgsqlDataSourceBuilder.NpgsqlDataSourceBuilder(string? connectionString = null) -> void
Npgsql.NpgsqlDataSourceBuilder.UnmapComposite(System.Type! clrType, string? pgName = null, Npgsql.INpgsqlNameTranslator? nameTranslator = null) -> bool
Npgsql.NpgsqlDataSourceBuilder.UnmapComposite<T>(string? pgName = null, Npgsql.INpgsqlNameTranslator? nameTranslator = null) -> bool
Npgsql.NpgsqlDataSourceBuilder.UnmapEnum(System.Type! clrType, string? pgName = null, Npgsql.INpgsqlNameTranslator? nameTranslator = null) -> bool
Npgsql.NpgsqlDataSourceBuilder.UnmapEnum<TEnum>(string? pgName = null, Npgsql.INpgsqlNameTranslator? nameTranslator = null) -> bool
Npgsql.NpgsqlDataSourceBuilder.UseClientCertificate(System.Security.Cryptography.X509Certificates.X509Certificate? clientCertificate) -> Npgsql.NpgsqlDataSourceBuilder!
Npgsql.NpgsqlDataSourceBuilder.UseClientCertificates(System.Security.Cryptography.X509Certificates.X509CertificateCollection? clientCertificates) -> Npgsql.NpgsqlDataSourceBuilder!
Npgsql.NpgsqlDataSourceBuilder.UseClientCertificatesCallback(System.Action<System.Security.Cryptography.X509Certificates.X509CertificateCollection!>? clientCertificatesCallback) -> Npgsql.NpgsqlDataSourceBuilder!
Npgsql.NpgsqlDataSourceBuilder.UseLoggerFactory(Microsoft.Extensions.Logging.ILoggerFactory? loggerFactory) -> Npgsql.NpgsqlDataSourceBuilder!
Npgsql.NpgsqlDataSourceBuilder.UsePasswordProvider(System.Func<Npgsql.NpgsqlConnectionStringBuilder!, string!>? passwordProvider, System.Func<Npgsql.NpgsqlConnectionStringBuilder!, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<string!>>? passwordProviderAsync) -> Npgsql.NpgsqlDataSourceBuilder!
Npgsql.NpgsqlDataSourceBuilder.UsePeriodicPasswordProvider(System.Func<Npgsql.NpgsqlConnectionStringBuilder!, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<string!>>? passwordProvider, System.TimeSpan successRefreshInterval, System.TimeSpan failureRefreshInterval) -> Npgsql.NpgsqlDataSourceBuilder!
Npgsql.NpgsqlDataSourceBuilder.UsePhysicalConnectionInitializer(System.Action<Npgsql.NpgsqlConnection!>? connectionInitializer, System.Func<Npgsql.NpgsqlConnection!, System.Threading.Tasks.Task!>? connectionInitializerAsync) -> Npgsql.NpgsqlDataSourceBuilder!
Npgsql.NpgsqlDataSourceBuilder.UseRootCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2? rootCertificate) -> Npgsql.NpgsqlDataSourceBuilder!
Npgsql.NpgsqlDataSourceBuilder.UseRootCertificateCallback(System.Func<System.Security.Cryptography.X509Certificates.X509Certificate2!>? rootCertificateCallback) -> Npgsql.NpgsqlDataSourceBuilder!
Npgsql.NpgsqlDataSourceBuilder.UseUserCertificateValidationCallback(System.Net.Security.RemoteCertificateValidationCallback! userCertificateValidationCallback) -> Npgsql.NpgsqlDataSourceBuilder!
Npgsql.NpgsqlException
Npgsql.NpgsqlException.BatchCommand.get -> Npgsql.NpgsqlBatchCommand?
Npgsql.NpgsqlException.BatchCommand.set -> void
Npgsql.NpgsqlException.NpgsqlException() -> void
Npgsql.NpgsqlException.NpgsqlException(string? message) -> void
Npgsql.NpgsqlException.NpgsqlException(string? message, System.Exception? innerException) -> void
Npgsql.NpgsqlException.NpgsqlException(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void
Npgsql.NpgsqlFactory
Npgsql.NpgsqlFactory.GetService(System.Type! serviceType) -> object?
Npgsql.NpgsqlLargeObjectManager
Npgsql.NpgsqlLargeObjectManager.Create(uint preferredOid = 0) -> uint
Npgsql.NpgsqlLargeObjectManager.CreateAsync(uint preferredOid, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task<uint>!
Npgsql.NpgsqlLargeObjectManager.ExportRemote(uint oid, string! path) -> void
Npgsql.NpgsqlLargeObjectManager.ExportRemoteAsync(uint oid, string! path, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!
Npgsql.NpgsqlLargeObjectManager.Has64BitSupport.get -> bool
Npgsql.NpgsqlLargeObjectManager.ImportRemote(string! path, uint oid = 0) -> void
Npgsql.NpgsqlLargeObjectManager.ImportRemoteAsync(string! path, uint oid, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!
Npgsql.NpgsqlLargeObjectManager.MaxTransferBlockSize.get -> int
Npgsql.NpgsqlLargeObjectManager.MaxTransferBlockSize.set -> void
Npgsql.NpgsqlLargeObjectManager.NpgsqlLargeObjectManager(Npgsql.NpgsqlConnection! connection) -> void
Npgsql.NpgsqlLargeObjectManager.OpenRead(uint oid) -> Npgsql.NpgsqlLargeObjectStream!
Npgsql.NpgsqlLargeObjectManager.OpenReadAsync(uint oid, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task<Npgsql.NpgsqlLargeObjectStream!>!
Npgsql.NpgsqlLargeObjectManager.OpenReadWrite(uint oid) -> Npgsql.NpgsqlLargeObjectStream!
Npgsql.NpgsqlLargeObjectManager.OpenReadWriteAsync(uint oid, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task<Npgsql.NpgsqlLargeObjectStream!>!
Npgsql.NpgsqlLargeObjectManager.Unlink(uint oid) -> void
Npgsql.NpgsqlLargeObjectManager.UnlinkAsync(uint oid, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!
Npgsql.NpgsqlLargeObjectStream
Npgsql.NpgsqlLargeObjectStream.GetLengthAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task<long>!
Npgsql.NpgsqlLargeObjectStream.Has64BitSupport.get -> bool
Npgsql.NpgsqlLargeObjectStream.SeekAsync(long offset, System.IO.SeekOrigin origin, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task<long>!
Npgsql.NpgsqlLargeObjectStream.SetLength(long value, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task!
Npgsql.NpgsqlLoggingConfiguration
Npgsql.NpgsqlMultiHostDataSource
Npgsql.NpgsqlMultiHostDataSource.ClearDatabaseStates() -> void
Npgsql.NpgsqlMultiHostDataSource.CreateConnection(Npgsql.TargetSessionAttributes targetSessionAttributes) -> Npgsql.NpgsqlConnection!
Npgsql.NpgsqlMultiHostDataSource.OpenConnection(Npgsql.TargetSessionAttributes targetSessionAttributes) -> Npgsql.NpgsqlConnection!
Npgsql.NpgsqlMultiHostDataSource.OpenConnectionAsync(Npgsql.TargetSessionAttributes targetSessionAttributes, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<Npgsql.NpgsqlConnection!>
Npgsql.NpgsqlMultiHostDataSource.WithTargetSession(Npgsql.TargetSessionAttributes targetSessionAttributes) -> Npgsql.NpgsqlDataSource!
Npgsql.NpgsqlNestedDataReader
Npgsql.NpgsqlNestedDataReader.GetData(int ordinal) -> Npgsql.NpgsqlNestedDataReader!
Npgsql.NpgsqlNoticeEventArgs
Npgsql.NpgsqlNoticeEventArgs.Notice.get -> Npgsql.PostgresNotice!
Npgsql.NpgsqlNotificationEventArgs
Npgsql.NpgsqlNotificationEventArgs.Channel.get -> string!
Npgsql.NpgsqlNotificationEventArgs.Payload.get -> string!
Npgsql.NpgsqlNotificationEventArgs.PID.get -> int
Npgsql.NpgsqlOperationInProgressException
Npgsql.NpgsqlOperationInProgressException.CommandInProgress.get -> Npgsql.NpgsqlCommand?
Npgsql.NpgsqlOperationInProgressException.NpgsqlOperationInProgressException(Npgsql.NpgsqlCommand! command) -> void
Npgsql.NpgsqlParameter
Npgsql.NpgsqlParameter.Clone() -> Npgsql.NpgsqlParameter!
Npgsql.NpgsqlParameter.Collection.get -> Npgsql.NpgsqlParameterCollection?
Npgsql.NpgsqlParameter.Collection.set -> void
Npgsql.NpgsqlParameter.DataTypeName.get -> string?
Npgsql.NpgsqlParameter.DataTypeName.set -> void
Npgsql.NpgsqlParameter.NpgsqlDbType.get -> NpgsqlTypes.NpgsqlDbType
Npgsql.NpgsqlParameter.NpgsqlDbType.set -> void
Npgsql.NpgsqlParameter.NpgsqlParameter() -> void
Npgsql.NpgsqlParameter.NpgsqlParameter(string! parameterName, NpgsqlTypes.NpgsqlDbType parameterType, int size, string? sourceColumn, System.Data.ParameterDirection direction, bool isNullable, byte precision, byte scale, System.Data.DataRowVersion sourceVersion, object! value) -> void
Npgsql.NpgsqlParameter.NpgsqlParameter(string! parameterName, System.Data.DbType parameterType, int size, string? sourceColumn, System.Data.ParameterDirection direction, bool isNullable, byte precision, byte scale, System.Data.DataRowVersion sourceVersion, object! value) -> void
Npgsql.NpgsqlParameter.NpgsqlParameter(string? parameterName, NpgsqlTypes.NpgsqlDbType parameterType) -> void
Npgsql.NpgsqlParameter.NpgsqlParameter(string? parameterName, NpgsqlTypes.NpgsqlDbType parameterType, int size) -> void
Npgsql.NpgsqlParameter.NpgsqlParameter(string? parameterName, NpgsqlTypes.NpgsqlDbType parameterType, int size, string? sourceColumn) -> void
Npgsql.NpgsqlParameter.NpgsqlParameter(string? parameterName, object? value) -> void
Npgsql.NpgsqlParameter.NpgsqlParameter(string? parameterName, System.Data.DbType parameterType) -> void
Npgsql.NpgsqlParameter.NpgsqlParameter(string? parameterName, System.Data.DbType parameterType, int size) -> void
Npgsql.NpgsqlParameter.NpgsqlParameter(string? parameterName, System.Data.DbType parameterType, int size, string? sourceColumn) -> void
Npgsql.NpgsqlParameter.NpgsqlValue.get -> object?
Npgsql.NpgsqlParameter.NpgsqlValue.set -> void
Npgsql.NpgsqlParameter.PostgresType.get -> Npgsql.PostgresTypes.PostgresType?
Npgsql.NpgsqlParameter.Precision.get -> byte
Npgsql.NpgsqlParameter.Precision.set -> void
Npgsql.NpgsqlParameter.Scale.get -> byte
Npgsql.NpgsqlParameter.Scale.set -> void
Npgsql.NpgsqlParameter<T>
Npgsql.NpgsqlParameter<T>.NpgsqlParameter() -> void
Npgsql.NpgsqlParameter<T>.NpgsqlParameter(string! parameterName, NpgsqlTypes.NpgsqlDbType npgsqlDbType) -> void
Npgsql.NpgsqlParameter<T>.NpgsqlParameter(string! parameterName, System.Data.DbType dbType) -> void
Npgsql.NpgsqlParameter<T>.NpgsqlParameter(string! parameterName, T value) -> void
Npgsql.NpgsqlParameter<T>.TypedValue.get -> T?
Npgsql.NpgsqlParameter<T>.TypedValue.set -> void
Npgsql.NpgsqlParameterCollection
Npgsql.NpgsqlParameterCollection.Add(Npgsql.NpgsqlParameter! value) -> Npgsql.NpgsqlParameter!
Npgsql.NpgsqlParameterCollection.Add(string! parameterName, NpgsqlTypes.NpgsqlDbType parameterType) -> Npgsql.NpgsqlParameter!
Npgsql.NpgsqlParameterCollection.Add(string! parameterName, NpgsqlTypes.NpgsqlDbType parameterType, int size) -> Npgsql.NpgsqlParameter!
Npgsql.NpgsqlParameterCollection.Add(string! parameterName, NpgsqlTypes.NpgsqlDbType parameterType, int size, string! sourceColumn) -> Npgsql.NpgsqlParameter!
Npgsql.NpgsqlParameterCollection.AddWithValue(NpgsqlTypes.NpgsqlDbType parameterType, object! value) -> Npgsql.NpgsqlParameter!
Npgsql.NpgsqlParameterCollection.AddWithValue(object! value) -> Npgsql.NpgsqlParameter!
Npgsql.NpgsqlParameterCollection.AddWithValue(string! parameterName, NpgsqlTypes.NpgsqlDbType parameterType, int size, object! value) -> Npgsql.NpgsqlParameter!
Npgsql.NpgsqlParameterCollection.AddWithValue(string! parameterName, NpgsqlTypes.NpgsqlDbType parameterType, int size, string? sourceColumn, object! value) -> Npgsql.NpgsqlParameter!
Npgsql.NpgsqlParameterCollection.AddWithValue(string! parameterName, NpgsqlTypes.NpgsqlDbType parameterType, object! value) -> Npgsql.NpgsqlParameter!
Npgsql.NpgsqlParameterCollection.AddWithValue(string! parameterName, object! value) -> Npgsql.NpgsqlParameter!
Npgsql.NpgsqlParameterCollection.Contains(Npgsql.NpgsqlParameter! item) -> bool
Npgsql.NpgsqlParameterCollection.CopyTo(Npgsql.NpgsqlParameter![]! array, int arrayIndex) -> void
Npgsql.NpgsqlParameterCollection.IndexOf(Npgsql.NpgsqlParameter! item) -> int
Npgsql.NpgsqlParameterCollection.Insert(int index, Npgsql.NpgsqlParameter! item) -> void
Npgsql.NpgsqlParameterCollection.Remove(Npgsql.NpgsqlParameter! item) -> bool
Npgsql.NpgsqlParameterCollection.Remove(string! parameterName) -> void
Npgsql.NpgsqlParameterCollection.this[int index].get -> Npgsql.NpgsqlParameter!
Npgsql.NpgsqlParameterCollection.this[int index].set -> void
Npgsql.NpgsqlParameterCollection.this[string! parameterName].get -> Npgsql.NpgsqlParameter!
Npgsql.NpgsqlParameterCollection.this[string! parameterName].set -> void
Npgsql.NpgsqlParameterCollection.ToArray() -> Npgsql.NpgsqlParameter![]!
Npgsql.NpgsqlParameterCollection.TryGetValue(string! parameterName, out Npgsql.NpgsqlParameter? parameter) -> bool
Npgsql.NpgsqlRawCopyStream
Npgsql.NpgsqlRawCopyStream.Cancel() -> void
Npgsql.NpgsqlRawCopyStream.CancelAsync() -> System.Threading.Tasks.Task!
Npgsql.NpgsqlRowUpdatedEventArgs
Npgsql.NpgsqlRowUpdatedEventArgs.NpgsqlRowUpdatedEventArgs(System.Data.DataRow! dataRow, System.Data.IDbCommand? command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping! tableMapping) -> void
Npgsql.NpgsqlRowUpdatedEventHandler
Npgsql.NpgsqlRowUpdatingEventArgs
Npgsql.NpgsqlRowUpdatingEventArgs.NpgsqlRowUpdatingEventArgs(System.Data.DataRow! dataRow, System.Data.IDbCommand? command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping! tableMapping) -> void
Npgsql.NpgsqlRowUpdatingEventHandler
Npgsql.NpgsqlSlimDataSourceBuilder
Npgsql.NpgsqlSlimDataSourceBuilder.AddTypeInfoResolverFactory(Npgsql.Internal.PgTypeInfoResolverFactory! factory) -> void
Npgsql.NpgsqlSlimDataSourceBuilder.Build() -> Npgsql.NpgsqlDataSource!
Npgsql.NpgsqlSlimDataSourceBuilder.BuildMultiHost() -> Npgsql.NpgsqlMultiHostDataSource!
Npgsql.NpgsqlSlimDataSourceBuilder.ConfigureJsonOptions(System.Text.Json.JsonSerializerOptions! serializerOptions) -> Npgsql.NpgsqlSlimDataSourceBuilder!
Npgsql.NpgsqlSlimDataSourceBuilder.ConnectionString.get -> string!
Npgsql.NpgsqlSlimDataSourceBuilder.ConnectionStringBuilder.get -> Npgsql.NpgsqlConnectionStringBuilder!
Npgsql.NpgsqlSlimDataSourceBuilder.DefaultNameTranslator.get -> Npgsql.INpgsqlNameTranslator!
Npgsql.NpgsqlSlimDataSourceBuilder.DefaultNameTranslator.set -> void
Npgsql.NpgsqlSlimDataSourceBuilder.EnableArrays() -> Npgsql.NpgsqlSlimDataSourceBuilder!
Npgsql.NpgsqlSlimDataSourceBuilder.EnableDynamicJson(System.Type![]? jsonbClrTypes = null, System.Type![]? jsonClrTypes = null) -> Npgsql.NpgsqlSlimDataSourceBuilder!
Npgsql.NpgsqlSlimDataSourceBuilder.EnableExtraConversions() -> Npgsql.NpgsqlSlimDataSourceBuilder!
Npgsql.NpgsqlSlimDataSourceBuilder.EnableFullTextSearch() -> Npgsql.NpgsqlSlimDataSourceBuilder!
Npgsql.NpgsqlSlimDataSourceBuilder.EnableIntegratedSecurity() -> Npgsql.NpgsqlSlimDataSourceBuilder!
Npgsql.NpgsqlSlimDataSourceBuilder.EnableLTree() -> Npgsql.NpgsqlSlimDataSourceBuilder!
Npgsql.NpgsqlSlimDataSourceBuilder.EnableMultiranges() -> Npgsql.NpgsqlSlimDataSourceBuilder!
Npgsql.NpgsqlSlimDataSourceBuilder.EnableParameterLogging(bool parameterLoggingEnabled = true) -> Npgsql.NpgsqlSlimDataSourceBuilder!
Npgsql.NpgsqlSlimDataSourceBuilder.EnableRanges() -> Npgsql.NpgsqlSlimDataSourceBuilder!
Npgsql.NpgsqlSlimDataSourceBuilder.EnableRecords() -> Npgsql.NpgsqlSlimDataSourceBuilder!
Npgsql.NpgsqlSlimDataSourceBuilder.EnableRecordsAsTuples() -> Npgsql.NpgsqlSlimDataSourceBuilder!
Npgsql.NpgsqlSlimDataSourceBuilder.EnableTransportSecurity() -> Npgsql.NpgsqlSlimDataSourceBuilder!
Npgsql.NpgsqlSlimDataSourceBuilder.EnableUnmappedTypes() -> Npgsql.NpgsqlSlimDataSourceBuilder!
Npgsql.NpgsqlSlimDataSourceBuilder.MapComposite(System.Type! clrType, string? pgName = null, Npgsql.INpgsqlNameTranslator? nameTranslator = null) -> Npgsql.TypeMapping.INpgsqlTypeMapper!
Npgsql.NpgsqlSlimDataSourceBuilder.MapComposite<T>(string? pgName = null, Npgsql.INpgsqlNameTranslator? nameTranslator = null) -> Npgsql.TypeMapping.INpgsqlTypeMapper!
Npgsql.NpgsqlSlimDataSourceBuilder.MapEnum(System.Type! clrType, string? pgName = null, Npgsql.INpgsqlNameTranslator? nameTranslator = null) -> Npgsql.TypeMapping.INpgsqlTypeMapper!
Npgsql.NpgsqlSlimDataSourceBuilder.MapEnum<TEnum>(string? pgName = null, Npgsql.INpgsqlNameTranslator? nameTranslator = null) -> Npgsql.TypeMapping.INpgsqlTypeMapper!
Npgsql.NpgsqlSlimDataSourceBuilder.Name.get -> string?
Npgsql.NpgsqlSlimDataSourceBuilder.Name.set -> void
Npgsql.NpgsqlSlimDataSourceBuilder.NpgsqlSlimDataSourceBuilder(string? connectionString = null) -> void
Npgsql.NpgsqlSlimDataSourceBuilder.UnmapComposite(System.Type! clrType, string? pgName = null, Npgsql.INpgsqlNameTranslator? nameTranslator = null) -> bool
Npgsql.NpgsqlSlimDataSourceBuilder.UnmapComposite<T>(string? pgName = null, Npgsql.INpgsqlNameTranslator? nameTranslator = null) -> bool
Npgsql.NpgsqlSlimDataSourceBuilder.UnmapEnum(System.Type! clrType, string? pgName = null, Npgsql.INpgsqlNameTranslator? nameTranslator = null) -> bool
Npgsql.NpgsqlSlimDataSourceBuilder.UnmapEnum<TEnum>(string? pgName = null, Npgsql.INpgsqlNameTranslator? nameTranslator = null) -> bool
Npgsql.NpgsqlSlimDataSourceBuilder.UseClientCertificate(System.Security.Cryptography.X509Certificates.X509Certificate? clientCertificate) -> Npgsql.NpgsqlSlimDataSourceBuilder!
Npgsql.NpgsqlSlimDataSourceBuilder.UseClientCertificates(System.Security.Cryptography.X509Certificates.X509CertificateCollection? clientCertificates) -> Npgsql.NpgsqlSlimDataSourceBuilder!
Npgsql.NpgsqlSlimDataSourceBuilder.UseClientCertificatesCallback(System.Action<System.Security.Cryptography.X509Certificates.X509CertificateCollection!>? clientCertificatesCallback) -> Npgsql.NpgsqlSlimDataSourceBuilder!
Npgsql.NpgsqlSlimDataSourceBuilder.UseLoggerFactory(Microsoft.Extensions.Logging.ILoggerFactory? loggerFactory) -> Npgsql.NpgsqlSlimDataSourceBuilder!
Npgsql.NpgsqlSlimDataSourceBuilder.UsePasswordProvider(System.Func<Npgsql.NpgsqlConnectionStringBuilder!, string!>? passwordProvider, System.Func<Npgsql.NpgsqlConnectionStringBuilder!, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<string!>>? passwordProviderAsync) -> Npgsql.NpgsqlSlimDataSourceBuilder!
Npgsql.NpgsqlSlimDataSourceBuilder.UsePeriodicPasswordProvider(System.Func<Npgsql.NpgsqlConnectionStringBuilder!, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<string!>>? passwordProvider, System.TimeSpan successRefreshInterval, System.TimeSpan failureRefreshInterval) -> Npgsql.NpgsqlSlimDataSourceBuilder!
Npgsql.NpgsqlSlimDataSourceBuilder.UsePhysicalConnectionInitializer(System.Action<Npgsql.NpgsqlConnection!>? connectionInitializer, System.Func<Npgsql.NpgsqlConnection!, System.Threading.Tasks.Task!>? connectionInitializerAsync) -> Npgsql.NpgsqlSlimDataSourceBuilder!
Npgsql.NpgsqlSlimDataSourceBuilder.UseRootCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2? rootCertificate) -> Npgsql.NpgsqlSlimDataSourceBuilder!
Npgsql.NpgsqlSlimDataSourceBuilder.UseRootCertificateCallback(System.Func<System.Security.Cryptography.X509Certificates.X509Certificate2!>? rootCertificateCallback) -> Npgsql.NpgsqlSlimDataSourceBuilder!
Npgsql.NpgsqlSlimDataSourceBuilder.UseUserCertificateValidationCallback(System.Net.Security.RemoteCertificateValidationCallback! userCertificateValidationCallback) -> Npgsql.NpgsqlSlimDataSourceBuilder!
Npgsql.NpgsqlTracingOptions
Npgsql.NpgsqlTracingOptions.NpgsqlTracingOptions() -> void
Npgsql.NpgsqlTransaction
Npgsql.NpgsqlTransaction.Connection.get -> Npgsql.NpgsqlConnection?
Npgsql.PostgresErrorCodes
Npgsql.PostgresException
Npgsql.PostgresException.ColumnName.get -> string?
Npgsql.PostgresException.ConstraintName.get -> string?
Npgsql.PostgresException.DataTypeName.get -> string?
Npgsql.PostgresException.Detail.get -> string?
Npgsql.PostgresException.File.get -> string?
Npgsql.PostgresException.Hint.get -> string?
Npgsql.PostgresException.InternalPosition.get -> int
Npgsql.PostgresException.InternalQuery.get -> string?
Npgsql.PostgresException.InvariantSeverity.get -> string!
Npgsql.PostgresException.Line.get -> string?
Npgsql.PostgresException.MessageText.get -> string!
Npgsql.PostgresException.Position.get -> int
Npgsql.PostgresException.PostgresException(string! messageText, string! severity, string! invariantSeverity, string! sqlState) -> void
Npgsql.PostgresException.PostgresException(string! messageText, string! severity, string! invariantSeverity, string! sqlState, string? detail = null, string? hint = null, int position = 0, int internalPosition = 0, string? internalQuery = null, string? where = null, string? schemaName = null, string? tableName = null, string? columnName = null, string? dataTypeName = null, string? constraintName = null, string? file = null, string? line = null, string? routine = null) -> void
Npgsql.PostgresException.Routine.get -> string?
Npgsql.PostgresException.SchemaName.get -> string?
Npgsql.PostgresException.Severity.get -> string!
Npgsql.PostgresException.TableName.get -> string?
Npgsql.PostgresException.Where.get -> string?
Npgsql.PostgresNotice
Npgsql.PostgresNotice.ColumnName.get -> string?
Npgsql.PostgresNotice.ColumnName.set -> void
Npgsql.PostgresNotice.ConstraintName.get -> string?
Npgsql.PostgresNotice.ConstraintName.set -> void
Npgsql.PostgresNotice.DataTypeName.get -> string?
Npgsql.PostgresNotice.DataTypeName.set -> void
Npgsql.PostgresNotice.Detail.get -> string?
Npgsql.PostgresNotice.Detail.set -> void
Npgsql.PostgresNotice.File.get -> string?
Npgsql.PostgresNotice.File.set -> void
Npgsql.PostgresNotice.Hint.get -> string?
Npgsql.PostgresNotice.Hint.set -> void
Npgsql.PostgresNotice.InternalPosition.get -> int
Npgsql.PostgresNotice.InternalPosition.set -> void
Npgsql.PostgresNotice.InternalQuery.get -> string?
Npgsql.PostgresNotice.InternalQuery.set -> void
Npgsql.PostgresNotice.InvariantSeverity.get -> string!
Npgsql.PostgresNotice.Line.get -> string?
Npgsql.PostgresNotice.Line.set -> void
Npgsql.PostgresNotice.MessageText.get -> string!
Npgsql.PostgresNotice.MessageText.set -> void
Npgsql.PostgresNotice.Position.get -> int
Npgsql.PostgresNotice.Position.set -> void
Npgsql.PostgresNotice.PostgresNotice(string! messageText, string! severity, string! invariantSeverity, string! sqlState, string? detail = null, string? hint = null, int position = 0, int internalPosition = 0, string? internalQuery = null, string? where = null, string? schemaName = null, string? tableName = null, string? columnName = null, string? dataTypeName = null, string? constraintName = null, string? file = null, string? line = null, string? routine = null) -> void
Npgsql.PostgresNotice.PostgresNotice(string! severity, string! invariantSeverity, string! sqlState, string! messageText) -> void
Npgsql.PostgresNotice.Routine.get -> string?
Npgsql.PostgresNotice.Routine.set -> void
Npgsql.PostgresNotice.SchemaName.get -> string?
Npgsql.PostgresNotice.SchemaName.set -> void
Npgsql.PostgresNotice.Severity.get -> string!
Npgsql.PostgresNotice.Severity.set -> void
Npgsql.PostgresNotice.SqlState.get -> string!
Npgsql.PostgresNotice.SqlState.set -> void
Npgsql.PostgresNotice.TableName.get -> string?
Npgsql.PostgresNotice.TableName.set -> void
Npgsql.PostgresNotice.Where.get -> string?
Npgsql.PostgresNotice.Where.set -> void
Npgsql.PostgresTypes.PostgresArrayType
Npgsql.PostgresTypes.PostgresArrayType.Element.get -> Npgsql.PostgresTypes.PostgresType!
Npgsql.PostgresTypes.PostgresArrayType.PostgresArrayType(string! ns, string! name, uint oid, Npgsql.PostgresTypes.PostgresType! elementPostgresType) -> void
Npgsql.PostgresTypes.PostgresBaseType
Npgsql.PostgresTypes.PostgresBaseType.PostgresBaseType(string! ns, string! name, uint oid) -> void
Npgsql.PostgresTypes.PostgresCompositeType
Npgsql.PostgresTypes.PostgresCompositeType.Field
Npgsql.PostgresTypes.PostgresCompositeType.Field.Name.get -> string!
Npgsql.PostgresTypes.PostgresCompositeType.Field.Type.get -> Npgsql.PostgresTypes.PostgresType!
Npgsql.PostgresTypes.PostgresCompositeType.Fields.get -> System.Collections.Generic.IReadOnlyList<Npgsql.PostgresTypes.PostgresCompositeType.Field!>!
Npgsql.PostgresTypes.PostgresDomainType
Npgsql.PostgresTypes.PostgresDomainType.BaseType.get -> Npgsql.PostgresTypes.PostgresType!
Npgsql.PostgresTypes.PostgresDomainType.NotNull.get -> bool
Npgsql.PostgresTypes.PostgresDomainType.PostgresDomainType(string! ns, string! name, uint oid, Npgsql.PostgresTypes.PostgresType! baseType, bool notNull) -> void
Npgsql.PostgresTypes.PostgresEnumType
Npgsql.PostgresTypes.PostgresEnumType.Labels.get -> System.Collections.Generic.IReadOnlyList<string!>!
Npgsql.PostgresTypes.PostgresEnumType.PostgresEnumType(string! ns, string! name, uint oid) -> void
Npgsql.PostgresTypes.PostgresMultirangeType
Npgsql.PostgresTypes.PostgresMultirangeType.PostgresMultirangeType(string! ns, string! name, uint oid, Npgsql.PostgresTypes.PostgresRangeType! rangePostgresType) -> void
Npgsql.PostgresTypes.PostgresMultirangeType.Subrange.get -> Npgsql.PostgresTypes.PostgresRangeType!
Npgsql.PostgresTypes.PostgresRangeType
Npgsql.PostgresTypes.PostgresRangeType.Multirange.get -> Npgsql.PostgresTypes.PostgresMultirangeType?
Npgsql.PostgresTypes.PostgresRangeType.PostgresRangeType(string! ns, string! name, uint oid, Npgsql.PostgresTypes.PostgresType! subtypePostgresType) -> void
Npgsql.PostgresTypes.PostgresRangeType.Subtype.get -> Npgsql.PostgresTypes.PostgresType!
Npgsql.PostgresTypes.PostgresType
Npgsql.PostgresTypes.PostgresType.Array.get -> Npgsql.PostgresTypes.PostgresArrayType?
Npgsql.PostgresTypes.PostgresType.DisplayName.get -> string!
Npgsql.PostgresTypes.PostgresType.FullName.get -> string!
Npgsql.PostgresTypes.PostgresType.InternalName.get -> string!
Npgsql.PostgresTypes.PostgresType.Name.get -> string!
Npgsql.PostgresTypes.PostgresType.Namespace.get -> string!
Npgsql.PostgresTypes.PostgresType.OID.get -> uint
Npgsql.PostgresTypes.PostgresType.Range.get -> Npgsql.PostgresTypes.PostgresRangeType?
Npgsql.PostgresTypes.UnknownBackendType
Npgsql.ProvideClientCertificatesCallback
Npgsql.ProvidePasswordCallback
Npgsql.Replication.Internal.LogicalReplicationConnectionExtensions
Npgsql.Replication.Internal.LogicalReplicationSlot
Npgsql.Replication.Internal.LogicalReplicationSlot.ConsistentPoint.get -> NpgsqlTypes.NpgsqlLogSequenceNumber
Npgsql.Replication.Internal.LogicalReplicationSlot.LogicalReplicationSlot(string! outputPlugin, Npgsql.Replication.ReplicationSlotOptions replicationSlotOptions) -> void
Npgsql.Replication.Internal.LogicalReplicationSlot.OutputPlugin.get -> string!
Npgsql.Replication.Internal.LogicalReplicationSlot.SnapshotName.get -> string?
Npgsql.Replication.LogicalReplicationConnection
Npgsql.Replication.LogicalReplicationConnection.LogicalReplicationConnection() -> void
Npgsql.Replication.LogicalReplicationConnection.LogicalReplicationConnection(string? connectionString) -> void
Npgsql.Replication.LogicalSlotSnapshotInitMode
Npgsql.Replication.LogicalSlotSnapshotInitMode.Export = 0 -> Npgsql.Replication.LogicalSlotSnapshotInitMode
Npgsql.Replication.LogicalSlotSnapshotInitMode.NoExport = 2 -> Npgsql.Replication.LogicalSlotSnapshotInitMode
Npgsql.Replication.LogicalSlotSnapshotInitMode.Use = 1 -> Npgsql.Replication.LogicalSlotSnapshotInitMode
Npgsql.Replication.PgOutput.Messages.BeginMessage
Npgsql.Replication.PgOutput.Messages.BeginMessage.TransactionCommitTimestamp.get -> System.DateTime
Npgsql.Replication.PgOutput.Messages.BeginMessage.TransactionFinalLsn.get -> NpgsqlTypes.NpgsqlLogSequenceNumber
Npgsql.Replication.PgOutput.Messages.BeginPrepareMessage
Npgsql.Replication.PgOutput.Messages.CommitMessage
Npgsql.Replication.PgOutput.Messages.CommitMessage.CommitFlags
Npgsql.Replication.PgOutput.Messages.CommitMessage.CommitFlags.None = 0 -> Npgsql.Replication.PgOutput.Messages.CommitMessage.CommitFlags
Npgsql.Replication.PgOutput.Messages.CommitMessage.CommitLsn.get -> NpgsqlTypes.NpgsqlLogSequenceNumber
Npgsql.Replication.PgOutput.Messages.CommitMessage.Flags.get -> Npgsql.Replication.PgOutput.Messages.CommitMessage.CommitFlags
Npgsql.Replication.PgOutput.Messages.CommitMessage.TransactionCommitTimestamp.get -> System.DateTime
Npgsql.Replication.PgOutput.Messages.CommitMessage.TransactionEndLsn.get -> NpgsqlTypes.NpgsqlLogSequenceNumber
Npgsql.Replication.PgOutput.Messages.CommitPreparedMessage
Npgsql.Replication.PgOutput.Messages.CommitPreparedMessage.CommitPreparedEndLsn.get -> NpgsqlTypes.NpgsqlLogSequenceNumber
Npgsql.Replication.PgOutput.Messages.CommitPreparedMessage.CommitPreparedFlags
Npgsql.Replication.PgOutput.Messages.CommitPreparedMessage.CommitPreparedFlags.None = 0 -> Npgsql.Replication.PgOutput.Messages.CommitPreparedMessage.CommitPreparedFlags
Npgsql.Replication.PgOutput.Messages.CommitPreparedMessage.CommitPreparedLsn.get -> NpgsqlTypes.NpgsqlLogSequenceNumber
Npgsql.Replication.PgOutput.Messages.CommitPreparedMessage.Flags.get -> Npgsql.Replication.PgOutput.Messages.CommitPreparedMessage.CommitPreparedFlags
Npgsql.Replication.PgOutput.Messages.CommitPreparedMessage.TransactionCommitTimestamp.get -> System.DateTime
Npgsql.Replication.PgOutput.Messages.DefaultUpdateMessage
Npgsql.Replication.PgOutput.Messages.DeleteMessage
Npgsql.Replication.PgOutput.Messages.DeleteMessage.Relation.get -> Npgsql.Replication.PgOutput.Messages.RelationMessage!
Npgsql.Replication.PgOutput.Messages.FullDeleteMessage
Npgsql.Replication.PgOutput.Messages.FullDeleteMessage.OldRow.get -> Npgsql.Replication.PgOutput.ReplicationTuple!
Npgsql.Replication.PgOutput.Messages.FullUpdateMessage
Npgsql.Replication.PgOutput.Messages.FullUpdateMessage.OldRow.get -> Npgsql.Replication.PgOutput.ReplicationTuple!
Npgsql.Replication.PgOutput.Messages.IndexUpdateMessage
Npgsql.Replication.PgOutput.Messages.IndexUpdateMessage.Key.get -> Npgsql.Replication.PgOutput.ReplicationTuple!
Npgsql.Replication.PgOutput.Messages.InsertMessage
Npgsql.Replication.PgOutput.Messages.InsertMessage.NewRow.get -> Npgsql.Replication.PgOutput.ReplicationTuple!
Npgsql.Replication.PgOutput.Messages.InsertMessage.Relation.get -> Npgsql.Replication.PgOutput.Messages.RelationMessage!
Npgsql.Replication.PgOutput.Messages.KeyDeleteMessage
Npgsql.Replication.PgOutput.Messages.KeyDeleteMessage.Key.get -> Npgsql.Replication.PgOutput.ReplicationTuple!
Npgsql.Replication.PgOutput.Messages.LogicalDecodingMessage
Npgsql.Replication.PgOutput.Messages.LogicalDecodingMessage.Data.get -> System.IO.Stream!
Npgsql.Replication.PgOutput.Messages.LogicalDecodingMessage.Flags.get -> byte
Npgsql.Replication.PgOutput.Messages.LogicalDecodingMessage.MessageLsn.get -> NpgsqlTypes.NpgsqlLogSequenceNumber
Npgsql.Replication.PgOutput.Messages.LogicalDecodingMessage.Prefix.get -> string!
Npgsql.Replication.PgOutput.Messages.OriginMessage
Npgsql.Replication.PgOutput.Messages.OriginMessage.OriginCommitLsn.get -> NpgsqlTypes.NpgsqlLogSequenceNumber
Npgsql.Replication.PgOutput.Messages.OriginMessage.OriginName.get -> string!
Npgsql.Replication.PgOutput.Messages.PgOutputReplicationMessage
Npgsql.Replication.PgOutput.Messages.PgOutputReplicationMessage.PgOutputReplicationMessage() -> void
Npgsql.Replication.PgOutput.Messages.PreparedTransactionControlMessage
Npgsql.Replication.PgOutput.Messages.PreparedTransactionControlMessage.TransactionGid.get -> string!
Npgsql.Replication.PgOutput.Messages.PrepareMessage
Npgsql.Replication.PgOutput.Messages.PrepareMessage.Flags.get -> Npgsql.Replication.PgOutput.Messages.PrepareMessage.PrepareFlags
Npgsql.Replication.PgOutput.Messages.PrepareMessage.PrepareFlags
Npgsql.Replication.PgOutput.Messages.PrepareMessage.PrepareFlags.None = 0 -> Npgsql.Replication.PgOutput.Messages.PrepareMessage.PrepareFlags
Npgsql.Replication.PgOutput.Messages.PrepareMessageBase
Npgsql.Replication.PgOutput.Messages.PrepareMessageBase.PrepareEndLsn.get -> NpgsqlTypes.NpgsqlLogSequenceNumber
Npgsql.Replication.PgOutput.Messages.PrepareMessageBase.PrepareLsn.get -> NpgsqlTypes.NpgsqlLogSequenceNumber
Npgsql.Replication.PgOutput.Messages.PrepareMessageBase.TransactionPrepareTimestamp.get -> System.DateTime
Npgsql.Replication.PgOutput.Messages.RelationMessage
Npgsql.Replication.PgOutput.Messages.RelationMessage.Column
Npgsql.Replication.PgOutput.Messages.RelationMessage.Column.Column() -> void
Npgsql.Replication.PgOutput.Messages.RelationMessage.Column.ColumnFlags
Npgsql.Replication.PgOutput.Messages.RelationMessage.Column.ColumnFlags.None = 0 -> Npgsql.Replication.PgOutput.Messages.RelationMessage.Column.ColumnFlags
Npgsql.Replication.PgOutput.Messages.RelationMessage.Column.ColumnFlags.PartOfKey = 1 -> Npgsql.Replication.PgOutput.Messages.RelationMessage.Column.ColumnFlags
Npgsql.Replication.PgOutput.Messages.RelationMessage.Column.ColumnName.get -> string!
Npgsql.Replication.PgOutput.Messages.RelationMessage.Column.DataTypeId.get -> uint
Npgsql.Replication.PgOutput.Messages.RelationMessage.Column.Flags.get -> Npgsql.Replication.PgOutput.Messages.RelationMessage.Column.ColumnFlags
Npgsql.Replication.PgOutput.Messages.RelationMessage.Column.TypeModifier.get -> int
Npgsql.Replication.PgOutput.Messages.RelationMessage.Columns.get -> System.Collections.Generic.IReadOnlyList<Npgsql.Replication.PgOutput.Messages.RelationMessage.Column>!
Npgsql.Replication.PgOutput.Messages.RelationMessage.Namespace.get -> string!
Npgsql.Replication.PgOutput.Messages.RelationMessage.RelationId.get -> uint
Npgsql.Replication.PgOutput.Messages.RelationMessage.RelationName.get -> string!
Npgsql.Replication.PgOutput.Messages.RelationMessage.ReplicaIdentity.get -> Npgsql.Replication.PgOutput.Messages.RelationMessage.ReplicaIdentitySetting
Npgsql.Replication.PgOutput.Messages.RelationMessage.ReplicaIdentitySetting
Npgsql.Replication.PgOutput.Messages.RelationMessage.ReplicaIdentitySetting.AllColumns = 102 -> Npgsql.Replication.PgOutput.Messages.RelationMessage.ReplicaIdentitySetting
Npgsql.Replication.PgOutput.Messages.RelationMessage.ReplicaIdentitySetting.Default = 100 -> Npgsql.Replication.PgOutput.Messages.RelationMessage.ReplicaIdentitySetting
Npgsql.Replication.PgOutput.Messages.RelationMessage.ReplicaIdentitySetting.IndexWithIndIsReplIdent = 105 -> Npgsql.Replication.PgOutput.Messages.RelationMessage.ReplicaIdentitySetting
Npgsql.Replication.PgOutput.Messages.RelationMessage.ReplicaIdentitySetting.Nothing = 110 -> Npgsql.Replication.PgOutput.Messages.RelationMessage.ReplicaIdentitySetting
Npgsql.Replication.PgOutput.Messages.RelationMessageColumn
Npgsql.Replication.PgOutput.Messages.RelationMessageColumn.ColumnName.get -> string!
Npgsql.Replication.PgOutput.Messages.RelationMessageColumn.DataTypeId.get -> uint
Npgsql.Replication.PgOutput.Messages.RelationMessageColumn.Flags.get -> byte
Npgsql.Replication.PgOutput.Messages.RelationMessageColumn.RelationMessageColumn() -> void
Npgsql.Replication.PgOutput.Messages.RelationMessageColumn.TypeModifier.get -> int
Npgsql.Replication.PgOutput.Messages.RollbackPreparedMessage
Npgsql.Replication.PgOutput.Messages.RollbackPreparedMessage.Flags.get -> Npgsql.Replication.PgOutput.Messages.RollbackPreparedMessage.RollbackPreparedFlags
Npgsql.Replication.PgOutput.Messages.RollbackPreparedMessage.PreparedTransactionEndLsn.get -> NpgsqlTypes.NpgsqlLogSequenceNumber
Npgsql.Replication.PgOutput.Messages.RollbackPreparedMessage.RollbackPreparedEndLsn.get -> NpgsqlTypes.NpgsqlLogSequenceNumber
Npgsql.Replication.PgOutput.Messages.RollbackPreparedMessage.RollbackPreparedFlags
Npgsql.Replication.PgOutput.Messages.RollbackPreparedMessage.RollbackPreparedFlags.None = 0 -> Npgsql.Replication.PgOutput.Messages.RollbackPreparedMessage.RollbackPreparedFlags
Npgsql.Replication.PgOutput.Messages.RollbackPreparedMessage.TransactionPrepareTimestamp.get -> System.DateTime
Npgsql.Replication.PgOutput.Messages.RollbackPreparedMessage.TransactionRollbackTimestamp.get -> System.DateTime
Npgsql.Replication.PgOutput.Messages.StreamAbortMessage
Npgsql.Replication.PgOutput.Messages.StreamAbortMessage.SubtransactionXid.get -> uint
Npgsql.Replication.PgOutput.Messages.StreamCommitMessage
Npgsql.Replication.PgOutput.Messages.StreamCommitMessage.CommitLsn.get -> NpgsqlTypes.NpgsqlLogSequenceNumber
Npgsql.Replication.PgOutput.Messages.StreamCommitMessage.Flags.get -> byte
Npgsql.Replication.PgOutput.Messages.StreamCommitMessage.TransactionCommitTimestamp.get -> System.DateTime
Npgsql.Replication.PgOutput.Messages.StreamCommitMessage.TransactionEndLsn.get -> NpgsqlTypes.NpgsqlLogSequenceNumber
Npgsql.Replication.PgOutput.Messages.StreamPrepareMessage
Npgsql.Replication.PgOutput.Messages.StreamPrepareMessage.Flags.get -> Npgsql.Replication.PgOutput.Messages.StreamPrepareMessage.StreamPrepareFlags
Npgsql.Replication.PgOutput.Messages.StreamPrepareMessage.StreamPrepareFlags
Npgsql.Replication.PgOutput.Messages.StreamPrepareMessage.StreamPrepareFlags.None = 0 -> Npgsql.Replication.PgOutput.Messages.StreamPrepareMessage.StreamPrepareFlags
Npgsql.Replication.PgOutput.Messages.StreamStartMessage
Npgsql.Replication.PgOutput.Messages.StreamStartMessage.StreamSegmentIndicator.get -> byte
Npgsql.Replication.PgOutput.Messages.StreamStopMessage
Npgsql.Replication.PgOutput.Messages.TransactionalMessage
Npgsql.Replication.PgOutput.Messages.TransactionalMessage.TransactionalMessage() -> void
Npgsql.Replication.PgOutput.Messages.TransactionalMessage.TransactionXid.get -> uint?
Npgsql.Replication.PgOutput.Messages.TransactionControlMessage
Npgsql.Replication.PgOutput.Messages.TransactionControlMessage.TransactionControlMessage() -> void
Npgsql.Replication.PgOutput.Messages.TransactionControlMessage.TransactionXid.get -> uint
Npgsql.Replication.PgOutput.Messages.TruncateMessage
Npgsql.Replication.PgOutput.Messages.TruncateMessage.Options.get -> Npgsql.Replication.PgOutput.Messages.TruncateMessage.TruncateOptions
Npgsql.Replication.PgOutput.Messages.TruncateMessage.Relations.get -> System.Collections.Generic.IReadOnlyList<Npgsql.Replication.PgOutput.Messages.RelationMessage!>!
Npgsql.Replication.PgOutput.Messages.TruncateMessage.TruncateOptions
Npgsql.Replication.PgOutput.Messages.TruncateMessage.TruncateOptions.Cascade = 1 -> Npgsql.Replication.PgOutput.Messages.TruncateMessage.TruncateOptions
Npgsql.Replication.PgOutput.Messages.TruncateMessage.TruncateOptions.None = 0 -> Npgsql.Replication.PgOutput.Messages.TruncateMessage.TruncateOptions
Npgsql.Replication.PgOutput.Messages.TruncateMessage.TruncateOptions.RestartIdentity = 2 -> Npgsql.Replication.PgOutput.Messages.TruncateMessage.TruncateOptions
Npgsql.Replication.PgOutput.Messages.TypeMessage
Npgsql.Replication.PgOutput.Messages.TypeMessage.Name.get -> string!
Npgsql.Replication.PgOutput.Messages.TypeMessage.Namespace.get -> string!
Npgsql.Replication.PgOutput.Messages.TypeMessage.TypeId.get -> uint
Npgsql.Replication.PgOutput.Messages.UpdateMessage
Npgsql.Replication.PgOutput.Messages.UpdateMessage.Relation.get -> Npgsql.Replication.PgOutput.Messages.RelationMessage!