RowToParametersTransformer.ProviderFieldNames Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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"
.