Share via


ConnectedServiceGrid.ColumnMetadata Property

Definition

Gets the keys and display strings for metadata to show as columns in the service instance list.

public:
 virtual property System::Collections::Generic::IEnumerable<Tuple<System::String ^, System::String ^> ^> ^ ColumnMetadata { System::Collections::Generic::IEnumerable<Tuple<System::String ^, System::String ^> ^> ^ get(); };
public virtual System.Collections.Generic.IEnumerable<Tuple<string,string>> ColumnMetadata { get; }
member this.ColumnMetadata : seq<string * string>
Public Overridable ReadOnly Property ColumnMetadata As IEnumerable(Of Tuple(Of String, String))

Property Value

Returns IEnumerable<T>.

Remarks

The Item1 field in the enumerable's Tuple is used as a key into the Metadata dictionary. The Item2 field is a localized display string to use as the column header.

The columns will be added in the order given after the column that shows the service instance's name. To change the display text for the service instance name, use the ServiceInstanceNameLabelText property.

Applies to