-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathGeoAPI.XML
More file actions
5949 lines (5935 loc) · 338 KB
/
GeoAPI.XML
File metadata and controls
5949 lines (5935 loc) · 338 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>GeoAPI</name>
</assembly>
<members>
<member name="M:GeoAPI.Utilities.ByteEncoder.GetBigEndian(System.Int32)">
<summary>
Returns the value encoded in Big Endian (PPC, XDR) format.
</summary>
<param name="value">Value to encode.</param>
<returns>Big-endian encoded value.</returns>
</member>
<member name="M:GeoAPI.Utilities.ByteEncoder.GetBigEndian(System.UInt16)">
<summary>
Returns the value encoded in Big Endian (PPC, XDR) format.
</summary>
<param name="value">Value to encode.</param>
<returns>Big-endian encoded value.</returns>
</member>
<member name="M:GeoAPI.Utilities.ByteEncoder.GetBigEndian(System.UInt32)">
<summary>
Returns the value encoded in Big Endian (PPC, XDR) format.
</summary>
<param name="value">Value to encode.</param>
<returns>Big-endian encoded value.</returns>
</member>
<member name="M:GeoAPI.Utilities.ByteEncoder.GetBigEndian(System.Double)">
<summary>
Returns the value encoded in Big Endian (PPC, XDR) format.
</summary>
<param name="value">Value to encode.</param>
<returns>Big-endian encoded value.</returns>
</member>
<member name="M:GeoAPI.Utilities.ByteEncoder.GetLittleEndian(System.Int32)">
<summary>
Returns the value encoded in Little Endian (x86, NDR) format.
</summary>
<param name="value">Value to encode.</param>
<returns>Little-endian encoded value.</returns>
</member>
<member name="M:GeoAPI.Utilities.ByteEncoder.GetLittleEndian(System.UInt32)">
<summary>
Returns the value encoded in Little Endian (x86, NDR) format.
</summary>
<param name="value">Value to encode.</param>
<returns>Little-endian encoded value.</returns>
</member>
<member name="M:GeoAPI.Utilities.ByteEncoder.GetLittleEndian(System.UInt16)">
<summary>
Returns the value encoded in Little Endian (x86, NDR) format.
</summary>
<param name="value">Value to encode.</param>
<returns>Little-endian encoded value.</returns>
</member>
<member name="M:GeoAPI.Utilities.ByteEncoder.GetLittleEndian(System.Double)">
<summary>
Returns the value encoded in Little Endian (x86, NDR) format.
</summary>
<param name="value">Value to encode.</param>
<returns>Little-endian encoded value.</returns>
</member>
<member name="M:GeoAPI.Utilities.ByteEncoder.swapByteOrder(System.Int32)">
<summary>
Swaps the Byte order of an <see cref="T:System.Int32"/>.
</summary>
<param name="value"><see cref="T:System.Int32"/> to swap the bytes of.</param>
<returns>Byte order swapped <see cref="T:System.Int32"/>.</returns>
</member>
<member name="M:GeoAPI.Utilities.ByteEncoder.swapByteOrder(System.UInt16)">
<summary>
Swaps the byte order of a <see cref="T:System.UInt16"/>.
</summary>
<param name="value"><see cref="T:System.UInt16"/> to swap the bytes of.</param>
<returns>Byte order swapped <see cref="T:System.UInt16"/>.</returns>
</member>
<member name="M:GeoAPI.Utilities.ByteEncoder.swapByteOrder(System.UInt32)">
<summary>
Swaps the byte order of a <see cref="T:System.UInt32"/>.
</summary>
<param name="value"><see cref="T:System.UInt32"/> to swap the bytes of.</param>
<returns>Byte order swapped <see cref="T:System.UInt32"/>.</returns>
</member>
<member name="M:GeoAPI.Utilities.ByteEncoder.swapByteOrder(System.Int64)">
<summary>
Swaps the byte order of a <see cref="T:System.Int64"/>.
</summary>
<param name="value"><see cref="T:System.Int64"/> to swap the bytes of.</param>
<returns>Byte order swapped <see cref="T:System.Int64"/>.</returns>
</member>
<member name="M:GeoAPI.Utilities.ByteEncoder.swapByteOrder(System.Double)">
<summary>
Swaps the byte order of a <see cref="T:System.Double"/> (double precision IEEE 754)
</summary>
<param name="value"><see cref="T:System.Double"/> to swap.</param>
<returns>Byte order swapped <see cref="T:System.Double"/> value.</returns>
</member>
<member name="T:GeoAPI.IO.WellKnownText.StreamTokenizer">
<summary>
Parses input character data into tokens.
</summary>
<remarks>
<para>
The StreamTokenizer class takes an input character stream and parses
it into "tokens", allowing the tokens to be read one at a time.
The parsing process is controlled by a table and a number of flags
that can be set to various states. The stream tokenizer can recognize
identifiers, numbers, quoted strings, and various comment styles.
</para>
This is a crude c# implementation of Java's
<a href="http://java.sun.com/products/jdk/1.2/docs/api/java/io/StreamTokenizer.html">StreamTokenizer</a>
class.
</remarks>
</member>
<member name="M:GeoAPI.IO.WellKnownText.StreamTokenizer.#ctor(System.IO.TextReader,System.Boolean)">
<summary>
Initializes a new instance of the StreamTokenizer class.
</summary>
<param name="reader">A TextReader with some text to read.</param>
<param name="ignoreWhitespace">Flag indicating whether whitespace should be ignored.</param>
</member>
<member name="M:GeoAPI.IO.WellKnownText.StreamTokenizer.GetNumericValue">
<summary>
If the current token is a number, this field contains the value
of that number.
</summary>
<remarks>
If the current token is a number, this field contains the value
of that number. The current token is a number when the value of
the ttype field is TT_NUMBER.
</remarks>
<exception cref="T:System.FormatException">
Current token is not a number in a valid format.
</exception>
</member>
<member name="M:GeoAPI.IO.WellKnownText.StreamTokenizer.GetStringValue">
<summary>
If the current token is a word token, this field contains a String giving the characters of the word token.
</summary>
</member>
<member name="M:GeoAPI.IO.WellKnownText.StreamTokenizer.GetTokenType">
<summary>
Gets the token type of the current token.
</summary>
<returns></returns>
</member>
<member name="M:GeoAPI.IO.WellKnownText.StreamTokenizer.NextToken(System.Boolean)">
<summary>
Returns the next token.
</summary>
<param name="ignoreWhitespace">Determines is whitespace is ignored. True if whitespace is to be ignored.</param>
<returns>The TokenType of the next token.</returns>
</member>
<member name="M:GeoAPI.IO.WellKnownText.StreamTokenizer.NextToken">
<summary>
Returns the next token type.
</summary>
<returns>The TokenType of the next token.</returns>
</member>
<member name="M:GeoAPI.IO.WellKnownText.StreamTokenizer.getType(System.Char)">
<summary>
Determines a characters type (e.g. number, symbols, character).
</summary>
<param name="character">The character to determine.</param>
<returns>The TokenType the character is.</returns>
</member>
<member name="M:GeoAPI.IO.WellKnownText.StreamTokenizer.nextNonWhitespaceToken">
<summary>
Returns next token that is not whitespace.
</summary>
<returns></returns>
</member>
<member name="P:GeoAPI.IO.WellKnownText.StreamTokenizer.LineNumber">
<summary>
Gets the current line number of the stream being read.
</summary>
</member>
<member name="P:GeoAPI.IO.WellKnownText.StreamTokenizer.Column">
<summary>
Gets the current column number of the stream being read.
</summary>
</member>
<member name="T:GeoAPI.DataStructures.Collections.Generic.ImmutableSet`1">
<summary>
<p>Implements an immutable (read-only) <c>Set</c> wrapper.</p>
<p>Although this is advertised as immutable, it really isn't. Anyone with access to the
<c>basisSet</c> can still change the data-set. So <c>GetHashCode()</c> is not implemented
for this <c>Set</c>, as is the case for all <c>Set</c> implementations in this library.
This design decision was based on the efficiency of not having to <c>Clone()</c> the
<c>basisSet</c> every time you wrap a mutable <c>Set</c>.</p>
</summary>
</member>
<member name="T:GeoAPI.DataStructures.Collections.Generic.Set`1">
<summary><p>A collection that contains no duplicate elements. This class models the mathematical
<c>Set</c> abstraction, and is the base class for all other <c>Set</c> implementations.
The order of elements in a set is dependant on (a)the data-structure implementation, and
(b)the implementation of the various <c>Set</c> methods, and thus is not guaranteed.</p>
<p>None of the <c>Set</c> implementations in this library are guranteed to be thread-safe
in any way.</p>
<p>The following table summarizes the binary operators that are supported by the <c>Set</c> class.</p>
<list type="table">
<listheader>
<term>Operation</term>
<term>Description</term>
<term>Method</term>
<term>Operator</term>
</listheader>
<item>
<term>Union (OR)</term>
<term>Element included in result if it exists in either <c>A</c> OR <c>B</c>.</term>
<term><c>Union()</c></term>
<term><c>|</c></term>
</item>
<item>
<term>Intersection (AND)</term>
<term>Element included in result if it exists in both <c>A</c> AND <c>B</c>.</term>
<term><c>InterSect()</c></term>
<term><c>&</c></term>
</item>
<item>
<term>Exclusive Or (XOR)</term>
<term>Element included in result if it exists in one, but not both, of <c>A</c> and <c>B</c>.</term>
<term><c>ExclusiveOr()</c></term>
<term><c>^</c></term>
</item>
<item>
<term>Minus (n/a)</term>
<term>Take all the elements in <c>A</c>. Now, if any of them exist in <c>B</c>, remove
them. Note that unlike the other operators, <c>A - B</c> is not the same as <c>B - A</c>.</term>
<term><c>Minus()</c></term>
<term><c>-</c></term>
</item>
</list>
</summary>
<remarks>
Set<T> supports operator between Set<T> and ISet, however, the ISet must contains only elements of type T
</remarks>
</member>
<member name="T:GeoAPI.DataStructures.Collections.Generic.ISet`1">
<summary>
<p>A collection that contains no duplicate elements. This interface models the mathematical
<c>Set</c> abstraction.
The order of elements in a set is dependant on (a)the data-structure implementation, and
(b)the implementation of the various <c>Set</c> methods, and thus is not guaranteed.</p>
<p>None of the <c>Set</c> implementations in this library are guranteed to be thread-safe
in any way.</p>
<p>The following table summarizes the binary operators that are supported by the <c>Set</c> class.</p>
<list type="table">
<listheader>
<term>Operation</term>
<term>Description</term>
<term>Method</term>
</listheader>
<item>
<term>Union (OR)</term>
<term>Element included in result if it exists in either <c>A</c> OR <c>B</c>.</term>
<term><c>Union()</c></term>
</item>
<item>
<term>Intersection (AND)</term>
<term>Element included in result if it exists in both <c>A</c> AND <c>B</c>.</term>
<term><c>InterSect()</c></term>
</item>
<item>
<term>Exclusive Or (XOR)</term>
<term>Element included in result if it exists in one, but not both, of <c>A</c> and <c>B</c>.</term>
<term><c>ExclusiveOr()</c></term>
</item>
<item>
<term>Minus (n/a)</term>
<term>Take all the elements in <c>A</c>. Now, if any of them exist in <c>B</c>, remove
them. Note that unlike the other operators, <c>A - B</c> is not the same as <c>B - A</c>.</term>
<term><c>Minus()</c></term>
</item>
</list>
</summary>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ISet`1.Union(GeoAPI.DataStructures.Collections.Generic.ISet{`0})">
<summary>
Performs a "union" of the two sets, where all the elements
in both sets are present. That is, the element is included if it is in either <c>a</c> or <c>b</c>.
Neither this set nor the input set are modified during the operation. The return value
is a <c>Clone()</c> of this set with the extra elements added in.
</summary>
<param name="a">A collection of elements.</param>
<returns>A new <c>Set</c> containing the union of this <c>Set</c> with the specified collection.
Neither of the input objects is modified by the union.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ISet`1.Intersect(GeoAPI.DataStructures.Collections.Generic.ISet{`0})">
<summary>
Performs an "intersection" of the two sets, where only the elements
that are present in both sets remain. That is, the element is included if it exists in
both sets. The <c>Intersect()</c> operation does not modify the input sets. It returns
a <c>Clone()</c> of this set with the appropriate elements removed.
</summary>
<param name="a">A set of elements.</param>
<returns>The intersection of this set with <c>a</c>.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ISet`1.Minus(GeoAPI.DataStructures.Collections.Generic.ISet{`0})">
<summary>
Performs a "minus" of set <c>b</c> from set <c>a</c>. This returns a set of all
the elements in set <c>a</c>, removing the elements that are also in set <c>b</c>.
The original sets are not modified during this operation. The result set is a <c>Clone()</c>
of this <c>Set</c> containing the elements from the operation.
</summary>
<param name="a">A set of elements.</param>
<returns>A set containing the elements from this set with the elements in <c>a</c> removed.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ISet`1.ExclusiveOr(GeoAPI.DataStructures.Collections.Generic.ISet{`0})">
<summary>
Performs an "exclusive-or" of the two sets, keeping only the elements that
are in one of the sets, but not in both. The original sets are not modified
during this operation. The result set is a <c>Clone()</c> of this set containing
the elements from the exclusive-or operation.
</summary>
<param name="a">A set of elements.</param>
<returns>A set containing the result of <c>a ^ b</c>.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ISet`1.Contains(`0)">
<summary>
Returns <see langword="true"/> if this set contains the specified element.
</summary>
<param name="o">The element to look for.</param>
<returns><see langword="true"/> if this set contains the specified element, <c>false</c> otherwise.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ISet`1.ContainsAll(System.Collections.Generic.IEnumerable{`0})">
<summary>
Returns <see langword="true"/> if the set contains all the elements in the specified collection.
</summary>
<param name="c">A collection of objects.</param>
<returns><see langword="true"/> if the set contains all the elements in the specified collection, <c>false</c> otherwise.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ISet`1.Add(`0)">
<summary>
Adds the specified element to this set if it is not already present.
</summary>
<param name="o">The object to add to the set.</param>
<returns><see langword="true"/> is the object was added, <c>false</c> if it was already present.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ISet`1.AddRange(System.Collections.Generic.IEnumerable{`0})">
<summary>
Adds all the elements in the specified collection to the set if they are not already present.
</summary>
<param name="c">A collection of objects to add to the set.</param>
<returns><see langword="true"/> is the set changed as a result of this operation, <c>false</c> if not.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ISet`1.Remove(`0)">
<summary>
Removes the specified element from the set.
</summary>
<param name="o">The element to be removed.</param>
<returns><see langword="true"/> if the set contained the specified element, <c>false</c> otherwise.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ISet`1.RemoveAll(System.Collections.Generic.IEnumerable{`0})">
<summary>
Remove all the specified elements from this set, if they exist in this set.
</summary>
<param name="c">A collection of elements to remove.</param>
<returns><see langword="true"/> if the set was modified as a result of this operation.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ISet`1.RetainAll(System.Collections.Generic.IEnumerable{`0})">
<summary>
Retains only the elements in this set that are contained in the specified collection.
</summary>
<param name="c">Collection that defines the set of elements to be retained.</param>
<returns><see langword="true"/> if this set changed as a result of this operation.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ISet`1.Clear">
<summary>
Removes all objects from the set.
</summary>
</member>
<member name="P:GeoAPI.DataStructures.Collections.Generic.ISet`1.IsEmpty">
<summary>
Returns <see langword="true"/> if this set contains no elements.
</summary>
</member>
<member name="T:GeoAPI.DataStructures.Collections.ISet">
<summary>
<p>A collection that contains no duplicate elements. This interface models the mathematical
<c>Set</c> abstraction.
The order of elements in a set is dependant on (a)the data-structure implementation, and
(b)the implementation of the various <c>Set</c> methods, and thus is not guaranteed.</p>
<p>None of the <c>Set</c> implementations in this library are guranteed to be thread-safe
in any way unless wrapped in a <c>SynchronizedSet</c>.</p>
<p>The following table summarizes the binary operators that are supported by the <c>Set</c> class.</p>
<list type="table">
<listheader>
<term>Operation</term>
<term>Description</term>
<term>Method</term>
</listheader>
<item>
<term>Union (OR)</term>
<term>Element included in result if it exists in either <c>A</c> OR <c>B</c>.</term>
<term><c>Union()</c></term>
</item>
<item>
<term>Intersection (AND)</term>
<term>Element included in result if it exists in both <c>A</c> AND <c>B</c>.</term>
<term><c>InterSect()</c></term>
</item>
<item>
<term>Exclusive Or (XOR)</term>
<term>Element included in result if it exists in one, but not both, of <c>A</c> and <c>B</c>.</term>
<term><c>ExclusiveOr()</c></term>
</item>
<item>
<term>Minus (n/a)</term>
<term>Take all the elements in <c>A</c>. Now, if any of them exist in <c>B</c>, remove
them. Note that unlike the other operators, <c>A - B</c> is not the same as <c>B - A</c>.</term>
<term><c>Minus()</c></term>
</item>
</list>
</summary>
</member>
<member name="M:GeoAPI.DataStructures.Collections.ISet.Union(GeoAPI.DataStructures.Collections.ISet)">
<summary>
Performs a "union" of the two sets, where all the elements
in both sets are present. That is, the element is included if it is in either <c>a</c> or <c>b</c>.
Neither this set nor the input set are modified during the operation. The return value
is a <c>Clone()</c> of this set with the extra elements added in.
</summary>
<param name="a">A collection of elements.</param>
<returns>A new <c>Set</c> containing the union of this <c>Set</c> with the specified collection.
Neither of the input objects is modified by the union.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.ISet.Intersect(GeoAPI.DataStructures.Collections.ISet)">
<summary>
Performs an "intersection" of the two sets, where only the elements
that are present in both sets remain. That is, the element is included if it exists in
both sets. The <c>Intersect()</c> operation does not modify the input sets. It returns
a <c>Clone()</c> of this set with the appropriate elements removed.
</summary>
<param name="a">A set of elements.</param>
<returns>The intersection of this set with <c>a</c>.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.ISet.Minus(GeoAPI.DataStructures.Collections.ISet)">
<summary>
Performs a "minus" of set <c>b</c> from set <c>a</c>. This returns a set of all
the elements in set <c>a</c>, removing the elements that are also in set <c>b</c>.
The original sets are not modified during this operation. The result set is a <c>Clone()</c>
of this <c>Set</c> containing the elements from the operation.
</summary>
<param name="a">A set of elements.</param>
<returns>A set containing the elements from this set with the elements in <c>a</c> removed.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.ISet.ExclusiveOr(GeoAPI.DataStructures.Collections.ISet)">
<summary>
Performs an "exclusive-or" of the two sets, keeping only the elements that
are in one of the sets, but not in both. The original sets are not modified
during this operation. The result set is a <c>Clone()</c> of this set containing
the elements from the exclusive-or operation.
</summary>
<param name="a">A set of elements.</param>
<returns>A set containing the result of <c>a ^ b</c>.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.ISet.Contains(System.Object)">
<summary>
Returns <see langword="true"/> if this set contains the specified element.
</summary>
<param name="o">The element to look for.</param>
<returns><see langword="true"/> if this set contains the specified element, <c>false</c> otherwise.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.ISet.ContainsAll(System.Collections.IEnumerable)">
<summary>
Returns <see langword="true"/> if the set contains all the elements in the specified collection.
</summary>
<param name="c">A collection of objects.</param>
<returns><see langword="true"/> if the set contains all the elements in the specified collection, <c>false</c> otherwise.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.ISet.Add(System.Object)">
<summary>
Adds the specified element to this set if it is not already present.
</summary>
<param name="o">The object to add to the set.</param>
<returns><see langword="true"/> is the object was added, <c>false</c> if it was already present.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.ISet.AddRange(System.Collections.IEnumerable)">
<summary>
Adds all the elements in the specified collection to the set if they are not already present.
</summary>
<param name="c">A collection of objects to add to the set.</param>
<returns><see langword="true"/> is the set changed as a result of this operation, <c>false</c> if not.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.ISet.Remove(System.Object)">
<summary>
Removes the specified element from the set.
</summary>
<param name="o">The element to be removed.</param>
<returns><see langword="true"/> if the set contained the specified element, <c>false</c> otherwise.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.ISet.RemoveAll(System.Collections.IEnumerable)">
<summary>
Remove all the specified elements from this set, if they exist in this set.
</summary>
<param name="c">A collection of elements to remove.</param>
<returns><see langword="true"/> if the set was modified as a result of this operation.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.ISet.RetainAll(System.Collections.IEnumerable)">
<summary>
Retains only the elements in this set that are contained in the specified collection.
</summary>
<param name="c">Collection that defines the set of elements to be retained.</param>
<returns><see langword="true"/> if this set changed as a result of this operation.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.ISet.Clear">
<summary>
Removes all objects from the set.
</summary>
</member>
<member name="P:GeoAPI.DataStructures.Collections.ISet.IsEmpty">
<summary>
Returns <see langword="true"/> if this set contains no elements.
</summary>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.Set`1.Union(GeoAPI.DataStructures.Collections.Generic.ISet{`0})">
<summary>
Performs a "union" of the two sets, where all the elements
in both sets are present. That is, the element is included if it is in either <c>a</c> or <c>b</c>.
Neither this set nor the input set are modified during the operation. The return value
is a <c>Clone()</c> of this set with the extra elements added in.
</summary>
<param name="a">A collection of elements.</param>
<returns>A new <c>Set</c> containing the union of this <c>Set</c> with the specified collection.
Neither of the input objects is modified by the union.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.Set`1.Union(GeoAPI.DataStructures.Collections.Generic.ISet{`0},GeoAPI.DataStructures.Collections.Generic.ISet{`0})">
<summary>
Performs a "union" of two sets, where all the elements
in both are present. That is, the element is included if it is in either <c>a</c> or <c>b</c>.
The return value is a <c>Clone()</c> of one of the sets (<c>a</c> if it is not <see langword="null" />) with elements of the other set
added in. Neither of the input sets is modified by the operation.
</summary>
<param name="a">A set of elements.</param>
<param name="b">A set of elements.</param>
<returns>A set containing the union of the input sets. <see langword="null" /> if both sets are <see langword="null" />.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.Set`1.op_BitwiseOr(GeoAPI.DataStructures.Collections.Generic.Set{`0},GeoAPI.DataStructures.Collections.Generic.Set{`0})">
<summary>
Performs a "union" of two sets, where all the elements
in both are present. That is, the element is included if it is in either <c>a</c> or <c>b</c>.
The return value is a <c>Clone()</c> of one of the sets (<c>a</c> if it is not <see langword="null" />) with elements of the other set
added in. Neither of the input sets is modified by the operation.
</summary>
<param name="a">A set of elements.</param>
<param name="b">A set of elements.</param>
<returns>A set containing the union of the input sets. <see langword="null" /> if both sets are <see langword="null" />.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.Set`1.Intersect(GeoAPI.DataStructures.Collections.Generic.ISet{`0})">
<summary>
Performs an "intersection" of the two sets, where only the elements
that are present in both sets remain. That is, the element is included if it exists in
both sets. The <c>Intersect()</c> operation does not modify the input sets. It returns
a <c>Clone()</c> of this set with the appropriate elements removed.
</summary>
<param name="a">A set of elements.</param>
<returns>The intersection of this set with <c>a</c>.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.Set`1.Intersect(GeoAPI.DataStructures.Collections.Generic.ISet{`0},GeoAPI.DataStructures.Collections.Generic.ISet{`0})">
<summary>
Performs an "intersection" of the two sets, where only the elements
that are present in both sets remain. That is, the element is included only if it exists in
both <c>a</c> and <c>b</c>. Neither input object is modified by the operation.
The result object is a <c>Clone()</c> of one of the input objects (<c>a</c> if it is not <see langword="null" />) containing the
elements from the intersect operation.
</summary>
<param name="a">A set of elements.</param>
<param name="b">A set of elements.</param>
<returns>The intersection of the two input sets. <see langword="null" /> if both sets are <see langword="null" />.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.Set`1.op_BitwiseAnd(GeoAPI.DataStructures.Collections.Generic.Set{`0},GeoAPI.DataStructures.Collections.Generic.Set{`0})">
<summary>
Performs an "intersection" of the two sets, where only the elements
that are present in both sets remain. That is, the element is included only if it exists in
both <c>a</c> and <c>b</c>. Neither input object is modified by the operation.
The result object is a <c>Clone()</c> of one of the input objects (<c>a</c> if it is not <see langword="null" />) containing the
elements from the intersect operation.
</summary>
<param name="a">A set of elements.</param>
<param name="b">A set of elements.</param>
<returns>The intersection of the two input sets. <see langword="null" /> if both sets are <see langword="null" />.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.Set`1.Minus(GeoAPI.DataStructures.Collections.Generic.ISet{`0})">
<summary>
Performs a "minus" of set <c>b</c> from set <c>a</c>. This returns a set of all
the elements in set <c>a</c>, removing the elements that are also in set <c>b</c>.
The original sets are not modified during this operation. The result set is a <c>Clone()</c>
of this <c>Set</c> containing the elements from the operation.
</summary>
<param name="a">A set of elements.</param>
<returns>A set containing the elements from this set with the elements in <c>a</c> removed.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.Set`1.Minus(GeoAPI.DataStructures.Collections.Generic.ISet{`0},GeoAPI.DataStructures.Collections.Generic.ISet{`0})">
<summary>
Performs a "minus" of set <c>b</c> from set <c>a</c>. This returns a set of all
the elements in set <c>a</c>, removing the elements that are also in set <c>b</c>.
The original sets are not modified during this operation. The result set is a <c>Clone()</c>
of set <c>a</c> containing the elements from the operation.
</summary>
<param name="a">A set of elements.</param>
<param name="b">A set of elements.</param>
<returns>A set containing <c>A - B</c> elements. <see langword="null" /> if <c>a</c> is <see langword="null" />.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.Set`1.op_Subtraction(GeoAPI.DataStructures.Collections.Generic.Set{`0},GeoAPI.DataStructures.Collections.Generic.Set{`0})">
<summary>
Performs a "minus" of set <c>b</c> from set <c>a</c>. This returns a set of all
the elements in set <c>a</c>, removing the elements that are also in set <c>b</c>.
The original sets are not modified during this operation. The result set is a <c>Clone()</c>
of set <c>a</c> containing the elements from the operation.
</summary>
<param name="a">A set of elements.</param>
<param name="b">A set of elements.</param>
<returns>A set containing <c>A - B</c> elements. <see langword="null" /> if <c>a</c> is <see langword="null" />.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.Set`1.ExclusiveOr(GeoAPI.DataStructures.Collections.Generic.ISet{`0})">
<summary>
Performs an "exclusive-or" of the two sets, keeping only the elements that
are in one of the sets, but not in both. The original sets are not modified
during this operation. The result set is a <c>Clone()</c> of this set containing
the elements from the exclusive-or operation.
</summary>
<param name="a">A set of elements.</param>
<returns>A set containing the result of <c>a ^ b</c>.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.Set`1.ExclusiveOr(GeoAPI.DataStructures.Collections.Generic.ISet{`0},GeoAPI.DataStructures.Collections.Generic.ISet{`0})">
<summary>
Performs an "exclusive-or" of the two sets, keeping only the elements that
are in one of the sets, but not in both. The original sets are not modified
during this operation. The result set is a <c>Clone()</c> of one of the sets
(<c>a</c> if it is not <see langword="null" />) containing
the elements from the exclusive-or operation.
</summary>
<param name="a">A set of elements.</param>
<param name="b">A set of elements.</param>
<returns>A set containing the result of <c>a ^ b</c>. <see langword="null" /> if both sets are <see langword="null" />.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.Set`1.op_ExclusiveOr(GeoAPI.DataStructures.Collections.Generic.Set{`0},GeoAPI.DataStructures.Collections.Generic.Set{`0})">
<summary>
Performs an "exclusive-or" of the two sets, keeping only the elements that
are in one of the sets, but not in both. The original sets are not modified
during this operation. The result set is a <c>Clone()</c> of one of the sets
(<c>a</c> if it is not <see langword="null" />) containing
the elements from the exclusive-or operation.
</summary>
<param name="a">A set of elements.</param>
<param name="b">A set of elements.</param>
<returns>A set containing the result of <c>a ^ b</c>. <see langword="null" /> if both sets are <see langword="null" />.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.Set`1.Add(`0)">
<summary>
Adds the specified element to this set if it is not already present.
</summary>
<param name="o">The object to add to the set.</param>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.Set`1.AddRange(System.Collections.Generic.IEnumerable{`0})">
<summary>
Adds all the elements in the specified collection to the set if they are not already present.
</summary>
<param name="c">A collection of objects to add to the set.</param>
<returns><see langword="true"/> is the set changed as a result of this operation, <c>false</c> if not.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.Set`1.ContainsAll(System.Collections.Generic.IEnumerable{`0})">
<summary>
Returns <see langword="true"/> if the set contains all the elements in the specified collection.
</summary>
<param name="c">A collection of objects.</param>
<returns><see langword="true"/> if the set contains all the elements in the specified collection, <c>false</c> otherwise.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.Set`1.Remove(`0)">
<summary>
Removes the specified element from the set.
</summary>
<param name="o">The element to be removed.</param>
<returns><see langword="true"/> if the set contained the specified element, <c>false</c> otherwise.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.Set`1.RemoveAll(System.Collections.Generic.IEnumerable{`0})">
<summary>
Remove all the specified elements from this set, if they exist in this set.
</summary>
<param name="c">A collection of elements to remove.</param>
<returns><see langword="true"/> if the set was modified as
a result of this operation.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.Set`1.RetainAll(System.Collections.Generic.IEnumerable{`0})">
<summary>
Retains only the elements in this set that are contained in the specified collection.
</summary>
<param name="c">Collection that defines the set of elements to be retained.</param>
<returns><see langword="true"/> if this set changed as a result of this operation.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.Set`1.Clear">
<summary>
Removes all objects from the set.
</summary>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.Set`1.Contains(`0)">
<summary>
Returns <see langword="true"/> if this set contains the specified element.
</summary>
<param name="o">The element to look for.</param>
<returns><see langword="true"/> if this set contains the specified element, <c>false</c> otherwise.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.Set`1.Clone">
<summary>
Returns a clone of the <c>Set</c> instance. This will work for derived <c>Set</c>
classes if the derived class implements a constructor that takes no arguments.
</summary>
<returns>A clone of this object.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.Set`1.CopyTo(`0[],System.Int32)">
<summary>
Copies the elements in the <c>Set</c> to an array. The type of array needs
to be compatible with the objects in the <c>Set</c>, obviously.
</summary>
<param name="array">An array that will be the target of the copy operation.</param>
<param name="index">The zero-based index where copying will start.</param>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.Set`1.GetEnumerator">
<summary>
Gets an enumerator for the elements in the <c>Set</c>.
</summary>
<returns>An <c>IEnumerator</c> over the elements in the <c>Set</c>.</returns>
</member>
<member name="P:GeoAPI.DataStructures.Collections.Generic.Set`1.IsEmpty">
<summary>
Returns <see langword="true"/> if this set contains no elements.
</summary>
</member>
<member name="P:GeoAPI.DataStructures.Collections.Generic.Set`1.Count">
<summary>
The number of elements currently contained in this collection.
</summary>
</member>
<member name="P:GeoAPI.DataStructures.Collections.Generic.Set`1.System#Collections#ICollection#IsSynchronized">
<summary>
Returns <see langword="true"/> if the <c>Set</c> is synchronized across threads. Note that
enumeration is inherently not thread-safe. Use the <c>SyncRoot</c> to lock the
object during enumeration.
</summary>
</member>
<member name="P:GeoAPI.DataStructures.Collections.Generic.Set`1.System#Collections#ICollection#SyncRoot">
<summary>
An object that can be used to synchronize this collection to make it thread-safe.
When implementing this, if your object uses a base object, like an <c>IDictionary</c>,
or anything that has a <c>SyncRoot</c>, return that object instead of "<c>this</c>".
</summary>
</member>
<member name="P:GeoAPI.DataStructures.Collections.Generic.Set`1.IsReadOnly">
<summary>
Returns whether this collection is readonly.
</summary>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ImmutableSet`1.#ctor(GeoAPI.DataStructures.Collections.Generic.ISet{`0})">
<summary>
Constructs an immutable (read-only) <c>Set</c> wrapper.
</summary>
<param name="basisSet">The <c>Set</c> that is wrapped.</param>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ImmutableSet`1.Add(`0)">
<summary>
Adds the specified element to this set if it is not already present.
</summary>
<param name="o">The object to add to the set.</param>
<returns><see langword="true"/> is the object was added, <c>false</c> if it was already present.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ImmutableSet`1.AddRange(System.Collections.Generic.IEnumerable{`0})">
<summary>
Adds all the elements in the specified collection to the set if they are not already present.
</summary>
<param name="c">A collection of objects to add to the set.</param>
<returns><see langword="true"/> is the set changed as a result of this operation, <c>false</c> if not.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ImmutableSet`1.Clear">
<summary>
Removes all objects from the set.
</summary>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ImmutableSet`1.Contains(`0)">
<summary>
Returns <see langword="true"/> if this set contains the specified element.
</summary>
<param name="o">The element to look for.</param>
<returns><see langword="true"/> if this set contains the specified element, <c>false</c> otherwise.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ImmutableSet`1.ContainsAll(System.Collections.Generic.IEnumerable{`0})">
<summary>
Returns <see langword="true"/> if the set contains all the elements in the specified collection.
</summary>
<param name="c">A collection of objects.</param>
<returns><see langword="true"/> if the set contains all the elements in the specified collection, <c>false</c> otherwise.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ImmutableSet`1.Remove(`0)">
<summary>
Removes the specified element from the set.
</summary>
<param name="o">The element to be removed.</param>
<returns><see langword="true"/> if the set contained the specified element, <c>false</c> otherwise.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ImmutableSet`1.RemoveAll(System.Collections.Generic.IEnumerable{`0})">
<summary>
Remove all the specified elements from this set, if they exist in this set.
</summary>
<param name="c">A collection of elements to remove.</param>
<returns><see langword="true"/> if the set was modified as a result of this operation.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ImmutableSet`1.RetainAll(System.Collections.Generic.IEnumerable{`0})">
<summary>
Retains only the elements in this set that are contained in the specified collection.
</summary>
<param name="c">Collection that defines the set of elements to be retained.</param>
<returns><see langword="true"/> if this set changed as a result of this operation.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ImmutableSet`1.CopyTo(`0[],System.Int32)">
<summary>
Copies the elements in the <c>Set</c> to an array. The type of array needs
to be compatible with the objects in the <c>Set</c>, obviously.
</summary>
<param name="array">An array that will be the target of the copy operation.</param>
<param name="index">The zero-based index where copying will start.</param>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ImmutableSet`1.GetEnumerator">
<summary>
Gets an enumerator for the elements in the <c>Set</c>.
</summary>
<returns>An <c>IEnumerator</c> over the elements in the <c>Set</c>.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ImmutableSet`1.Clone">
<summary>
Returns a clone of the <c>Set</c> instance.
</summary>
<returns>A clone of this object.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ImmutableSet`1.Union(GeoAPI.DataStructures.Collections.Generic.ISet{`0})">
<summary>
Performs a "union" of the two sets, where all the elements
in both sets are present. That is, the element is included if it is in either <c>a</c> or <c>b</c>.
Neither this set nor the input set are modified during the operation. The return value
is a <c>Clone()</c> of this set with the extra elements added in.
</summary>
<param name="a">A collection of elements.</param>
<returns>A new <c>Set</c> containing the union of this <c>Set</c> with the specified collection.
Neither of the input objects is modified by the union.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ImmutableSet`1.Intersect(GeoAPI.DataStructures.Collections.Generic.ISet{`0})">
<summary>
Performs an "intersection" of the two sets, where only the elements
that are present in both sets remain. That is, the element is included if it exists in
both sets. The <c>Intersect()</c> operation does not modify the input sets. It returns
a <c>Clone()</c> of this set with the appropriate elements removed.
</summary>
<param name="a">A set of elements.</param>
<returns>The intersection of this set with <c>a</c>.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ImmutableSet`1.Minus(GeoAPI.DataStructures.Collections.Generic.ISet{`0})">
<summary>
Performs a "minus" of set <c>b</c> from set <c>a</c>. This returns a set of all
the elements in set <c>a</c>, removing the elements that are also in set <c>b</c>.
The original sets are not modified during this operation. The result set is a <c>Clone()</c>
of this <c>Set</c> containing the elements from the operation.
</summary>
<param name="a">A set of elements.</param>
<returns>A set containing the elements from this set with the elements in <c>a</c> removed.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.ImmutableSet`1.ExclusiveOr(GeoAPI.DataStructures.Collections.Generic.ISet{`0})">
<summary>
Performs an "exclusive-or" of the two sets, keeping only the elements that
are in one of the sets, but not in both. The original sets are not modified
during this operation. The result set is a <c>Clone()</c> of this set containing
the elements from the exclusive-or operation.
</summary>
<param name="a">A set of elements.</param>
<returns>A set containing the result of <c>a ^ b</c>.</returns>
</member>
<member name="P:GeoAPI.DataStructures.Collections.Generic.ImmutableSet`1.IsEmpty">
<summary>
Returns <see langword="true"/> if this set contains no elements.
</summary>
</member>
<member name="P:GeoAPI.DataStructures.Collections.Generic.ImmutableSet`1.Count">
<summary>
The number of elements contained in this collection.
</summary>
</member>
<member name="T:GeoAPI.DataStructures.Collections.Generic.HybridSet`1">
<summary>
Implements a <c>Set</c> that automatically changes from a list to a hash table
when the size reaches a certain threshold. This is good if you are unsure about
whether you data-set will be tiny or huge. Because this uses a dual implementation,
iteration order is not guaranteed!
</summary>
</member>
<member name="T:GeoAPI.DataStructures.Collections.Generic.DictionarySet`1">
<summary>
<p><c>DictionarySet</c> is an abstract class that supports the creation of new <c>Set</c>
types where the underlying data store is an <c>IDictionary</c> instance.</p>
<p>You can use any object that implements the <c>IDictionary</c> interface to hold set data.
You can define your own, or you can use one of the objects provided in the Framework.
The type of <c>IDictionary</c> you choose will affect both the performance and the behavior
of the <c>Set</c> using it. </p>
<p>To make a <c>Set</c> typed based on your own <c>IDictionary</c>, simply derive a
new class with a constructor that takes no parameters. Some <c>Set</c> implmentations
cannot be defined with a default constructor. If this is the case for your class,
you will need to override <c>Clone()</c> as well.</p>
<p>It is also standard practice that at least one of your constructors takes an <c>ICollection</c> or
an <c>ISet</c> as an argument.</p>
</summary>
</member>
<member name="F:GeoAPI.DataStructures.Collections.Generic.DictionarySet`1.InternalDictionary">
<summary>
Provides the storage for elements in the <c>Set</c>, stored as the key-set
of the <c>IDictionary</c> object. Set this object in the constructor
if you create your own <c>Set</c> class.
</summary>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.DictionarySet`1.Add(`0)">
<summary>
Adds the specified element to this set if it is not already present.
</summary>
<param name="o">The object to add to the set.</param>
<returns><see langword="true"/> is the object was added, <c>false</c> if it was already present.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.DictionarySet`1.AddRange(System.Collections.Generic.IEnumerable{`0})">
<summary>
Adds all the elements in the specified collection to the set if they are not already present.
</summary>
<param name="c">A collection of objects to add to the set.</param>
<returns><see langword="true"/> is the set changed as a result of this operation, <c>false</c> if not.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.DictionarySet`1.Clear">
<summary>
Removes all objects from the set.
</summary>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.DictionarySet`1.Contains(`0)">
<summary>
Returns <see langword="true"/> if this set contains the specified element.
</summary>
<param name="o">The element to look for.</param>
<returns><see langword="true"/> if this set contains the specified element, <c>false</c> otherwise.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.DictionarySet`1.ContainsAll(System.Collections.Generic.IEnumerable{`0})">
<summary>
Returns <see langword="true"/> if the set contains all the elements in the specified collection.
</summary>
<param name="c">A collection of objects.</param>
<returns><see langword="true"/> if the set contains all the elements in the specified collection, <c>false</c> otherwise.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.DictionarySet`1.Remove(`0)">
<summary>
Removes the specified element from the set.
</summary>
<param name="o">The element to be removed.</param>
<returns><see langword="true"/> if the set contained the specified element, <c>false</c> otherwise.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.DictionarySet`1.RemoveAll(System.Collections.Generic.IEnumerable{`0})">
<summary>
Remove all the specified elements from this set, if they exist in this set.
</summary>
<param name="c">A collection of elements to remove.</param>
<returns><see langword="true"/> if the set was modified as a result of this operation.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.DictionarySet`1.RetainAll(System.Collections.Generic.IEnumerable{`0})">
<summary>
Retains only the elements in this set that are contained in the specified collection.
</summary>
<param name="c">Collection that defines the set of elements to be retained.</param>
<returns><see langword="true"/> if this set changed as a result of this operation.</returns>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.DictionarySet`1.CopyTo(`0[],System.Int32)">
<summary>
Copies the elements in the <c>Set</c> to an array. The type of array needs
to be compatible with the objects in the <c>Set</c>, obviously.
</summary>
<param name="array">An array that will be the target of the copy operation.</param>
<param name="index">The zero-based index where copying will start.</param>
</member>
<member name="M:GeoAPI.DataStructures.Collections.Generic.DictionarySet`1.GetEnumerator">
<summary>
Gets an enumerator for the elements in the <c>Set</c>.
</summary>
<returns>An <c>IEnumerator</c> over the elements in the <c>Set</c>.</returns>
</member>
<member name="P:GeoAPI.DataStructures.Collections.Generic.DictionarySet`1.Placeholder">
<summary>
The placeholder object used as the value for the <c>IDictionary</c> instance.
</summary>
<remarks>
There is a single instance of this object globally, used for all <c>Sets</c>.
</remarks>
</member>