Примечание.
Для доступа к этой странице требуется авторизация. Вы можете попробовать войти или изменить каталоги.
Для доступа к этой странице требуется авторизация. Вы можете попробовать изменить каталоги.
Gets the description associated with the property.
Пространство имен: Microsoft.SqlServer.Dts.Runtime.Localization
Сборка: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)
Синтаксис
'Декларация
Public Overrides ReadOnly Property Description As String
public override string Description { get; }
public:
virtual property String^ Description {
String^ get () override;
}
/** @property */
public String get_Description ()
public override function get Description () : String
Значение свойства
A String that contains the description of the property.
Пример
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.
}
}
}
Синхронизация потоков
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Платформы
Платформы разработки
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
Целевые платформы
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
См. также
Справочник
LocalizablePropertyDescriptionAttribute Class
LocalizablePropertyDescriptionAttribute Members
Microsoft.SqlServer.Dts.Runtime.Localization Namespace