TabularData.Rows Property

 

Applies To: SQL Server 2016 Preview

This API supports the product infrastructure and is not intended to be used directly from your code.

Gets or sets the rows of data in the tabular data.

Namespace:   Microsoft.MasterDataServices
Assembly:  Microsoft.MasterDataServices (in Microsoft.MasterDataServices.dll)

Syntax

[DataMemberAttribute]
public Collection<TabularDataRow> Rows { get; set; }
public:
[DataMemberAttribute]
property Collection<TabularDataRow^>^ Rows {
    Collection<TabularDataRow^>^ get();
    void set(Collection<TabularDataRow^>^ value);
}
[<DataMemberAttribute>]
member Rows : Collection<TabularDataRow> with get, set
<DataMemberAttribute>
Public Property Rows As Collection(Of TabularDataRow)

Property Value

Type: System.Collections.ObjectModel.Collection<TabularDataRow>

Returns Collection<T>.

See Also

TabularData Class
Microsoft.MasterDataServices Namespace

Return to top