DynamicValue.Item 속성

 

DynamicValue의 하위 항목을 가져오거나 설정합니다.

네임스페이스:   Microsoft.Activities
어셈블리:  Microsoft.Activities.dll의 Microsoft.Activities

오버로드 목록

이름 설명
System_CAPS_pubproperty Item[Int32]

ID별로 항목을 가져오거나 설정합니다.

System_CAPS_pubproperty Item[String]

이름별로 항목을 가져오거나 설정합니다.

참고 항목

DynamicValue 클래스
Microsoft.Activities 네임스페이스

맨 위로 이동

DynamicValue.Item 속성 (Int32)

ID별로 항목을 가져오거나 설정합니다.

구문

[DebuggerBrowsableAttribute(DebuggerBrowsableState.Never)]
public DynamicValue this[
    int key
] { get; set; }
public:
[DebuggerBrowsableAttribute(DebuggerBrowsableState::Never)]
property DynamicValue^ default[
    int key
] {
    DynamicValue^ get(int key);
    void set(int key, DynamicValue^ value);
}
[<DebuggerBrowsableAttribute(DebuggerBrowsableState.Never)>]
member Item : 
        key:int -> DynamicValue with get, set
<DebuggerBrowsableAttribute(DebuggerBrowsableState.Never)>
Public Property Item (
    key As Integer
) As DynamicValue

매개 변수

속성 값

Type: Microsoft.Activities.DynamicValue

지정된 ID를 가진 항목입니다.

맨 위로 이동

DynamicValue.Item 속성 (String)

이름별로 항목을 가져오거나 설정합니다.

구문

[DebuggerBrowsableAttribute(DebuggerBrowsableState.Never)]
public DynamicValue this[
    string key
] { get; set; }
public:
[DebuggerBrowsableAttribute(DebuggerBrowsableState::Never)]
property DynamicValue^ default[
    String^ key
] {
    virtual DynamicValue^ get(String^ key) sealed;
    virtual void set(String^ key, DynamicValue^ value) sealed;
}
[<DebuggerBrowsableAttribute(DebuggerBrowsableState.Never)>]
abstract Item : 
        key:string -> DynamicValue with get, set
[<DebuggerBrowsableAttribute(DebuggerBrowsableState.Never)>]
override Item : 
        key:string -> DynamicValue with get, set
<DebuggerBrowsableAttribute(DebuggerBrowsableState.Never)>
Public Property Item (
    key As String
) As DynamicValue

매개 변수

속성 값

Type: Microsoft.Activities.DynamicValue

지정된 이름을 가진 항목입니다.

구현

IDictionary<TKey, TValue>.Item[TKey]

맨 위로 이동