CustomProviderDataAttribute(String) Constructor

Definition

Creates a new instance of the CustomProviderDataAttribute class and specifies a string of custom data.

public:
 CustomProviderDataAttribute(System::String ^ customProviderData);
public CustomProviderDataAttribute (string customProviderData);
new System.Web.Profile.CustomProviderDataAttribute : string -> System.Web.Profile.CustomProviderDataAttribute
Public Sub New (customProviderData As String)

Parameters

customProviderData
String

The string of custom data to supply to the provider.

Remarks

The CustomProviderDataAttribute class is used to supply a string of data with a profile property to a custom profile provider. The custom data string can be set to any string value and is set using the customProviderData attribute of the <add> configuration element for adding profile properties. If the customProviderData attribute is set, then the value is placed in the Attributes collection for the property and is indexed by the name "CustomProviderData."

This constructor is used the .NET Framework and is not intended to be called from application code.

Applies to

See also