RowToParametersTransformer.ProviderFieldNames Property

Definition

Gets or sets the list of field names from the provider.

public:
 property cli::array <System::String ^> ^ ProviderFieldNames { cli::array <System::String ^> ^ get(); void set(cli::array <System::String ^> ^ value); };
[System.ComponentModel.TypeConverter(typeof(System.Web.UI.WebControls.StringArrayConverter))]
public string[] ProviderFieldNames { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Web.UI.WebControls.StringArrayConverter))>]
member this.ProviderFieldNames : string[] with get, set
Public Property ProviderFieldNames As String()

Property Value

String[]

An array of String values representing the provider fields.

Attributes

Remarks

The ProviderFieldNames property represents the fields in the provider that the transformer will pass to the consumer. The ProviderFieldNames property can be set by the user through the RowToParametersTransformer configuration control, or set declaratively in the <asp:RowToParametersTransformer /> element, where as many provider field names as needed are assigned to the ProviderFieldNames attribute, in the form ProviderFieldNames="fieldA,fieldB".

Applies to