forked from dotnet/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBaseDataEnvironment.xml
632 lines (569 loc) · 29.4 KB
/
BaseDataEnvironment.xml
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
<Type Name="BaseDataEnvironment" FullName="Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment">
<TypeSignature Language="C#" Value="public abstract class BaseDataEnvironment : IDisposable, msdatasrc.DataSource" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi abstract BaseDataEnvironment extends System.Object implements class msdatasrc.DataSource, class System.IDisposable" />
<TypeSignature Language="DocId" Value="T:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment" />
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility.Data</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces>
<Interface>
<InterfaceName>msdatasrc.DataSource</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IDisposable</InterfaceName>
</Interface>
</Interfaces>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary>Emulates a Visual Basic 6.0 <see langword="Data Environment" /> in applications that have been upgraded from Visual Basic 6.0.</summary>
<remarks>
<format type="text/markdown"><], a `BaseDataEnvironment` is created to enable the ADO-related code.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected BaseDataEnvironment ();" />
<MemberSignature Language="ILAsm" Value=".method familyspecialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.#ctor" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility.Data</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters />
<Docs>
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment" /> class.</summary>
<remarks>
<format type="text/markdown"><], a `BaseDataEnvironment` is created to enable the ADO-related code.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="addDataSourceListener">
<MemberSignature Language="C#" Value="public virtual void addDataSourceListener (msdatasrc.DataSourceListener ds);" />
<MemberSignature Language="ILAsm" Value=".method public newslot virtual instance void addDataSourceListener(class msdatasrc.DataSourceListener ds) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.addDataSourceListener(msdatasrc.DataSourceListener)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility.Data</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.CLSCompliant(false)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="ds" Type="msdatasrc.DataSourceListener" />
</Parameters>
<Docs>
<param name="ds">None.</param>
<summary>This method is not implemented in the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment" /> class.</summary>
<remarks>
<format type="text/markdown"><]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Commands">
<MemberSignature Language="C#" Value="public Microsoft.VisualBasic.Collection Commands { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.VisualBasic.Collection Commands" />
<MemberSignature Language="DocId" Value="P:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Commands" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility.Data</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.VisualBasic.Collection</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets a collection of <see langword="ADODB.Command" /> objects for use in an application upgraded from Visual Basic 6.0.</summary>
<value>A collection of <see langword="ADODB.Command" /> objects.</value>
<remarks>
<format type="text/markdown"><], a `BaseDataEnvironment` is created to enable the ADO-related code.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Commands">
<MemberSignature Language="C#" Value="public ADODB.Command Commands[object lpVar] { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class ADODB.Command Commands(object)" />
<MemberSignature Language="DocId" Value="P:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Commands(System.Object)" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility.Data</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.CLSCompliant(false)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>ADODB.Command</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="lpVar" Type="System.Object" />
</Parameters>
<Docs>
<param name="lpVar">A Visual Basic 6.0 <see langword="Variant" /> that contains the <see langword="ADODB.Command" /> objects.</param>
<summary>Gets a collection of <see langword="ADODB.Command" /> objects for use in an application upgraded from Visual Basic 6.0.</summary>
<value>A collection of <see langword="ADODB.Command" /> objects.</value>
<remarks>
<format type="text/markdown"><], a `BaseDataEnvironment` is created to enable the ADO-related code.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Connections">
<MemberSignature Language="C#" Value="public Microsoft.VisualBasic.Collection Connections { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.VisualBasic.Collection Connections" />
<MemberSignature Language="DocId" Value="P:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Connections" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility.Data</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.VisualBasic.Collection</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets a collection of <see langword="ADODB.Connection" /> objects for use in an application upgraded from Visual Basic 6.0.</summary>
<value>A collection of <see langword="ADODB.Connection" /> objects.</value>
<remarks>
<format type="text/markdown"><], a `BaseDataEnvironment` is created to enable the ADO-related code.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Connections">
<MemberSignature Language="C#" Value="public ADODB.Connection Connections[object lpVar] { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class ADODB.Connection Connections(object)" />
<MemberSignature Language="DocId" Value="P:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Connections(System.Object)" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility.Data</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.CLSCompliant(false)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>ADODB.Connection</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="lpVar" Type="System.Object" />
</Parameters>
<Docs>
<param name="lpVar">A Visual Basic 6.0 <see langword="Variant" /> that contains the <see langword="ADODB.Connection" /> objects.</param>
<summary>Gets a collection of <see langword="ADODB.Connection" /> objects for use in an application upgraded from Visual Basic 6.0.</summary>
<value>A collection of <see langword="ADODB.Connection" /> objects.</value>
<remarks>
<format type="text/markdown"><], a `BaseDataEnvironment` is created to enable the ADO-related code.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Dispose">
<MemberSignature Language="C#" Value="public virtual void Dispose ();" />
<MemberSignature Language="ILAsm" Value=".method public newslot virtual instance void Dispose() cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Dispose" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility.Data</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Releases the unmanaged resources that are used by a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment" />.</summary>
<remarks>
<format type="text/markdown"><]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Dispose">
<MemberSignature Language="C#" Value="protected virtual void Dispose (bool disposing);" />
<MemberSignature Language="ILAsm" Value=".method familynewslot virtual instance void Dispose(bool disposing) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Dispose(System.Boolean)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility.Data</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="disposing" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="disposing">
<see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
<summary>Releases the unmanaged resources that are used by a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment" />, and optionally releases the managed resources.</summary>
<remarks>
<format type="text/markdown"><]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Finalize">
<MemberSignature Language="C#" Value="~BaseDataEnvironment ();" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig virtual instance void Finalize() cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Finalize" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility.Data</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Overrides the <see cref="M:System.Object.Finalize" /> method.</summary>
<remarks>
<format type="text/markdown"><], a `BaseDataEnvironment` is created to enable the ADO-related code.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="getDataMember">
<MemberSignature Language="C#" Value="public virtual object getDataMember (string strDataMember, ref Guid Id);" />
<MemberSignature Language="ILAsm" Value=".method public newslot virtual instance object getDataMember(string strDataMember, valuetype System.Guid Id) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.getDataMember(System.String,System.Guid@)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility.Data</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="strDataMember" Type="System.String" />
<Parameter Name="Id" Type="System.Guid&" RefType="ref" />
</Parameters>
<Docs>
<param name="strDataMember">A <see langword="String" /> that contains an <see langword="ADODB.Command" /> object.</param>
<param name="Id">A GUID representing an <see langword="ADODB.Recordset" /> object.</param>
<summary>Invokes a method based on an <see langword="ADODB.Command" /> object.</summary>
<returns>An <see cref="T:System.Object" /> that contains the <see langword="ADODB.Command" /> object.</returns>
<remarks>
<format type="text/markdown"><], a `BaseDataEnvironment` is created to enable the ADO-related code.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="GetDataMemberCount">
<MemberSignature Language="C#" Value="public virtual int GetDataMemberCount ();" />
<MemberSignature Language="ILAsm" Value=".method public newslot virtual instance int32 GetDataMemberCount() cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.GetDataMemberCount" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility.Data</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Gets a count of <see langword="ADODB.Command" /> objects.</summary>
<returns>An <see langword="Integer" /> that contains the count.</returns>
<remarks>
<format type="text/markdown"><], a `BaseDataEnvironment` is created to enable the ADO-related code.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="GetDataMemberName">
<MemberSignature Language="C#" Value="public virtual string GetDataMemberName (int Index);" />
<MemberSignature Language="ILAsm" Value=".method public newslot virtual instance string GetDataMemberName(int32 Index) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.GetDataMemberName(System.Int32)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility.Data</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="Index" Type="System.Int32" />
</Parameters>
<Docs>
<param name="Index">Not applicable.</param>
<summary>This method is not implemented in the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment" /> class.</summary>
<returns>
<see langword="Nothing" />.</returns>
<remarks>
<format type="text/markdown"><], a `BaseDataEnvironment` is created to enable the ADO-related code.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="m_Commands">
<MemberSignature Language="C#" Value="protected Microsoft.VisualBasic.Collection m_Commands;" />
<MemberSignature Language="ILAsm" Value=".field family class Microsoft.VisualBasic.Collection m_Commands" />
<MemberSignature Language="DocId" Value="F:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.m_Commands" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility.Data</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.VisualBasic.Collection</ReturnType>
</ReturnValue>
<Docs>
<summary>Contains the <see cref="Overload:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Commands" /> collection.</summary>
<remarks>
<format type="text/markdown"><]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="m_Connections">
<MemberSignature Language="C#" Value="protected Microsoft.VisualBasic.Collection m_Connections;" />
<MemberSignature Language="ILAsm" Value=".field family class Microsoft.VisualBasic.Collection m_Connections" />
<MemberSignature Language="DocId" Value="F:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.m_Connections" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility.Data</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.VisualBasic.Collection</ReturnType>
</ReturnValue>
<Docs>
<summary>Contains the <see cref="Overload:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Connections" /> collection.</summary>
<remarks>
<format type="text/markdown"><]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="m_NonRSReturningCommands">
<MemberSignature Language="C#" Value="protected Microsoft.VisualBasic.Collection m_NonRSReturningCommands;" />
<MemberSignature Language="ILAsm" Value=".field family class Microsoft.VisualBasic.Collection m_NonRSReturningCommands" />
<MemberSignature Language="DocId" Value="F:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.m_NonRSReturningCommands" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility.Data</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.VisualBasic.Collection</ReturnType>
</ReturnValue>
<Docs>
<summary>Contains a collection.</summary>
<remarks>
<format type="text/markdown"><]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="m_Recordsets">
<MemberSignature Language="C#" Value="protected Microsoft.VisualBasic.Collection m_Recordsets;" />
<MemberSignature Language="ILAsm" Value=".field family class Microsoft.VisualBasic.Collection m_Recordsets" />
<MemberSignature Language="DocId" Value="F:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.m_Recordsets" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility.Data</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.VisualBasic.Collection</ReturnType>
</ReturnValue>
<Docs>
<summary>Contains the <see cref="Overload:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Recordsets" /> collection.</summary>
<remarks>
<format type="text/markdown"><]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Object">
<MemberSignature Language="C#" Value="public object Object { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance object Object" />
<MemberSignature Language="DocId" Value="P:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Object" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility.Data</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment" /> object.</summary>
<value>A <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment" /> object.</value>
<remarks>
<format type="text/markdown"><], a `BaseDataEnvironment` is created to enable the ADO-related code.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Recordsets">
<MemberSignature Language="C#" Value="public Microsoft.VisualBasic.Collection Recordsets { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.VisualBasic.Collection Recordsets" />
<MemberSignature Language="DocId" Value="P:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Recordsets" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility.Data</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.VisualBasic.Collection</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets a collection of <see langword="ADODB.Recordset" /> objects for use in an application upgraded from Visual Basic 6.0.</summary>
<value>A collection of <see langword="ADODB.Recordset" /> objects.</value>
<remarks>
<format type="text/markdown"><], a `BaseDataEnvironment` is created to enable the ADO-related code.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Recordsets">
<MemberSignature Language="C#" Value="public ADODB.Recordset Recordsets[object lpVar] { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class ADODB.Recordset Recordsets(object)" />
<MemberSignature Language="DocId" Value="P:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Recordsets(System.Object)" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility.Data</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.CLSCompliant(false)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>ADODB.Recordset</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="lpVar" Type="System.Object" />
</Parameters>
<Docs>
<param name="lpVar">A Visual Basic 6.0 <see langword="Variant" /> that contains the <see langword="ADODB.Recordset" /> objects.</param>
<summary>Gets a collection of <see langword="ADODB.Recordset" /> objects for use in an application upgraded from Visual Basic 6.0.</summary>
<value>A collection of <see langword="ADODB.Recordset" /> objects.</value>
<remarks>
<format type="text/markdown"><], a `BaseDataEnvironment` is created to enable the ADO-related code.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="removeDataSourceListener">
<MemberSignature Language="C#" Value="public virtual void removeDataSourceListener (msdatasrc.DataSourceListener ds);" />
<MemberSignature Language="ILAsm" Value=".method public newslot virtual instance void removeDataSourceListener(class msdatasrc.DataSourceListener ds) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.removeDataSourceListener(msdatasrc.DataSourceListener)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility.Data</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.CLSCompliant(false)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="ds" Type="msdatasrc.DataSourceListener" />
</Parameters>
<Docs>
<param name="ds">Not applicable.</param>
<summary>This method is not implemented in the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment" /> class.</summary>
<remarks>
<format type="text/markdown"><], a `BaseDataEnvironment` is created to enable the ADO-related code.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
</Members>
</Type>