Proprietà LocalizablePropertyDescriptionAttribute.Description

Gets the description associated with the property.

Spazio dei nomi  Microsoft.SqlServer.Dts.Runtime.Localization
Assembly:  Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)

Sintassi

'Dichiarazione
Public Overrides ReadOnly Property Description As String 
    Get
'Utilizzo
Dim instance As LocalizablePropertyDescriptionAttribute 
Dim value As String 

value = instance.Description
public override string Description { get; }
public:
virtual property String^ Description {
    String^ get () override;
}
abstract Description : string 
override Description : string
override function get Description () : String

Valore proprietà

Tipo: System.String
A String that contains the description of the property.

Esempi

The following example shows a class that provides a property description.

public class MyTask : Task
{
[LocalizablePropertyDescription (typeof(LocalizedStrings),"MyPropertyDescription")]
     public string MyProperty
{ get; set; }
}
internal class LocalizedStrings
    {
        public static string MyPropertyDescription
        {
            get
            {
                // Return the localized string.
            }
        }

}

Vedere anche

Riferimento

LocalizablePropertyDescriptionAttribute Classe

Spazio dei nomi Microsoft.SqlServer.Dts.Runtime.Localization