ConnectionProviderAttribute.DisplayNameValue 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 string used as the value of the DisplayName property, for use in localization scenarios.
protected:
property System::String ^ DisplayNameValue { System::String ^ get(); void set(System::String ^ value); };
protected string DisplayNameValue { get; set; }
member this.DisplayNameValue : string with get, set
Protected Property DisplayNameValue As String
Property Value
A string that is used as the value of DisplayName.
Remarks
This extra property exists so that you can derive from ConnectionProviderAttribute and provide a localized version. The derived localizable ConnectionProviderAttribute attribute will maintain a private Boolean field to indicate whether it has been localized. On the first access to the DisplayName property, it will look up the localized string, and then use the DisplayNameValue property to assign the localized value to the DisplayName property.