forked from dotnetprojects/Migrator.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNpgsql.xml
More file actions
2874 lines (2859 loc) · 145 KB
/
Copy pathNpgsql.xml
File metadata and controls
2874 lines (2859 loc) · 145 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
<?xml version="1.0"?>
<doc>
<assembly>
<name>Npgsql</name>
</assembly>
<members>
<member name="M:Npgsql.HashAlgorithm.#ctor">
<summary>
Called from constructor of derived class.
</summary>
</member>
<member name="M:Npgsql.HashAlgorithm.Finalize">
<summary>
Finalizer for HashAlgorithm
</summary>
</member>
<member name="M:Npgsql.HashAlgorithm.ComputeHash(System.Byte[])">
<summary>
Computes the entire hash of all the bytes in the byte array.
</summary>
</member>
<member name="M:Npgsql.HashAlgorithm.HashCore(System.Byte[],System.Int32,System.Int32)">
<summary>
When overridden in a derived class, drives the hashing function.
</summary>
<param name="rgb"></param>
<param name="start"></param>
<param name="size"></param>
</member>
<member name="M:Npgsql.HashAlgorithm.HashFinal">
<summary>
When overridden in a derived class, this pads and hashes whatever data might be left in the buffers and then returns the hash created.
</summary>
</member>
<member name="M:Npgsql.HashAlgorithm.Initialize">
<summary>
When overridden in a derived class, initializes the object to prepare for hashing.
</summary>
</member>
<member name="M:Npgsql.HashAlgorithm.TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)">
<summary>
Used for stream chaining. Computes hash as data passes through it.
</summary>
<param name="inputBuffer">The buffer from which to grab the data to be copied.</param>
<param name="inputOffset">The offset into the input buffer to start reading at.</param>
<param name="inputCount">The number of bytes to be copied.</param>
<param name="outputBuffer">The buffer to write the copied data to.</param>
<param name="outputOffset">At what point in the outputBuffer to write the data at.</param>
</member>
<member name="M:Npgsql.HashAlgorithm.TransformFinalBlock(System.Byte[],System.Int32,System.Int32)">
<summary>
Used for stream chaining. Computes hash as data passes through it. Finishes off the hash.
</summary>
<param name="inputBuffer">The buffer from which to grab the data to be copied.</param>
<param name="inputOffset">The offset into the input buffer to start reading at.</param>
<param name="inputCount">The number of bytes to be copied.</param>
</member>
<member name="P:Npgsql.HashAlgorithm.CanTransformMultipleBlocks">
<summary>
Get whether or not the hash can transform multiple blocks at a time.
Note: MUST be overriden if descendant can transform multiple block
on a single call!
</summary>
</member>
<member name="P:Npgsql.HashAlgorithm.Hash">
<summary>
Gets the previously computed hash.
</summary>
</member>
<member name="P:Npgsql.HashAlgorithm.HashSize">
<summary>
Returns the size in bits of the hash.
</summary>
</member>
<member name="P:Npgsql.HashAlgorithm.InputBlockSize">
<summary>
Must be overriden if not 1
</summary>
</member>
<member name="P:Npgsql.HashAlgorithm.OutputBlockSize">
<summary>
Must be overriden if not 1
</summary>
</member>
<member name="T:Npgsql.MD5">
<summary>
Common base class for all derived MD5 implementations.
</summary>
</member>
<member name="M:Npgsql.MD5.#ctor">
<summary>
Called from constructor of derived class.
</summary>
</member>
<member name="M:Npgsql.MD5.Create">
<summary>
Creates the default derived class.
</summary>
</member>
<member name="T:Npgsql.MD5CryptoServiceProvider">
<summary>
C# implementation of the MD5 cryptographic hash function.
</summary>
</member>
<member name="M:Npgsql.MD5CryptoServiceProvider.#ctor">
<summary>
Creates a new MD5CryptoServiceProvider.
</summary>
</member>
<member name="M:Npgsql.MD5CryptoServiceProvider.HashCore(System.Byte[],System.Int32,System.Int32)">
<summary>
Drives the hashing function.
</summary>
<param name="rgb">Byte array containing the data to hash.</param>
<param name="start">Where in the input buffer to start.</param>
<param name="size">Size in bytes of the data in the buffer to hash.</param>
</member>
<member name="M:Npgsql.MD5CryptoServiceProvider.HashFinal">
<summary>
This finalizes the hash. Takes the data from the chaining variables and returns it.
</summary>
</member>
<member name="M:Npgsql.MD5CryptoServiceProvider.Initialize">
<summary>
Resets the class after use. Called automatically after hashing is done.
</summary>
</member>
<member name="M:Npgsql.MD5CryptoServiceProvider.ProcessBlock(System.Byte[],System.Int32)">
<summary>
This is the meat of the hash function. It is what processes each block one at a time.
</summary>
<param name="inputBuffer">Byte array to process data from.</param>
<param name="inputOffset">Where in the byte array to start processing.</param>
</member>
<member name="M:Npgsql.MD5CryptoServiceProvider.ProcessFinalBlock(System.Byte[],System.Int32,System.Int32)">
<summary>
Pads and then processes the final block.
</summary>
<param name="inputBuffer">Buffer to grab data from.</param>
<param name="inputOffset">Position in buffer in bytes to get data from.</param>
<param name="inputCount">How much data in bytes in the buffer to use.</param>
</member>
<member name="T:Npgsql.NpgsqlAsciiRow">
<summary>
This class represents the AsciiRow (version 2) and DataRow (version 3+)
message sent from the PostgreSQL server.
</summary>
</member>
<member name="T:Npgsql.NpgsqlRow">
<summary>
This is the abstract base class for NpgsqlAsciiRow and NpgsqlBinaryRow.
</summary>
</member>
<member name="P:Npgsql.NpgsqlRow.Item(System.Int32)">
<summary>
Provide access to the fields in this row.
</summary>
</member>
<member name="T:Npgsql.NpgsqlBackEndKeyData">
<summary>
This class represents a BackEndKeyData message received
from PostgreSQL
</summary>
</member>
<member name="T:Npgsql.NpgsqlBinaryRow">
<summary>
This class represents the BinaryRow message sent from the PostgreSQL
server. This is unused as of protocol version 3.
</summary>
</member>
<member name="T:Npgsql.NpgsqlBind">
<summary>
This class represents the Bind message sent to PostgreSQL
server.
</summary>
</member>
<member name="T:Npgsql.NpgsqlCancelRequest">
<summary>
This class represents the CancelRequest message sent to PostgreSQL
server.
</summary>
</member>
<member name="T:Npgsql.NpgsqlState">
<summary> This class represents the base class for the state pattern design pattern
implementation.
</summary>
</member>
<member name="M:Npgsql.NpgsqlState.ChangeState(Npgsql.NpgsqlConnector,Npgsql.NpgsqlState)">
<summary>
This method is used by the states to change the state of the context.
</summary>
</member>
<member name="M:Npgsql.NpgsqlState.ProcessBackendResponses(Npgsql.NpgsqlConnector)">
<summary>
This method is responsible to handle all protocol messages sent from the backend.
It holds all the logic to do it.
To exchange data, it uses a Mediator object from which it reads/writes information
to handle backend requests.
</summary>
</member>
<member name="M:Npgsql.NpgsqlClosedState.ResolveIPHost(System.String)">
<summary>
Resolve a host name or IP address.
This is needed because if you call Dns.Resolve() with an IP address, it will attempt
to resolve it as a host name, when it should just convert it to an IP address.
</summary>
<param name="HostName"></param>
</member>
<member name="T:Npgsql.NpgsqlCommand">
<summary>
Represents a SQL statement or function (stored procedure) to execute
against a PostgreSQL database. This class cannot be inherited.
</summary>
</member>
<member name="M:Npgsql.NpgsqlCommand.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Npgsql.NpgsqlCommand">NpgsqlCommand</see> class.
</summary>
</member>
<member name="M:Npgsql.NpgsqlCommand.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Npgsql.NpgsqlCommand">NpgsqlCommand</see> class with the text of the query.
</summary>
<param name="cmdText">The text of the query.</param>
</member>
<member name="M:Npgsql.NpgsqlCommand.#ctor(System.String,Npgsql.NpgsqlConnection)">
<summary>
Initializes a new instance of the <see cref="T:Npgsql.NpgsqlCommand">NpgsqlCommand</see> class with the text of the query and a <see cref="T:Npgsql.NpgsqlConnection">NpgsqlConnection</see>.
</summary>
<param name="cmdText">The text of the query.</param>
<param name="connection">A <see cref="T:Npgsql.NpgsqlConnection">NpgsqlConnection</see> that represents the connection to a PostgreSQL server.</param>
</member>
<member name="M:Npgsql.NpgsqlCommand.#ctor(System.String,Npgsql.NpgsqlConnection,Npgsql.NpgsqlTransaction)">
<summary>
Initializes a new instance of the <see cref="T:Npgsql.NpgsqlCommand">NpgsqlCommand</see> class with the text of the query, a <see cref="T:Npgsql.NpgsqlConnection">NpgsqlConnection</see>, and the <see cref="T:Npgsql.NpgsqlTransaction">NpgsqlTransaction</see>.
</summary>
<param name="cmdText">The text of the query.</param>
<param name="connection">A <see cref="T:Npgsql.NpgsqlConnection">NpgsqlConnection</see> that represents the connection to a PostgreSQL server.</param>
<param name="transaction">The <see cref="T:Npgsql.NpgsqlTransaction">NpgsqlTransaction</see> in which the <see cref="T:Npgsql.NpgsqlCommand">NpgsqlCommand</see> executes.</param>
</member>
<member name="M:Npgsql.NpgsqlCommand.#ctor(System.String,Npgsql.NpgsqlConnector)">
<summary>
Used to execute internal commands.
</summary>
</member>
<member name="M:Npgsql.NpgsqlCommand.Cancel">
<summary>
Attempts to cancel the execution of a <see cref="T:Npgsql.NpgsqlCommand">NpgsqlCommand</see>.
</summary>
<remarks>This Method isn't implemented yet.</remarks>
</member>
<member name="M:Npgsql.NpgsqlCommand.System#ICloneable#Clone">
<summary>
Create a new command based on this one.
</summary>
<returns>A new NpgsqlCommand object.</returns>
</member>
<member name="M:Npgsql.NpgsqlCommand.Clone">
<summary>
Create a new connection based on this one.
</summary>
<returns>A new NpgsqlConnection object.</returns>
</member>
<member name="M:Npgsql.NpgsqlCommand.System#Data#IDbCommand#CreateParameter">
<summary>
Creates a new instance of an <see cref="T:System.Data.IDbDataParameter">IDbDataParameter</see> object.
</summary>
<returns>An <see cref="T:System.Data.IDbDataParameter">IDbDataParameter</see> object.</returns>
</member>
<member name="M:Npgsql.NpgsqlCommand.CreateParameter">
<summary>
Creates a new instance of a <see cref="T:Npgsql.NpgsqlParameter">NpgsqlParameter</see> object.
</summary>
<returns>A <see cref="T:Npgsql.NpgsqlParameter">NpgsqlParameter</see> object.</returns>
</member>
<member name="M:Npgsql.NpgsqlCommand.ExecuteNonQuery">
<summary>
Executes a SQL statement against the connection and returns the number of rows affected.
</summary>
<returns>The number of rows affected.</returns>
</member>
<member name="M:Npgsql.NpgsqlCommand.System#Data#IDbCommand#ExecuteReader">
<summary>
Sends the <see cref="P:Npgsql.NpgsqlCommand.CommandText">CommandText</see> to
the <see cref="T:Npgsql.NpgsqlConnection">Connection</see> and builds a
<see cref="T:Npgsql.NpgsqlDataReader">NpgsqlDataReader</see>.
</summary>
<returns>A <see cref="T:Npgsql.NpgsqlDataReader">NpgsqlDataReader</see> object.</returns>
</member>
<member name="M:Npgsql.NpgsqlCommand.System#Data#IDbCommand#ExecuteReader(System.Data.CommandBehavior)">
<summary>
Sends the <see cref="P:Npgsql.NpgsqlCommand.CommandText">CommandText</see> to
the <see cref="T:Npgsql.NpgsqlConnection">Connection</see> and builds a
<see cref="T:Npgsql.NpgsqlDataReader">NpgsqlDataReader</see>
using one of the <see cref="T:System.Data.CommandBehavior">CommandBehavior</see> values.
</summary>
<param name="cb">One of the <see cref="T:System.Data.CommandBehavior">CommandBehavior</see> values.</param>
<returns>A <see cref="T:Npgsql.NpgsqlDataReader">NpgsqlDataReader</see> object.</returns>
</member>
<member name="M:Npgsql.NpgsqlCommand.ExecuteReader">
<summary>
Sends the <see cref="P:Npgsql.NpgsqlCommand.CommandText">CommandText</see> to
the <see cref="T:Npgsql.NpgsqlConnection">Connection</see> and builds a
<see cref="T:Npgsql.NpgsqlDataReader">NpgsqlDataReader</see>.
</summary>
<returns>A <see cref="T:Npgsql.NpgsqlDataReader">NpgsqlDataReader</see> object.</returns>
</member>
<member name="M:Npgsql.NpgsqlCommand.ExecuteReader(System.Data.CommandBehavior)">
<summary>
Sends the <see cref="P:Npgsql.NpgsqlCommand.CommandText">CommandText</see> to
the <see cref="T:Npgsql.NpgsqlConnection">Connection</see> and builds a
<see cref="T:Npgsql.NpgsqlDataReader">NpgsqlDataReader</see>
using one of the <see cref="T:System.Data.CommandBehavior">CommandBehavior</see> values.
</summary>
<param name="cb">One of the <see cref="T:System.Data.CommandBehavior">CommandBehavior</see> values.</param>
<returns>A <see cref="T:Npgsql.NpgsqlDataReader">NpgsqlDataReader</see> object.</returns>
<remarks>Currently the CommandBehavior parameter is ignored.</remarks>
</member>
<member name="M:Npgsql.NpgsqlCommand.BindParameters">
<summary>
This method binds the parameters from parameters collection to the bind
message.
</summary>
</member>
<member name="M:Npgsql.NpgsqlCommand.ExecuteScalar">
<summary>
Executes the query, and returns the first column of the first row
in the result set returned by the query. Extra columns or rows are ignored.
</summary>
<returns>The first column of the first row in the result set,
or a null reference if the result set is empty.</returns>
</member>
<member name="M:Npgsql.NpgsqlCommand.Prepare">
<summary>
Creates a prepared version of the command on a PostgreSQL server.
</summary>
</member>
<member name="M:Npgsql.NpgsqlCommand.CheckConnectionState">
<summary>
This method checks the connection state to see if the connection
is set or it is open. If one of this conditions is not met, throws
an InvalidOperationException
</summary>
</member>
<member name="M:Npgsql.NpgsqlCommand.GetCommandText">
<summary>
This method substitutes the <see cref="P:Npgsql.NpgsqlCommand.Parameters">Parameters</see>, if exist, in the command
to their actual values.
The parameter name format is <b>:ParameterName</b>.
</summary>
<returns>A version of <see cref="P:Npgsql.NpgsqlCommand.CommandText">CommandText</see> with the <see cref="P:Npgsql.NpgsqlCommand.Parameters">Parameters</see> inserted.</returns>
</member>
<member name="M:Npgsql.NpgsqlCommand.ProcessRefcursorFunctionReturn(System.String)">
<summary>
This methods takes a string with a function call witch returns a refcursor or a set of
refcursor. It will return the names of the open cursors/portals which will hold
results. In turn, it returns the string which is needed to get the data of this cursors
in form of one resultset for each cursor open. This way, clients don't need to do anything
else besides calling function normally to get results in this way.
</summary>
</member>
<member name="P:Npgsql.NpgsqlCommand.CommandText">
<summary>
Gets or sets the SQL statement or function (stored procedure) to execute at the data source.
</summary>
<value>The Transact-SQL statement or stored procedure to execute. The default is an empty string.</value>
</member>
<member name="P:Npgsql.NpgsqlCommand.CommandTimeout">
<summary>
Gets or sets the wait time before terminating the attempt
to execute a command and generating an error.
</summary>
<value>The time (in seconds) to wait for the command to execute.
The default is 20 seconds.</value>
</member>
<member name="P:Npgsql.NpgsqlCommand.CommandType">
<summary>
Gets or sets a value indicating how the
<see cref="P:Npgsql.NpgsqlCommand.CommandText">CommandText</see> property is to be interpreted.
</summary>
<value>One of the <see cref="T:System.Data.CommandType">CommandType</see> values. The default is <see cref="T:System.Data.CommandType">CommandType.Text</see>.</value>
</member>
<member name="P:Npgsql.NpgsqlCommand.Connection">
<summary>
Gets or sets the <see cref="T:Npgsql.NpgsqlConnection">NpgsqlConnection</see>
used by this instance of the <see cref="T:Npgsql.NpgsqlCommand">NpgsqlCommand</see>.
</summary>
<value>The connection to a data source. The default value is a null reference.</value>
</member>
<member name="P:Npgsql.NpgsqlCommand.Parameters">
<summary>
Gets the <see cref="T:Npgsql.NpgsqlParameterCollection">NpgsqlParameterCollection</see>.
</summary>
<value>The parameters of the SQL statement or function (stored procedure). The default is an empty collection.</value>
</member>
<member name="P:Npgsql.NpgsqlCommand.Transaction">
<summary>
Gets or sets the <see cref="T:Npgsql.NpgsqlTransaction">NpgsqlTransaction</see>
within which the <see cref="T:Npgsql.NpgsqlCommand">NpgsqlCommand</see> executes.
</summary>
<value>The <see cref="T:Npgsql.NpgsqlTransaction">NpgsqlTransaction</see>.
The default value is a null reference.</value>
</member>
<member name="P:Npgsql.NpgsqlCommand.UpdatedRowSource">
<summary>
Gets or sets how command results are applied to the <see cref="T:System.Data.DataRow">DataRow</see>
when used by the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)">Update</see>
method of the <see cref="T:System.Data.Common.DbDataAdapter">DbDataAdapter</see>.
</summary>
<value>One of the <see cref="T:System.Data.UpdateRowSource">UpdateRowSource</see> values.</value>
</member>
<member name="P:Npgsql.NpgsqlCommand.LastInsertedOID">
<summary>
Returns oid of inserted row. This is only updated when using executenonQuery and when command inserts just a single row. If table is created without oids, this will always be 0.
</summary>
</member>
<member name="T:Npgsql.NpgsqlCommandBuilder">
<summary>
This class is responsible to create database commands for automatic insert, update and delete operations.
</summary>
</member>
<member name="M:Npgsql.NpgsqlCommandBuilder.DeriveParameters(Npgsql.NpgsqlCommand)">
<summary>
This method is reponsible to derive the command parameter list with values obtained from function definition.
It clears the Parameters collection of command. Also, if there is any parameter type which is not supported by Npgsql, an InvalidOperationException will be thrown.
Parameters name will be parameter1, parameter2, ...
For while, only parameter name and NpgsqlDbType are obtained.
</summary>
<param name="command">NpgsqlCommand whose function parameters will be obtained.</param>
</member>
<member name="T:Npgsql.NoticeEventHandler">
<summary>
Represents the method that handles the <see cref="E:Npgsql.NpgsqlConnection.Notification">Notice</see> events.
</summary>
<param name="e">A <see cref="T:Npgsql.NpgsqlNoticeEventArgs">NpgsqlNoticeEventArgs</see> that contains the event data.</param>
</member>
<member name="T:Npgsql.NotificationEventHandler">
<summary>
Represents the method that handles the <see cref="E:Npgsql.NpgsqlConnection.Notification">Notification</see> events.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:Npgsql.NpgsqlNotificationEventArgs">NpgsqlNotificationEventArgs</see> that contains the event data.</param>
</member>
<member name="T:Npgsql.NpgsqlConnection">
<summary>
This class represents a connection to a
PostgreSQL server.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnection.#ctor">
<summary>
Initializes a new instance of the
<see cref="T:Npgsql.NpgsqlConnection">NpgsqlConnection</see> class.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnection.#ctor(System.String)">
<summary>
Initializes a new instance of the
<see cref="T:Npgsql.NpgsqlConnection">NpgsqlConnection</see> class
and sets the <see cref="P:Npgsql.NpgsqlConnection.ConnectionString">ConnectionString</see>.
</summary>
<param name="ConnectionString">The connection used to open the PostgreSQL database.</param>
</member>
<member name="M:Npgsql.NpgsqlConnection.System#Data#IDbConnection#BeginTransaction">
<summary>
Begins a database transaction.
</summary>
<returns>An <see cref="T:System.Data.IDbTransaction">IDbTransaction</see>
object representing the new transaction.</returns>
<remarks>
Currently there's no support for nested transactions.
</remarks>
</member>
<member name="M:Npgsql.NpgsqlConnection.System#Data#IDbConnection#BeginTransaction(System.Data.IsolationLevel)">
<summary>
Begins a database transaction with the specified isolation level.
</summary>
<param name="level">The <see cref="T:System.Data.IsolationLevel">isolation level</see> under which the transaction should run.</param>
<returns>An <see cref="T:System.Data.IDbTransaction">IDbTransaction</see>
object representing the new transaction.</returns>
<remarks>
Currently the IsolationLevel ReadCommitted and Serializable are supported by the PostgreSQL backend.
There's no support for nested transactions.
</remarks>
</member>
<member name="M:Npgsql.NpgsqlConnection.BeginTransaction">
<summary>
Begins a database transaction.
</summary>
<returns>A <see cref="T:Npgsql.NpgsqlTransaction">NpgsqlTransaction</see>
object representing the new transaction.</returns>
<remarks>
Currently there's no support for nested transactions.
</remarks>
</member>
<member name="M:Npgsql.NpgsqlConnection.BeginTransaction(System.Data.IsolationLevel)">
<summary>
Begins a database transaction with the specified isolation level.
</summary>
<param name="level">The <see cref="T:System.Data.IsolationLevel">isolation level</see> under which the transaction should run.</param>
<returns>A <see cref="T:Npgsql.NpgsqlTransaction">NpgsqlTransaction</see>
object representing the new transaction.</returns>
<remarks>
Currently the IsolationLevel ReadCommitted and Serializable are supported by the PostgreSQL backend.
There's no support for nested transactions.
</remarks>
</member>
<member name="M:Npgsql.NpgsqlConnection.Open">
<summary>
Opens a database connection with the property settings specified by the
<see cref="P:Npgsql.NpgsqlConnection.ConnectionString">ConnectionString</see>.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnection.ChangeDatabase(System.String)">
<summary>
This method changes the current database by disconnecting from the actual
database and connecting to the specified.
</summary>
<param name="dbName">The name of the database to use in place of the current database.</param>
</member>
<member name="M:Npgsql.NpgsqlConnection.Close">
<summary>
Releases the connection to the database. If the connection is pooled, it will be
made available for re-use. If it is non-pooled, the actual connection will be shutdown.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnection.System#Data#IDbConnection#CreateCommand">
<summary>
Creates and returns a <see cref="T:System.Data.IDbCommand">IDbCommand</see>
object associated with the <see cref="T:System.Data.IDbConnection">IDbConnection</see>.
</summary>
<returns>A <see cref="T:System.Data.IDbCommand">IDbCommand</see> object.</returns>
</member>
<member name="M:Npgsql.NpgsqlConnection.CreateCommand">
<summary>
Creates and returns a <see cref="T:Npgsql.NpgsqlCommand">NpgsqlCommand</see>
object associated with the <see cref="T:Npgsql.NpgsqlConnection">NpgsqlConnection</see>.
</summary>
<returns>A <see cref="T:Npgsql.NpgsqlCommand">NpgsqlCommand</see> object.</returns>
</member>
<member name="M:Npgsql.NpgsqlConnection.Dispose(System.Boolean)">
<summary>
Releases all resources used by the
<see cref="T:Npgsql.NpgsqlConnection">NpgsqlConnection</see>.
</summary>
<param name="disposing"><b>true</b> when called from Dispose();
<b>false</b> when being called from the finalizer.</param>
</member>
<member name="M:Npgsql.NpgsqlConnection.System#ICloneable#Clone">
<summary>
Create a new connection based on this one.
</summary>
<returns>A new NpgsqlConnection object.</returns>
</member>
<member name="M:Npgsql.NpgsqlConnection.Clone">
<summary>
Create a new connection based on this one.
</summary>
<returns>A new NpgsqlConnection object.</returns>
</member>
<member name="M:Npgsql.NpgsqlConnection.DefaultCertificateSelectionCallback(System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Cryptography.X509Certificates.X509Certificate,System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection)">
<summary>
Default SSL CertificateSelectionCallback implementation.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnection.DefaultCertificateValidationCallback(System.Security.Cryptography.X509Certificates.X509Certificate,System.Int32[])">
<summary>
Default SSL CertificateValidationCallback implementation.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnection.DefaultPrivateKeySelectionCallback(System.Security.Cryptography.X509Certificates.X509Certificate,System.String)">
<summary>
Default SSL PrivateKeySelectionCallback implementation.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnection.LogConnectionString">
<summary>
Write each key/value pair in the connection string to the log.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "M:Npgsql.NpgsqlConnection.GetSchema" -->
<member name="M:Npgsql.NpgsqlConnection.GetSchema(System.String)">
<summary>
Returns the schema collection specified by the collection name.
</summary>
<param name="collectionName">The collection name.</param>
<returns>The collection specified.</returns>
</member>
<member name="M:Npgsql.NpgsqlConnection.GetSchema(System.String,System.String[])">
<summary>
Returns the schema collection specified by the collection name filtered by the restrictions.
</summary>
<param name="collectionName">The collection name.</param>
<param name="restrictions">
The restriction values to filter the results. A description of the restrictions is contained
in the Restrictions collection.
</param>
<returns>The collection specified.</returns>
</member>
<member name="E:Npgsql.NpgsqlConnection.Notice">
<summary>
Occurs on NoticeResponses from the PostgreSQL backend.
</summary>
</member>
<member name="E:Npgsql.NpgsqlConnection.Notification">
<summary>
Occurs on NotificationResponses from the PostgreSQL backend.
</summary>
</member>
<member name="E:Npgsql.NpgsqlConnection.CertificateSelectionCallback">
<summary>
Mono.Security.Protocol.Tls.CertificateSelectionCallback delegate.
</summary>
</member>
<member name="E:Npgsql.NpgsqlConnection.CertificateValidationCallback">
<summary>
Mono.Security.Protocol.Tls.CertificateValidationCallback delegate.
</summary>
</member>
<member name="E:Npgsql.NpgsqlConnection.PrivateKeySelectionCallback">
<summary>
Mono.Security.Protocol.Tls.PrivateKeySelectionCallback delegate.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:Npgsql.NpgsqlConnection.ConnectionString" -->
<member name="P:Npgsql.NpgsqlConnection.Host">
<summary>
Backend server host name.
</summary>
</member>
<member name="P:Npgsql.NpgsqlConnection.Port">
<summary>
Backend server port.
</summary>
</member>
<member name="P:Npgsql.NpgsqlConnection.SSL">
<summary>
If true, the connection will attempt to use SSL.
</summary>
</member>
<member name="P:Npgsql.NpgsqlConnection.ConnectionTimeout">
<summary>
Gets the time to wait while trying to establish a connection
before terminating the attempt and generating an error.
</summary>
<value>The time (in seconds) to wait for a connection to open. The default value is 15 seconds.</value>
</member>
<member name="P:Npgsql.NpgsqlConnection.ConnectionLifeTime">
<summary>
Gets the time to wait before closing unused connections in the pool if the count
of all connections exeeds MinPoolSize.
</summary>
<remarks>
If connection pool contains unused connections for ConnectionLifeTime seconds,
the half of them will be closed. If there will be unused connections in a second
later then again the half of them will be closed and so on.
This strategy provide smooth change of connection count in the pool.
</remarks>
<value>The time (in seconds) to wait. The default value is 15 seconds.</value>
</member>
<member name="P:Npgsql.NpgsqlConnection.Database">
<summary>
Gets the name of the current database or the database to be used after a connection is opened.
</summary>
<value>The name of the current database or the name of the database to be
used after a connection is opened. The default value is the empty string.</value>
</member>
<member name="P:Npgsql.NpgsqlConnection.SyncNotification">
<summary>
Gets flag indicating if we are using Synchronous notification or not.
The default value is false.
</summary>
</member>
<member name="P:Npgsql.NpgsqlConnection.State">
<summary>
Gets the current state of the connection.
</summary>
<value>A bitwise combination of the <see cref="T:System.Data.ConnectionState">ConnectionState</see> values. The default is <b>Closed</b>.</value>
</member>
<member name="P:Npgsql.NpgsqlConnection.ServerVersion">
<summary>
Version of the PostgreSQL backend.
This can only be called when there is an active connection.
</summary>
</member>
<member name="P:Npgsql.NpgsqlConnection.BackendProtocolVersion">
<summary>
Protocol version in use.
This can only be called when there is an active connection.
</summary>
</member>
<member name="P:Npgsql.NpgsqlConnection.Connector">
<summary>
The connector object connected to the backend.
</summary>
</member>
<member name="P:Npgsql.NpgsqlConnection.ConnectionStringValues">
<summary>
Gets the NpgsqlConnectionString containing the parsed connection string values.
</summary>
</member>
<member name="P:Npgsql.NpgsqlConnection.UserName">
<summary>
User name.
</summary>
</member>
<member name="P:Npgsql.NpgsqlConnection.Password">
<summary>
Password.
</summary>
</member>
<member name="P:Npgsql.NpgsqlConnection.Pooling">
<summary>
Determine if connection pooling will be used for this connection.
</summary>
</member>
<member name="T:Npgsql.NpgsqlConnectionString">
<summary>
Represents a connection string.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnectionString.Clone">
<summary>
Return an exact copy of this NpgsqlConnectionString.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnectionString.ParseConnectionString(System.String)">
<summary>
This method parses a connection string and returns a new NpgsqlConnectionString object.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnectionString.Contains(System.String)">
<summary>
Report whether a value with the provided key name exists in this connection string.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnectionString.ToString">
<summary>
Return a clean string representation of this connection string.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnectionString.ToString(System.String)">
<summary>
Return a string value from the current connection string, even if the
given key is not in the string or if the value is null.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnectionString.ToString(System.String,System.String)">
<summary>
Return a string value from the current connection string, even if the
given key is not in the string or if the value is null.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnectionString.ToInt32(System.String)">
<summary>
Return an integer value from the current connection string, even if the
given key is not in the string or if the value is null.
Throw an appropriate exception if the value cannot be coerced to an integer.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnectionString.ToInt32(System.String,System.Int32,System.Int32)">
<summary>
Return an integer value from the current connection string, even if the
given key is not in the string or if the value is null.
Throw an appropriate exception if the value cannot be coerced to an integer.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnectionString.ToInt32(System.String,System.Int32)">
<summary>
Return an integer value from the current connection string, even if the
given key is not in the string or if the value is null.
Throw an appropriate exception if the value cannot be coerced to an integer.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnectionString.ToInt32(System.String,System.Int32,System.Int32,System.Int32)">
<summary>
Return an integer value from the current connection string, even if the
given key is not in the string.
Throw an appropriate exception if the value cannot be coerced to an integer.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnectionString.ToBool(System.String)">
<summary>
Return a boolean value from the current connection string, even if the
given key is not in the string.
Throw an appropriate exception if the value is not recognized as a boolean.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnectionString.ToBool(System.String,System.Boolean)">
<summary>
Return a boolean value from the current connection string, even if the
given key is not in the string.
Throw an appropriate exception if the value is not recognized as a boolean.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnectionString.ToProtocolVersion(System.String)">
<summary>
Return a ProtocolVersion from the current connection string, even if the
given key is not in the string.
Throw an appropriate exception if the value is not recognized as
integer 2 or 3.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnectionString.ToSslMode(System.String,Npgsql.SslMode)">
<summary>
</summary>
</member>
<member name="P:Npgsql.NpgsqlConnectionString.Item(System.String)">
<summary>
Case insensative accessor for indivual connection string values.
</summary>
</member>
<member name="T:Npgsql.ConnectionStringKeys">
<summary>
Know connection string keys.
</summary>
</member>
<member name="T:Npgsql.ConnectionStringDefaults">
<summary>
Connection string default values.
</summary>
</member>
<member name="T:Npgsql.NpgsqlConnector">
<summary>
!!! Helper class, for compilation only.
Connector implements the logic for the Connection Objects to
access the physical connection to the database, and isolate
the application developer from connection pooling internals.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnector.#ctor(Npgsql.NpgsqlConnectionString,System.Boolean,System.Boolean)">
<summary>
Constructor.
</summary>
<param name="Shared">Controls whether the connector can be shared.</param>
</member>
<member name="M:Npgsql.NpgsqlConnector.IsValid">
<summary>
This method checks if the connector is still ok.
We try to send a simple query text, select 1 as ConnectionTest;
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnector.ReleaseResources">
<summary>
This method is responsible for releasing all resources associated with this Connector.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnector.ReleasePlansPortals">
<summary>
This method is responsible to release all portals used by this Connector.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnector.CheckErrors">
<summary>
Check for mediator errors (sent by backend) and throw the appropriate
exception if errors found. This needs to be called after every interaction
with the backend.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnector.CheckNotices">
<summary>
Check for notices and fire the appropiate events.
This needs to be called after every interaction
with the backend.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnector.CheckNotifications">
<summary>
Check for notifications and fire the appropiate events.
This needs to be called after every interaction
with the backend.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnector.CheckErrorsAndNotifications">
<summary>
Check for errors AND notifications in one call.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnector.DefaultCertificateSelectionCallback(System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Cryptography.X509Certificates.X509Certificate,System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection)">
<summary>
Default SSL CertificateSelectionCallback implementation.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnector.DefaultCertificateValidationCallback(System.Security.Cryptography.X509Certificates.X509Certificate,System.Int32[])">
<summary>
Default SSL CertificateValidationCallback implementation.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnector.DefaultPrivateKeySelectionCallback(System.Security.Cryptography.X509Certificates.X509Certificate,System.String)">
<summary>
Default SSL PrivateKeySelectionCallback implementation.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnector.ProcessServerVersion">
<summary>
This method is required to set all the version dependent features flags.
SupportsPrepare means the server can use prepared query plans (7.3+)
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnector.Open">
<summary>
Opens the physical connection to the server.
</summary>
<remarks>Usually called by the RequestConnector
Method of the connection pool manager.</remarks>
</member>
<member name="M:Npgsql.NpgsqlConnector.Close">
<summary>
Closes the physical connection to the server.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnector.NextPortalName">
<summary>
Returns next portal index.
</summary>
</member>
<member name="M:Npgsql.NpgsqlConnector.NextPlanName">
<summary>
Returns next plan index.
</summary>
</member>
<member name="E:Npgsql.NpgsqlConnector.Notice">
<summary>
Occurs on NoticeResponses from the PostgreSQL backend.
</summary>
</member>
<member name="E:Npgsql.NpgsqlConnector.Notification">
<summary>
Occurs on NotificationResponses from the PostgreSQL backend.
</summary>
</member>
<member name="E:Npgsql.NpgsqlConnector.CertificateSelectionCallback">
<summary>
Mono.Security.Protocol.Tls.CertificateSelectionCallback delegate.
</summary>
</member>
<member name="E:Npgsql.NpgsqlConnector.CertificateValidationCallback">
<summary>
Mono.Security.Protocol.Tls.CertificateValidationCallback delegate.
</summary>
</member>
<member name="E:Npgsql.NpgsqlConnector.PrivateKeySelectionCallback">
<summary>
Mono.Security.Protocol.Tls.PrivateKeySelectionCallback delegate.
</summary>
</member>
<member name="P:Npgsql.NpgsqlConnector.State">
<summary>
Gets the current state of the connection.
</summary>
</member>
<member name="P:Npgsql.NpgsqlConnector.ServerVersion">
<summary>
Version of backend server this connector is connected to.
</summary>
</member>
<member name="P:Npgsql.NpgsqlConnector.BackendProtocolVersion">
<summary>
Backend protocol version in use by this connector.
</summary>
</member>
<member name="P:Npgsql.NpgsqlConnector.Stream">
<summary>
The physical connection stream to the backend.
</summary>
</member>
<member name="P:Npgsql.NpgsqlConnector.Socket">
<summary>
The physical connection socket to the backend.
</summary>
</member>
<member name="P:Npgsql.NpgsqlConnector.IsInitialized">
<summary>
Reports if this connector is fully connected.
</summary>
</member>
<member name="P:Npgsql.NpgsqlConnector.Mediator">
<summary>
The connection mediator.
</summary>
</member>
<member name="P:Npgsql.NpgsqlConnector.Transaction">
<summary>
Report if the connection is in a transaction.
</summary>
</member>
<member name="P:Npgsql.NpgsqlConnector.SupportsPrepare">
<summary>
Report whether the current connection can support prepare functionality.
</summary>
</member>
<member name="T:Npgsql.NpgsqlConnectorPool">
<summary>
This class manages all connector objects, pooled AND non-pooled.
</summary>