Share via


DynamicValue.Item (Propiedad)

 

Obtiene o establece el elemento secundario en el DynamicValue.

Espacio de nombres:   Microsoft.Activities
Ensamblado:  Microsoft.Activities (en Microsoft.Activities.dll)

Lista de sobrecarga

Nombre Descripción
System_CAPS_pubproperty Item[Int32]

Obtiene o establece un elemento por Id.

System_CAPS_pubproperty Item[String]

Obtiene o establece un elemento por nombre.

Vea también

DynamicValue (Clase)
Microsoft.Activities (Espacio de nombres)

Volver al principio

DynamicValue.Item (Propiedad) (Int32)

Obtiene o establece un elemento por Id.

Sintaxis

[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

Parámetros

Valor de propiedad

Type: Microsoft.Activities.DynamicValue

El elemento con el Id. especificado.

Volver al principio

DynamicValue.Item (Propiedad) (String)

Obtiene o establece un elemento por nombre.

Sintaxis

[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

Parámetros

Valor de propiedad

Type: Microsoft.Activities.DynamicValue

El elemento con el nombre especificado.

Implementaciones

IDictionary<TKey, TValue>.Item[TKey]

Volver al principio