IContextAccessor インターフェイス
コンテキストからの値を格納または取得するためのヘルパー クラスを作成するために使用するインターフェイス。
名前空間: Microsoft.VisualStudio.TestTools.Execution
アセンブリ: Microsoft.VisualStudio.QualityTools.ExecutionCommon (Microsoft.VisualStudio.QualityTools.ExecutionCommon.dll 内)
構文
'宣言
Public Interface IContextAccessor
public interface IContextAccessor
public interface class IContextAccessor
type IContextAccessor = interface end
public interface IContextAccessor
IContextAccessor 型で公開されるメンバーは以下のとおりです。
プロパティ
名前 | 説明 | |
---|---|---|
Count | 格納されている値の合計数を取得します。 |
このページのトップへ
メソッド
名前 | 説明 | |
---|---|---|
AddDoubleValue | 指定されたキーおよび値を使用して、要素を追加します。 | |
AddIntValue | 指定されたキーと値で要素を追加します。 | |
AddObject | 指定されたキーと値で要素を追加します。 | |
AddStringValue | 指定されたキーと値で要素を追加します。 | |
GetDoubleValue | 指定されたキーに関連付けられている値を取得します。 | |
GetEnumerator | IContextAccessor を反復処理する IDictionaryEnumerator を返します。 | |
GetIntValue | 指定されたキーに関連付けられている値を取得します。 | |
GetObject | 指定されたキーに関連付けられている object を取得します。 | |
GetStringValue | 指定されたキーに関連付けられている string を取得します。 | |
RemoveValue | 指定したキーを持つ要素を削除します。 |
このページのトップへ