次の方法で共有


AgentProfile.Description プロパティ

レプリケーション エージェント プロファイルの説明テキストを取得します。値の設定も可能です。

名前空間:  Microsoft.SqlServer.Replication
アセンブリ:  Microsoft.SqlServer.Rmo (Microsoft.SqlServer.Rmo.dll)

構文

'宣言
Public Property Description As String 
    Get 
    Set
'使用
Dim instance As AgentProfile 
Dim value As String 

value = instance.Description

instance.Description = value
public string Description { get; set; }
public:
property String^ Description {
    String^ get ();
    void set (String^ value);
}
member Description : string with get, set
function get Description () : String 
function set Description (value : String)

プロパティ値

型: System.String
エージェント プロファイルの説明テキストを表す String 値です。

説明

Description プロパティは、読み取り/書き込みプロパティです。

Description プロパティを取得できるのは、ディストリビューター側の固定サーバー ロール sysadmin のメンバー、または固定データベース ロール replmonitor のメンバーだけです。

Description プロパティを設定できるのは、ディストリビューター側の固定サーバー ロール sysadmin のメンバーだけです。

Description を取得すると、sp_help_agent_profile (Transact-SQL) を実行したのと同じことになります。

既存のプロファイルへの Description の設定と CommitPropertyChanges の呼び出しは、sp_change_agent_profile (Transact-SQL) を実行したのと同じことになります。

Description の設定と Create の呼び出しは、sp_add_agent_profile (Transact-SQL) を実行したのと同じことになります。

関連項目

参照

AgentProfile クラス

Microsoft.SqlServer.Replication 名前空間

その他の技術情報

レプリケーション エージェント プロファイルを操作する (RMO プログラミング)