Share via


RowCollection.Fields Property (PIA)

The Fields property is a read-only Fields collection object that contains the Field objects for the current row.

Definition

[Visual Basic .NET]

Imports Microsoft.CommerceServer.Interop.Caching
Improts ADODB26Lib     ‘ for Fields
…
Public ReadOnly Property Fields As Fields

[C#]

using Microsoft.CommerceServer.Interop.Caching;
using ADODB26Lib;                              //For Fields
…
public Fields Fields {get; }

[C#]

Return Values

This property returns an ADODB26Lib.Fields collection.

Exceptions

This property may throw one of many mapped exceptions or an exception of type COMException. See Standard COM Errors for additional details.

Remarks

The Fields object associated with this property corresponds to the current row in the RowCollection object. When the EOF property is True, indicating that the current row is set beyond the actual rows in the collection, accessing this property will result in an error.

Requirements

Namespace: Microsoft.CommerceServer.Interop.Caching

Platforms: Windows 2000, Windows Server 2003

Assembly: cachecomplib (in cachecomplib.dll)

See Also

RowCollection Class

Copyright © 2005 Microsoft Corporation.
All rights reserved.