TabularDataRow.Values 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 values in a data row.

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

Syntax

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

Property Value

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

The values in a data row.

See Also

TabularDataRow Class
Microsoft.MasterDataServices Namespace

Return to top