ConnectionConsumerAttribute.DisplayNameValue Property

Definition

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 ConnectionConsumerAttribute and provide a localized version. The derived localizable ConnectionConsumerAttribute 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.

Applies to

See also