次の方法で共有


LocalizablePropertyDescriptionAttribute.Description Property

プロパティに関連付けられた説明を取得します。

名前空間: Microsoft.SqlServer.Dts.Runtime.Localization
アセンブリ: Microsoft.SqlServer.ManagedDTS (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

プロパティ値

プロパティの説明を表す String です。

使用例

次の例は、プロパティの説明を提供するクラスを示します。

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.
            }
        }

}

スレッド セーフ

この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。

プラットフォーム

開発プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

対象プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

参照

関連項目

LocalizablePropertyDescriptionAttribute Class
LocalizablePropertyDescriptionAttribute Members
Microsoft.SqlServer.Dts.Runtime.Localization Namespace