LocalizablePropertyDescriptionAttribute(Type, String) Constructeur
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Initialise une nouvelle instance de la classe LocalizablePropertyDescriptionAttribute à l’aide du type spécifié et du nom de propriété.
public:
LocalizablePropertyDescriptionAttribute(Type ^ type, System::String ^ propertyName);
public LocalizablePropertyDescriptionAttribute (Type type, string propertyName);
new Microsoft.SqlServer.Dts.Runtime.Localization.LocalizablePropertyDescriptionAttribute : Type * string -> Microsoft.SqlServer.Dts.Runtime.Localization.LocalizablePropertyDescriptionAttribute
Public Sub New (type As Type, propertyName As String)
Paramètres
- type
- Type
Nom de type, où le type est défini par la classe de type dans la bibliothèque de classes .NET Framework. Ce type contient la propriété référencée par propertyName
.
- propertyName
- String
Nom de la propriété sur le type
qui retourne la description de propriété localisée.
Exemples
L’exemple de code suivant montre une classe qui implémente cet attribut.
[LocalizablePropertyDescription(typeof(myObject),"PackageTypeDesc")]
public class MyTask : Task
{
// Your code here.
}
Remarques
La propriété doit être statique et retourner un String
.