Share via


DynamicRecord.Columns Property

Returns a list that contains the name of each column in the DynamicRecord instance.

Namespace:  WebMatrix.Data
Assembly:  WebMatrix.Data (in WebMatrix.Data.dll)

Syntax

'Declaration
Public Property Columns As IList(Of String)
    Get 
    Private Set
'Usage
Dim instance As DynamicRecord 
Dim value As IList(Of String)

value = instance.Columns
public IList<string> Columns { get; private set; }
public:
property IList<String^>^ Columns {
    IList<String^>^ get ();
    private: void set (IList<String^>^ value);
}
member Columns : IList<string> with get, private set
function get Columns () : IList<String>
private function set Columns (value : IList<String>)

Property Value

Type: System.Collections.Generic.IList<String>
A list that contains the name of each column.

See Also

Reference

DynamicRecord Class

WebMatrix.Data Namespace